--- linux-gcp-6.2.0.orig/Documentation/ABI/testing/configfs-usb-gadget-uvc +++ linux-gcp-6.2.0/Documentation/ABI/testing/configfs-usb-gadget-uvc @@ -52,7 +52,7 @@ KernelVersion: 4.0 Description: Default output terminal descriptors - All attributes read only: + All attributes read only except bSourceID: ============== ============================================= iTerminal index of string descriptor --- linux-gcp-6.2.0.orig/Documentation/ABI/testing/ima_policy +++ linux-gcp-6.2.0/Documentation/ABI/testing/ima_policy @@ -26,7 +26,7 @@ [uid=] [euid=] [gid=] [egid=] [fowner=] [fgroup=]] lsm: [[subj_user=] [subj_role=] [subj_type=] - [obj_user=] [obj_role=] [obj_type=]] + [obj_user=] [obj_role=] [obj_type=] [lsm=]] option: [digest_type=] [template=] [permit_directio] [appraise_type=] [appraise_flag=] [appraise_algos=] [keyrings=] @@ -138,6 +138,12 @@ measure subj_user=_ func=FILE_CHECK mask=MAY_READ + It is possible to explicitly specify which security + module a rule applies to using lsm=. If the security + module specified is not active on the system the rule + will be rejected. If lsm= is not specified the first + security module registered on the system will be assumed. + Example of measure rules using alternate PCRs:: measure func=KEXEC_KERNEL_CHECK pcr=4 --- linux-gcp-6.2.0.orig/Documentation/Makefile +++ linux-gcp-6.2.0/Documentation/Makefile @@ -92,7 +92,7 @@ fi htmldocs: - @$(srctree)/scripts/sphinx-pre-install --version-check + @$(srctree)/scripts/sphinx-pre-install --version-check --no-virtualenv @+$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,html,$(var),,$(var))) texinfodocs: --- linux-gcp-6.2.0.orig/Documentation/admin-guide/cgroup-v1/memory.rst +++ linux-gcp-6.2.0/Documentation/admin-guide/cgroup-v1/memory.rst @@ -86,6 +86,8 @@ memory.swappiness set/show swappiness parameter of vmscan (See sysctl's vm.swappiness) memory.move_charge_at_immigrate set/show controls of moving charges + This knob is deprecated and shouldn't be + used. memory.oom_control set/show oom controls. memory.numa_stat show the number of memory usage per numa node @@ -717,8 +719,15 @@ It is recommended to set the soft limit always below the hard limit, otherwise the hard limit will take precedence. -8. Move charges at task migration -================================= +8. Move charges at task migration (DEPRECATED!) +=============================================== + +THIS IS DEPRECATED! + +It's expensive and unreliable! It's better practice to launch workload +tasks directly from inside their target cgroup. Use dedicated workload +cgroups to allow fine-grained policy adjustments without having to +move physical pages between control domains. Users can move charges associated with a task along with task migration, that is, uncharge task's pages from the old cgroup and charge them to the new cgroup. --- linux-gcp-6.2.0.orig/Documentation/admin-guide/hw-vuln/spectre.rst +++ linux-gcp-6.2.0/Documentation/admin-guide/hw-vuln/spectre.rst @@ -479,8 +479,16 @@ On Intel Skylake-era systems the mitigation covers most, but not all, cases. See :ref:`[3] ` for more details. - On CPUs with hardware mitigation for Spectre variant 2 (e.g. Enhanced - IBRS on x86), retpoline is automatically disabled at run time. + On CPUs with hardware mitigation for Spectre variant 2 (e.g. IBRS + or enhanced IBRS on x86), retpoline is automatically disabled at run time. + + Systems which support enhanced IBRS (eIBRS) enable IBRS protection once at + boot, by setting the IBRS bit, and they're automatically protected against + Spectre v2 variant attacks, including cross-thread branch target injections + on SMT systems (STIBP). In other words, eIBRS enables STIBP too. + + Legacy IBRS systems clear the IBRS bit on exit to userspace and + therefore explicitly enable STIBP for that The retpoline mitigation is turned on by default on vulnerable CPUs. It can be forced on or off by the administrator @@ -504,9 +512,12 @@ For Spectre variant 2 mitigation, individual user programs can be compiled with return trampolines for indirect branches. This protects them from consuming poisoned entries in the branch - target buffer left by malicious software. Alternatively, the - programs can disable their indirect branch speculation via prctl() - (See :ref:`Documentation/userspace-api/spec_ctrl.rst `). + target buffer left by malicious software. + + On legacy IBRS systems, at return to userspace, implicit STIBP is disabled + because the kernel clears the IBRS bit. In this case, the userspace programs + can disable indirect branch speculation via prctl() (See + :ref:`Documentation/userspace-api/spec_ctrl.rst `). On x86, this will turn on STIBP to guard against attacks from the sibling thread when the user program is running, and use IBPB to flush the branch target buffer when switching to/from the program. --- linux-gcp-6.2.0.orig/Documentation/admin-guide/kdump/gdbmacros.txt +++ linux-gcp-6.2.0/Documentation/admin-guide/kdump/gdbmacros.txt @@ -312,10 +312,10 @@ set var $prev_flags = $info->flags end - set var $id = ($id + 1) & $id_mask if ($id == $end_id) loop_break end + set var $id = ($id + 1) & $id_mask end end document dmesg --- linux-gcp-6.2.0.orig/Documentation/admin-guide/kernel-parameters.txt +++ linux-gcp-6.2.0/Documentation/admin-guide/kernel-parameters.txt @@ -808,6 +808,10 @@ If the dependencies are under your control, you can turn on cpu0_hotplug. + cpufreq_driver= [X86] Allow only the named cpu frequency scaling driver + to register. Example: cpufreq_driver=powernow-k8 + Format: { none | STRING } + cpuidle.off=1 [CPU_IDLE] disable the cpuidle sub-system @@ -4178,6 +4182,12 @@ nomsi [MSI] If the PCI_MSI kernel config parameter is enabled, this kernel boot option can be used to disable the use of MSI interrupts system-wide. + clearmsi [X86] Clears MSI/MSI-X enable bits early in boot + time in order to avoid issues like adapters + screaming irqs and preventing boot progress. + Also, it enforces the PCI Local Bus spec + rule that those bits should be 0 in system reset + events (useful for kexec/kdump cases). noioapicquirk [APIC] Disable all boot interrupt quirks. Safety option to keep boot IRQs enabled. This should never be necessary. --- linux-gcp-6.2.0.orig/Documentation/bpf/instruction-set.rst +++ linux-gcp-6.2.0/Documentation/bpf/instruction-set.rst @@ -99,19 +99,26 @@ BPF_ADD 0x00 dst += src BPF_SUB 0x10 dst -= src BPF_MUL 0x20 dst \*= src -BPF_DIV 0x30 dst /= src +BPF_DIV 0x30 dst = (src != 0) ? (dst / src) : 0 BPF_OR 0x40 dst \|= src BPF_AND 0x50 dst &= src BPF_LSH 0x60 dst <<= src BPF_RSH 0x70 dst >>= src BPF_NEG 0x80 dst = ~src -BPF_MOD 0x90 dst %= src +BPF_MOD 0x90 dst = (src != 0) ? (dst % src) : dst BPF_XOR 0xa0 dst ^= src BPF_MOV 0xb0 dst = src BPF_ARSH 0xc0 sign extending shift right BPF_END 0xd0 byte swap operations (see `Byte swap instructions`_ below) ======== ===== ========================================================== +Underflow and overflow are allowed during arithmetic operations, meaning +the 64-bit or 32-bit value will wrap. If eBPF program execution would +result in division by zero, the destination register is instead set to zero. +If execution would result in modulo by zero, for ``BPF_ALU64`` the value of +the destination register is unchanged whereas for ``BPF_ALU`` the upper +32 bits of the destination register are zeroed. + ``BPF_ADD | BPF_X | BPF_ALU`` means:: dst_reg = (u32) dst_reg + (u32) src_reg; @@ -128,6 +135,11 @@ dst_reg = dst_reg ^ imm32 +Also note that the division and modulo operations are unsigned. Thus, for +``BPF_ALU``, 'imm' is first interpreted as an unsigned 32-bit value, whereas +for ``BPF_ALU64``, 'imm' is first sign extended to 64 bits and the result +interpreted as an unsigned 64-bit value. There are no instructions for +signed division or modulo. Byte swap instructions ~~~~~~~~~~~~~~~~~~~~~~ --- linux-gcp-6.2.0.orig/Documentation/cgroups/namespace.txt +++ linux-gcp-6.2.0/Documentation/cgroups/namespace.txt @@ -0,0 +1,142 @@ + CGroup Namespaces + +CGroup Namespace provides a mechanism to virtualize the view of the +/proc//cgroup file. The CLONE_NEWCGROUP clone-flag can be used with +clone() and unshare() syscalls to create a new cgroup namespace. +The process running inside the cgroup namespace will have its /proc//cgroup +output restricted to cgroupns-root. cgroupns-root is the cgroup of the process +at the time of creation of the cgroup namespace. + +Prior to CGroup Namespace, the /proc//cgroup file used to show complete +path of the cgroup of a process. In a container setup (where a set of cgroups +and namespaces are intended to isolate processes), the /proc//cgroup file +may leak potential system level information to the isolated processes. + +For Example: + $ cat /proc/self/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/batchjobs/container_id1 + +The path '/batchjobs/container_id1' can generally be considered as system-data +and its desirable to not expose it to the isolated process. + +CGroup Namespaces can be used to restrict visibility of this path. +For Example: + # Before creating cgroup namespace + $ ls -l /proc/self/ns/cgroup + lrwxrwxrwx 1 root root 0 2014-07-15 10:37 /proc/self/ns/cgroup -> cgroup:[4026531835] + $ cat /proc/self/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/batchjobs/container_id1 + + # unshare(CLONE_NEWCGROUP) and exec /bin/bash + $ ~/unshare -c + [ns]$ ls -l /proc/self/ns/cgroup + lrwxrwxrwx 1 root root 0 2014-07-15 10:35 /proc/self/ns/cgroup -> cgroup:[4026532183] + # From within new cgroupns, process sees that its in the root cgroup + [ns]$ cat /proc/self/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/ + + # From global cgroupns: + $ cat /proc//cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/batchjobs/container_id1 + + # Unshare cgroupns along with userns and mountns + # Following calls unshare(CLONE_NEWCGROUP|CLONE_NEWUSER|CLONE_NEWNS), then + # sets up uid/gid map and execs /bin/bash + $ ~/unshare -c -u -m + # Originally, we were in /batchjobs/container_id1 cgroup. Mount our own cgroup + # hierarchy. + [ns]$ mount -t cgroup cgroup /tmp/cgroup + [ns]$ ls -l /tmp/cgroup + total 0 + -r--r--r-- 1 root root 0 2014-10-13 09:32 cgroup.controllers + -r--r--r-- 1 root root 0 2014-10-13 09:32 cgroup.populated + -rw-r--r-- 1 root root 0 2014-10-13 09:25 cgroup.procs + -rw-r--r-- 1 root root 0 2014-10-13 09:32 cgroup.subtree_control + +The cgroupns-root (/batchjobs/container_id1 in above example) becomes the +filesystem root for the namespace specific cgroupfs mount. + +The virtualization of /proc/self/cgroup file combined with restricting +the view of cgroup hierarchy by namespace-private cgroupfs mount +should provide a completely isolated cgroup view inside the container. + +In its current form, the cgroup namespaces patcheset provides following +behavior: + +(1) The 'cgroupns-root' for a cgroup namespace is the cgroup in which + the process calling unshare is running. + For ex. if a process in /batchjobs/container_id1 cgroup calls unshare, + cgroup /batchjobs/container_id1 becomes the cgroupns-root. + For the init_cgroup_ns, this is the real root ('/') cgroup + (identified in code as cgrp_dfl_root.cgrp). + +(2) The cgroupns-root cgroup does not change even if the namespace + creator process later moves to a different cgroup. + $ ~/unshare -c # unshare cgroupns in some cgroup + [ns]$ cat /proc/self/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/ + [ns]$ mkdir sub_cgrp_1 + [ns]$ echo 0 > sub_cgrp_1/cgroup.procs + [ns]$ cat /proc/self/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/sub_cgrp_1 + +(3) Each process gets its CGROUPNS specific view of /proc//cgroup +(a) Processes running inside the cgroup namespace will be able to see + cgroup paths (in /proc/self/cgroup) only inside their root cgroup + [ns]$ sleep 100000 & # From within unshared cgroupns + [1] 7353 + [ns]$ echo 7353 > sub_cgrp_1/cgroup.procs + [ns]$ cat /proc/7353/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/sub_cgrp_1 + +(b) From global cgroupns, the real cgroup path will be visible: + $ cat /proc/7353/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/batchjobs/container_id1/sub_cgrp_1 + +(c) From a sibling cgroupns (cgroupns root-ed at a different cgroup), cgroup + path relative to its own cgroupns-root will be shown: + # ns2's cgroupns-root is at '/batchjobs/container_id2' + [ns2]$ cat /proc/7353/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/../container_id2/sub_cgrp_1 + + Note that the relative path always starts with '/' to indicate that its + relative to the cgroupns-root of the caller. + +(4) Processes inside a cgroupns can move in-and-out of the cgroupns-root + (if they have proper access to external cgroups). + # From inside cgroupns (with cgroupns-root at /batchjobs/container_id1), and + # assuming that the global hierarchy is still accessible inside cgroupns: + $ cat /proc/7353/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/sub_cgrp_1 + $ echo 7353 > batchjobs/container_id2/cgroup.procs + $ cat /proc/7353/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/../container_id2 + + Note that this kind of setup is not encouraged. A task inside cgroupns + should only be exposed to its own cgroupns hierarchy. Otherwise it makes + the virtualization of /proc//cgroup less useful. + +(5) Setns to another cgroup namespace is allowed when: + (a) the process has CAP_SYS_ADMIN in its current userns + (b) the process has CAP_SYS_ADMIN in the target cgroupns' userns + No implicit cgroup changes happen with attaching to another cgroupns. It + is expected that the somone moves the attaching process under the target + cgroupns-root. + +(6) When some thread from a multi-threaded process unshares its + cgroup-namespace, the new cgroupns gets applied to the entire process (all + the threads). For the unified-hierarchy this is expected as it only allows + process-level containerization. For the legacy hierarchies this may be + unexpected. So all the threads in the process will have the same cgroup. + +(7) The cgroup namespace is alive as long as there is atleast 1 + process inside it. When the last process exits, the cgroup + namespace is destroyed. The cgroupns-root and the actual cgroups + remain though. + +(8) Namespace specific cgroup hierarchy can be mounted by a process running + inside cgroupns: + $ mount -t cgroup -o __DEVEL__sane_behavior cgroup $MOUNT_POINT + + This will mount the unified cgroup hierarchy with cgroupns-root as the + filesystem root. The process needs CAP_SYS_ADMIN in its userns and mntns. --- linux-gcp-6.2.0.orig/Documentation/dev-tools/gdb-kernel-debugging.rst +++ linux-gcp-6.2.0/Documentation/dev-tools/gdb-kernel-debugging.rst @@ -39,6 +39,10 @@ this mode. In this case, you should build the kernel with CONFIG_RANDOMIZE_BASE disabled if the architecture supports KASLR. +- Build the gdb scripts (required on kernels v5.1 and above):: + + make scripts_gdb + - Enable the gdb stub of QEMU/KVM, either - at VM startup time by appending "-s" to the QEMU command line --- linux-gcp-6.2.0.orig/Documentation/devicetree/bindings/display/mediatek/mediatek,ccorr.yaml +++ linux-gcp-6.2.0/Documentation/devicetree/bindings/display/mediatek/mediatek,ccorr.yaml @@ -32,7 +32,7 @@ - items: - enum: - mediatek,mt8186-disp-ccorr - - const: mediatek,mt8183-disp-ccorr + - const: mediatek,mt8192-disp-ccorr reg: maxItems: 1 --- linux-gcp-6.2.0.orig/Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml +++ linux-gcp-6.2.0/Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml @@ -76,6 +76,13 @@ If "broken-flash-reset" is present then having this property does not make any difference. + spi-cpol: true + spi-cpha: true + +dependencies: + spi-cpol: [ spi-cpha ] + spi-cpha: [ spi-cpol ] + unevaluatedProperties: false examples: --- linux-gcp-6.2.0.orig/Documentation/devicetree/bindings/serial/renesas,scif.yaml +++ linux-gcp-6.2.0/Documentation/devicetree/bindings/serial/renesas,scif.yaml @@ -92,7 +92,7 @@ - description: Error interrupt - description: Receive buffer full interrupt - description: Transmit buffer empty interrupt - - description: Transmit End interrupt + - description: Break interrupt - items: - description: Error interrupt - description: Receive buffer full interrupt @@ -107,7 +107,7 @@ - const: eri - const: rxi - const: txi - - const: tei + - const: bri - items: - const: eri - const: rxi --- linux-gcp-6.2.0.orig/Documentation/devicetree/bindings/sound/amlogic,gx-sound-card.yaml +++ linux-gcp-6.2.0/Documentation/devicetree/bindings/sound/amlogic,gx-sound-card.yaml @@ -62,7 +62,7 @@ description: phandle of the CPU DAI patternProperties: - "^codec-[0-9]+$": + "^codec(-[0-9]+)?$": type: object additionalProperties: false description: |- --- linux-gcp-6.2.0.orig/Documentation/devicetree/bindings/usb/genesys,gl850g.yaml +++ linux-gcp-6.2.0/Documentation/devicetree/bindings/usb/genesys,gl850g.yaml @@ -16,6 +16,7 @@ compatible: enum: - usb5e3,608 + - usb5e3,610 reg: true --- linux-gcp-6.2.0.orig/Documentation/filesystems/vfs.rst +++ linux-gcp-6.2.0/Documentation/filesystems/vfs.rst @@ -1222,7 +1222,7 @@ return -ECHILD and it will be called again in ref-walk mode. -``_weak_revalidate`` +``d_weak_revalidate`` called when the VFS needs to revalidate a "jumped" dentry. This is called when a path-walk ends at dentry that was not acquired by doing a lookup in the parent directory. This includes "/", --- linux-gcp-6.2.0.orig/Documentation/hwmon/ftsteutates.rst +++ linux-gcp-6.2.0/Documentation/hwmon/ftsteutates.rst @@ -22,6 +22,10 @@ 8 fans. It also contains an integrated watchdog which is currently implemented in this driver. +The 4 voltages require a board-specific multiplier, since the BMC can +only measure voltages up to 3.3V and thus relies on voltage dividers. +Consult your motherboard manual for details. + To clear a temperature or fan alarm, execute the following command with the correct path to the alarm file:: --- linux-gcp-6.2.0.orig/Documentation/mm/zsmalloc.rst +++ linux-gcp-6.2.0/Documentation/mm/zsmalloc.rst @@ -68,6 +68,8 @@ the number of pages allocated for the class pages_per_zspage the number of 0-order pages to make a zspage +freeable + the approximate number of pages class compaction can free We assign a zspage to ZS_ALMOST_EMPTY fullness group when n <= N / f, where --- linux-gcp-6.2.0.orig/Documentation/networking/devlink/index.rst +++ linux-gcp-6.2.0/Documentation/networking/devlink/index.rst @@ -66,3 +66,4 @@ prestera iosm octeontx2 + t7xx --- linux-gcp-6.2.0.orig/Documentation/networking/devlink/t7xx.rst +++ linux-gcp-6.2.0/Documentation/networking/devlink/t7xx.rst @@ -0,0 +1,161 @@ +.. SPDX-License-Identifier: GPL-2.0 + +==================== +t7xx devlink support +==================== + +This document describes the devlink features implemented by the ``t7xx`` +device driver. + +Parameters +========== +The ``t7xx_driver`` driver implements the following driver-specific parameters. + +.. list-table:: Driver-specific parameters implemented + :widths: 5 5 5 85 + + * - Name + - Type + - Mode + - Description + * - ``fastboot`` + - boolean + - driverinit + - Set this param to enter fastboot mode. + +Flash Update +============ + +The ``t7xx`` driver implements the flash update using the ``devlink-flash`` +interface. + +The driver uses DEVLINK_SUPPORT_FLASH_UPDATE_COMPONENT to identify the type of +firmware image that need to be programmed upon the request by user space application. + +The supported list of firmware image types is described below. + +.. list-table:: Firmware Image types + :widths: 15 85 + + * - Name + - Description + * - ``preloader`` + - The first-stage bootloader image + * - ``loader_ext1`` + - Preloader extension image + * - ``tee1`` + - ARM trusted firmware and TEE (Trusted Execution Environment) image + * - ``lk`` + - The second-stage bootloader image + * - ``spmfw`` + - MediaTek in-house ASIC for power management image + * - ``sspm_1`` + - MediaTek in-house ASIC for power management under secure world image + * - ``mcupm_1`` + - MediaTek in-house ASIC for cpu power management image + * - ``dpm_1`` + - MediaTek in-house ASIC for dram power management image + * - ``boot`` + - The kernel and dtb image + * - ``rootfs`` + - Root filesystem image + * - ``md1img`` + - Modem image + * - ``md1dsp`` + - Modem DSP image + * - ``mcf1`` + - Modem OTA image (Modem Configuration Framework) for operators + * - ``mcf2`` + - Modem OTA image (Modem Configuration Framework) for OEM vendors + * - ``mcf3`` + - Modem OTA image (other usage) for OEM configurations + +``t7xx`` driver uses fastboot protocol for fw flashing. In the fw flashing +procedure, fastboot command & response are exchanged between driver and wwan +device. + +The wwan device is put into fastboot mode via devlink reload command, by +passing "driver_reinit" action. + +$ devlink dev reload pci/0000:$bdf action driver_reinit + +Upon completion of fw flashing or coredump collection the wwan device is +reset to normal mode using devlink reload command, by passing "fw_activate" +action. + +$ devlink dev reload pci/0000:$bdf action fw_activate + +Flash Commands: +=============== + +$ devlink dev flash pci/0000:$bdf file preloader_k6880v1_mdot2_datacard.bin component "preloader" + +$ devlink dev flash pci/0000:$bdf file loader_ext-verified.img component "loader_ext1" + +$ devlink dev flash pci/0000:$bdf file tee-verified.img component "tee1" + +$ devlink dev flash pci/0000:$bdf file lk-verified.img component "lk" + +$ devlink dev flash pci/0000:$bdf file spmfw-verified.img component "spmfw" + +$ devlink dev flash pci/0000:$bdf file sspm-verified.img component "sspm_1" + +$ devlink dev flash pci/0000:$bdf file mcupm-verified.img component "mcupm_1" + +$ devlink dev flash pci/0000:$bdf file dpm-verified.img component "dpm_1" + +$ devlink dev flash pci/0000:$bdf file boot-verified.img component "boot" + +$ devlink dev flash pci/0000:$bdf file root.squashfs component "rootfs" + +$ devlink dev flash pci/0000:$bdf file modem-verified.img component "md1img" + +$ devlink dev flash pci/0000:$bdf file dsp-verified.bin component "md1dsp" + +$ devlink dev flash pci/0000:$bdf file OP_OTA.img component "mcf1" + +$ devlink dev flash pci/0000:$bdf file OEM_OTA.img component "mcf2" + +$ devlink dev flash pci/0000:$bdf file DEV_OTA.img component "mcf3" + +Note: Component selects the partition type to be programmed. + +Regions +======= + +The ``t7xx`` driver supports core dump collection when device encounters +an exception. When wwan device encounters an exception, a snapshot of device +internal data will be taken by the driver using fastboot commands. + +Following regions are accessed for device internal data. + +.. list-table:: Regions implemented + :widths: 15 85 + + * - Name + - Description + * - ``mr_dump`` + - The detailed modem component logs are captured in this region + * - ``lk_dump`` + - This region dumps the current snapshot of lk + + +Region commands +=============== + +$ devlink region show + + +$ devlink region new mr_dump + +$ devlink region read mr_dump snapshot 0 address 0 length $len + +$ devlink region del mr_dump snapshot 0 + +$ devlink region new lk_dump + +$ devlink region read lk_dump snapshot 0 address 0 length $len + +$ devlink region del lk_dump snapshot 0 + +Note: $len is actual len to be dumped. --- linux-gcp-6.2.0.orig/Documentation/networking/ip-sysctl.rst +++ linux-gcp-6.2.0/Documentation/networking/ip-sysctl.rst @@ -337,6 +337,8 @@ Reserve max(window/2^tcp_app_win, mss) of window for application buffer. Value 0 is special, it means that nothing is reserved. + Possible values are [0, 31], inclusive. + Default: 31 tcp_autocorking - BOOLEAN --- linux-gcp-6.2.0.orig/Documentation/networking/smc-sysctl.rst +++ linux-gcp-6.2.0/Documentation/networking/smc-sysctl.rst @@ -34,28 +34,3 @@ - 1 - Use virtually contiguous buffers - 2 - Mixed use of the two types. Try physically contiguous buffers first. If not available, use virtually contiguous buffers then. - -smcr_testlink_time - INTEGER - How frequently SMC-R link sends out TEST_LINK LLC messages to confirm - viability, after the last activity of connections on it. Value 0 means - disabling TEST_LINK. - - Default: 30 seconds. - -wmem - INTEGER - Initial size of send buffer used by SMC sockets. - The default value inherits from net.ipv4.tcp_wmem[1]. - - The minimum value is 16KiB and there is no hard limit for max value, but - only allowed 512KiB for SMC-R and 1MiB for SMC-D. - - Default: 16K - -rmem - INTEGER - Initial size of receive buffer (RMB) used by SMC sockets. - The default value inherits from net.ipv4.tcp_rmem[1]. - - The minimum value is 16KiB and there is no hard limit for max value, but - only allowed 512KiB for SMC-R and 1MiB for SMC-D. - - Default: 128K --- linux-gcp-6.2.0.orig/Documentation/sound/hd-audio/models.rst +++ linux-gcp-6.2.0/Documentation/sound/hd-audio/models.rst @@ -704,7 +704,7 @@ no-jd BIOS setup but without jack-detection intel - Intel DG45* mobos + Intel D*45* mobos dell-m6-amic Dell desktops/laptops with analog mics dell-m6-dmic --- linux-gcp-6.2.0.orig/Documentation/sphinx/cdomain.py +++ linux-gcp-6.2.0/Documentation/sphinx/cdomain.py @@ -37,12 +37,29 @@ import sphinx from sphinx import addnodes -from sphinx.domains.c import c_funcptr_sig_re, c_sig_re from sphinx.domains.c import CObject as Base_CObject from sphinx.domains.c import CDomain as Base_CDomain from itertools import chain import re +# fixes https://github.com/sphinx-doc/sphinx/commit/0f49e30c51b5cc5055cda5b4b294c2dd9d1df573#r38750737 + +# pylint: disable=invalid-name +c_sig_re = re.compile( + r'''^([^(]*?) # return type + ([\w:.]+) \s* # thing name (colon allowed for C++) + (?: \((.*)\) )? # optionally arguments + (\s+const)? $ # const specifier + ''', re.VERBOSE) + +c_funcptr_sig_re = re.compile( + r'''^([^(]+?) # return type + (\( [^()]+ \)) \s* # name in parentheses + \( (.*) \) # arguments + (\s+const)? $ # const specifier + ''', re.VERBOSE) +# pylint: enable=invalid-name + __version__ = '1.1' # Get Sphinx version --- linux-gcp-6.2.0.orig/Documentation/virt/kvm/api.rst +++ linux-gcp-6.2.0/Documentation/virt/kvm/api.rst @@ -4457,6 +4457,18 @@ :Parameters: struct kvm_s390_cmma_log (in, out) :Returns: 0 on success, a negative value on error +Errors: + + ====== ============================================================= + ENOMEM not enough memory can be allocated to complete the task + ENXIO if CMMA is not enabled + EINVAL if KVM_S390_CMMA_PEEK is not set but migration mode was not enabled + EINVAL if KVM_S390_CMMA_PEEK is not set but dirty tracking has been + disabled (and thus migration mode was automatically disabled) + EFAULT if the userspace address is invalid or if no page table is + present for the addresses (e.g. when using hugepages). + ====== ============================================================= + This ioctl is used to get the values of the CMMA bits on the s390 architecture. It is meant to be used in two scenarios: @@ -4537,12 +4549,6 @@ values points to the userspace buffer where the result will be stored. -This ioctl can fail with -ENOMEM if not enough memory can be allocated to -complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if -KVM_S390_CMMA_PEEK is not set but migration mode was not enabled, with --EFAULT if the userspace address is invalid or if no page table is -present for the addresses (e.g. when using hugepages). - 4.108 KVM_S390_SET_CMMA_BITS ---------------------------- --- linux-gcp-6.2.0.orig/Documentation/virt/kvm/devices/vm.rst +++ linux-gcp-6.2.0/Documentation/virt/kvm/devices/vm.rst @@ -302,6 +302,10 @@ Setting this attribute when migration mode is already active will have no effects. +Dirty tracking must be enabled on all memslots, else -EINVAL is returned. When +dirty tracking is disabled on any memslot, migration mode is automatically +stopped. + :Parameters: none :Returns: -ENOMEM if there is not enough free memory to start migration mode; -EINVAL if the state of the VM is invalid (e.g. no memory defined); --- linux-gcp-6.2.0.orig/Kbuild +++ linux-gcp-6.2.0/Kbuild @@ -97,3 +97,4 @@ obj-$(CONFIG_NET) += net/ obj-y += virt/ obj-y += $(ARCH_DRIVERS) +obj-y += ubuntu/ --- linux-gcp-6.2.0.orig/Kconfig +++ linux-gcp-6.2.0/Kconfig @@ -19,6 +19,8 @@ source "drivers/Kconfig" +source "ubuntu/Kconfig" + source "fs/Kconfig" source "security/Kconfig" --- linux-gcp-6.2.0.orig/MAINTAINERS +++ linux-gcp-6.2.0/MAINTAINERS @@ -269,6 +269,18 @@ F: Documentation/devicetree/bindings/power/supply/*ab8500* F: drivers/power/supply/*ab8500* +AAEON DEVICE DRIVER WITH WMI INTERFACE +M: Edward Lin +M: Kunyang Fan +M: Frank Hsieh +M: Jacob Wu +S: Supported +F: drivers/gpio/gpio-aaeon.c +F: drivers/hwmon/hwmon-aaeon.c +F: drivers/leds/leds-aaeon.c +F: drivers/mfd/mfd-aaeon.c +F: drivers/watchdog/wdt_aaeon.c + ABI/API L: linux-api@vger.kernel.org F: include/linux/syscalls.h @@ -3515,7 +3527,7 @@ AUDIT SUBSYSTEM M: Paul Moore M: Eric Paris -L: linux-audit@redhat.com (moderated for non-subscribers) +L: audit@vger.kernel.org S: Supported W: https://github.com/linux-audit T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git --- linux-gcp-6.2.0.orig/Makefile +++ linux-gcp-6.2.0/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 6 PATCHLEVEL = 2 -SUBLEVEL = 0 +SUBLEVEL = 12 EXTRAVERSION = NAME = Hurr durr I'ma ninja sloth @@ -569,6 +569,9 @@ -I$(objtree)/include \ $(USERINCLUDE) +# UBUNTU: Include our third party driver stuff too +LINUXINCLUDE += -I$(srctree)/ubuntu/include + KBUILD_AFLAGS := -D__ASSEMBLY__ -fno-PIE KBUILD_CFLAGS := -Wall -Wundef -Werror=strict-prototypes -Wno-trigraphs \ -fno-strict-aliasing -fno-common -fshort-wchar -fno-PIE \ @@ -1377,8 +1380,9 @@ quiet_cmd_headers_install = INSTALL $(INSTALL_HDR_PATH)/include cmd_headers_install = \ mkdir -p $(INSTALL_HDR_PATH); \ - rsync -mrl --include='*/' --include='*\.h' --exclude='*' \ - usr/include $(INSTALL_HDR_PATH) + find usr/include -type f -name '*.h' -print0 | \ + tar -czf - --null --no-recursion --no-wildcards-match-slash -T- | \ + tar -xzf - --strip-components=1 -C $(INSTALL_HDR_PATH) PHONY += headers_install headers_install: headers @@ -1393,6 +1397,7 @@ $(if $(filter um, $(SRCARCH)), $(error Headers not exportable for UML)) $(Q)$(MAKE) $(hdr-inst)=include/uapi $(Q)$(MAKE) $(hdr-inst)=arch/$(SRCARCH)/include/uapi + $(Q)$(MAKE) $(hdr-inst)=ubuntu/include dst=include oldheaders= ifdef CONFIG_HEADERS_INSTALL prepare: headers @@ -1607,7 +1612,7 @@ # Directories & files removed with 'make mrproper' MRPROPER_FILES += include/config include/generated \ arch/$(SRCARCH)/include/generated .objdiff \ - debian snap tar-install \ + snap tar-install \ .config .config.old .version \ Module.symvers \ certs/signing_key.pem \ --- linux-gcp-6.2.0.orig/Ubuntu.md +++ linux-gcp-6.2.0/Ubuntu.md @@ -0,0 +1,8 @@ +Name: linux-gcp +Version: 6.2.0 +Series: 23.04 (lunar) +Description: + This is the source code for the Ubuntu linux kernel for the 23.04 series. This + source tree is used to produce the flavours: gcp. + This kernel is configured to support the widest range of desktop, laptop and + server configurations. --- linux-gcp-6.2.0.orig/arch/alpha/boot/tools/objstrip.c +++ linux-gcp-6.2.0/arch/alpha/boot/tools/objstrip.c @@ -148,7 +148,7 @@ #ifdef __ELF__ elf = (struct elfhdr *) buf; - if (elf->e_ident[0] == 0x7f && str_has_prefix((char *)elf->e_ident + 1, "ELF")) { + if (memcmp(&elf->e_ident[EI_MAG0], ELFMAG, SELFMAG) == 0) { if (elf->e_type != ET_EXEC) { fprintf(stderr, "%s: %s is not an ELF executable\n", prog_name, inname); --- linux-gcp-6.2.0.orig/arch/alpha/kernel/module.c +++ linux-gcp-6.2.0/arch/alpha/kernel/module.c @@ -146,10 +146,8 @@ base = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr; symtab = (Elf64_Sym *)sechdrs[symindex].sh_addr; - /* The small sections were sorted to the end of the segment. - The following should definitely cover them. */ - gp = (u64)me->core_layout.base + me->core_layout.size - 0x8000; got = sechdrs[me->arch.gotsecindex].sh_addr; + gp = got + 0x8000; for (i = 0; i < n; i++) { unsigned long r_sym = ELF64_R_SYM (rela[i].r_info); --- linux-gcp-6.2.0.orig/arch/alpha/kernel/traps.c +++ linux-gcp-6.2.0/arch/alpha/kernel/traps.c @@ -233,7 +233,21 @@ { int signo, code; - if ((regs->ps & ~IPL_MAX) == 0) { + if (type == 3) { /* FEN fault */ + /* Irritating users can call PAL_clrfen to disable the + FPU for the process. The kernel will then trap in + do_switch_stack and undo_switch_stack when we try + to save and restore the FP registers. + + Given that GCC by default generates code that uses the + FP registers, PAL_clrfen is not useful except for DoS + attacks. So turn the bleeding FPU back on and be done + with it. */ + current_thread_info()->pcb.flags |= 1; + __reload_thread(¤t_thread_info()->pcb); + return; + } + if (!user_mode(regs)) { if (type == 1) { const unsigned int *data = (const unsigned int *) regs->pc; @@ -366,20 +380,6 @@ } break; - case 3: /* FEN fault */ - /* Irritating users can call PAL_clrfen to disable the - FPU for the process. The kernel will then trap in - do_switch_stack and undo_switch_stack when we try - to save and restore the FP registers. - - Given that GCC by default generates code that uses the - FP registers, PAL_clrfen is not useful except for DoS - attacks. So turn the bleeding FPU back on and be done - with it. */ - current_thread_info()->pcb.flags |= 1; - __reload_thread(¤t_thread_info()->pcb); - return; - case 5: /* illoc */ default: /* unexpected instruction-fault type */ ; --- linux-gcp-6.2.0.orig/arch/arm/Makefile +++ linux-gcp-6.2.0/arch/arm/Makefile @@ -59,6 +59,9 @@ # KBUILD_CFLAGS += $(call cc-option,-fno-ipa-sra) +# Need -msoft-float for gcc 11 for the below instruction set selection +KBUILD_CFLAGS += -msoft-float + # This selects which instruction set is used. arch-$(CONFIG_CPU_32v7M) :=-march=armv7-m arch-$(CONFIG_CPU_32v7) :=-march=armv7-a @@ -141,7 +144,7 @@ # Need -Uarm for gcc < 3.x KBUILD_CPPFLAGS +=$(cpp-y) -KBUILD_CFLAGS +=$(CFLAGS_ABI) $(CFLAGS_ISA) $(arch-y) $(tune-y) $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) -msoft-float -Uarm +KBUILD_CFLAGS +=$(CFLAGS_ABI) $(CFLAGS_ISA) $(arch-y) $(tune-y) $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) -Uarm KBUILD_AFLAGS +=$(CFLAGS_ABI) $(AFLAGS_ISA) -Wa,$(arch-y) $(tune-y) -include asm/unified.h -msoft-float CHECKFLAGS += -D__arm__ --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/aspeed-bmc-ibm-bonnell.dts +++ linux-gcp-6.2.0/arch/arm/boot/dts/aspeed-bmc-ibm-bonnell.dts @@ -124,7 +124,7 @@ }; }; - iio-hwmon-battery { + iio-hwmon { compatible = "iio-hwmon"; io-channels = <&adc1 7>; }; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts +++ linux-gcp-6.2.0/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts @@ -244,7 +244,7 @@ }; }; - iio-hwmon-battery { + iio-hwmon { compatible = "iio-hwmon"; io-channels = <&adc1 7>; }; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/aspeed-bmc-ibm-rainier.dts +++ linux-gcp-6.2.0/arch/arm/boot/dts/aspeed-bmc-ibm-rainier.dts @@ -220,7 +220,7 @@ }; }; - iio-hwmon-battery { + iio-hwmon { compatible = "iio-hwmon"; io-channels = <&adc1 7>; }; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/e60k02.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/e60k02.dtsi @@ -311,6 +311,7 @@ &usbotg1 { pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_usbotg1>; disable-over-current; srp-disable; hnp-disable; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/e70k02.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/e70k02.dtsi @@ -312,6 +312,7 @@ &usbotg1 { pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_usbotg1>; disable-over-current; srp-disable; hnp-disable; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/exynos3250-rinato.dts +++ linux-gcp-6.2.0/arch/arm/boot/dts/exynos3250-rinato.dts @@ -250,7 +250,7 @@ i80-if-timings { cs-setup = <0>; wr-setup = <0>; - wr-act = <1>; + wr-active = <1>; wr-hold = <0>; }; }; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/exynos4-cpu-thermal.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/exynos4-cpu-thermal.dtsi @@ -10,7 +10,7 @@ / { thermal-zones { cpu_thermal: cpu-thermal { - thermal-sensors = <&tmu 0>; + thermal-sensors = <&tmu>; polling-delay-passive = <0>; polling-delay = <0>; trips { --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/exynos4.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/exynos4.dtsi @@ -605,7 +605,7 @@ status = "disabled"; hdmi_i2c_phy: hdmiphy@38 { - compatible = "exynos4210-hdmiphy"; + compatible = "samsung,exynos4210-hdmiphy"; reg = <0x38>; }; }; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/exynos4210.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/exynos4210.dtsi @@ -393,7 +393,6 @@ &cpu_thermal { polling-delay-passive = <0>; polling-delay = <0>; - thermal-sensors = <&tmu 0>; }; &gic { --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/exynos5250.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/exynos5250.dtsi @@ -1107,7 +1107,7 @@ &cpu_thermal { polling-delay-passive = <0>; polling-delay = <0>; - thermal-sensors = <&tmu 0>; + thermal-sensors = <&tmu>; cooling-maps { map0 { --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/exynos5410-odroidxu.dts +++ linux-gcp-6.2.0/arch/arm/boot/dts/exynos5410-odroidxu.dts @@ -120,7 +120,6 @@ }; &cpu0_thermal { - thermal-sensors = <&tmu_cpu0 0>; polling-delay-passive = <0>; polling-delay = <0>; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/exynos5420.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/exynos5420.dtsi @@ -592,7 +592,7 @@ }; mipi_phy: mipi-video-phy { - compatible = "samsung,s5pv210-mipi-video-phy"; + compatible = "samsung,exynos5420-mipi-video-phy"; syscon = <&pmu_system_controller>; #phy-cells = <1>; }; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/exynos5422-odroidhc1.dts +++ linux-gcp-6.2.0/arch/arm/boot/dts/exynos5422-odroidhc1.dts @@ -31,7 +31,7 @@ thermal-zones { cpu0_thermal: cpu0-thermal { - thermal-sensors = <&tmu_cpu0 0>; + thermal-sensors = <&tmu_cpu0>; trips { cpu0_alert0: cpu-alert-0 { temperature = <70000>; /* millicelsius */ @@ -86,7 +86,7 @@ }; }; cpu1_thermal: cpu1-thermal { - thermal-sensors = <&tmu_cpu1 0>; + thermal-sensors = <&tmu_cpu1>; trips { cpu1_alert0: cpu-alert-0 { temperature = <70000>; @@ -130,7 +130,7 @@ }; }; cpu2_thermal: cpu2-thermal { - thermal-sensors = <&tmu_cpu2 0>; + thermal-sensors = <&tmu_cpu2>; trips { cpu2_alert0: cpu-alert-0 { temperature = <70000>; @@ -174,7 +174,7 @@ }; }; cpu3_thermal: cpu3-thermal { - thermal-sensors = <&tmu_cpu3 0>; + thermal-sensors = <&tmu_cpu3>; trips { cpu3_alert0: cpu-alert-0 { temperature = <70000>; @@ -218,7 +218,7 @@ }; }; gpu_thermal: gpu-thermal { - thermal-sensors = <&tmu_gpu 0>; + thermal-sensors = <&tmu_gpu>; trips { gpu_alert0: gpu-alert-0 { temperature = <70000>; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/exynos5422-odroidxu3-common.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/exynos5422-odroidxu3-common.dtsi @@ -50,7 +50,7 @@ thermal-zones { cpu0_thermal: cpu0-thermal { - thermal-sensors = <&tmu_cpu0 0>; + thermal-sensors = <&tmu_cpu0>; polling-delay-passive = <250>; polling-delay = <0>; trips { @@ -139,7 +139,7 @@ }; }; cpu1_thermal: cpu1-thermal { - thermal-sensors = <&tmu_cpu1 0>; + thermal-sensors = <&tmu_cpu1>; polling-delay-passive = <250>; polling-delay = <0>; trips { @@ -212,7 +212,7 @@ }; }; cpu2_thermal: cpu2-thermal { - thermal-sensors = <&tmu_cpu2 0>; + thermal-sensors = <&tmu_cpu2>; polling-delay-passive = <250>; polling-delay = <0>; trips { @@ -285,7 +285,7 @@ }; }; cpu3_thermal: cpu3-thermal { - thermal-sensors = <&tmu_cpu3 0>; + thermal-sensors = <&tmu_cpu3>; polling-delay-passive = <250>; polling-delay = <0>; trips { @@ -358,7 +358,7 @@ }; }; gpu_thermal: gpu-thermal { - thermal-sensors = <&tmu_gpu 0>; + thermal-sensors = <&tmu_gpu>; polling-delay-passive = <250>; polling-delay = <0>; trips { --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/imx6sl-tolino-shine2hd.dts +++ linux-gcp-6.2.0/arch/arm/boot/dts/imx6sl-tolino-shine2hd.dts @@ -625,6 +625,7 @@ &usbotg1 { pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_usbotg1>; disable-over-current; srp-disable; hnp-disable; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/imx7s.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/imx7s.dtsi @@ -513,7 +513,7 @@ mux: mux-controller { compatible = "mmio-mux"; - #mux-control-cells = <0>; + #mux-control-cells = <1>; mux-reg-masks = <0x14 0x00000010>; }; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/qcom-apq8026-lg-lenok.dts +++ linux-gcp-6.2.0/arch/arm/boot/dts/qcom-apq8026-lg-lenok.dts @@ -27,6 +27,16 @@ }; reserved-memory { + sbl_region: sbl@2f00000 { + reg = <0x02f00000 0x100000>; + no-map; + }; + + external_image_region: external-image@3100000 { + reg = <0x03100000 0x200000>; + no-map; + }; + adsp_region: adsp@3300000 { reg = <0x03300000 0x1400000>; no-map; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/qcom-sdx55.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/qcom-sdx55.dtsi @@ -578,7 +578,7 @@ }; apps_smmu: iommu@15000000 { - compatible = "qcom,sdx55-smmu-500", "arm,mmu-500"; + compatible = "qcom,sdx55-smmu-500", "qcom,smmu-500", "arm,mmu-500"; reg = <0x15000000 0x20000>; #iommu-cells = <2>; #global-interrupts = <1>; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/qcom-sdx65.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/qcom-sdx65.dtsi @@ -455,7 +455,7 @@ }; apps_smmu: iommu@15000000 { - compatible = "qcom,sdx65-smmu-500", "arm,mmu-500"; + compatible = "qcom,sdx65-smmu-500", "qcom,smmu-500", "arm,mmu-500"; reg = <0x15000000 0x40000>; #iommu-cells = <2>; #global-interrupts = <1>; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/spear320-hmi.dts +++ linux-gcp-6.2.0/arch/arm/boot/dts/spear320-hmi.dts @@ -241,7 +241,7 @@ irq-trigger = <0x1>; stmpegpio: stmpe-gpio { - compatible = "stmpe,gpio"; + compatible = "st,stmpe-gpio"; reg = <0>; gpio-controller; #gpio-cells = <2>; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/stm32mp131.dtsi +++ linux-gcp-6.2.0/arch/arm/boot/dts/stm32mp131.dtsi @@ -527,6 +527,7 @@ part_number_otp: part_number_otp@4 { reg = <0x4 0x2>; + bits = <0 12>; }; ts_cal1: calib@5c { reg = <0x5c 0x2>; --- linux-gcp-6.2.0.orig/arch/arm/boot/dts/sun8i-h3-nanopi-duo2.dts +++ linux-gcp-6.2.0/arch/arm/boot/dts/sun8i-h3-nanopi-duo2.dts @@ -57,7 +57,7 @@ regulator-ramp-delay = <50>; /* 4ms */ enable-active-high; - enable-gpio = <&r_pio 0 8 GPIO_ACTIVE_HIGH>; /* PL8 */ + enable-gpios = <&r_pio 0 8 GPIO_ACTIVE_HIGH>; /* PL8 */ gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>; /* PL6 */ gpios-states = <0x1>; states = <1100000 0>, <1300000 1>; --- linux-gcp-6.2.0.orig/arch/arm/configs/bcm2835_defconfig +++ linux-gcp-6.2.0/arch/arm/configs/bcm2835_defconfig @@ -107,6 +107,7 @@ CONFIG_DRM=y CONFIG_DRM_V3D=y CONFIG_DRM_VC4=y +CONFIG_FB=y CONFIG_FB_SIMPLE=y CONFIG_FRAMEBUFFER_CONSOLE=y CONFIG_SOUND=y --- linux-gcp-6.2.0.orig/arch/arm/lib/uaccess_with_memcpy.c +++ linux-gcp-6.2.0/arch/arm/lib/uaccess_with_memcpy.c @@ -116,7 +116,7 @@ tocopy = n; ua_flags = uaccess_save_and_enable(); - memcpy((void *)to, from, tocopy); + __memcpy((void *)to, from, tocopy); uaccess_restore(ua_flags); to += tocopy; from += tocopy; @@ -178,7 +178,7 @@ tocopy = n; ua_flags = uaccess_save_and_enable(); - memset((void *)addr, 0, tocopy); + __memset((void *)addr, 0, tocopy); uaccess_restore(ua_flags); addr += tocopy; n -= tocopy; --- linux-gcp-6.2.0.orig/arch/arm/mach-imx/mmdc.c +++ linux-gcp-6.2.0/arch/arm/mach-imx/mmdc.c @@ -99,6 +99,7 @@ cpumask_t cpu; struct hrtimer hrtimer; unsigned int active_events; + int id; struct device *dev; struct perf_event *mmdc_events[MMDC_NUM_COUNTERS]; struct hlist_node node; @@ -433,8 +434,6 @@ static int mmdc_pmu_init(struct mmdc_pmu *pmu_mmdc, void __iomem *mmdc_base, struct device *dev) { - int mmdc_num; - *pmu_mmdc = (struct mmdc_pmu) { .pmu = (struct pmu) { .task_ctx_nr = perf_invalid_context, @@ -452,15 +451,16 @@ .active_events = 0, }; - mmdc_num = ida_simple_get(&mmdc_ida, 0, 0, GFP_KERNEL); + pmu_mmdc->id = ida_simple_get(&mmdc_ida, 0, 0, GFP_KERNEL); - return mmdc_num; + return pmu_mmdc->id; } static int imx_mmdc_remove(struct platform_device *pdev) { struct mmdc_pmu *pmu_mmdc = platform_get_drvdata(pdev); + ida_simple_remove(&mmdc_ida, pmu_mmdc->id); cpuhp_state_remove_instance_nocalls(cpuhp_mmdc_state, &pmu_mmdc->node); perf_pmu_unregister(&pmu_mmdc->pmu); iounmap(pmu_mmdc->mmdc_base); @@ -474,7 +474,6 @@ { struct mmdc_pmu *pmu_mmdc; char *name; - int mmdc_num; int ret; const struct of_device_id *of_id = of_match_device(imx_mmdc_dt_ids, &pdev->dev); @@ -497,14 +496,14 @@ cpuhp_mmdc_state = ret; } - mmdc_num = mmdc_pmu_init(pmu_mmdc, mmdc_base, &pdev->dev); - pmu_mmdc->mmdc_ipg_clk = mmdc_ipg_clk; - if (mmdc_num == 0) - name = "mmdc"; - else - name = devm_kasprintf(&pdev->dev, - GFP_KERNEL, "mmdc%d", mmdc_num); + ret = mmdc_pmu_init(pmu_mmdc, mmdc_base, &pdev->dev); + if (ret < 0) + goto pmu_free; + name = devm_kasprintf(&pdev->dev, + GFP_KERNEL, "mmdc%d", ret); + + pmu_mmdc->mmdc_ipg_clk = mmdc_ipg_clk; pmu_mmdc->devtype_data = (struct fsl_mmdc_devtype_data *)of_id->data; hrtimer_init(&pmu_mmdc->hrtimer, CLOCK_MONOTONIC, @@ -525,6 +524,7 @@ pmu_register_err: pr_warn("MMDC Perf PMU failed (%d), disabled\n", ret); + ida_simple_remove(&mmdc_ida, pmu_mmdc->id); cpuhp_state_remove_instance_nocalls(cpuhp_mmdc_state, &pmu_mmdc->node); hrtimer_cancel(&pmu_mmdc->hrtimer); pmu_free: --- linux-gcp-6.2.0.orig/arch/arm/mach-omap1/timer.c +++ linux-gcp-6.2.0/arch/arm/mach-omap1/timer.c @@ -158,7 +158,7 @@ kfree(pdata); err_free_pdev: - platform_device_unregister(pdev); + platform_device_put(pdev); return ret; } --- linux-gcp-6.2.0.orig/arch/arm/mach-omap2/omap4-common.c +++ linux-gcp-6.2.0/arch/arm/mach-omap2/omap4-common.c @@ -140,6 +140,7 @@ __func__); else sram_sync = (void __iomem *)gen_pool_alloc(sram_pool, PAGE_SIZE); + of_node_put(np); return 0; } --- linux-gcp-6.2.0.orig/arch/arm/mach-omap2/timer.c +++ linux-gcp-6.2.0/arch/arm/mach-omap2/timer.c @@ -76,6 +76,7 @@ } rate = clk_get_rate(sys_clk); + clk_put(sys_clk); if (soc_is_dra7xx()) { /* --- linux-gcp-6.2.0.orig/arch/arm/mach-s3c/s3c64xx.c +++ linux-gcp-6.2.0/arch/arm/mach-s3c/s3c64xx.c @@ -173,7 +173,8 @@ .tclk_mask = (1 << 7) | (1 << 6) | (1 << 5), }; -void __init s3c64xx_set_timer_source(unsigned int event, unsigned int source) +void __init s3c64xx_set_timer_source(enum s3c64xx_timer_mode event, + enum s3c64xx_timer_mode source) { s3c64xx_pwm_variant.output_mask = BIT(SAMSUNG_PWM_NUM) - 1; s3c64xx_pwm_variant.output_mask &= ~(BIT(event) | BIT(source)); --- linux-gcp-6.2.0.orig/arch/arm/mach-zynq/slcr.c +++ linux-gcp-6.2.0/arch/arm/mach-zynq/slcr.c @@ -213,6 +213,7 @@ zynq_slcr_regmap = syscon_regmap_lookup_by_compatible("xlnx,zynq-slcr"); if (IS_ERR(zynq_slcr_regmap)) { pr_err("%s: failed to find zynq-slcr\n", __func__); + of_node_put(np); return -ENODEV; } --- linux-gcp-6.2.0.orig/arch/arm64/Kconfig +++ linux-gcp-6.2.0/arch/arm64/Kconfig @@ -100,7 +100,6 @@ select ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT select ARCH_WANT_FRAME_POINTERS select ARCH_WANT_HUGE_PMD_SHARE if ARM64_4K_PAGES || (ARM64_16K_PAGES && !ARM64_VA_BITS_36) - select ARCH_WANT_HUGETLB_PAGE_OPTIMIZE_VMEMMAP select ARCH_WANT_LD_ORPHAN_WARN select ARCH_WANTS_NO_INSTR select ARCH_WANTS_THP_SWAP if ARM64_4K_PAGES @@ -1473,6 +1472,7 @@ config ARCH_FORCE_MAX_ORDER int default "14" if ARM64_64K_PAGES + default "13" if (ARCH_THUNDER && ARM64_4K_PAGES) default "12" if ARM64_16K_PAGES default "11" help --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-axg-jethome-jethub-j1xx.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-axg-jethome-jethub-j1xx.dtsi @@ -168,15 +168,15 @@ reg = <0x32 0x20>; }; - eth_mac: eth_mac@0 { + eth_mac: eth-mac@0 { reg = <0x0 0x6>; }; - bt_mac: bt_mac@6 { + bt_mac: bt-mac@6 { reg = <0x6 0x6>; }; - wifi_mac: wifi_mac@c { + wifi_mac: wifi-mac@c { reg = <0xc 0x6>; }; @@ -217,7 +217,7 @@ pinctrl-names = "default"; /* RTC */ - pcf8563: pcf8563@51 { + pcf8563: rtc@51 { compatible = "nxp,pcf8563"; reg = <0x51>; status = "okay"; @@ -303,7 +303,7 @@ &usb { status = "okay"; - phy-supply = <&usb_pwr>; + vbus-supply = <&usb_pwr>; }; &spicc1 { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-axg.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-axg.dtsi @@ -153,7 +153,7 @@ scpi_clocks: clocks { compatible = "arm,scpi-clocks"; - scpi_dvfs: clock-controller { + scpi_dvfs: clocks-0 { compatible = "arm,scpi-dvfs-clocks"; #clock-cells = <1>; clock-indices = <0>; @@ -162,7 +162,7 @@ }; scpi_sensors: sensors { - compatible = "amlogic,meson-gxbb-scpi-sensors"; + compatible = "amlogic,meson-gxbb-scpi-sensors", "arm,scpi-sensors"; #thermal-sensor-cells = <1>; }; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi @@ -1694,7 +1694,7 @@ #address-cells = <1>; #size-cells = <0>; - internal_ephy: ethernet_phy@8 { + internal_ephy: ethernet-phy@8 { compatible = "ethernet-phy-id0180.3301", "ethernet-phy-ieee802.3-c22"; interrupts = ; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-g12a-radxa-zero.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-g12a-radxa-zero.dts @@ -401,5 +401,4 @@ &usb { status = "okay"; - dr_mode = "host"; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-g12a.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-g12a.dtsi @@ -58,26 +58,6 @@ compatible = "operating-points-v2"; opp-shared; - opp-100000000 { - opp-hz = /bits/ 64 <100000000>; - opp-microvolt = <731000>; - }; - - opp-250000000 { - opp-hz = /bits/ 64 <250000000>; - opp-microvolt = <731000>; - }; - - opp-500000000 { - opp-hz = /bits/ 64 <500000000>; - opp-microvolt = <731000>; - }; - - opp-667000000 { - opp-hz = /bits/ 64 <666666666>; - opp-microvolt = <731000>; - }; - opp-1000000000 { opp-hz = /bits/ 64 <1000000000>; opp-microvolt = <731000>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-g12b-odroid-go-ultra.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-g12b-odroid-go-ultra.dts @@ -381,6 +381,7 @@ reg = <0x1c>; interrupt-parent = <&gpio_intc>; interrupts = <7 IRQ_TYPE_LEVEL_LOW>; /* GPIOAO_7 */ + #clock-cells = <1>; vcc1-supply = <&vdd_sys>; vcc2-supply = <&vdd_sys>; @@ -391,7 +392,6 @@ vcc8-supply = <&vcc_2v3>; vcc9-supply = <&vddao_3v3>; boost-supply = <&vdd_sys>; - switch-supply = <&vdd_sys>; regulators { vddcpu_a: DCDC_REG1 { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-gx-libretech-pc.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-gx-libretech-pc.dtsi @@ -17,7 +17,7 @@ io-channel-names = "buttons"; keyup-threshold-microvolt = <1800000>; - update-button { + button-update { label = "update"; linux,code = ; press-threshold-microvolt = <1300000>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-gx.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-gx.dtsi @@ -233,7 +233,7 @@ reg = <0x14 0x10>; }; - eth_mac: eth_mac@34 { + eth_mac: eth-mac@34 { reg = <0x34 0x10>; }; @@ -250,7 +250,7 @@ scpi_clocks: clocks { compatible = "arm,scpi-clocks"; - scpi_dvfs: scpi_clocks@0 { + scpi_dvfs: clocks-0 { compatible = "arm,scpi-dvfs-clocks"; #clock-cells = <1>; clock-indices = <0>; @@ -532,7 +532,7 @@ #size-cells = <2>; ranges = <0x0 0x0 0x0 0xc8834000 0x0 0x2000>; - hwrng: rng { + hwrng: rng@0 { compatible = "amlogic,meson-rng"; reg = <0x0 0x0 0x0 0x4>; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-gxbb-kii-pro.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-gxbb-kii-pro.dts @@ -16,7 +16,7 @@ leds { compatible = "gpio-leds"; - status { + led { gpios = <&gpio_ao GPIOAO_13 GPIO_ACTIVE_LOW>; default-state = "off"; color = ; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts @@ -18,7 +18,7 @@ leds { compatible = "gpio-leds"; - status { + led { label = "n1:white:status"; gpios = <&gpio_ao GPIOAO_9 GPIO_ACTIVE_HIGH>; default-state = "on"; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-sml5442tw.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-sml5442tw.dts @@ -79,6 +79,5 @@ enable-gpios = <&gpio GPIOX_17 GPIO_ACTIVE_HIGH>; max-speed = <2000000>; clocks = <&wifi32k>; - clock-names = "lpo"; }; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-gxl-s905w-jethome-jethub-j80.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-gxl-s905w-jethome-jethub-j80.dts @@ -86,11 +86,11 @@ }; &efuse { - bt_mac: bt_mac@6 { + bt_mac: bt-mac@6 { reg = <0x6 0x6>; }; - wifi_mac: wifi_mac@C { + wifi_mac: wifi-mac@c { reg = <0xc 0x6>; }; }; @@ -239,7 +239,7 @@ pinctrl-names = "default"; pinctrl-0 = <&i2c_b_pins>; - pcf8563: pcf8563@51 { + pcf8563: rtc@51 { compatible = "nxp,pcf8563"; reg = <0x51>; status = "okay"; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi @@ -773,7 +773,7 @@ }; }; - eth-phy-mux { + eth-phy-mux@55c { compatible = "mdio-mux-mmioreg", "mdio-mux"; #address-cells = <1>; #size-cells = <0>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-sm1-bananapi-m5.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-sm1-bananapi-m5.dts @@ -17,13 +17,13 @@ compatible = "bananapi,bpi-m5", "amlogic,sm1"; model = "Banana Pi BPI-M5"; - adc_keys { + adc-keys { compatible = "adc-keys"; io-channels = <&saradc 2>; io-channel-names = "buttons"; keyup-threshold-microvolt = <1800000>; - key { + button-sw3 { label = "SW3"; linux,code = ; press-threshold-microvolt = <1700000>; @@ -123,7 +123,7 @@ regulator-min-microvolt = <1800000>; regulator-max-microvolt = <3300000>; - enable-gpio = <&gpio_ao GPIOE_2 GPIO_ACTIVE_HIGH>; + enable-gpio = <&gpio_ao GPIOE_2 GPIO_OPEN_DRAIN>; enable-active-high; regulator-always-on; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/amlogic/meson-sm1-odroid-hc4.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/amlogic/meson-sm1-odroid-hc4.dts @@ -76,9 +76,17 @@ }; &cpu_thermal { + trips { + cpu_active: cpu-active { + temperature = <60000>; /* millicelsius */ + hysteresis = <2000>; /* millicelsius */ + type = "active"; + }; + }; + cooling-maps { map { - trip = <&cpu_passive>; + trip = <&cpu_active>; cooling-device = <&fan0 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>; }; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/freescale/imx8-ss-lsio.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/freescale/imx8-ss-lsio.dtsi @@ -117,7 +117,7 @@ interrupts = ; clocks = <&clk IMX_SC_R_FSPI_0 IMX_SC_PM_CLK_PER>, <&clk IMX_SC_R_FSPI_0 IMX_SC_PM_CLK_PER>; - clock-names = "fspi", "fspi_en"; + clock-names = "fspi_en", "fspi"; power-domains = <&pd IMX_SC_R_FSPI_0>; status = "disabled"; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/freescale/imx8dxl-evk.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/freescale/imx8dxl-evk.dts @@ -121,8 +121,6 @@ phy-handle = <ðphy0>; nvmem-cells = <&fec_mac1>; nvmem-cell-names = "mac-address"; - snps,reset-gpios = <&pca6416_1 2 GPIO_ACTIVE_LOW>; - snps,reset-delays-us = <10 20 200000>; status = "okay"; mdio { @@ -135,6 +133,10 @@ reg = <0>; eee-broken-1000t; qca,disable-smarteee; + qca,disable-hibernation-mode; + reset-gpios = <&pca6416_1 2 GPIO_ACTIVE_LOW>; + reset-assert-us = <20>; + reset-deassert-us = <200000>; vddio-supply = <&vddio0>; vddio0: vddio-regulator { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/freescale/imx8mm-nitrogen-r2.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/freescale/imx8mm-nitrogen-r2.dts @@ -247,7 +247,7 @@ compatible = "wlf,wm8960"; reg = <0x1a>; clocks = <&clk IMX8MM_CLK_SAI1_ROOT>; - clock-names = "mclk1"; + clock-names = "mclk"; wlf,shared-lrclk; #sound-dai-cells = <0>; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/freescale/imx8mm.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/freescale/imx8mm.dtsi @@ -563,7 +563,7 @@ #address-cells = <1>; #size-cells = <1>; - imx8mm_uid: unique-id@410 { + imx8mm_uid: unique-id@4 { reg = <0x4 0x8>; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/freescale/imx8mn.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/freescale/imx8mn.dtsi @@ -296,6 +296,7 @@ sai2: sai@30020000 { compatible = "fsl,imx8mn-sai", "fsl,imx8mq-sai"; reg = <0x30020000 0x10000>; + #sound-dai-cells = <0>; interrupts = ; clocks = <&clk IMX8MN_CLK_SAI2_IPG>, <&clk IMX8MN_CLK_DUMMY>, @@ -310,6 +311,7 @@ sai3: sai@30030000 { compatible = "fsl,imx8mn-sai", "fsl,imx8mq-sai"; reg = <0x30030000 0x10000>; + #sound-dai-cells = <0>; interrupts = ; clocks = <&clk IMX8MN_CLK_SAI3_IPG>, <&clk IMX8MN_CLK_DUMMY>, @@ -324,6 +326,7 @@ sai5: sai@30050000 { compatible = "fsl,imx8mn-sai", "fsl,imx8mq-sai"; reg = <0x30050000 0x10000>; + #sound-dai-cells = <0>; interrupts = ; clocks = <&clk IMX8MN_CLK_SAI5_IPG>, <&clk IMX8MN_CLK_DUMMY>, @@ -340,6 +343,7 @@ sai6: sai@30060000 { compatible = "fsl,imx8mn-sai", "fsl,imx8mq-sai"; reg = <0x30060000 0x10000>; + #sound-dai-cells = <0>; interrupts = ; clocks = <&clk IMX8MN_CLK_SAI6_IPG>, <&clk IMX8MN_CLK_DUMMY>, @@ -397,6 +401,7 @@ sai7: sai@300b0000 { compatible = "fsl,imx8mn-sai", "fsl,imx8mq-sai"; reg = <0x300b0000 0x10000>; + #sound-dai-cells = <0>; interrupts = ; clocks = <&clk IMX8MN_CLK_SAI7_IPG>, <&clk IMX8MN_CLK_DUMMY>, @@ -564,7 +569,7 @@ #address-cells = <1>; #size-cells = <1>; - imx8mn_uid: unique-id@410 { + imx8mn_uid: unique-id@4 { reg = <0x4 0x8>; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/freescale/imx8mp.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/freescale/imx8mp.dtsi @@ -425,7 +425,7 @@ #address-cells = <1>; #size-cells = <1>; - imx8mp_uid: unique-id@420 { + imx8mp_uid: unique-id@8 { reg = <0x8 0x8>; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/freescale/imx8mq.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/freescale/imx8mq.dtsi @@ -593,7 +593,7 @@ #address-cells = <1>; #size-cells = <1>; - imx8mq_uid: soc-uid@410 { + imx8mq_uid: soc-uid@4 { reg = <0x4 0x8>; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/freescale/imx93.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/freescale/imx93.dtsi @@ -164,6 +164,8 @@ lpi2c1: i2c@44340000 { compatible = "fsl,imx93-lpi2c", "fsl,imx7ulp-lpi2c"; reg = <0x44340000 0x10000>; + #address-cells = <1>; + #size-cells = <0>; interrupts = ; clocks = <&clk IMX93_CLK_LPI2C1_GATE>, <&clk IMX93_CLK_BUS_AON>; @@ -174,6 +176,8 @@ lpi2c2: i2c@44350000 { compatible = "fsl,imx93-lpi2c", "fsl,imx7ulp-lpi2c"; reg = <0x44350000 0x10000>; + #address-cells = <1>; + #size-cells = <0>; interrupts = ; clocks = <&clk IMX93_CLK_LPI2C2_GATE>, <&clk IMX93_CLK_BUS_AON>; @@ -316,6 +320,8 @@ lpi2c3: i2c@42530000 { compatible = "fsl,imx93-lpi2c", "fsl,imx7ulp-lpi2c"; reg = <0x42530000 0x10000>; + #address-cells = <1>; + #size-cells = <0>; interrupts = ; clocks = <&clk IMX93_CLK_LPI2C3_GATE>, <&clk IMX93_CLK_BUS_WAKEUP>; @@ -326,6 +332,8 @@ lpi2c4: i2c@42540000 { compatible = "fsl,imx93-lpi2c", "fsl,imx7ulp-lpi2c"; reg = <0x42540000 0x10000>; + #address-cells = <1>; + #size-cells = <0>; interrupts = ; clocks = <&clk IMX93_CLK_LPI2C4_GATE>, <&clk IMX93_CLK_BUS_WAKEUP>; @@ -414,6 +422,8 @@ lpi2c5: i2c@426b0000 { compatible = "fsl,imx93-lpi2c", "fsl,imx7ulp-lpi2c"; reg = <0x426b0000 0x10000>; + #address-cells = <1>; + #size-cells = <0>; interrupts = ; clocks = <&clk IMX93_CLK_LPI2C5_GATE>, <&clk IMX93_CLK_BUS_WAKEUP>; @@ -424,6 +434,8 @@ lpi2c6: i2c@426c0000 { compatible = "fsl,imx93-lpi2c", "fsl,imx7ulp-lpi2c"; reg = <0x426c0000 0x10000>; + #address-cells = <1>; + #size-cells = <0>; interrupts = ; clocks = <&clk IMX93_CLK_LPI2C6_GATE>, <&clk IMX93_CLK_BUS_WAKEUP>; @@ -434,6 +446,8 @@ lpi2c7: i2c@426d0000 { compatible = "fsl,imx93-lpi2c", "fsl,imx7ulp-lpi2c"; reg = <0x426d0000 0x10000>; + #address-cells = <1>; + #size-cells = <0>; interrupts = ; clocks = <&clk IMX93_CLK_LPI2C7_GATE>, <&clk IMX93_CLK_BUS_WAKEUP>; @@ -444,6 +458,8 @@ lpi2c8: i2c@426e0000 { compatible = "fsl,imx93-lpi2c", "fsl,imx7ulp-lpi2c"; reg = <0x426e0000 0x10000>; + #address-cells = <1>; + #size-cells = <0>; interrupts = ; clocks = <&clk IMX93_CLK_LPI2C8_GATE>, <&clk IMX93_CLK_BUS_WAKEUP>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/mediatek/mt7622.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/mediatek/mt7622.dtsi @@ -435,6 +435,7 @@ pwm: pwm@11006000 { compatible = "mediatek,mt7622-pwm"; reg = <0 0x11006000 0 0x1000>; + #pwm-cells = <2>; interrupts = ; clocks = <&topckgen CLK_TOP_PWM_SEL>, <&pericfg CLK_PERI_PWM_PD>, --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/mediatek/mt7986a.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/mediatek/mt7986a.dtsi @@ -167,8 +167,7 @@ }; watchdog: watchdog@1001c000 { - compatible = "mediatek,mt7986-wdt", - "mediatek,mt6589-wdt"; + compatible = "mediatek,mt7986-wdt"; reg = <0 0x1001c000 0 0x1000>; interrupts = ; #reset-cells = <1>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/mediatek/mt8183.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/mediatek/mt8183.dtsi @@ -585,6 +585,15 @@ method = "smc"; }; + clk13m: fixed-factor-clock-13m { + compatible = "fixed-factor-clock"; + #clock-cells = <0>; + clocks = <&clk26m>; + clock-div = <2>; + clock-mult = <1>; + clock-output-names = "clk13m"; + }; + clk26m: oscillator { compatible = "fixed-clock"; #clock-cells = <0>; @@ -968,8 +977,7 @@ "mediatek,mt6765-timer"; reg = <0 0x10017000 0 0x1000>; interrupts = ; - clocks = <&topckgen CLK_TOP_CLK13M>; - clock-names = "clk13m"; + clocks = <&clk13m>; }; iommu: iommu@10205000 { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/mediatek/mt8186.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/mediatek/mt8186.dtsi @@ -47,14 +47,12 @@ core5 { cpu = <&cpu5>; }; - }; - cluster1 { - core0 { + core6 { cpu = <&cpu6>; }; - core1 { + core7 { cpu = <&cpu7>; }; }; @@ -214,10 +212,12 @@ }; }; - clk13m: oscillator-13m { - compatible = "fixed-clock"; + clk13m: fixed-factor-clock-13m { + compatible = "fixed-factor-clock"; #clock-cells = <0>; - clock-frequency = <13000000>; + clocks = <&clk26m>; + clock-div = <2>; + clock-mult = <1>; clock-output-names = "clk13m"; }; @@ -333,8 +333,7 @@ }; watchdog: watchdog@10007000 { - compatible = "mediatek,mt8186-wdt", - "mediatek,mt6589-wdt"; + compatible = "mediatek,mt8186-wdt"; mediatek,disable-extrst; reg = <0 0x10007000 0 0x1000>; #reset-cells = <1>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/mediatek/mt8192.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/mediatek/mt8192.dtsi @@ -29,6 +29,15 @@ rdma4 = &rdma4; }; + clk13m: fixed-factor-clock-13m { + compatible = "fixed-factor-clock"; + #clock-cells = <0>; + clocks = <&clk26m>; + clock-div = <2>; + clock-mult = <1>; + clock-output-names = "clk13m"; + }; + clk26m: oscillator0 { compatible = "fixed-clock"; #clock-cells = <0>; @@ -149,19 +158,16 @@ core3 { cpu = <&cpu3>; }; - }; - - cluster1 { - core0 { + core4 { cpu = <&cpu4>; }; - core1 { + core5 { cpu = <&cpu5>; }; - core2 { + core6 { cpu = <&cpu6>; }; - core3 { + core7 { cpu = <&cpu7>; }; }; @@ -534,8 +540,7 @@ "mediatek,mt6765-timer"; reg = <0 0x10017000 0 0x1000>; interrupts = ; - clocks = <&topckgen CLK_TOP_CSW_F26M_D2>; - clock-names = "clk13m"; + clocks = <&clk13m>; }; pwrap: pwrap@10026000 { @@ -578,6 +583,8 @@ compatible = "mediatek,mt8192-scp_adsp"; reg = <0 0x10720000 0 0x1000>; #clock-cells = <1>; + /* power domain dependency not upstreamed */ + status = "fail"; }; uart0: serial@11002000 { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/mediatek/mt8195.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/mediatek/mt8195.dtsi @@ -151,22 +151,20 @@ core3 { cpu = <&cpu3>; }; - }; - cluster1 { - core0 { + core4 { cpu = <&cpu4>; }; - core1 { + core5 { cpu = <&cpu5>; }; - core2 { + core6 { cpu = <&cpu6>; }; - core3 { + core7 { cpu = <&cpu7>; }; }; @@ -248,6 +246,15 @@ status = "disabled"; }; + clk13m: fixed-factor-clock-13m { + compatible = "fixed-factor-clock"; + #clock-cells = <0>; + clocks = <&clk26m>; + clock-div = <2>; + clock-mult = <1>; + clock-output-names = "clk13m"; + }; + clk26m: oscillator-26m { compatible = "fixed-clock"; #clock-cells = <0>; @@ -687,8 +694,7 @@ }; watchdog: watchdog@10007000 { - compatible = "mediatek,mt8195-wdt", - "mediatek,mt6589-wdt"; + compatible = "mediatek,mt8195-wdt"; mediatek,disable-extrst; reg = <0 0x10007000 0 0x100>; #reset-cells = <1>; @@ -705,7 +711,7 @@ "mediatek,mt6765-timer"; reg = <0 0x10017000 0 0x1000>; interrupts = ; - clocks = <&topckgen CLK_TOP_CLK26M_D2>; + clocks = <&clk13m>; }; pwrap: pwrap@10024000 { @@ -1549,6 +1555,7 @@ #address-cells = <1>; #size-cells = <1>; ranges = <0 0 0x11e30000 0xe00>; + power-domains = <&spm MT8195_POWER_DOMAIN_SSUSB_PCIE_PHY>; status = "disabled"; u2port1: usb-phy@0 { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/nvidia/tegra194.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/nvidia/tegra194.dtsi @@ -1918,6 +1918,7 @@ interconnects = <&mc TEGRA194_MEMORY_CLIENT_HOST1XDMAR &emc>; interconnect-names = "dma-mem"; iommus = <&smmu TEGRA194_SID_HOST1X>; + dma-coherent; /* Context isolation domains */ iommu-map = <0 &smmu TEGRA194_SID_HOST1X_CTX0 1>, --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/nvidia/tegra210-p2597.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/nvidia/tegra210-p2597.dtsi @@ -1667,7 +1667,7 @@ vin-supply = <&vdd_5v0_sys>; }; - vdd_cam_1v2: regulator-vdd-cam-1v8 { + vdd_cam_1v2: regulator-vdd-cam-1v2 { compatible = "regulator-fixed"; regulator-name = "vdd-cam-1v2"; regulator-min-microvolt = <1200000>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/nvidia/tegra234.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/nvidia/tegra234.dtsi @@ -571,6 +571,7 @@ interconnects = <&mc TEGRA234_MEMORY_CLIENT_HOST1XDMAR &emc>; interconnect-names = "dma-mem"; iommus = <&smmu_niso1 TEGRA234_SID_HOST1X>; + dma-coherent; /* Context isolation domains */ iommu-map = <0 &smmu_niso0 TEGRA234_SID_HOST1X_CTX0 1>, --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/ipq8074.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/ipq8074.dtsi @@ -137,7 +137,7 @@ #clock-cells = <0>; clocks = <&gcc GCC_USB1_PIPE_CLK>; clock-names = "pipe0"; - clock-output-names = "gcc_usb1_pipe_clk_src"; + clock-output-names = "usb3phy_1_cc_pipe_clk"; }; }; @@ -180,7 +180,7 @@ #clock-cells = <0>; clocks = <&gcc GCC_USB0_PIPE_CLK>; clock-names = "pipe0"; - clock-output-names = "gcc_usb0_pipe_clk_src"; + clock-output-names = "usb3phy_0_cc_pipe_clk"; }; }; @@ -197,9 +197,9 @@ status = "disabled"; }; - pcie_qmp0: phy@86000 { - compatible = "qcom,ipq8074-qmp-pcie-phy"; - reg = <0x00086000 0x1c4>; + pcie_qmp0: phy@84000 { + compatible = "qcom,ipq8074-qmp-gen3-pcie-phy"; + reg = <0x00084000 0x1bc>; #address-cells = <1>; #size-cells = <1>; ranges; @@ -213,15 +213,16 @@ "common"; status = "disabled"; - pcie_phy0: phy@86200 { - reg = <0x86200 0x16c>, - <0x86400 0x200>, - <0x86800 0x4f4>; + pcie_phy0: phy@84200 { + reg = <0x84200 0x16c>, + <0x84400 0x200>, + <0x84800 0x1f0>, + <0x84c00 0xf4>; #phy-cells = <0>; #clock-cells = <0>; clocks = <&gcc GCC_PCIE0_PIPE_CLK>; clock-names = "pipe0"; - clock-output-names = "pcie_0_pipe_clk"; + clock-output-names = "pcie20_phy0_pipe_clk"; }; }; @@ -242,14 +243,14 @@ status = "disabled"; pcie_phy1: phy@8e200 { - reg = <0x8e200 0x16c>, + reg = <0x8e200 0x130>, <0x8e400 0x200>, - <0x8e800 0x4f4>; + <0x8e800 0x1f8>; #phy-cells = <0>; #clock-cells = <0>; clocks = <&gcc GCC_PCIE1_PIPE_CLK>; clock-names = "pipe0"; - clock-output-names = "pcie_1_pipe_clk"; + clock-output-names = "pcie20_phy1_pipe_clk"; }; }; @@ -772,9 +773,9 @@ phy-names = "pciephy"; ranges = <0x81000000 0 0x10200000 0x10200000 - 0 0x100000 /* downstream I/O */ - 0x82000000 0 0x10300000 0x10300000 - 0 0xd00000>; /* non-prefetchable memory */ + 0 0x10000>, /* downstream I/O */ + <0x82000000 0 0x10220000 0x10220000 + 0 0xfde0000>; /* non-prefetchable memory */ interrupts = ; interrupt-names = "msi"; @@ -817,16 +818,18 @@ }; pcie0: pci@20000000 { - compatible = "qcom,pcie-ipq8074"; + compatible = "qcom,pcie-ipq8074-gen3"; reg = <0x20000000 0xf1d>, <0x20000f20 0xa8>, - <0x00080000 0x2000>, + <0x20001000 0x1000>, + <0x00080000 0x4000>, <0x20100000 0x1000>; - reg-names = "dbi", "elbi", "parf", "config"; + reg-names = "dbi", "elbi", "atu", "parf", "config"; device_type = "pci"; linux,pci-domain = <0>; bus-range = <0x00 0xff>; num-lanes = <1>; + max-link-speed = <3>; #address-cells = <3>; #size-cells = <2>; @@ -834,9 +837,9 @@ phy-names = "pciephy"; ranges = <0x81000000 0 0x20200000 0x20200000 - 0 0x100000 /* downstream I/O */ - 0x82000000 0 0x20300000 0x20300000 - 0 0xd00000>; /* non-prefetchable memory */ + 0 0x10000>, /* downstream I/O */ + <0x82000000 0 0x20220000 0x20220000 + 0 0xfde0000>; /* non-prefetchable memory */ interrupts = ; interrupt-names = "msi"; @@ -854,28 +857,30 @@ clocks = <&gcc GCC_SYS_NOC_PCIE0_AXI_CLK>, <&gcc GCC_PCIE0_AXI_M_CLK>, <&gcc GCC_PCIE0_AXI_S_CLK>, - <&gcc GCC_PCIE0_AHB_CLK>, - <&gcc GCC_PCIE0_AUX_CLK>; - + <&gcc GCC_PCIE0_AXI_S_BRIDGE_CLK>, + <&gcc GCC_PCIE0_RCHNG_CLK>; clock-names = "iface", "axi_m", "axi_s", - "ahb", - "aux"; + "axi_bridge", + "rchng"; + resets = <&gcc GCC_PCIE0_PIPE_ARES>, <&gcc GCC_PCIE0_SLEEP_ARES>, <&gcc GCC_PCIE0_CORE_STICKY_ARES>, <&gcc GCC_PCIE0_AXI_MASTER_ARES>, <&gcc GCC_PCIE0_AXI_SLAVE_ARES>, <&gcc GCC_PCIE0_AHB_ARES>, - <&gcc GCC_PCIE0_AXI_MASTER_STICKY_ARES>; + <&gcc GCC_PCIE0_AXI_MASTER_STICKY_ARES>, + <&gcc GCC_PCIE0_AXI_SLAVE_STICKY_ARES>; reset-names = "pipe", "sleep", "sticky", "axi_m", "axi_s", "ahb", - "axi_m_sticky"; + "axi_m_sticky", + "axi_s_sticky"; status = "disabled"; }; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/msm8953.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/msm8953.dtsi @@ -455,7 +455,7 @@ reg = <0x1000000 0x300000>; interrupts = ; gpio-controller; - gpio-ranges = <&tlmm 0 0 155>; + gpio-ranges = <&tlmm 0 0 142>; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/msm8956.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/msm8956.dtsi @@ -12,6 +12,10 @@ interrupts = ; }; +&tsens { + compatible = "qcom,msm8956-tsens", "qcom,tsens-v1"; +}; + /* * You might be wondering.. why is it so empty out there? * Well, the SoCs are almost identical. --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/msm8992-lg-bullhead.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/msm8992-lg-bullhead.dtsi @@ -2,7 +2,7 @@ /* * Copyright (c) 2015, LGE Inc. All rights reserved. * Copyright (c) 2016, The Linux Foundation. All rights reserved. - * Copyright (c) 2021, Petr Vorel + * Copyright (c) 2021-2022, Petr Vorel * Copyright (c) 2022, Dominik Kobinski */ @@ -15,6 +15,9 @@ /* cont_splash_mem has different memory mapping */ /delete-node/ &cont_splash_mem; +/* disabled on downstream, conflicts with cont_splash_mem */ +/delete-node/ &dfps_data_mem; + / { model = "LG Nexus 5X"; compatible = "lg,bullhead", "qcom,msm8992"; @@ -49,12 +52,17 @@ }; cont_splash_mem: memory@3400000 { - reg = <0 0x03400000 0 0x1200000>; + reg = <0 0x03400000 0 0xc00000>; no-map; }; - removed_region: reserved@5000000 { - reg = <0 0x05000000 0 0x2200000>; + reserved@5000000 { + reg = <0x0 0x05000000 0x0 0x1a00000>; + no-map; + }; + + reserved@6c00000 { + reg = <0x0 0x06c00000 0x0 0x400000>; no-map; }; }; @@ -86,8 +94,8 @@ /* S1, S2, S6 and S12 are managed by RPMPD */ pm8994_s1: s1 { - regulator-min-microvolt = <800000>; - regulator-max-microvolt = <800000>; + regulator-min-microvolt = <1025000>; + regulator-max-microvolt = <1025000>; }; pm8994_s2: s2 { @@ -243,11 +251,8 @@ }; pm8994_l26: l26 { - /* - * TODO: value from downstream - * regulator-min-microvolt = <987500>; - * fails to apply - */ + regulator-min-microvolt = <987500>; + regulator-max-microvolt = <987500>; }; pm8994_l27: l27 { @@ -261,19 +266,13 @@ }; pm8994_l29: l29 { - /* - * TODO: Unsupported voltage range. - * regulator-min-microvolt = <2800000>; - * regulator-max-microvolt = <2800000>; - */ + regulator-min-microvolt = <2800000>; + regulator-max-microvolt = <2800000>; }; pm8994_l30: l30 { - /* - * TODO: get this verified - * regulator-min-microvolt = <1800000>; - * regulator-max-microvolt = <1800000>; - */ + regulator-min-microvolt = <1800000>; + regulator-max-microvolt = <1800000>; }; pm8994_l31: l31 { @@ -282,11 +281,8 @@ }; pm8994_l32: l32 { - /* - * TODO: get this verified - * regulator-min-microvolt = <1800000>; - * regulator-max-microvolt = <1800000>; - */ + regulator-min-microvolt = <1800000>; + regulator-max-microvolt = <1800000>; }; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/msm8996-oneplus-common.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/msm8996-oneplus-common.dtsi @@ -179,7 +179,6 @@ }; &dsi0_phy { - vdda-supply = <&vreg_l2a_1p25>; vcca-supply = <&vreg_l28a_0p925>; status = "okay"; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/msm8996-sony-xperia-tone.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/msm8996-sony-xperia-tone.dtsi @@ -943,10 +943,6 @@ }; }; -/* - * For reasons that are currently unknown (but probably related to fusb301), USB takes about - * 6 minutes to wake up (nothing interesting in kernel logs), but then it works as it should. - */ &usb3 { status = "okay"; qcom,select-utmi-as-pipe-clk; @@ -955,6 +951,7 @@ &usb3_dwc3 { extcon = <&usb3_id>; dr_mode = "peripheral"; + maximum-speed = "high-speed"; phys = <&hsusb_phy1>; phy-names = "usb2-phy"; snps,hird-threshold = /bits/ 8 <0>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/msm8996.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/msm8996.dtsi @@ -713,7 +713,7 @@ #power-domain-cells = <1>; reg = <0x00300000 0x90000>; - clocks = <&rpmcc RPM_SMD_BB_CLK1>, + clocks = <&rpmcc RPM_SMD_XO_CLK_SRC>, <&rpmcc RPM_SMD_LN_BB_CLK>, <&sleep_clk>, <&pciephy_0>, @@ -830,9 +830,11 @@ compatible = "qcom,msm8996-a2noc"; reg = <0x00583000 0x7000>; #interconnect-cells = <1>; - clock-names = "bus", "bus_a"; + clock-names = "bus", "bus_a", "aggre2_ufs_axi", "ufs_axi"; clocks = <&rpmcc RPM_SMD_AGGR2_NOC_CLK>, - <&rpmcc RPM_SMD_AGGR2_NOC_A_CLK>; + <&rpmcc RPM_SMD_AGGR2_NOC_A_CLK>, + <&gcc GCC_AGGRE2_UFS_AXI_CLK>, + <&gcc GCC_UFS_AXI_CLK>; }; mnoc: interconnect@5a4000 { @@ -1050,7 +1052,7 @@ #clock-cells = <1>; #phy-cells = <0>; - clocks = <&mmcc MDSS_AHB_CLK>, <&rpmcc RPM_SMD_BB_CLK1>; + clocks = <&mmcc MDSS_AHB_CLK>, <&rpmcc RPM_SMD_XO_CLK_SRC>; clock-names = "iface", "ref"; status = "disabled"; }; @@ -1117,7 +1119,7 @@ #clock-cells = <1>; #phy-cells = <0>; - clocks = <&mmcc MDSS_AHB_CLK>, <&rpmcc RPM_SMD_BB_CLK1>; + clocks = <&mmcc MDSS_AHB_CLK>, <&rpmcc RPM_SMD_XO_CLK_SRC>; clock-names = "iface", "ref"; status = "disabled"; }; @@ -2940,8 +2942,8 @@ compatible = "qcom,msm8996-apcc"; reg = <0x06400000 0x90000>; - clock-names = "xo"; - clocks = <&rpmcc RPM_SMD_BB_CLK1>; + clock-names = "xo", "sys_apcs_aux"; + clocks = <&rpmcc RPM_SMD_XO_A_CLK_SRC>, <&apcs_glb>; #clock-cells = <1>; }; @@ -3060,7 +3062,7 @@ clock-names = "iface", "core", "xo"; clocks = <&gcc GCC_SDCC1_AHB_CLK>, <&gcc GCC_SDCC1_APPS_CLK>, - <&rpmcc RPM_SMD_BB_CLK1>; + <&rpmcc RPM_SMD_XO_CLK_SRC>; resets = <&gcc GCC_SDCC1_BCR>; pinctrl-names = "default", "sleep"; @@ -3084,7 +3086,7 @@ clock-names = "iface", "core", "xo"; clocks = <&gcc GCC_SDCC2_AHB_CLK>, <&gcc GCC_SDCC2_APPS_CLK>, - <&rpmcc RPM_SMD_BB_CLK1>; + <&rpmcc RPM_SMD_XO_CLK_SRC>; resets = <&gcc GCC_SDCC2_BCR>; pinctrl-names = "default", "sleep"; @@ -3406,7 +3408,7 @@ interrupt-names = "wdog", "fatal", "ready", "handover", "stop-ack"; - clocks = <&rpmcc RPM_SMD_BB_CLK1>; + clocks = <&rpmcc RPM_SMD_XO_CLK_SRC>; clock-names = "xo"; memory-region = <&adsp_mem>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/msm8998-fxtec-pro1.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/msm8998-fxtec-pro1.dts @@ -364,14 +364,9 @@ }; }; -&pm8998_pon { - resin { - compatible = "qcom,pm8941-resin"; - interrupts = ; - bias-pull-up; - debounce = <15625>; - linux,code = ; - }; +&pm8998_resin { + linux,code = ; + status = "okay"; }; &qusb2phy { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/msm8998-sony-xperia-yoshino.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/msm8998-sony-xperia-yoshino.dtsi @@ -357,14 +357,9 @@ }; }; -&pm8998_pon { - resin { - compatible = "qcom,pm8941-resin"; - interrupts = ; - debounce = <15625>; - bias-pull-up; - linux,code = ; - }; +&pm8998_resin { + linux,code = ; + status = "okay"; }; &qusb2phy { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/pmi8950.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/pmi8950.dtsi @@ -47,7 +47,7 @@ adc-chan@a { reg = ; qcom,pre-scaling = <1 1>; - label = "ref_1250v"; + label = "ref_1250mv"; }; adc-chan@d { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/pmk8350.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/pmk8350.dtsi @@ -21,7 +21,7 @@ #size-cells = <0>; pmk8350_pon: pon@1300 { - compatible = "qcom,pm8998-pon"; + compatible = "qcom,pmk8350-pon"; reg = <0x1300>, <0x800>; reg-names = "hlos", "pbs"; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/qcs404.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/qcs404.dtsi @@ -806,7 +806,7 @@ clocks = <&gcc GCC_PCIE_0_PIPE_CLK>; resets = <&gcc GCC_PCIEPHY_0_PHY_BCR>, - <&gcc 21>; + <&gcc GCC_PCIE_0_PIPE_ARES>; reset-names = "phy", "pipe"; clock-output-names = "pcie_0_pipe_clk"; @@ -1336,12 +1336,12 @@ <&gcc GCC_PCIE_0_SLV_AXI_CLK>; clock-names = "iface", "aux", "master_bus", "slave_bus"; - resets = <&gcc 18>, - <&gcc 17>, - <&gcc 15>, - <&gcc 19>, + resets = <&gcc GCC_PCIE_0_AXI_MASTER_ARES>, + <&gcc GCC_PCIE_0_AXI_SLAVE_ARES>, + <&gcc GCC_PCIE_0_AXI_MASTER_STICKY_ARES>, + <&gcc GCC_PCIE_0_CORE_STICKY_ARES>, <&gcc GCC_PCIE_0_BCR>, - <&gcc 16>; + <&gcc GCC_PCIE_0_AHB_ARES>; reset-names = "axi_m", "axi_s", "axi_m_sticky", --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sa8540p-ride.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sa8540p-ride.dts @@ -177,7 +177,7 @@ }; &remoteproc_nsp0 { - firmware-name = "qcom/sa8540p/cdsp.mbn"; + firmware-name = "qcom/sa8540p/cdsp0.mbn"; status = "okay"; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sc7180.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sc7180.dtsi @@ -3274,8 +3274,8 @@ interrupts-extended = <&pdc 1 IRQ_TYPE_LEVEL_HIGH>; qcom,ee = <0>; qcom,channel = <0>; - #address-cells = <1>; - #size-cells = <1>; + #address-cells = <2>; + #size-cells = <0>; interrupt-controller; #interrupt-cells = <4>; cell-index = <0>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sc7280.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sc7280.dtsi @@ -2122,6 +2122,8 @@ pinctrl-names = "default"; pinctrl-0 = <&pcie1_clkreq_n>; + dma-coherent; + iommus = <&apps_smmu 0x1c80 0x1>; iommu-map = <0x0 &apps_smmu 0x1c80 0x1>, @@ -4246,8 +4248,8 @@ interrupts-extended = <&pdc 1 IRQ_TYPE_LEVEL_HIGH>; qcom,ee = <0>; qcom,channel = <0>; - #address-cells = <1>; - #size-cells = <1>; + #address-cells = <2>; + #size-cells = <0>; interrupt-controller; #interrupt-cells = <4>; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts @@ -186,6 +186,7 @@ regulator-min-microvolt = <1272000>; regulator-max-microvolt = <1272000>; regulator-initial-mode = ; + regulator-always-on; }; vreg_l3b: ldo3 { @@ -425,75 +426,88 @@ pmic-die-temp@3 { reg = ; qcom,pre-scaling = <1 1>; + label = "pmk8350_die_temp"; }; xo-therm@44 { reg = ; qcom,hw-settle-time = <200>; qcom,ratiometric; + label = "pmk8350_xo_therm"; }; pmic-die-temp@103 { reg = ; qcom,pre-scaling = <1 1>; + label = "pmc8280_1_die_temp"; }; sys-therm@144 { reg = ; qcom,hw-settle-time = <200>; qcom,ratiometric; + label = "sys_therm1"; }; sys-therm@145 { reg = ; qcom,hw-settle-time = <200>; qcom,ratiometric; + label = "sys_therm2"; }; sys-therm@146 { reg = ; qcom,hw-settle-time = <200>; qcom,ratiometric; + label = "sys_therm3"; }; sys-therm@147 { reg = ; qcom,hw-settle-time = <200>; qcom,ratiometric; + label = "sys_therm4"; }; pmic-die-temp@303 { reg = ; qcom,pre-scaling = <1 1>; + label = "pmc8280_2_die_temp"; }; sys-therm@344 { reg = ; qcom,hw-settle-time = <200>; qcom,ratiometric; + label = "sys_therm5"; }; sys-therm@345 { reg = ; qcom,hw-settle-time = <200>; qcom,ratiometric; + label = "sys_therm6"; }; sys-therm@346 { reg = ; qcom,hw-settle-time = <200>; qcom,ratiometric; + label = "sys_therm7"; }; sys-therm@347 { reg = ; qcom,hw-settle-time = <200>; qcom,ratiometric; + label = "sys_therm8"; }; pmic-die-temp@403 { reg = ; qcom,pre-scaling = <1 1>; + label = "pmr735a_die_temp"; }; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sc8280xp.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sc8280xp.dtsi @@ -1863,6 +1863,7 @@ "ss_phy_irq"; power-domains = <&gcc USB30_PRIM_GDSC>; + required-opps = <&rpmhpd_opp_nom>; resets = <&gcc GCC_USB30_PRIM_BCR>; @@ -1917,6 +1918,7 @@ "ss_phy_irq"; power-domains = <&gcc USB30_SEC_GDSC>; + required-opps = <&rpmhpd_opp_nom>; resets = <&gcc GCC_USB30_SEC_BCR>; @@ -2051,8 +2053,8 @@ interrupts-extended = <&pdc 1 IRQ_TYPE_LEVEL_HIGH>; qcom,ee = <0>; qcom,channel = <0>; - #address-cells = <1>; - #size-cells = <1>; + #address-cells = <2>; + #size-cells = <0>; interrupt-controller; #interrupt-cells = <4>; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sdm670-google-sargo.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sdm670-google-sargo.dts @@ -256,6 +256,7 @@ regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>; regulator-enable-ramp-delay = <250>; + regulator-always-on; }; vreg_l9a_1p8: ldo9 { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sdm845-db845c.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sdm845-db845c.dts @@ -615,14 +615,9 @@ }; }; -&pm8998_pon { - resin { - compatible = "qcom,pm8941-resin"; - interrupts = <0x0 0x8 1 IRQ_TYPE_EDGE_BOTH>; - debounce = <15625>; - bias-pull-up; - linux,code = ; - }; +&pm8998_resin { + linux,code = ; + status = "okay"; }; &pmi8998_lpg { @@ -979,7 +974,7 @@ }; wcd_intr_default: wcd_intr_default { - pins = <54>; + pins = "gpio54"; function = "gpio"; input-enable; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sdm845-lg-common.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sdm845-lg-common.dtsi @@ -482,14 +482,9 @@ status = "okay"; }; -&pm8998_pon { - resin { - compatible = "qcom,pm8941-resin"; - interrupts = <0x0 0x8 1 IRQ_TYPE_EDGE_BOTH>; - debounce = <15625>; - bias-pull-up; - linux,code = ; - }; +&pm8998_resin { + linux,code = ; + status = "okay"; }; &sdhc_2 { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sdm845-shift-axolotl.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sdm845-shift-axolotl.dts @@ -522,14 +522,9 @@ }; }; -&pm8998_pon { - volume_down_resin: resin { - compatible = "qcom,pm8941-resin"; - interrupts = <0x0 0x8 1 IRQ_TYPE_EDGE_BOTH>; - debounce = <15625>; - bias-pull-up; - linux,code = ; - }; +&pm8998_resin { + linux,code = ; + status = "okay"; }; &pmi8998_lpg { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-common.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-common.dtsi @@ -325,14 +325,9 @@ qcom,cabc; }; -&pm8998_pon { - resin { - compatible = "qcom,pm8941-resin"; - interrupts = <0x0 0x8 1 IRQ_TYPE_EDGE_BOTH>; - debounce = <15625>; - bias-pull-up; - linux,code = ; - }; +&pm8998_resin { + linux,code = ; + status = "okay"; }; &pmi8998_rradc { @@ -472,7 +467,7 @@ }; wcd_intr_default: wcd_intr_default { - pins = <54>; + pins = "gpio54"; function = "gpio"; input-enable; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sdm845-xiaomi-polaris.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sdm845-xiaomi-polaris.dts @@ -530,14 +530,9 @@ }; }; -&pm8998_pon { - resin { - interrupts = <0x0 0x8 1 IRQ_TYPE_EDGE_BOTH>; - compatible = "qcom,pm8941-resin"; - linux,code = ; - debounce = <15625>; - bias-pull-up; - }; +&pm8998_resin { + linux,code = ; + status = "okay"; }; &q6afedai { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sdm845.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sdm845.dtsi @@ -4593,7 +4593,6 @@ <&dispcc DISP_CC_MDSS_DP_PIXEL_CLK>; clock-names = "core_iface", "core_aux", "ctrl_link", "ctrl_link_iface", "stream_pixel"; - #clock-cells = <1>; assigned-clocks = <&dispcc DISP_CC_MDSS_DP_LINK_CLK_SRC>, <&dispcc DISP_CC_MDSS_DP_PIXEL_CLK_SRC>; assigned-clock-parents = <&dp_phy 0>, <&dp_phy 1>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm6115.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm6115.dtsi @@ -296,6 +296,8 @@ rpmcc: clock-controller { compatible = "qcom,rpmcc-sm6115", "qcom,rpmcc"; + clocks = <&xo_board>; + clock-names = "xo"; #clock-cells = <1>; }; @@ -361,7 +363,7 @@ reg-names = "west", "south", "east"; interrupts = ; gpio-controller; - gpio-ranges = <&tlmm 0 0 121>; + gpio-ranges = <&tlmm 0 0 114>; /* GPIOs + ufs_reset */ #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; @@ -704,6 +706,7 @@ ufs_mem_hc: ufs@4804000 { compatible = "qcom,sm6115-ufshc", "qcom,ufshc", "jedec,ufs-2.0"; reg = <0x04804000 0x3000>, <0x04810000 0x8000>; + reg-names = "std", "ice"; interrupts = ; phys = <&ufs_mem_phy_lanes>; phy-names = "ufsphy"; @@ -736,10 +739,10 @@ <0 0>, <0 0>, <37500000 150000000>, - <75000000 300000000>, <0 0>, <0 0>, - <0 0>; + <0 0>, + <75000000 300000000>; status = "disabled"; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dts @@ -41,17 +41,18 @@ }; gpio-keys { - status = "okay"; compatible = "gpio-keys"; - autorepeat; - key-vol-dn { + pinctrl-0 = <&vol_down_n>; + pinctrl-names = "default"; + + key-volume-down { label = "Volume Down"; gpios = <&tlmm 47 GPIO_ACTIVE_LOW>; - linux,input-type = <1>; linux,code = ; - gpio-key,wakeup; debounce-interval = <15>; + linux,can-disable; + wakeup-source; }; }; @@ -270,6 +271,14 @@ &tlmm { gpio-reserved-ranges = <22 2>, <28 6>; + + vol_down_n: vol-down-n-state { + pins = "gpio47"; + function = "gpio"; + drive-strength = <2>; + bias-disable; + input-enable; + }; }; &usb3 { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm6125.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm6125.dtsi @@ -442,9 +442,9 @@ reg = <0x01613000 0x180>; #phy-cells = <0>; - clocks = <&rpmcc RPM_SMD_XO_CLK_SRC>, - <&gcc GCC_AHB2PHY_USB_CLK>; - clock-names = "ref", "cfg_ahb"; + clocks = <&gcc GCC_AHB2PHY_USB_CLK>, + <&rpmcc RPM_SMD_XO_CLK_SRC>; + clock-names = "cfg_ahb", "ref"; resets = <&gcc GCC_QUSB2PHY_PRIM_BCR>; status = "disabled"; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm6350-sony-xperia-lena-pdx213.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm6350-sony-xperia-lena-pdx213.dts @@ -35,10 +35,10 @@ gpio-keys { compatible = "gpio-keys"; pinctrl-names = "default"; - pinctrl-0 = <&gpio_keys_state>; + pinctrl-0 = <&vol_down_n>; key-volume-down { - label = "volume_down"; + label = "Volume Down"; linux,code = ; gpios = <&pm6350_gpios 2 GPIO_ACTIVE_LOW>; }; @@ -305,14 +305,12 @@ }; &pm6350_gpios { - gpio_keys_state: gpio-keys-state { - key-volume-down-pins { - pins = "gpio2"; - function = PMIC_GPIO_FUNC_NORMAL; - power-source = <0>; - bias-disable; - input-enable; - }; + vol_down_n: vol-down-n-state { + pins = "gpio2"; + function = PMIC_GPIO_FUNC_NORMAL; + power-source = <0>; + bias-disable; + input-enable; }; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm6350.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm6350.dtsi @@ -342,13 +342,12 @@ }; ramoops: ramoops@ffc00000 { - compatible = "removed-dma-pool", "ramoops"; - reg = <0 0xffc00000 0 0x00100000>; + compatible = "ramoops"; + reg = <0 0xffc00000 0 0x100000>; record-size = <0x1000>; console-size = <0x40000>; - ftrace-size = <0x0>; msg-size = <0x20000 0x20000>; - cc-size = <0x0>; + ecc-size = <16>; no-map; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm6375.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm6375.dtsi @@ -1209,6 +1209,7 @@ clock-names = "xo"; power-domains = <&rpmpd SM6375_VDDCX>; + power-domain-names = "cx"; memory-region = <&pil_cdsp_mem>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano.dtsi @@ -33,9 +33,10 @@ framebuffer: framebuffer@9c000000 { compatible = "simple-framebuffer"; reg = <0 0x9c000000 0 0x2300000>; - width = <1644>; - height = <3840>; - stride = <(1644 * 4)>; + /* Griffin BL initializes in 2.5k mode, not 4k */ + width = <1096>; + height = <2560>; + stride = <(1096 * 4)>; format = "a8r8g8b8"; /* * That's (going to be) a lot of clocks, but it's necessary due --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm8150.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm8150.dtsi @@ -1810,7 +1810,7 @@ "slave_q2a", "tbu"; - iommus = <&apps_smmu 0x1d80 0x7f>; + iommus = <&apps_smmu 0x1d80 0x3f>; iommu-map = <0x0 &apps_smmu 0x1d80 0x1>, <0x100 &apps_smmu 0x1d81 0x1>; @@ -1909,7 +1909,7 @@ assigned-clocks = <&gcc GCC_PCIE_1_AUX_CLK>; assigned-clock-rates = <19200000>; - iommus = <&apps_smmu 0x1e00 0x7f>; + iommus = <&apps_smmu 0x1e00 0x3f>; iommu-map = <0x0 &apps_smmu 0x1e00 0x1>, <0x100 &apps_smmu 0x1e01 0x1>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx214.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx214.dts @@ -17,3 +17,26 @@ height = <2520>; stride = <(1080 * 4)>; }; + +&pm8350b_gpios { + gpio-line-names = "NC", /* GPIO_1 */ + "NC", + "NC", + "NC", + "SNAPSHOT_N", + "NC", + "NC", + "FOCUS_N"; +}; + +&pm8350c_gpios { + gpio-line-names = "FL_STROBE_TRIG_WIDE", /* GPIO_1 */ + "FL_STROBE_TRIG_TELE", + "NC", + "NC", + "NC", + "RGBC_IR_PWR_EN", + "NC", + "NC", + "WIDEC_PWR_EN"; +}; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx215.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx215.dts @@ -12,6 +12,93 @@ compatible = "sony,pdx215-generic", "qcom,sm8350"; }; +&i2c13 { + pmic@75 { + compatible = "dlg,slg51000"; + reg = <0x75>; + dlg,cs-gpios = <&pm8350b_gpios 1 GPIO_ACTIVE_HIGH>; + + pinctrl-names = "default"; + pinctrl-0 = <&cam_pwr_a_cs>; + + regulators { + slg51000_a_ldo1: ldo1 { + regulator-name = "slg51000_a_ldo1"; + regulator-min-microvolt = <2400000>; + regulator-max-microvolt = <3300000>; + }; + + slg51000_a_ldo2: ldo2 { + regulator-name = "slg51000_a_ldo2"; + regulator-min-microvolt = <2400000>; + regulator-max-microvolt = <3300000>; + }; + + slg51000_a_ldo3: ldo3 { + regulator-name = "slg51000_a_ldo3"; + regulator-min-microvolt = <1200000>; + regulator-max-microvolt = <3750000>; + }; + + slg51000_a_ldo4: ldo4 { + regulator-name = "slg51000_a_ldo4"; + regulator-min-microvolt = <1200000>; + regulator-max-microvolt = <3750000>; + }; + + slg51000_a_ldo5: ldo5 { + regulator-name = "slg51000_a_ldo5"; + regulator-min-microvolt = <500000>; + regulator-max-microvolt = <1200000>; + }; + + slg51000_a_ldo6: ldo6 { + regulator-name = "slg51000_a_ldo6"; + regulator-min-microvolt = <500000>; + regulator-max-microvolt = <1200000>; + }; + + slg51000_a_ldo7: ldo7 { + regulator-name = "slg51000_a_ldo7"; + regulator-min-microvolt = <1200000>; + regulator-max-microvolt = <3750000>; + }; + }; + }; +}; + +&pm8350b_gpios { + gpio-line-names = "CAM_PWR_A_CS", /* GPIO_1 */ + "NC", + "NC", + "NC", + "SNAPSHOT_N", + "CAM_PWR_LD_EN", + "NC", + "FOCUS_N"; + + cam_pwr_a_cs: cam-pwr-a-cs-state { + pins = "gpio1"; + function = "normal"; + qcom,drive-strength = ; + power-source = <1>; + drive-push-pull; + output-high; + }; +}; + +&pm8350c_gpios { + gpio-line-names = "FL_STROBE_TRIG_WIDE", /* GPIO_1 */ + "FL_STROBE_TRIG_TELE", + "NC", + "WLC_TXPWR_EN", + "NC", + "RGBC_IR_PWR_EN", + "NC", + "NC", + "WIDEC_PWR_EN"; +}; + &tlmm { gpio-line-names = "APPS_I2C_0_SDA", /* GPIO_0 */ "APPS_I2C_0_SCL", --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami.dtsi @@ -3,6 +3,7 @@ * Copyright (c) 2021, Konrad Dybcio */ +#include #include #include "sm8350.dtsi" #include "pm8350.dtsi" @@ -48,7 +49,35 @@ gpio-keys { compatible = "gpio-keys"; - /* For reasons still unknown, GAssist key and Camera Focus/Shutter don't work.. */ + pinctrl-names = "default"; + pinctrl-0 = <&focus_n &snapshot_n &vol_down_n &g_assist_n>; + + key-camera-focus { + label = "Camera Focus"; + linux,code = ; + gpios = <&pm8350b_gpios 8 GPIO_ACTIVE_LOW>; + debounce-interval = <15>; + linux,can-disable; + wakeup-source; + }; + + key-camera-snapshot { + label = "Camera Snapshot"; + linux,code = ; + gpios = <&pm8350b_gpios 5 GPIO_ACTIVE_LOW>; + debounce-interval = <15>; + linux,can-disable; + wakeup-source; + }; + + key-google-assist { + label = "Google Assistant Key"; + gpios = <&pm8350_gpios 9 GPIO_ACTIVE_LOW>; + linux,code = ; + debounce-interval = <15>; + linux,can-disable; + wakeup-source; + }; key-vol-down { label = "Volume Down"; @@ -56,7 +85,7 @@ gpios = <&pmk8350_gpios 3 GPIO_ACTIVE_LOW>; debounce-interval = <15>; linux,can-disable; - gpio-key,wakeup; + wakeup-source; }; }; @@ -506,7 +535,6 @@ clock-frequency = <100000>; /* Qualcomm PM8008i/PM8008j (?) @ 8, 9, c, d */ - /* Dialog SLG51000 CMIC @ 75 */ }; &i2c15 { @@ -534,6 +562,60 @@ firmware-name = "qcom/sm8350/Sony/sagami/modem.mbn"; }; +&pm8350_gpios { + gpio-line-names = "ASSIGN1_THERM", /* GPIO_1 */ + "LCD_ID", + "SDR_MMW_THERM", + "RF_ID", + "NC", + "FP_LDO_EN", + "SP_ARI_PWR_ALARM", + "NC", + "G_ASSIST_N", + "PM8350_OPTION"; /* GPIO_10 */ + + g_assist_n: g-assist-n-state { + pins = "gpio9"; + function = "normal"; + power-source = <1>; + bias-pull-up; + input-enable; + }; +}; + +&pm8350b_gpios { + snapshot_n: snapshot-n-state { + pins = "gpio5"; + function = "normal"; + power-source = <0>; + bias-pull-up; + input-enable; + }; + + focus_n: focus-n-state { + pins = "gpio8"; + function = "normal"; + power-source = <0>; + input-enable; + bias-pull-up; + }; +}; + +&pmk8350_gpios { + gpio-line-names = "NC", /* GPIO_1 */ + "NC", + "VOL_DOWN_N", + "PMK8350_OPTION"; + + vol_down_n: vol-down-n-state { + pins = "gpio3"; + function = "normal"; + power-source = <0>; + bias-pull-up; + input-enable; + }; +}; + &pmk8350_rtc { status = "okay"; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm8350.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm8350.dtsi @@ -1043,8 +1043,6 @@ interrupts = ; power-domains = <&rpmhpd SM8350_CX>; operating-points-v2 = <&qup_opp_table_100mhz>; - #address-cells = <1>; - #size-cells = <0>; status = "disabled"; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara.dtsi @@ -534,17 +534,17 @@ }; &remoteproc_adsp { - firmware-name = "qcom/sm8350/Sony/nagara/adsp.mbn"; + firmware-name = "qcom/sm8450/Sony/nagara/adsp.mbn"; status = "okay"; }; &remoteproc_cdsp { - firmware-name = "qcom/sm8350/Sony/nagara/cdsp.mbn"; + firmware-name = "qcom/sm8450/Sony/nagara/cdsp.mbn"; status = "okay"; }; &remoteproc_slpi { - firmware-name = "qcom/sm8350/Sony/nagara/slpi.mbn"; + firmware-name = "qcom/sm8450/Sony/nagara/slpi.mbn"; status = "okay"; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/qcom/sm8450.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/qcom/sm8450.dtsi @@ -997,8 +997,6 @@ pinctrl-names = "default"; pinctrl-0 = <&qup_uart20_default>; interrupts = ; - #address-cells = <1>; - #size-cells = <0>; status = "disabled"; }; @@ -1391,8 +1389,6 @@ pinctrl-names = "default"; pinctrl-0 = <&qup_uart7_tx>, <&qup_uart7_rx>; interrupts = ; - #address-cells = <1>; - #size-cells = <0>; status = "disabled"; }; }; @@ -2108,8 +2104,8 @@ <&q6prmcc LPASS_HW_DCODEC_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>, <&vamacro>; clock-names = "mclk", "npl", "macro", "dcodec", "fsgen"; - assigned-clocks = <&q6prmcc LPASS_CLK_ID_WSA_CORE_TX_MCLK LPASS_CLK_ATTRIBUTE_COUPLE_NO>, - <&q6prmcc LPASS_CLK_ID_WSA_CORE_TX_2X_MCLK LPASS_CLK_ATTRIBUTE_COUPLE_NO>; + assigned-clocks = <&q6prmcc LPASS_CLK_ID_WSA2_CORE_TX_MCLK LPASS_CLK_ATTRIBUTE_COUPLE_NO>, + <&q6prmcc LPASS_CLK_ID_WSA2_CORE_TX_2X_MCLK LPASS_CLK_ATTRIBUTE_COUPLE_NO>; assigned-clock-rates = <19200000>, <19200000>; #clock-cells = <0>; @@ -2263,7 +2259,7 @@ reg = <0 0x33b0000 0 0x2000>; interrupts-extended = <&intc GIC_SPI 496 IRQ_TYPE_LEVEL_HIGH>, <&intc GIC_SPI 520 IRQ_TYPE_LEVEL_HIGH>; - interrupt-names = "core", "wake"; + interrupt-names = "core", "wakeup"; clocks = <&vamacro>; clock-names = "iface"; @@ -3662,6 +3658,7 @@ power-domains = <&gcc UFS_PHY_GDSC>; iommus = <&apps_smmu 0xe0 0x0>; + dma-coherent; interconnects = <&aggre1_noc MASTER_UFS_MEM 0 &mc_virt SLAVE_EBI1 0>, <&gem_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_UFS_MEM_CFG 0>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/renesas/beacon-renesom-baseboard.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/renesas/beacon-renesom-baseboard.dtsi @@ -437,20 +437,6 @@ }; }; - /* 0 - lcd_reset */ - /* 1 - lcd_pwr */ - /* 2 - lcd_select */ - /* 3 - backlight-enable */ - /* 4 - Touch_shdwn */ - /* 5 - LCD_H_pol */ - /* 6 - lcd_V_pol */ - gpio_exp1: gpio@20 { - compatible = "onnn,pca9654"; - reg = <0x20>; - gpio-controller; - #gpio-cells = <2>; - }; - touchscreen@26 { compatible = "ilitek,ili2117"; reg = <0x26>; @@ -482,6 +468,16 @@ }; }; }; + + gpio_exp1: gpio@70 { + compatible = "nxp,pca9538"; + reg = <0x70>; + gpio-controller; + #gpio-cells = <2>; + gpio-line-names = "lcd_reset", "lcd_pwr", "lcd_select", + "backlight-enable", "Touch_shdwn", + "LCD_H_pol", "lcd_V_pol"; + }; }; &lvds0 { --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/socionext/uniphier-pxs3-ref-gadget0.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/socionext/uniphier-pxs3-ref-gadget0.dts @@ -24,7 +24,7 @@ snps,dis_enblslpm_quirk; snps,dis_u2_susphy_quirk; snps,dis_u3_susphy_quirk; - snps,usb2_gadget_lpm_disable; + snps,usb2-gadget-lpm-disable; phy-names = "usb2-phy", "usb3-phy"; phys = <&usb0_hsphy0>, <&usb0_ssphy0>; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/socionext/uniphier-pxs3-ref-gadget1.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/socionext/uniphier-pxs3-ref-gadget1.dts @@ -24,7 +24,7 @@ snps,dis_enblslpm_quirk; snps,dis_u2_susphy_quirk; snps,dis_u3_susphy_quirk; - snps,usb2_gadget_lpm_disable; + snps,usb2-gadget-lpm-disable; phy-names = "usb2-phy", "usb3-phy"; phys = <&usb1_hsphy0>, <&usb1_ssphy0>; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/ti/k3-am62-main.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/ti/k3-am62-main.dtsi @@ -413,7 +413,7 @@ #address-cells = <1>; #size-cells = <0>; power-domains = <&k3_pds 141 TI_SCI_PD_EXCLUSIVE>; - clocks = <&k3_clks 172 0>; + clocks = <&k3_clks 141 0>; status = "disabled"; }; @@ -424,7 +424,7 @@ #address-cells = <1>; #size-cells = <0>; power-domains = <&k3_pds 142 TI_SCI_PD_EXCLUSIVE>; - clocks = <&k3_clks 173 0>; + clocks = <&k3_clks 142 0>; status = "disabled"; }; @@ -435,7 +435,7 @@ #address-cells = <1>; #size-cells = <0>; power-domains = <&k3_pds 143 TI_SCI_PD_EXCLUSIVE>; - clocks = <&k3_clks 174 0>; + clocks = <&k3_clks 143 0>; status = "disabled"; }; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/ti/k3-j7200-common-proc-board.dts +++ linux-gcp-6.2.0/arch/arm64/boot/dts/ti/k3-j7200-common-proc-board.dts @@ -80,7 +80,7 @@ }; }; -&wkup_pmx0 { +&wkup_pmx2 { mcu_cpsw_pins_default: mcu-cpsw-pins-default { pinctrl-single,pins = < J721E_WKUP_IOPAD(0x0068, PIN_OUTPUT, 0) /* MCU_RGMII1_TX_CTL */ --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/ti/k3-j7200-mcu-wakeup.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/ti/k3-j7200-mcu-wakeup.dtsi @@ -56,7 +56,34 @@ wkup_pmx0: pinctrl@4301c000 { compatible = "pinctrl-single"; /* Proxy 0 addressing */ - reg = <0x00 0x4301c000 0x00 0x178>; + reg = <0x00 0x4301c000 0x00 0x34>; + #pinctrl-cells = <1>; + pinctrl-single,register-width = <32>; + pinctrl-single,function-mask = <0xffffffff>; + }; + + wkup_pmx1: pinctrl@0x4301c038 { + compatible = "pinctrl-single"; + /* Proxy 0 addressing */ + reg = <0x00 0x4301c038 0x00 0x8>; + #pinctrl-cells = <1>; + pinctrl-single,register-width = <32>; + pinctrl-single,function-mask = <0xffffffff>; + }; + + wkup_pmx2: pinctrl@0x4301c068 { + compatible = "pinctrl-single"; + /* Proxy 0 addressing */ + reg = <0x00 0x4301c068 0x00 0xec>; + #pinctrl-cells = <1>; + pinctrl-single,register-width = <32>; + pinctrl-single,function-mask = <0xffffffff>; + }; + + wkup_pmx3: pinctrl@0x4301c174 { + compatible = "pinctrl-single"; + /* Proxy 0 addressing */ + reg = <0x00 0x4301c174 0x00 0x20>; #pinctrl-cells = <1>; pinctrl-single,register-width = <32>; pinctrl-single,function-mask = <0xffffffff>; --- linux-gcp-6.2.0.orig/arch/arm64/boot/dts/xilinx/zynqmp.dtsi +++ linux-gcp-6.2.0/arch/arm64/boot/dts/xilinx/zynqmp.dtsi @@ -858,6 +858,7 @@ clock-names = "bus_early", "ref"; iommus = <&smmu 0x860>; snps,quirk-frame-length-adjustment = <0x20>; + snps,resume-hs-terminations; /* dma-coherent; */ }; }; @@ -884,6 +885,7 @@ clock-names = "bus_early", "ref"; iommus = <&smmu 0x861>; snps,quirk-frame-length-adjustment = <0x20>; + snps,resume-hs-terminations; /* dma-coherent; */ }; }; --- linux-gcp-6.2.0.orig/arch/arm64/crypto/sm4-ce-gcm-glue.c +++ linux-gcp-6.2.0/arch/arm64/crypto/sm4-ce-gcm-glue.c @@ -135,22 +135,23 @@ } static int gcm_crypt(struct aead_request *req, struct skcipher_walk *walk, - struct sm4_gcm_ctx *ctx, u8 ghash[], + u8 ghash[], int err, void (*sm4_ce_pmull_gcm_crypt)(const u32 *rkey_enc, u8 *dst, const u8 *src, u8 *iv, unsigned int nbytes, u8 *ghash, const u8 *ghash_table, const u8 *lengths)) { + struct crypto_aead *aead = crypto_aead_reqtfm(req); + struct sm4_gcm_ctx *ctx = crypto_aead_ctx(aead); u8 __aligned(8) iv[SM4_BLOCK_SIZE]; be128 __aligned(8) lengths; - int err; memset(ghash, 0, SM4_BLOCK_SIZE); lengths.a = cpu_to_be64(req->assoclen * 8); lengths.b = cpu_to_be64(walk->total * 8); - memcpy(iv, walk->iv, GCM_IV_SIZE); + memcpy(iv, req->iv, GCM_IV_SIZE); put_unaligned_be32(2, iv + GCM_IV_SIZE); kernel_neon_begin(); @@ -158,49 +159,51 @@ if (req->assoclen) gcm_calculate_auth_mac(req, ghash); - do { + while (walk->nbytes) { unsigned int tail = walk->nbytes % SM4_BLOCK_SIZE; const u8 *src = walk->src.virt.addr; u8 *dst = walk->dst.virt.addr; if (walk->nbytes == walk->total) { - tail = 0; - sm4_ce_pmull_gcm_crypt(ctx->key.rkey_enc, dst, src, iv, walk->nbytes, ghash, ctx->ghash_table, (const u8 *)&lengths); - } else if (walk->nbytes - tail) { - sm4_ce_pmull_gcm_crypt(ctx->key.rkey_enc, dst, src, iv, - walk->nbytes - tail, ghash, - ctx->ghash_table, NULL); + + kernel_neon_end(); + + return skcipher_walk_done(walk, 0); } + sm4_ce_pmull_gcm_crypt(ctx->key.rkey_enc, dst, src, iv, + walk->nbytes - tail, ghash, + ctx->ghash_table, NULL); + kernel_neon_end(); err = skcipher_walk_done(walk, tail); - if (err) - return err; - if (walk->nbytes) - kernel_neon_begin(); - } while (walk->nbytes > 0); - return 0; + kernel_neon_begin(); + } + + sm4_ce_pmull_gcm_crypt(ctx->key.rkey_enc, NULL, NULL, iv, + walk->nbytes, ghash, ctx->ghash_table, + (const u8 *)&lengths); + + kernel_neon_end(); + + return err; } static int gcm_encrypt(struct aead_request *req) { struct crypto_aead *aead = crypto_aead_reqtfm(req); - struct sm4_gcm_ctx *ctx = crypto_aead_ctx(aead); u8 __aligned(8) ghash[SM4_BLOCK_SIZE]; struct skcipher_walk walk; int err; err = skcipher_walk_aead_encrypt(&walk, req, false); - if (err) - return err; - - err = gcm_crypt(req, &walk, ctx, ghash, sm4_ce_pmull_gcm_enc); + err = gcm_crypt(req, &walk, ghash, err, sm4_ce_pmull_gcm_enc); if (err) return err; @@ -215,17 +218,13 @@ { struct crypto_aead *aead = crypto_aead_reqtfm(req); unsigned int authsize = crypto_aead_authsize(aead); - struct sm4_gcm_ctx *ctx = crypto_aead_ctx(aead); u8 __aligned(8) ghash[SM4_BLOCK_SIZE]; u8 authtag[SM4_BLOCK_SIZE]; struct skcipher_walk walk; int err; err = skcipher_walk_aead_decrypt(&walk, req, false); - if (err) - return err; - - err = gcm_crypt(req, &walk, ctx, ghash, sm4_ce_pmull_gcm_dec); + err = gcm_crypt(req, &walk, ghash, err, sm4_ce_pmull_gcm_dec); if (err) return err; --- linux-gcp-6.2.0.orig/arch/arm64/include/asm/efi.h +++ linux-gcp-6.2.0/arch/arm64/include/asm/efi.h @@ -33,7 +33,7 @@ ({ \ efi_virtmap_load(); \ __efi_fpsimd_begin(); \ - spin_lock(&efi_rt_lock); \ + raw_spin_lock(&efi_rt_lock); \ }) #undef arch_efi_call_virt @@ -42,12 +42,12 @@ #define arch_efi_call_virt_teardown() \ ({ \ - spin_unlock(&efi_rt_lock); \ + raw_spin_unlock(&efi_rt_lock); \ __efi_fpsimd_end(); \ efi_virtmap_unload(); \ }) -extern spinlock_t efi_rt_lock; +extern raw_spinlock_t efi_rt_lock; extern u64 *efi_rt_stack_top; efi_status_t __efi_rt_asm_wrapper(void *, const char *, ...); --- linux-gcp-6.2.0.orig/arch/arm64/kernel/acpi.c +++ linux-gcp-6.2.0/arch/arm64/kernel/acpi.c @@ -435,10 +435,6 @@ enum arm_smccc_conduit conduit; struct acpi_ffh_data *ffh_ctxt; - ffh_ctxt = kzalloc(sizeof(*ffh_ctxt), GFP_KERNEL); - if (!ffh_ctxt) - return -ENOMEM; - if (arm_smccc_get_version() < ARM_SMCCC_VERSION_1_2) return -EOPNOTSUPP; @@ -448,6 +444,10 @@ return -EOPNOTSUPP; } + ffh_ctxt = kzalloc(sizeof(*ffh_ctxt), GFP_KERNEL); + if (!ffh_ctxt) + return -ENOMEM; + if (conduit == SMCCC_CONDUIT_SMC) { ffh_ctxt->invoke_ffh_fn = __arm_smccc_smc; ffh_ctxt->invoke_ffh64_fn = arm_smccc_1_2_smc; --- linux-gcp-6.2.0.orig/arch/arm64/kernel/compat_alignment.c +++ linux-gcp-6.2.0/arch/arm64/kernel/compat_alignment.c @@ -314,36 +314,32 @@ int (*handler)(unsigned long addr, u32 instr, struct pt_regs *regs); unsigned int type; u32 instr = 0; - u16 tinstr = 0; int isize = 4; int thumb2_32b = 0; - int fault; instrptr = instruction_pointer(regs); if (compat_thumb_mode(regs)) { __le16 __user *ptr = (__le16 __user *)(instrptr & ~1); + u16 tinstr, tinst2; - fault = alignment_get_thumb(regs, ptr, &tinstr); - if (!fault) { - if (IS_T32(tinstr)) { - /* Thumb-2 32-bit */ - u16 tinst2; - fault = alignment_get_thumb(regs, ptr + 1, &tinst2); - instr = ((u32)tinstr << 16) | tinst2; - thumb2_32b = 1; - } else { - isize = 2; - instr = thumb2arm(tinstr); - } + if (alignment_get_thumb(regs, ptr, &tinstr)) + return 1; + + if (IS_T32(tinstr)) { /* Thumb-2 32-bit */ + if (alignment_get_thumb(regs, ptr + 1, &tinst2)) + return 1; + instr = ((u32)tinstr << 16) | tinst2; + thumb2_32b = 1; + } else { + isize = 2; + instr = thumb2arm(tinstr); } } else { - fault = alignment_get_arm(regs, (__le32 __user *)instrptr, &instr); + if (alignment_get_arm(regs, (__le32 __user *)instrptr, &instr)) + return 1; } - if (fault) - return 1; - switch (CODING_BITS(instr)) { case 0x00000000: /* 3.13.4 load/store instruction extensions */ if (LDSTHD_I_BIT(instr)) --- linux-gcp-6.2.0.orig/arch/arm64/kernel/cpufeature.c +++ linux-gcp-6.2.0/arch/arm64/kernel/cpufeature.c @@ -2777,7 +2777,7 @@ HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_EL1_FP_SHIFT, 4, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FPHP), HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_EL1_AdvSIMD_SHIFT, 4, FTR_SIGNED, 0, CAP_HWCAP, KERNEL_HWCAP_ASIMD), HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_EL1_AdvSIMD_SHIFT, 4, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDHP), - HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_EL1_DIT_SHIFT, 4, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DIT), + HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_EL1_DIT_SHIFT, 4, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DIT), HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_EL1_DPB_SHIFT, 4, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DCPOP), HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_EL1_DPB_SHIFT, 4, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_DCPODP), HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_EL1_JSCVT_SHIFT, 4, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_JSCVT), --- linux-gcp-6.2.0.orig/arch/arm64/kernel/efi-header.S +++ linux-gcp-6.2.0/arch/arm64/kernel/efi-header.S @@ -66,7 +66,7 @@ .long .Lefi_header_end - .L_head // SizeOfHeaders .long 0 // CheckSum .short IMAGE_SUBSYSTEM_EFI_APPLICATION // Subsystem - .short 0 // DllCharacteristics + .short IMAGE_DLL_CHARACTERISTICS_NX_COMPAT // DllCharacteristics .quad 0 // SizeOfStackReserve .quad 0 // SizeOfStackCommit .quad 0 // SizeOfHeapReserve --- linux-gcp-6.2.0.orig/arch/arm64/kernel/efi.c +++ linux-gcp-6.2.0/arch/arm64/kernel/efi.c @@ -146,7 +146,7 @@ return s; } -DEFINE_SPINLOCK(efi_rt_lock); +DEFINE_RAW_SPINLOCK(efi_rt_lock); asmlinkage u64 *efi_rt_stack_top __ro_after_init; --- linux-gcp-6.2.0.orig/arch/arm64/kernel/fpsimd.c +++ linux-gcp-6.2.0/arch/arm64/kernel/fpsimd.c @@ -1903,7 +1903,7 @@ /* Invalidate any task state remaining in the fpsimd regs: */ fpsimd_flush_cpu_state(); } -EXPORT_SYMBOL_GPL(kernel_neon_begin); +EXPORT_SYMBOL(kernel_neon_begin); /* * kernel_neon_end(): give the CPU FPSIMD registers back to the current task @@ -1921,7 +1921,7 @@ put_cpu_fpsimd_context(); } -EXPORT_SYMBOL_GPL(kernel_neon_end); +EXPORT_SYMBOL(kernel_neon_end); #ifdef CONFIG_EFI --- linux-gcp-6.2.0.orig/arch/arm64/kvm/arm.c +++ linux-gcp-6.2.0/arch/arm64/kvm/arm.c @@ -1877,9 +1877,33 @@ return ret; } +static u64 get_hyp_id_aa64pfr0_el1(void) +{ + /* + * Track whether the system isn't affected by spectre/meltdown in the + * hypervisor's view of id_aa64pfr0_el1, used for protected VMs. + * Although this is per-CPU, we make it global for simplicity, e.g., not + * to have to worry about vcpu migration. + * + * Unlike for non-protected VMs, userspace cannot override this for + * protected VMs. + */ + u64 val = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1); + + val &= ~(ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV2) | + ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV3)); + + val |= FIELD_PREP(ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV2), + arm64_get_spectre_v2_state() == SPECTRE_UNAFFECTED); + val |= FIELD_PREP(ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV3), + arm64_get_meltdown_state() == SPECTRE_UNAFFECTED); + + return val; +} + static void kvm_hyp_init_symbols(void) { - kvm_nvhe_sym(id_aa64pfr0_el1_sys_val) = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1); + kvm_nvhe_sym(id_aa64pfr0_el1_sys_val) = get_hyp_id_aa64pfr0_el1(); kvm_nvhe_sym(id_aa64pfr1_el1_sys_val) = read_sanitised_ftr_reg(SYS_ID_AA64PFR1_EL1); kvm_nvhe_sym(id_aa64isar0_el1_sys_val) = read_sanitised_ftr_reg(SYS_ID_AA64ISAR0_EL1); kvm_nvhe_sym(id_aa64isar1_el1_sys_val) = read_sanitised_ftr_reg(SYS_ID_AA64ISAR1_EL1); --- linux-gcp-6.2.0.orig/arch/arm64/kvm/hyp/include/nvhe/fixed_config.h +++ linux-gcp-6.2.0/arch/arm64/kvm/hyp/include/nvhe/fixed_config.h @@ -33,11 +33,14 @@ * Allow for protected VMs: * - Floating-point and Advanced SIMD * - Data Independent Timing + * - Spectre/Meltdown Mitigation */ #define PVM_ID_AA64PFR0_ALLOW (\ ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_FP) | \ ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_AdvSIMD) | \ - ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_DIT) \ + ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_DIT) | \ + ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV2) | \ + ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV3) \ ) /* --- linux-gcp-6.2.0.orig/arch/arm64/kvm/hyp/nvhe/sys_regs.c +++ linux-gcp-6.2.0/arch/arm64/kvm/hyp/nvhe/sys_regs.c @@ -84,19 +84,12 @@ static u64 get_pvm_id_aa64pfr0(const struct kvm_vcpu *vcpu) { - const struct kvm *kvm = (const struct kvm *)kern_hyp_va(vcpu->kvm); u64 set_mask = 0; u64 allow_mask = PVM_ID_AA64PFR0_ALLOW; set_mask |= get_restricted_features_unsigned(id_aa64pfr0_el1_sys_val, PVM_ID_AA64PFR0_RESTRICT_UNSIGNED); - /* Spectre and Meltdown mitigation in KVM */ - set_mask |= FIELD_PREP(ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV2), - (u64)kvm->arch.pfr0_csv2); - set_mask |= FIELD_PREP(ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV3), - (u64)kvm->arch.pfr0_csv3); - return (id_aa64pfr0_el1_sys_val & allow_mask) | set_mask; } --- linux-gcp-6.2.0.orig/arch/arm64/kvm/mmu.c +++ linux-gcp-6.2.0/arch/arm64/kvm/mmu.c @@ -665,14 +665,33 @@ CONFIG_PGTABLE_LEVELS), .mm_ops = &kvm_user_mm_ops, }; + unsigned long flags; kvm_pte_t pte = 0; /* Keep GCC quiet... */ u32 level = ~0; int ret; + /* + * Disable IRQs so that we hazard against a concurrent + * teardown of the userspace page tables (which relies on + * IPI-ing threads). + */ + local_irq_save(flags); ret = kvm_pgtable_get_leaf(&pgt, addr, &pte, &level); - VM_BUG_ON(ret); - VM_BUG_ON(level >= KVM_PGTABLE_MAX_LEVELS); - VM_BUG_ON(!(pte & PTE_VALID)); + local_irq_restore(flags); + + if (ret) + return ret; + + /* + * Not seeing an error, but not updating level? Something went + * deeply wrong... + */ + if (WARN_ON(level >= KVM_PGTABLE_MAX_LEVELS)) + return -EFAULT; + + /* Oops, the userspace PTs are gone... Replay the fault */ + if (!kvm_pte_valid(pte)) + return -EAGAIN; return BIT(ARM64_HW_PGTABLE_LEVEL_SHIFT(level)); } @@ -1079,7 +1098,7 @@ * * Returns the size of the mapping. */ -static unsigned long +static long transparent_hugepage_adjust(struct kvm *kvm, struct kvm_memory_slot *memslot, unsigned long hva, kvm_pfn_t *pfnp, phys_addr_t *ipap) @@ -1091,8 +1110,15 @@ * sure that the HVA and IPA are sufficiently aligned and that the * block map is contained within the memslot. */ - if (fault_supports_stage2_huge_mapping(memslot, hva, PMD_SIZE) && - get_user_mapping_size(kvm, hva) >= PMD_SIZE) { + if (fault_supports_stage2_huge_mapping(memslot, hva, PMD_SIZE)) { + int sz = get_user_mapping_size(kvm, hva); + + if (sz < 0) + return sz; + + if (sz < PMD_SIZE) + return PAGE_SIZE; + /* * The address we faulted on is backed by a transparent huge * page. However, because we map the compound huge page and @@ -1192,7 +1218,7 @@ { int ret = 0; bool write_fault, writable, force_pte = false; - bool exec_fault; + bool exec_fault, mte_allowed; bool device = false; unsigned long mmu_seq; struct kvm *kvm = vcpu->kvm; @@ -1203,7 +1229,7 @@ kvm_pfn_t pfn; bool logging_active = memslot_is_logging(memslot); unsigned long fault_level = kvm_vcpu_trap_get_fault_level(vcpu); - unsigned long vma_pagesize, fault_granule; + long vma_pagesize, fault_granule; enum kvm_pgtable_prot prot = KVM_PGTABLE_PROT_R; struct kvm_pgtable *pgt; @@ -1218,6 +1244,20 @@ } /* + * Permission faults just need to update the existing leaf entry, + * and so normally don't require allocations from the memcache. The + * only exception to this is when dirty logging is enabled at runtime + * and a write fault needs to collapse a block entry into a table. + */ + if (fault_status != ESR_ELx_FSC_PERM || + (logging_active && write_fault)) { + ret = kvm_mmu_topup_memory_cache(memcache, + kvm_mmu_cache_min_pages(kvm)); + if (ret) + return ret; + } + + /* * Let's check if we will get back a huge page backed by hugetlbfs, or * get block mapping for device MMIO region. */ @@ -1269,37 +1309,21 @@ fault_ipa &= ~(vma_pagesize - 1); gfn = fault_ipa >> PAGE_SHIFT; - mmap_read_unlock(current->mm); + mte_allowed = kvm_vma_mte_allowed(vma); - /* - * Permission faults just need to update the existing leaf entry, - * and so normally don't require allocations from the memcache. The - * only exception to this is when dirty logging is enabled at runtime - * and a write fault needs to collapse a block entry into a table. - */ - if (fault_status != ESR_ELx_FSC_PERM || - (logging_active && write_fault)) { - ret = kvm_mmu_topup_memory_cache(memcache, - kvm_mmu_cache_min_pages(kvm)); - if (ret) - return ret; - } + /* Don't use the VMA after the unlock -- it may have vanished */ + vma = NULL; - mmu_seq = vcpu->kvm->mmu_invalidate_seq; /* - * Ensure the read of mmu_invalidate_seq happens before we call - * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk - * the page we just got a reference to gets unmapped before we have a - * chance to grab the mmu_lock, which ensure that if the page gets - * unmapped afterwards, the call to kvm_unmap_gfn will take it away - * from us again properly. This smp_rmb() interacts with the smp_wmb() - * in kvm_mmu_notifier_invalidate_. + * Read mmu_invalidate_seq so that KVM can detect if the results of + * vma_lookup() or __gfn_to_pfn_memslot() become stale prior to + * acquiring kvm->mmu_lock. * - * Besides, __gfn_to_pfn_memslot() instead of gfn_to_pfn_prot() is - * used to avoid unnecessary overhead introduced to locate the memory - * slot because it's always fixed even @gfn is adjusted for huge pages. + * Rely on mmap_read_unlock() for an implicit smp_rmb(), which pairs + * with the smp_wmb() in kvm_mmu_invalidate_end(). */ - smp_rmb(); + mmu_seq = vcpu->kvm->mmu_invalidate_seq; + mmap_read_unlock(current->mm); pfn = __gfn_to_pfn_memslot(memslot, gfn, false, false, NULL, write_fault, &writable, NULL); @@ -1350,11 +1374,16 @@ vma_pagesize = transparent_hugepage_adjust(kvm, memslot, hva, &pfn, &fault_ipa); + + if (vma_pagesize < 0) { + ret = vma_pagesize; + goto out_unlock; + } } if (fault_status != ESR_ELx_FSC_PERM && !device && kvm_has_mte(kvm)) { /* Check the VMM hasn't introduced a new disallowed VMA */ - if (kvm_vma_mte_allowed(vma)) { + if (mte_allowed) { sanitise_mte_tags(kvm, pfn, vma_pagesize); } else { ret = -EFAULT; --- linux-gcp-6.2.0.orig/arch/arm64/kvm/pmu-emul.c +++ linux-gcp-6.2.0/arch/arm64/kvm/pmu-emul.c @@ -538,7 +538,8 @@ if (!kvm_pmu_is_3p5(vcpu)) val &= ~ARMV8_PMU_PMCR_LP; - __vcpu_sys_reg(vcpu, PMCR_EL0) = val; + /* The reset bits don't indicate any state, and shouldn't be saved. */ + __vcpu_sys_reg(vcpu, PMCR_EL0) = val & ~(ARMV8_PMU_PMCR_C | ARMV8_PMU_PMCR_P); if (val & ARMV8_PMU_PMCR_E) { kvm_pmu_enable_counter_mask(vcpu, @@ -557,6 +558,7 @@ for_each_set_bit(i, &mask, 32) kvm_pmu_set_pmc_value(kvm_vcpu_idx_to_pmc(vcpu, i), 0, true); } + kvm_vcpu_pmu_restore_guest(vcpu); } static bool kvm_pmu_counter_is_enabled(struct kvm_pmc *pmc) --- linux-gcp-6.2.0.orig/arch/arm64/kvm/sys_regs.c +++ linux-gcp-6.2.0/arch/arm64/kvm/sys_regs.c @@ -703,7 +703,6 @@ if (!kvm_supports_32bit_el0()) val |= ARMV8_PMU_PMCR_LC; kvm_pmu_handle_pmcr(vcpu, val); - kvm_vcpu_pmu_restore_guest(vcpu); } else { /* PMCR.P & PMCR.C are RAZ */ val = __vcpu_sys_reg(vcpu, PMCR_EL0) @@ -765,6 +764,22 @@ return true; } +static int get_pmu_evcntr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *r, + u64 *val) +{ + u64 idx; + + if (r->CRn == 9 && r->CRm == 13 && r->Op2 == 0) + /* PMCCNTR_EL0 */ + idx = ARMV8_PMU_CYCLE_IDX; + else + /* PMEVCNTRn_EL0 */ + idx = ((r->CRm & 3) << 3) | (r->Op2 & 7); + + *val = kvm_pmu_get_counter_value(vcpu, idx); + return 0; +} + static bool access_pmu_evcntr(struct kvm_vcpu *vcpu, struct sys_reg_params *p, const struct sys_reg_desc *r) @@ -981,7 +996,7 @@ /* Macro to expand the PMEVCNTRn_EL0 register */ #define PMU_PMEVCNTR_EL0(n) \ { PMU_SYS_REG(SYS_PMEVCNTRn_EL0(n)), \ - .reset = reset_pmevcntr, \ + .reset = reset_pmevcntr, .get_user = get_pmu_evcntr, \ .access = access_pmu_evcntr, .reg = (PMEVCNTR0_EL0 + n), } /* Macro to expand the PMEVTYPERn_EL0 register */ @@ -1745,7 +1760,8 @@ { PMU_SYS_REG(SYS_PMCEID1_EL0), .access = access_pmceid, .reset = NULL }, { PMU_SYS_REG(SYS_PMCCNTR_EL0), - .access = access_pmu_evcntr, .reset = reset_unknown, .reg = PMCCNTR_EL0 }, + .access = access_pmu_evcntr, .reset = reset_unknown, + .reg = PMCCNTR_EL0, .get_user = get_pmu_evcntr}, { PMU_SYS_REG(SYS_PMXEVTYPER_EL0), .access = access_pmu_evtyper, .reset = NULL }, { PMU_SYS_REG(SYS_PMXEVCNTR_EL0), --- linux-gcp-6.2.0.orig/arch/arm64/kvm/trace_arm.h +++ linux-gcp-6.2.0/arch/arm64/kvm/trace_arm.h @@ -2,6 +2,7 @@ #if !defined(_TRACE_ARM_ARM64_KVM_H) || defined(TRACE_HEADER_MULTI_READ) #define _TRACE_ARM_ARM64_KVM_H +#include #include #include --- linux-gcp-6.2.0.orig/arch/arm64/mm/copypage.c +++ linux-gcp-6.2.0/arch/arm64/mm/copypage.c @@ -22,7 +22,8 @@ copy_page(kto, kfrom); if (system_supports_mte() && page_mte_tagged(from)) { - page_kasan_tag_reset(to); + if (kasan_hw_tags_enabled()) + page_kasan_tag_reset(to); /* It's a new page, shouldn't have been tagged yet */ WARN_ON_ONCE(!try_page_mte_tagging(to)); mte_copy_page_tags(kto, kfrom); --- linux-gcp-6.2.0.orig/arch/arm64/net/bpf_jit.h +++ linux-gcp-6.2.0/arch/arm64/net/bpf_jit.h @@ -281,4 +281,8 @@ /* DMB */ #define A64_DMB_ISH aarch64_insn_gen_dmb(AARCH64_INSN_MB_ISH) +/* ADR */ +#define A64_ADR(Rd, offset) \ + aarch64_insn_gen_adr(0, offset, Rd, AARCH64_INSN_ADR_TYPE_ADR) + #endif /* _BPF_JIT_H */ --- linux-gcp-6.2.0.orig/arch/arm64/net/bpf_jit_comp.c +++ linux-gcp-6.2.0/arch/arm64/net/bpf_jit_comp.c @@ -1900,7 +1900,8 @@ restore_args(ctx, args_off, nargs); /* call original func */ emit(A64_LDR64I(A64_R(10), A64_SP, retaddr_off), ctx); - emit(A64_BLR(A64_R(10)), ctx); + emit(A64_ADR(A64_LR, AARCH64_INSN_SIZE * 2), ctx); + emit(A64_RET(A64_R(10)), ctx); /* store return value */ emit(A64_STR64I(A64_R(0), A64_SP, retval_off), ctx); /* reserve a nop for bpf_tramp_image_put */ --- linux-gcp-6.2.0.orig/arch/arm64/tools/sysreg +++ linux-gcp-6.2.0/arch/arm64/tools/sysreg @@ -689,17 +689,17 @@ Enum 11:8 FPDP 0b0000 NI 0b0001 VFPv2 - 0b0001 VFPv3 + 0b0010 VFPv3 EndEnum Enum 7:4 FPSP 0b0000 NI 0b0001 VFPv2 - 0b0001 VFPv3 + 0b0010 VFPv3 EndEnum Enum 3:0 SIMDReg 0b0000 NI 0b0001 IMP_16x64 - 0b0001 IMP_32x64 + 0b0010 IMP_32x64 EndEnum EndSysreg @@ -718,7 +718,7 @@ Enum 23:20 SIMDHP 0b0000 NI 0b0001 SIMDHP - 0b0001 SIMDHP_FLOAT + 0b0010 SIMDHP_FLOAT EndEnum Enum 19:16 SIMDSP 0b0000 NI --- linux-gcp-6.2.0.orig/arch/loongarch/kernel/time.c +++ linux-gcp-6.2.0/arch/loongarch/kernel/time.c @@ -140,16 +140,17 @@ int constant_clockevent_init(void) { - int irq; unsigned int cpu = smp_processor_id(); unsigned long min_delta = 0x600; unsigned long max_delta = (1UL << 48) - 1; struct clock_event_device *cd; - static int timer_irq_installed = 0; + static int irq = 0, timer_irq_installed = 0; - irq = get_timer_irq(); - if (irq < 0) - pr_err("Failed to map irq %d (timer)\n", irq); + if (!timer_irq_installed) { + irq = get_timer_irq(); + if (irq < 0) + pr_err("Failed to map irq %d (timer)\n", irq); + } cd = &per_cpu(constant_clockevent_device, cpu); --- linux-gcp-6.2.0.orig/arch/loongarch/net/bpf_jit.c +++ linux-gcp-6.2.0/arch/loongarch/net/bpf_jit.c @@ -841,7 +841,7 @@ if (ret < 0) return ret; - move_imm(ctx, t1, func_addr, is32); + move_addr(ctx, t1, func_addr); emit_insn(ctx, jirl, t1, LOONGARCH_GPR_RA, 0); move_reg(ctx, regmap[BPF_REG_0], LOONGARCH_GPR_A0); break; @@ -1022,6 +1022,10 @@ emit_atomic(insn, ctx); break; + /* Speculation barrier */ + case BPF_ST | BPF_NOSPEC: + break; + default: pr_err("bpf_jit: unknown opcode %02x\n", code); return -EINVAL; --- linux-gcp-6.2.0.orig/arch/loongarch/net/bpf_jit.h +++ linux-gcp-6.2.0/arch/loongarch/net/bpf_jit.h @@ -82,6 +82,27 @@ emit_insn(ctx, addiw, reg, reg, 0); } +static inline void move_addr(struct jit_ctx *ctx, enum loongarch_gpr rd, u64 addr) +{ + u64 imm_11_0, imm_31_12, imm_51_32, imm_63_52; + + /* lu12iw rd, imm_31_12 */ + imm_31_12 = (addr >> 12) & 0xfffff; + emit_insn(ctx, lu12iw, rd, imm_31_12); + + /* ori rd, rd, imm_11_0 */ + imm_11_0 = addr & 0xfff; + emit_insn(ctx, ori, rd, rd, imm_11_0); + + /* lu32id rd, imm_51_32 */ + imm_51_32 = (addr >> 32) & 0xfffff; + emit_insn(ctx, lu32id, rd, imm_51_32); + + /* lu52id rd, rd, imm_63_52 */ + imm_63_52 = (addr >> 52) & 0xfff; + emit_insn(ctx, lu52id, rd, rd, imm_63_52); +} + static inline void move_imm(struct jit_ctx *ctx, enum loongarch_gpr rd, long imm, bool is32) { long imm_11_0, imm_31_12, imm_51_32, imm_63_52, imm_51_0, imm_51_31; --- linux-gcp-6.2.0.orig/arch/m68k/68000/entry.S +++ linux-gcp-6.2.0/arch/m68k/68000/entry.S @@ -45,6 +45,8 @@ jbsr syscall_trace_enter RESTORE_SWITCH_STACK addql #4,%sp + addql #1,%d0 + jeq ret_from_exception movel %sp@(PT_OFF_ORIG_D0),%d1 movel #-ENOSYS,%d0 cmpl #NR_syscalls,%d1 --- linux-gcp-6.2.0.orig/arch/m68k/Kconfig.devices +++ linux-gcp-6.2.0/arch/m68k/Kconfig.devices @@ -19,6 +19,7 @@ # We have a dedicated heartbeat LED. :-) config PROC_HARDWARE bool "/proc/hardware support" + depends on PROC_FS help Say Y here to support the /proc/hardware file, which gives you access to information about the machine you're running on, --- linux-gcp-6.2.0.orig/arch/m68k/coldfire/entry.S +++ linux-gcp-6.2.0/arch/m68k/coldfire/entry.S @@ -90,6 +90,8 @@ jbsr syscall_trace_enter RESTORE_SWITCH_STACK addql #4,%sp + addql #1,%d0 + jeq ret_from_exception movel %d3,%a0 jbsr %a0@ movel %d0,%sp@(PT_OFF_D0) /* save the return value */ --- linux-gcp-6.2.0.orig/arch/m68k/kernel/entry.S +++ linux-gcp-6.2.0/arch/m68k/kernel/entry.S @@ -184,9 +184,12 @@ jbsr syscall_trace_enter RESTORE_SWITCH_STACK addql #4,%sp + addql #1,%d0 | optimization for cmpil #-1,%d0 + jeq ret_from_syscall movel %sp@(PT_OFF_ORIG_D0),%d0 cmpl #NR_syscalls,%d0 jcs syscall + jra ret_from_syscall badsys: movel #-ENOSYS,%sp@(PT_OFF_D0) jra ret_from_syscall --- linux-gcp-6.2.0.orig/arch/m68k/kernel/setup_mm.c +++ linux-gcp-6.2.0/arch/m68k/kernel/setup_mm.c @@ -326,16 +326,16 @@ panic("No configuration setup"); } -#ifdef CONFIG_BLK_DEV_INITRD - if (m68k_ramdisk.size) { + if (IS_ENABLED(CONFIG_BLK_DEV_INITRD) && m68k_ramdisk.size) memblock_reserve(m68k_ramdisk.addr, m68k_ramdisk.size); + + paging_init(); + + if (IS_ENABLED(CONFIG_BLK_DEV_INITRD) && m68k_ramdisk.size) { initrd_start = (unsigned long)phys_to_virt(m68k_ramdisk.addr); initrd_end = initrd_start + m68k_ramdisk.size; pr_info("initrd: %08lx - %08lx\n", initrd_start, initrd_end); } -#endif - - paging_init(); #ifdef CONFIG_NATFEAT nf_init(); --- linux-gcp-6.2.0.orig/arch/m68k/kernel/traps.c +++ linux-gcp-6.2.0/arch/m68k/kernel/traps.c @@ -30,6 +30,7 @@ #include #include #include +#include #include #include @@ -545,7 +546,8 @@ errorcode |= 2; if (mmusr & (MMU_I | MMU_WP)) { - if (ssw & 4) { + /* We might have an exception table for this PC */ + if (ssw & 4 && !search_exception_tables(fp->ptregs.pc)) { pr_err("Data %s fault at %#010lx in %s (pc=%#lx)\n", ssw & RW ? "read" : "write", fp->un.fmtb.daddr, --- linux-gcp-6.2.0.orig/arch/m68k/mm/motorola.c +++ linux-gcp-6.2.0/arch/m68k/mm/motorola.c @@ -437,7 +437,7 @@ } min_addr = m68k_memory[0].addr; - max_addr = min_addr + m68k_memory[0].size; + max_addr = min_addr + m68k_memory[0].size - 1; memblock_add_node(m68k_memory[0].addr, m68k_memory[0].size, 0, MEMBLOCK_NONE); for (i = 1; i < m68k_num_memory;) { @@ -452,21 +452,21 @@ } memblock_add_node(m68k_memory[i].addr, m68k_memory[i].size, i, MEMBLOCK_NONE); - addr = m68k_memory[i].addr + m68k_memory[i].size; + addr = m68k_memory[i].addr + m68k_memory[i].size - 1; if (addr > max_addr) max_addr = addr; i++; } m68k_memoffset = min_addr - PAGE_OFFSET; - m68k_virt_to_node_shift = fls(max_addr - min_addr - 1) - 6; + m68k_virt_to_node_shift = fls(max_addr - min_addr) - 6; module_fixup(NULL, __start_fixup, __stop_fixup); flush_icache(); - high_memory = phys_to_virt(max_addr); + high_memory = phys_to_virt(max_addr) + 1; min_low_pfn = availmem >> PAGE_SHIFT; - max_pfn = max_low_pfn = max_addr >> PAGE_SHIFT; + max_pfn = max_low_pfn = (max_addr >> PAGE_SHIFT) + 1; /* Reserve kernel text/data/bss and the memory allocated in head.S */ memblock_reserve(m68k_memory[0].addr, availmem - m68k_memory[0].addr); --- linux-gcp-6.2.0.orig/arch/mips/bmips/dma.c +++ linux-gcp-6.2.0/arch/mips/bmips/dma.c @@ -5,6 +5,8 @@ #include #include +bool bmips_rac_flush_disable; + void arch_sync_dma_for_cpu_all(void) { void __iomem *cbr = BMIPS_GET_CBR(); @@ -15,6 +17,9 @@ boot_cpu_type() != CPU_BMIPS4380) return; + if (unlikely(bmips_rac_flush_disable)) + return; + /* Flush stale data out of the readahead cache */ cfg = __raw_readl(cbr + BMIPS_RAC_CONFIG); __raw_writel(cfg | 0x100, cbr + BMIPS_RAC_CONFIG); --- linux-gcp-6.2.0.orig/arch/mips/bmips/setup.c +++ linux-gcp-6.2.0/arch/mips/bmips/setup.c @@ -35,6 +35,8 @@ #define REG_BCM6328_OTP ((void __iomem *)CKSEG1ADDR(0x1000062c)) #define BCM6328_TP1_DISABLED BIT(9) +extern bool bmips_rac_flush_disable; + static const unsigned long kbase = VMLINUX_LOAD_ADDRESS & 0xfff00000; struct bmips_quirk { @@ -104,6 +106,12 @@ * disable SMP for now */ bmips_smp_enabled = 0; + + /* + * RAC flush causes kernel panics on BCM6358 when booting from TP1 + * because the bootloader is not initializing it properly. + */ + bmips_rac_flush_disable = !!(read_c0_brcm_cmt_local() & (1 << 31)); } static void bcm6368_quirks(void) --- linux-gcp-6.2.0.orig/arch/mips/boot/dts/ingenic/ci20.dts +++ linux-gcp-6.2.0/arch/mips/boot/dts/ingenic/ci20.dts @@ -113,7 +113,7 @@ regulator-min-microvolt = <5000000>; regulator-max-microvolt = <5000000>; - gpio = <&gpf 14 GPIO_ACTIVE_LOW>; + gpio = <&gpf 15 GPIO_ACTIVE_LOW>; enable-active-high; }; }; --- linux-gcp-6.2.0.orig/arch/mips/configs/mtx1_defconfig +++ linux-gcp-6.2.0/arch/mips/configs/mtx1_defconfig @@ -284,6 +284,7 @@ CONFIG_SKGE=m CONFIG_SKY2=m CONFIG_MYRI10GE=m +CONFIG_FEALNX=m CONFIG_NATSEMI=m CONFIG_NS83820=m CONFIG_S2IO=m --- linux-gcp-6.2.0.orig/arch/mips/include/asm/mach-rc32434/pci.h +++ linux-gcp-6.2.0/arch/mips/include/asm/mach-rc32434/pci.h @@ -374,7 +374,7 @@ PCI_CFG04_STAT_SSE | \ PCI_CFG04_STAT_PE) -#define KORINA_CNFG1 ((KORINA_STAT<<16)|KORINA_CMD) +#define KORINA_CNFG1 (KORINA_STAT | KORINA_CMD) #define KORINA_REVID 0 #define KORINA_CLASS_CODE 0 --- linux-gcp-6.2.0.orig/arch/mips/include/asm/syscall.h +++ linux-gcp-6.2.0/arch/mips/include/asm/syscall.h @@ -38,7 +38,7 @@ static inline long syscall_get_nr(struct task_struct *task, struct pt_regs *regs) { - return current_thread_info()->syscall; + return task_thread_info(task)->syscall; } static inline void mips_syscall_update_nr(struct task_struct *task, --- linux-gcp-6.2.0.orig/arch/powerpc/Makefile +++ linux-gcp-6.2.0/arch/powerpc/Makefile @@ -90,7 +90,7 @@ ifeq ($(HAS_BIARCH),y) KBUILD_CFLAGS += -m$(BITS) -KBUILD_AFLAGS += -m$(BITS) -Wl,-a$(BITS) +KBUILD_AFLAGS += -m$(BITS) KBUILD_LDFLAGS += -m elf$(BITS)$(LDEMULATION) endif @@ -146,19 +146,6 @@ CFLAGS-$(CONFIG_PPC32) += $(call cc-option,-mno-readonly-in-sdata) -ifdef CONFIG_PPC_BOOK3S_64 -ifdef CONFIG_CPU_LITTLE_ENDIAN -CFLAGS-$(CONFIG_GENERIC_CPU) += -mcpu=power8 -else -CFLAGS-$(CONFIG_GENERIC_CPU) += -mcpu=power4 -endif -CFLAGS-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mtune=power10, \ - $(call cc-option,-mtune=power9, \ - $(call cc-option,-mtune=power8))) -else ifdef CONFIG_PPC_BOOK3E_64 -CFLAGS-$(CONFIG_GENERIC_CPU) += -mcpu=powerpc64 -endif - ifdef CONFIG_FUNCTION_TRACER CC_FLAGS_FTRACE := -pg ifdef CONFIG_MPROFILE_KERNEL @@ -166,11 +153,12 @@ endif endif -CFLAGS-$(CONFIG_TARGET_CPU_BOOL) += $(call cc-option,-mcpu=$(CONFIG_TARGET_CPU)) -AFLAGS-$(CONFIG_TARGET_CPU_BOOL) += $(call cc-option,-mcpu=$(CONFIG_TARGET_CPU)) +CFLAGS-$(CONFIG_TARGET_CPU_BOOL) += -mcpu=$(CONFIG_TARGET_CPU) +AFLAGS-$(CONFIG_TARGET_CPU_BOOL) += -mcpu=$(CONFIG_TARGET_CPU) -CFLAGS-$(CONFIG_E5500_CPU) += $(call cc-option,-mcpu=e500mc64,-mcpu=powerpc64) -CFLAGS-$(CONFIG_E6500_CPU) += $(call cc-option,-mcpu=e6500,$(E5500_CPU)) +CFLAGS-$(CONFIG_POWERPC64_CPU) += $(call cc-option,-mtune=power10, \ + $(call cc-option,-mtune=power9, \ + $(call cc-option,-mtune=power8))) asinstr := $(call as-instr,lis 9$(comma)foo@high,-DHAVE_AS_ATHIGH=1) @@ -213,10 +201,7 @@ # often slow when they are implemented at all KBUILD_CFLAGS += $(call cc-option,-mno-string) -cpu-as-$(CONFIG_40x) += -Wa,-m405 -cpu-as-$(CONFIG_44x) += -Wa,-m440 cpu-as-$(CONFIG_ALTIVEC) += $(call as-option,-Wa$(comma)-maltivec) -cpu-as-$(CONFIG_PPC_E500) += -Wa,-me500 # When using '-many -mpower4' gas will first try and find a matching power4 # mnemonic and failing that it will allow any valid mnemonic that GAS knows @@ -224,7 +209,6 @@ # LLVM IAS doesn't understand either flag: https://github.com/ClangBuiltLinux/linux/issues/675 # but LLVM IAS only supports ISA >= 2.06 for Book3S 64 anyway... cpu-as-$(CONFIG_PPC_BOOK3S_64) += $(call as-option,-Wa$(comma)-mpower4) $(call as-option,-Wa$(comma)-many) -cpu-as-$(CONFIG_PPC_E500MC) += $(call as-option,-Wa$(comma)-me500mc) KBUILD_AFLAGS += $(cpu-as-y) KBUILD_CFLAGS += $(cpu-as-y) @@ -236,7 +220,7 @@ all: zImage # With make 3.82 we cannot mix normal and wildcard targets -BOOT_TARGETS1 := zImage zImage.initrd uImage +BOOT_TARGETS1 := zImage zImage.initrd uImage vmlinux.strip BOOT_TARGETS2 := zImage% dtbImage% treeImage.% cuImage.% simpleImage.% uImage.% PHONY += $(BOOT_TARGETS1) $(BOOT_TARGETS2) --- linux-gcp-6.2.0.orig/arch/powerpc/boot/Makefile +++ linux-gcp-6.2.0/arch/powerpc/boot/Makefile @@ -39,13 +39,19 @@ $(LINUXINCLUDE) ifdef CONFIG_PPC64_BOOT_WRAPPER -ifdef CONFIG_CPU_LITTLE_ENDIAN -BOOTCFLAGS += -m64 -mcpu=powerpc64le +BOOTCFLAGS += -m64 else -BOOTCFLAGS += -m64 -mcpu=powerpc64 +BOOTCFLAGS += -m32 endif + +ifdef CONFIG_TARGET_CPU_BOOL +BOOTCFLAGS += -mcpu=$(CONFIG_TARGET_CPU) +else ifdef CONFIG_PPC64_BOOT_WRAPPER +ifdef CONFIG_CPU_LITTLE_ENDIAN +BOOTCFLAGS += -mcpu=powerpc64le else -BOOTCFLAGS += -m32 -mcpu=powerpc +BOOTCFLAGS += -mcpu=powerpc64 +endif endif BOOTCFLAGS += -isystem $(shell $(BOOTCC) -print-file-name=include) --- linux-gcp-6.2.0.orig/arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dts +++ linux-gcp-6.2.0/arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dts @@ -10,7 +10,6 @@ / { model = "fsl,T1040RDB-REV-A"; - compatible = "fsl,T1040RDB-REV-A"; }; &seville_port0 { --- linux-gcp-6.2.0.orig/arch/powerpc/configs/ppc6xx_defconfig +++ linux-gcp-6.2.0/arch/powerpc/configs/ppc6xx_defconfig @@ -461,6 +461,7 @@ CONFIG_SKGE=m CONFIG_SKY2=m CONFIG_MYRI10GE=m +CONFIG_FEALNX=m CONFIG_NATSEMI=m CONFIG_NS83820=m CONFIG_PCMCIA_AXNET=m --- linux-gcp-6.2.0.orig/arch/powerpc/include/asm/book3s/64/tlbflush.h +++ linux-gcp-6.2.0/arch/powerpc/include/asm/book3s/64/tlbflush.h @@ -148,6 +148,11 @@ */ } +static inline bool __pte_protnone(unsigned long pte) +{ + return (pte & (pgprot_val(PAGE_NONE) | _PAGE_RWX)) == pgprot_val(PAGE_NONE); +} + static inline bool __pte_flags_need_flush(unsigned long oldval, unsigned long newval) { @@ -164,8 +169,8 @@ /* * We do not expect kernel mappings or non-PTEs or not-present PTEs. */ - VM_WARN_ON_ONCE(oldval & _PAGE_PRIVILEGED); - VM_WARN_ON_ONCE(newval & _PAGE_PRIVILEGED); + VM_WARN_ON_ONCE(!__pte_protnone(oldval) && oldval & _PAGE_PRIVILEGED); + VM_WARN_ON_ONCE(!__pte_protnone(newval) && newval & _PAGE_PRIVILEGED); VM_WARN_ON_ONCE(!(oldval & _PAGE_PTE)); VM_WARN_ON_ONCE(!(newval & _PAGE_PTE)); VM_WARN_ON_ONCE(!(oldval & _PAGE_PRESENT)); --- linux-gcp-6.2.0.orig/arch/powerpc/include/asm/cputhreads.h +++ linux-gcp-6.2.0/arch/powerpc/include/asm/cputhreads.h @@ -3,6 +3,7 @@ #define _ASM_POWERPC_CPUTHREADS_H #ifndef __ASSEMBLY__ +#include #include #include --- linux-gcp-6.2.0.orig/arch/powerpc/include/asm/hw_irq.h +++ linux-gcp-6.2.0/arch/powerpc/include/asm/hw_irq.h @@ -36,15 +36,17 @@ #define PACA_IRQ_DEC 0x08 /* Or FIT */ #define PACA_IRQ_HMI 0x10 #define PACA_IRQ_PMI 0x20 +#define PACA_IRQ_REPLAYING 0x40 /* * Some soft-masked interrupts must be hard masked until they are replayed * (e.g., because the soft-masked handler does not clear the exception). + * Interrupt replay itself must remain hard masked too. */ #ifdef CONFIG_PPC_BOOK3S -#define PACA_IRQ_MUST_HARD_MASK (PACA_IRQ_EE|PACA_IRQ_PMI) +#define PACA_IRQ_MUST_HARD_MASK (PACA_IRQ_EE|PACA_IRQ_PMI|PACA_IRQ_REPLAYING) #else -#define PACA_IRQ_MUST_HARD_MASK (PACA_IRQ_EE) +#define PACA_IRQ_MUST_HARD_MASK (PACA_IRQ_EE|PACA_IRQ_REPLAYING) #endif #endif /* CONFIG_PPC64 */ --- linux-gcp-6.2.0.orig/arch/powerpc/include/asm/paca.h +++ linux-gcp-6.2.0/arch/powerpc/include/asm/paca.h @@ -295,7 +295,6 @@ #else /* CONFIG_PPC64 */ -static inline void allocate_paca_ptrs(void) { } static inline void allocate_paca(int cpu) { } static inline void free_unused_pacas(void) { } --- linux-gcp-6.2.0.orig/arch/powerpc/include/asm/ptrace.h +++ linux-gcp-6.2.0/arch/powerpc/include/asm/ptrace.h @@ -118,6 +118,7 @@ #define USER_REDZONE_SIZE 512 #define KERNEL_REDZONE_SIZE 288 +#define STACK_FRAME_OVERHEAD 112 /* size of minimum stack frame */ #define STACK_FRAME_LR_SAVE 2 /* Location of LR in stack frame */ #ifdef CONFIG_PPC64_ELF_ABI_V2 @@ -134,11 +135,11 @@ * so the second from last one of those is used for the frame marker. */ #define STACK_FRAME_MIN_SIZE 112 -#define STACK_USER_INT_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_MIN_SIZE) -#define STACK_INT_FRAME_REGS STACK_FRAME_MIN_SIZE -#define STACK_INT_FRAME_MARKER (STACK_FRAME_MIN_SIZE - 16) -#define STACK_SWITCH_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_MIN_SIZE) -#define STACK_SWITCH_FRAME_REGS STACK_FRAME_MIN_SIZE +#define STACK_USER_INT_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_OVERHEAD) +#define STACK_INT_FRAME_REGS STACK_FRAME_OVERHEAD +#define STACK_INT_FRAME_MARKER (STACK_FRAME_OVERHEAD - 16) +#define STACK_SWITCH_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_OVERHEAD) +#define STACK_SWITCH_FRAME_REGS STACK_FRAME_OVERHEAD #endif /* Size of dummy stack frame allocated when calling signal handler. */ @@ -149,13 +150,14 @@ #define USER_REDZONE_SIZE 0 #define KERNEL_REDZONE_SIZE 0 -#define STACK_FRAME_MIN_SIZE 16 +#define STACK_FRAME_OVERHEAD 16 /* size of minimum stack frame */ #define STACK_FRAME_LR_SAVE 1 /* Location of LR in stack frame */ -#define STACK_USER_INT_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_MIN_SIZE) -#define STACK_INT_FRAME_REGS STACK_FRAME_MIN_SIZE -#define STACK_INT_FRAME_MARKER (STACK_FRAME_MIN_SIZE - 8) -#define STACK_SWITCH_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_MIN_SIZE) -#define STACK_SWITCH_FRAME_REGS STACK_FRAME_MIN_SIZE +#define STACK_USER_INT_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_OVERHEAD) +#define STACK_INT_FRAME_REGS STACK_FRAME_OVERHEAD +#define STACK_INT_FRAME_MARKER (STACK_FRAME_OVERHEAD - 8) +#define STACK_FRAME_MIN_SIZE STACK_FRAME_OVERHEAD +#define STACK_SWITCH_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_OVERHEAD) +#define STACK_SWITCH_FRAME_REGS STACK_FRAME_OVERHEAD /* Size of stack frame allocated when calling signal handler. */ #define __SIGNAL_FRAMESIZE 64 --- linux-gcp-6.2.0.orig/arch/powerpc/include/asm/smp.h +++ linux-gcp-6.2.0/arch/powerpc/include/asm/smp.h @@ -26,6 +26,7 @@ #include extern int boot_cpuid; +extern int boot_cpu_hwid; /* PPC64 only */ extern int spinning_secondaries; extern u32 *cpu_to_phys_id; extern bool coregroup_enabled; --- linux-gcp-6.2.0.orig/arch/powerpc/kernel/iommu.c +++ linux-gcp-6.2.0/arch/powerpc/kernel/iommu.c @@ -67,11 +67,9 @@ static void iommu_debugfs_del(struct iommu_table *tbl) { char name[10]; - struct dentry *liobn_entry; sprintf(name, "%08lx", tbl->it_index); - liobn_entry = debugfs_lookup(name, iommu_debugfs_dir); - debugfs_remove(liobn_entry); + debugfs_lookup_and_remove(name, iommu_debugfs_dir); } #else static void iommu_debugfs_add(struct iommu_table *tbl){} --- linux-gcp-6.2.0.orig/arch/powerpc/kernel/irq_64.c +++ linux-gcp-6.2.0/arch/powerpc/kernel/irq_64.c @@ -70,22 +70,19 @@ static inline void next_interrupt(struct pt_regs *regs) { - /* - * Softirq processing can enable/disable irqs, which will leave - * MSR[EE] enabled and the soft mask set to IRQS_DISABLED. Fix - * this up. - */ - if (!(local_paca->irq_happened & PACA_IRQ_HARD_DIS)) - hard_irq_disable(); - else - irq_soft_mask_set(IRQS_ALL_DISABLED); + if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) { + WARN_ON(!(local_paca->irq_happened & PACA_IRQ_HARD_DIS)); + WARN_ON(irq_soft_mask_return() != IRQS_ALL_DISABLED); + } /* * We are responding to the next interrupt, so interrupt-off * latencies should be reset here. */ + lockdep_hardirq_exit(); trace_hardirqs_on(); trace_hardirqs_off(); + lockdep_hardirq_enter(); } static inline bool irq_happened_test_and_clear(u8 irq) @@ -97,22 +94,11 @@ return false; } -void replay_soft_interrupts(void) +static void __replay_soft_interrupts(void) { struct pt_regs regs; /* - * Be careful here, calling these interrupt handlers can cause - * softirqs to be raised, which they may run when calling irq_exit, - * which will cause local_irq_enable() to be run, which can then - * recurse into this function. Don't keep any state across - * interrupt handler calls which may change underneath us. - * - * Softirqs can not be disabled over replay to stop this recursion - * because interrupts taken in idle code may require RCU softirq - * to run in the irq RCU tracking context. This is a hard problem - * to fix without changes to the softirq or idle layer. - * * We use local_paca rather than get_paca() to avoid all the * debug_smp_processor_id() business in this low level function. */ @@ -120,13 +106,20 @@ if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) { WARN_ON_ONCE(mfmsr() & MSR_EE); WARN_ON(!(local_paca->irq_happened & PACA_IRQ_HARD_DIS)); + WARN_ON(local_paca->irq_happened & PACA_IRQ_REPLAYING); } + /* + * PACA_IRQ_REPLAYING prevents interrupt handlers from enabling + * MSR[EE] to get PMIs, which can result in more IRQs becoming + * pending. + */ + local_paca->irq_happened |= PACA_IRQ_REPLAYING; + ppc_save_regs(®s); regs.softe = IRQS_ENABLED; regs.msr |= MSR_EE; -again: /* * Force the delivery of pending soft-disabled interrupts on PS3. * Any HV call will have this side effect. @@ -175,13 +168,14 @@ next_interrupt(®s); } - /* - * Softirq processing can enable and disable interrupts, which can - * result in new irqs becoming pending. Must keep looping until we - * have cleared out all pending interrupts. - */ - if (local_paca->irq_happened & ~PACA_IRQ_HARD_DIS) - goto again; + local_paca->irq_happened &= ~PACA_IRQ_REPLAYING; +} + +void replay_soft_interrupts(void) +{ + irq_enter(); /* See comment in arch_local_irq_restore */ + __replay_soft_interrupts(); + irq_exit(); } #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_PPC_KUAP) @@ -200,13 +194,13 @@ if (kuap_state != AMR_KUAP_BLOCKED) set_kuap(AMR_KUAP_BLOCKED); - replay_soft_interrupts(); + __replay_soft_interrupts(); if (kuap_state != AMR_KUAP_BLOCKED) set_kuap(kuap_state); } #else -#define replay_soft_interrupts_irqrestore() replay_soft_interrupts() +#define replay_soft_interrupts_irqrestore() __replay_soft_interrupts() #endif notrace void arch_local_irq_restore(unsigned long mask) @@ -219,9 +213,13 @@ return; } - if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) - WARN_ON_ONCE(in_nmi() || in_hardirq()); + if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) { + WARN_ON_ONCE(in_nmi()); + WARN_ON_ONCE(in_hardirq()); + WARN_ON_ONCE(local_paca->irq_happened & PACA_IRQ_REPLAYING); + } +again: /* * After the stb, interrupts are unmasked and there are no interrupts * pending replay. The restart sequence makes this atomic with @@ -248,6 +246,12 @@ if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) WARN_ON_ONCE(!(mfmsr() & MSR_EE)); + /* + * If we came here from the replay below, we might have a preempt + * pending (due to preempt_enable_no_resched()). Have to check now. + */ + preempt_check_resched(); + return; happened: @@ -261,6 +265,7 @@ irq_soft_mask_set(IRQS_ENABLED); local_paca->irq_happened = 0; __hard_irq_enable(); + preempt_check_resched(); return; } @@ -296,12 +301,38 @@ irq_soft_mask_set(IRQS_ALL_DISABLED); trace_hardirqs_off(); + /* + * Now enter interrupt context. The interrupt handlers themselves + * also call irq_enter/exit (which is okay, they can nest). But call + * it here now to hold off softirqs until the below irq_exit(). If + * we allowed replayed handlers to run softirqs, that enables irqs, + * which must replay interrupts, which recurses in here and makes + * things more complicated. The recursion is limited to 2, and it can + * be made to work, but it's complicated. + * + * local_bh_disable can not be used here because interrupts taken in + * idle are not in the right context (RCU, tick, etc) to run softirqs + * so irq_enter must be called. + */ + irq_enter(); + replay_soft_interrupts_irqrestore(); + irq_exit(); + + if (unlikely(local_paca->irq_happened != PACA_IRQ_HARD_DIS)) { + /* + * The softirq processing in irq_exit() may enable interrupts + * temporarily, which can result in MSR[EE] being enabled and + * more irqs becoming pending. Go around again if that happens. + */ + trace_hardirqs_on(); + preempt_enable_no_resched(); + goto again; + } + trace_hardirqs_on(); irq_soft_mask_set(IRQS_ENABLED); - if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) - WARN_ON(local_paca->irq_happened != PACA_IRQ_HARD_DIS); local_paca->irq_happened = 0; __hard_irq_enable(); preempt_enable(); --- linux-gcp-6.2.0.orig/arch/powerpc/kernel/module_64.c +++ linux-gcp-6.2.0/arch/powerpc/kernel/module_64.c @@ -234,12 +234,13 @@ static void dedotify_versions(struct modversion_info *vers, unsigned long size) { - struct modversion_info *end; + struct modversion_info *end = (void *)vers + size; - for (end = (void *)vers + size; vers < end; vers++) + for (; vers < end && vers->next; vers = (void *)vers + vers->next) { if (vers->name[0] == '.') { memmove(vers->name, vers->name+1, strlen(vers->name)); } + } } /* --- linux-gcp-6.2.0.orig/arch/powerpc/kernel/pci-common.c +++ linux-gcp-6.2.0/arch/powerpc/kernel/pci-common.c @@ -360,6 +360,7 @@ } return NULL; } +EXPORT_SYMBOL(pci_find_hose_for_OF_device); struct pci_controller *pci_find_controller_for_domain(int domain_nr) { @@ -1631,6 +1632,7 @@ { return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap); } +EXPORT_SYMBOL_GPL(early_find_capability); struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus) { --- linux-gcp-6.2.0.orig/arch/powerpc/kernel/process.c +++ linux-gcp-6.2.0/arch/powerpc/kernel/process.c @@ -1405,8 +1405,7 @@ for (i = 0; i < NR_INSN_TO_PRINT; i++) { int instr; - if (!__kernel_text_address(pc) || - get_kernel_nofault(instr, (const void *)pc)) { + if (get_kernel_nofault(instr, (const void *)pc)) { pr_cont("XXXXXXXX "); } else { if (nip == pc) --- linux-gcp-6.2.0.orig/arch/powerpc/kernel/prom.c +++ linux-gcp-6.2.0/arch/powerpc/kernel/prom.c @@ -370,8 +370,8 @@ be32_to_cpu(intserv[found_thread])); boot_cpuid = found; - // Pass the boot CPU's hard CPU id back to our caller - *((u32 *)data) = be32_to_cpu(intserv[found_thread]); + if (IS_ENABLED(CONFIG_PPC64)) + boot_cpu_hwid = be32_to_cpu(intserv[found_thread]); /* * PAPR defines "logical" PVR values for cpus that @@ -755,7 +755,6 @@ void __init early_init_devtree(void *params) { - u32 boot_cpu_hwid; phys_addr_t limit; DBG(" -> early_init_devtree(%px)\n", params); @@ -851,7 +850,7 @@ /* Retrieve CPU related informations from the flat tree * (altivec support, boot CPU ID, ...) */ - of_scan_flat_dt(early_init_dt_scan_cpus, &boot_cpu_hwid); + of_scan_flat_dt(early_init_dt_scan_cpus, NULL); if (boot_cpuid < 0) { printk("Failed to identify boot CPU !\n"); BUG(); @@ -868,11 +867,6 @@ mmu_early_init_devtree(); - // NB. paca is not installed until later in early_setup() - allocate_paca_ptrs(); - allocate_paca(boot_cpuid); - set_hard_smp_processor_id(boot_cpuid, boot_cpu_hwid); - #ifdef CONFIG_PPC_POWERNV /* Scan and build the list of machine check recoverable ranges */ of_scan_flat_dt(early_init_dt_scan_recoverable_ranges, NULL); --- linux-gcp-6.2.0.orig/arch/powerpc/kernel/ptrace/ptrace-view.c +++ linux-gcp-6.2.0/arch/powerpc/kernel/ptrace/ptrace-view.c @@ -290,6 +290,9 @@ static int ppr_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) { + if (!target->thread.regs) + return -EINVAL; + return membuf_write(&to, &target->thread.regs->ppr, sizeof(u64)); } @@ -297,6 +300,9 @@ unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) { + if (!target->thread.regs) + return -EINVAL; + return user_regset_copyin(&pos, &count, &kbuf, &ubuf, &target->thread.regs->ppr, 0, sizeof(u64)); } --- linux-gcp-6.2.0.orig/arch/powerpc/kernel/setup-common.c +++ linux-gcp-6.2.0/arch/powerpc/kernel/setup-common.c @@ -36,6 +36,7 @@ #include #include #include +#include #include #include #include @@ -68,6 +69,7 @@ #include #include #include +#include #include "setup.h" @@ -87,6 +89,10 @@ int boot_cpuid = -1; EXPORT_SYMBOL_GPL(boot_cpuid); +#ifdef CONFIG_PPC64 +int boot_cpu_hwid = -1; +#endif + /* * These are used in binfmt_elf.c to put aux entries on the stack * for each elf executable being started. @@ -908,6 +914,16 @@ */ initialize_cache_info(); + /* + * Lock down the kernel if booted in secure mode. This is required to + * maintain kernel integrity. + */ + if (IS_ENABLED(CONFIG_LOCK_DOWN_IN_SECURE_BOOT)) { + if (is_ppc_secureboot_enabled()) + security_lock_kernel_down("PowerNV Secure Boot mode", + LOCKDOWN_INTEGRITY_MAX); + } + /* Initialize RTAS if available. */ rtas_initialize(); --- linux-gcp-6.2.0.orig/arch/powerpc/kernel/setup_64.c +++ linux-gcp-6.2.0/arch/powerpc/kernel/setup_64.c @@ -385,17 +385,21 @@ /* * Do early initialization using the flattened device * tree, such as retrieving the physical memory map or - * calculating/retrieving the hash table size. + * calculating/retrieving the hash table size, discover + * boot_cpuid and boot_cpu_hwid. */ early_init_devtree(__va(dt_ptr)); - /* Now we know the logical id of our boot cpu, setup the paca. */ - if (boot_cpuid != 0) { - /* Poison paca_ptrs[0] again if it's not the boot cpu */ - memset(&paca_ptrs[0], 0x88, sizeof(paca_ptrs[0])); - } + allocate_paca_ptrs(); + allocate_paca(boot_cpuid); + set_hard_smp_processor_id(boot_cpuid, boot_cpu_hwid); fixup_boot_paca(paca_ptrs[boot_cpuid]); setup_paca(paca_ptrs[boot_cpuid]); /* install the paca into registers */ + // smp_processor_id() now reports boot_cpuid + +#ifdef CONFIG_SMP + task_thread_info(current)->cpu = boot_cpuid; // fix task_cpu(current) +#endif /* * Configure exception handlers. This include setting up trampolines --- linux-gcp-6.2.0.orig/arch/powerpc/kernel/time.c +++ linux-gcp-6.2.0/arch/powerpc/kernel/time.c @@ -356,7 +356,7 @@ } #endif /* CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */ -void __delay(unsigned long loops) +void __no_kcsan __delay(unsigned long loops) { unsigned long start; @@ -377,7 +377,7 @@ } EXPORT_SYMBOL(__delay); -void udelay(unsigned long usecs) +void __no_kcsan udelay(unsigned long usecs) { __delay(tb_ticks_per_usec * usecs); } --- linux-gcp-6.2.0.orig/arch/powerpc/lib/sstep.c +++ linux-gcp-6.2.0/arch/powerpc/lib/sstep.c @@ -8,6 +8,7 @@ #include #include #include +#include #include #include #include --- linux-gcp-6.2.0.orig/arch/powerpc/mm/book3s64/radix_tlb.c +++ linux-gcp-6.2.0/arch/powerpc/mm/book3s64/radix_tlb.c @@ -1179,15 +1179,12 @@ } } } else { - bool hflush = false; + bool hflush; unsigned long hstart, hend; - if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE)) { - hstart = (start + PMD_SIZE - 1) & PMD_MASK; - hend = end & PMD_MASK; - if (hstart < hend) - hflush = true; - } + hstart = (start + PMD_SIZE - 1) & PMD_MASK; + hend = end & PMD_MASK; + hflush = IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE) && hstart < hend; if (type == FLUSH_TYPE_LOCAL) { asm volatile("ptesync": : :"memory"); --- linux-gcp-6.2.0.orig/arch/powerpc/mm/fault.c +++ linux-gcp-6.2.0/arch/powerpc/mm/fault.c @@ -271,11 +271,16 @@ } /* - * Check for a read fault. This could be caused by a read on an - * inaccessible page (i.e. PROT_NONE), or a Radix MMU execute-only page. + * VM_READ, VM_WRITE and VM_EXEC all imply read permissions, as + * defined in protection_map[]. Read faults can only be caused by + * a PROT_NONE mapping, or with a PROT_EXEC-only mapping on Radix. */ - if (unlikely(!(vma->vm_flags & VM_READ))) + if (unlikely(!vma_is_accessible(vma))) return true; + + if (unlikely(radix_enabled() && ((vma->vm_flags & VM_ACCESS_FLAGS) == VM_EXEC))) + return true; + /* * We should ideally do the vma pkey access check here. But in the * fault path, handle_mm_fault() also does the same check. To avoid --- linux-gcp-6.2.0.orig/arch/powerpc/mm/numa.c +++ linux-gcp-6.2.0/arch/powerpc/mm/numa.c @@ -366,6 +366,7 @@ WARN(numa_distance_table[nid][nid] == -1, "NUMA distance details for node %d not provided\n", nid); } +EXPORT_SYMBOL_GPL(update_numa_distance); /* * ibm,numa-lookup-index-table= {N, domainid1, domainid2, ..... domainidN} --- linux-gcp-6.2.0.orig/arch/powerpc/net/bpf_jit_comp32.c +++ linux-gcp-6.2.0/arch/powerpc/net/bpf_jit_comp32.c @@ -79,6 +79,20 @@ #define SEEN_NVREG_FULL_MASK 0x0003ffff /* Non volatile registers r14-r31 */ #define SEEN_NVREG_TEMP_MASK 0x00001e01 /* BPF_REG_5, BPF_REG_AX, TMP_REG */ +static inline bool bpf_has_stack_frame(struct codegen_context *ctx) +{ + /* + * We only need a stack frame if: + * - we call other functions (kernel helpers), or + * - we use non volatile registers, or + * - we use tail call counter + * - the bpf program uses its stack area + * The latter condition is deduced from the usage of BPF_REG_FP + */ + return ctx->seen & (SEEN_FUNC | SEEN_TAILCALL | SEEN_NVREG_FULL_MASK) || + bpf_is_seen_register(ctx, bpf_to_ppc(BPF_REG_FP)); +} + void bpf_jit_realloc_regs(struct codegen_context *ctx) { unsigned int nvreg_mask; @@ -118,7 +132,8 @@ #define BPF_TAILCALL_PROLOGUE_SIZE 4 - EMIT(PPC_RAW_STWU(_R1, _R1, -BPF_PPC_STACKFRAME(ctx))); + if (bpf_has_stack_frame(ctx)) + EMIT(PPC_RAW_STWU(_R1, _R1, -BPF_PPC_STACKFRAME(ctx))); if (ctx->seen & SEEN_TAILCALL) EMIT(PPC_RAW_STW(_R4, _R1, bpf_jit_stack_offsetof(ctx, BPF_PPC_TC))); @@ -171,7 +186,8 @@ EMIT(PPC_RAW_LWZ(_R0, _R1, BPF_PPC_STACKFRAME(ctx) + PPC_LR_STKOFF)); /* Tear down our stack frame */ - EMIT(PPC_RAW_ADDI(_R1, _R1, BPF_PPC_STACKFRAME(ctx))); + if (bpf_has_stack_frame(ctx)) + EMIT(PPC_RAW_ADDI(_R1, _R1, BPF_PPC_STACKFRAME(ctx))); if (ctx->seen & SEEN_FUNC) EMIT(PPC_RAW_MTLR(_R0)); --- linux-gcp-6.2.0.orig/arch/powerpc/platforms/Kconfig.cputype +++ linux-gcp-6.2.0/arch/powerpc/platforms/Kconfig.cputype @@ -118,19 +118,18 @@ choice prompt "CPU selection" - default GENERIC_CPU help This will create a kernel which is optimised for a particular CPU. The resulting kernel may not run on other CPUs, so use this with care. If unsure, select Generic. -config GENERIC_CPU +config POWERPC64_CPU bool "Generic (POWER5 and PowerPC 970 and above)" depends on PPC_BOOK3S_64 && !CPU_LITTLE_ENDIAN select PPC_64S_HASH_MMU -config GENERIC_CPU +config POWERPC64_CPU bool "Generic (POWER8 and above)" depends on PPC_BOOK3S_64 && CPU_LITTLE_ENDIAN select ARCH_HAS_FAST_MULTIPLIER @@ -144,6 +143,7 @@ config CELL_CPU bool "Cell Broadband Engine" depends on PPC_BOOK3S_64 && !CPU_LITTLE_ENDIAN + depends on !CC_IS_CLANG select PPC_64S_HASH_MMU config PPC_970_CPU @@ -188,11 +188,13 @@ config E6500_CPU bool "Freescale e6500" depends on PPC64 && PPC_E500 + depends on !CC_IS_CLANG select PPC_HAS_LBARX_LHARX config 405_CPU bool "40x family" depends on 40x + depends on !CC_IS_CLANG config 440_CPU bool "440 (44x family)" @@ -201,22 +203,27 @@ config 464_CPU bool "464 (44x family)" depends on 44x + depends on !CC_IS_CLANG config 476_CPU bool "476 (47x family)" depends on PPC_47x + depends on !CC_IS_CLANG config 860_CPU bool "8xx family" depends on PPC_8xx + depends on !CC_IS_CLANG config E300C2_CPU bool "e300c2 (832x)" depends on PPC_BOOK3S_32 + depends on !CC_IS_CLANG config E300C3_CPU bool "e300c3 (831x)" depends on PPC_BOOK3S_32 + depends on !CC_IS_CLANG config G4_CPU bool "G4 (74xx)" @@ -233,13 +240,12 @@ config TOOLCHAIN_DEFAULT_CPU bool "Rely on the toolchain's implicit default CPU" - depends on PPC32 endchoice config TARGET_CPU_BOOL bool - default !GENERIC_CPU && !TOOLCHAIN_DEFAULT_CPU + default !TOOLCHAIN_DEFAULT_CPU config TARGET_CPU string @@ -251,6 +257,10 @@ default "power8" if POWER8_CPU default "power9" if POWER9_CPU default "power10" if POWER10_CPU + default "e5500" if E5500_CPU + default "e6500" if E6500_CPU + default "power4" if POWERPC64_CPU && !CPU_LITTLE_ENDIAN + default "power8" if POWERPC64_CPU && CPU_LITTLE_ENDIAN default "405" if 405_CPU default "440" if 440_CPU default "464" if 464_CPU --- linux-gcp-6.2.0.orig/arch/powerpc/platforms/pseries/hvCall.S +++ linux-gcp-6.2.0/arch/powerpc/platforms/pseries/hvCall.S @@ -27,9 +27,7 @@ /* * precall must preserve all registers. use unused STK_PARAM() - * areas to save snapshots and opcode. STK_PARAM() in the caller's - * frame will be available even on ELFv2 because these are all - * variadic functions. + * areas to save snapshots and opcode. */ #define HCALL_INST_PRECALL(FIRST_REG) \ mflr r0; \ @@ -43,29 +41,29 @@ std r10,STK_PARAM(R10)(r1); \ std r0,16(r1); \ addi r4,r1,STK_PARAM(FIRST_REG); \ - stdu r1,-STACK_FRAME_MIN_SIZE(r1); \ + stdu r1,-STACK_FRAME_OVERHEAD(r1); \ bl __trace_hcall_entry; \ - ld r3,STACK_FRAME_MIN_SIZE+STK_PARAM(R3)(r1); \ - ld r4,STACK_FRAME_MIN_SIZE+STK_PARAM(R4)(r1); \ - ld r5,STACK_FRAME_MIN_SIZE+STK_PARAM(R5)(r1); \ - ld r6,STACK_FRAME_MIN_SIZE+STK_PARAM(R6)(r1); \ - ld r7,STACK_FRAME_MIN_SIZE+STK_PARAM(R7)(r1); \ - ld r8,STACK_FRAME_MIN_SIZE+STK_PARAM(R8)(r1); \ - ld r9,STACK_FRAME_MIN_SIZE+STK_PARAM(R9)(r1); \ - ld r10,STACK_FRAME_MIN_SIZE+STK_PARAM(R10)(r1) + ld r3,STACK_FRAME_OVERHEAD+STK_PARAM(R3)(r1); \ + ld r4,STACK_FRAME_OVERHEAD+STK_PARAM(R4)(r1); \ + ld r5,STACK_FRAME_OVERHEAD+STK_PARAM(R5)(r1); \ + ld r6,STACK_FRAME_OVERHEAD+STK_PARAM(R6)(r1); \ + ld r7,STACK_FRAME_OVERHEAD+STK_PARAM(R7)(r1); \ + ld r8,STACK_FRAME_OVERHEAD+STK_PARAM(R8)(r1); \ + ld r9,STACK_FRAME_OVERHEAD+STK_PARAM(R9)(r1); \ + ld r10,STACK_FRAME_OVERHEAD+STK_PARAM(R10)(r1) /* * postcall is performed immediately before function return which * allows liberal use of volatile registers. */ #define __HCALL_INST_POSTCALL \ - ld r0,STACK_FRAME_MIN_SIZE+STK_PARAM(R3)(r1); \ - std r3,STACK_FRAME_MIN_SIZE+STK_PARAM(R3)(r1); \ + ld r0,STACK_FRAME_OVERHEAD+STK_PARAM(R3)(r1); \ + std r3,STACK_FRAME_OVERHEAD+STK_PARAM(R3)(r1); \ mr r4,r3; \ mr r3,r0; \ bl __trace_hcall_exit; \ - ld r0,STACK_FRAME_MIN_SIZE+16(r1); \ - addi r1,r1,STACK_FRAME_MIN_SIZE; \ + ld r0,STACK_FRAME_OVERHEAD+16(r1); \ + addi r1,r1,STACK_FRAME_OVERHEAD; \ ld r3,STK_PARAM(R3)(r1); \ mtlr r0 @@ -305,14 +303,14 @@ mr r7,r8 mr r8,r9 mr r9,r10 - ld r10,STACK_FRAME_MIN_SIZE+STK_PARAM(R11)(r1) - ld r11,STACK_FRAME_MIN_SIZE+STK_PARAM(R12)(r1) - ld r12,STACK_FRAME_MIN_SIZE+STK_PARAM(R13)(r1) + ld r10,STACK_FRAME_OVERHEAD+STK_PARAM(R11)(r1) + ld r11,STACK_FRAME_OVERHEAD+STK_PARAM(R12)(r1) + ld r12,STACK_FRAME_OVERHEAD+STK_PARAM(R13)(r1) HVSC mr r0,r12 - ld r12,STACK_FRAME_MIN_SIZE+STK_PARAM(R4)(r1) + ld r12,STACK_FRAME_OVERHEAD+STK_PARAM(R4)(r1) std r4,0(r12) std r5,8(r12) std r6,16(r12) --- linux-gcp-6.2.0.orig/arch/powerpc/platforms/pseries/papr_scm.c +++ linux-gcp-6.2.0/arch/powerpc/platforms/pseries/papr_scm.c @@ -1428,6 +1428,13 @@ return -ENODEV; } + /* + * open firmware platform device create won't update the NUMA + * distance table. For PAPR SCM devices we use numa_map_to_online_node() + * to find the nearest online NUMA node and that requires correct + * distance table information. + */ + update_numa_distance(dn); p = kzalloc(sizeof(*p), GFP_KERNEL); if (!p) --- linux-gcp-6.2.0.orig/arch/powerpc/platforms/pseries/vas.c +++ linux-gcp-6.2.0/arch/powerpc/platforms/pseries/vas.c @@ -857,6 +857,13 @@ { int new_nr_creds, rc; + /* + * NX-GZIP is not enabled. Nothing to do for DLPAR event + */ + if (!copypaste_feat) + return 0; + + rc = h_query_vas_capabilities(H_QUERY_VAS_CAPABILITIES, vascaps[VAS_GZIP_DEF_FEAT_TYPE].feat, (u64)virt_to_phys(&hv_cop_caps)); @@ -1013,6 +1020,7 @@ * Linux supports user space COPY/PASTE only with Radix */ if (!radix_enabled()) { + copypaste_feat = false; pr_err("API is supported only with radix page tables\n"); return -ENOTSUPP; } --- linux-gcp-6.2.0.orig/arch/powerpc/platforms/pseries/vio.c +++ linux-gcp-6.2.0/arch/powerpc/platforms/pseries/vio.c @@ -39,7 +39,6 @@ .name = "vio", .type = "", .dev.init_name = "vio", - .dev.bus = &vio_bus_type, }; #ifdef CONFIG_PPC_SMLPAR --- linux-gcp-6.2.0.orig/arch/powerpc/xmon/xmon.c +++ linux-gcp-6.2.0/arch/powerpc/xmon/xmon.c @@ -1277,7 +1277,7 @@ while (!cpumask_empty(&xmon_batch_cpus)) { cpu = cpumask_next_wrap(smp_processor_id(), &xmon_batch_cpus, xmon_batch_start_cpu, true); - if (cpu == nr_cpumask_bits) + if (cpu >= nr_cpu_ids) break; if (xmon_batch_start_cpu == -1) xmon_batch_start_cpu = cpu; --- linux-gcp-6.2.0.orig/arch/riscv/Kconfig +++ linux-gcp-6.2.0/arch/riscv/Kconfig @@ -138,7 +138,7 @@ select HAVE_DYNAMIC_FTRACE_WITH_REGS if HAVE_DYNAMIC_FTRACE select HAVE_FTRACE_MCOUNT_RECORD if !XIP_KERNEL select HAVE_FUNCTION_GRAPH_TRACER - select HAVE_FUNCTION_TRACER if !XIP_KERNEL + select HAVE_FUNCTION_TRACER if !XIP_KERNEL && !PREEMPTION config ARCH_MMAP_RND_BITS_MIN default 18 if 64BIT @@ -447,6 +447,28 @@ depends on !32BIT || $(cc-option,-mabi=ilp32 -march=rv32ima_zihintpause) depends on LLD_VERSION >= 150000 || LD_VERSION >= 23600 +config TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI + def_bool y + # https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=aed44286efa8ae8717a77d94b51ac3614e2ca6dc + depends on AS_IS_GNU && AS_VERSION >= 23800 + help + Newer binutils versions default to ISA spec version 20191213 which + moves some instructions from the I extension to the Zicsr and Zifencei + extensions. + +config TOOLCHAIN_NEEDS_OLD_ISA_SPEC + def_bool y + depends on TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI + # https://github.com/llvm/llvm-project/commit/22e199e6afb1263c943c0c0d4498694e15bf8a16 + depends on CC_IS_CLANG && CLANG_VERSION < 170000 + help + Certain versions of clang do not support zicsr and zifencei via -march + but newer versions of binutils require it for the reasons noted in the + help text of CONFIG_TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI. This + option causes an older ISA spec compatible with these older versions + of clang to be passed to GAS, which has the same result as passing zicsr + and zifencei to -march. + config FPU bool "FPU support" default y --- linux-gcp-6.2.0.orig/arch/riscv/Makefile +++ linux-gcp-6.2.0/arch/riscv/Makefile @@ -11,7 +11,11 @@ ifeq ($(CONFIG_DYNAMIC_FTRACE),y) LDFLAGS_vmlinux := --no-relax KBUILD_CPPFLAGS += -DCC_USING_PATCHABLE_FUNCTION_ENTRY - CC_FLAGS_FTRACE := -fpatchable-function-entry=8 +ifeq ($(CONFIG_RISCV_ISA_C),y) + CC_FLAGS_FTRACE := -fpatchable-function-entry=4 +else + CC_FLAGS_FTRACE := -fpatchable-function-entry=2 +endif endif ifeq ($(CONFIG_CMODEL_MEDLOW),y) @@ -53,10 +57,12 @@ riscv-march-$(CONFIG_FPU) := $(riscv-march-y)fd riscv-march-$(CONFIG_RISCV_ISA_C) := $(riscv-march-y)c -# Newer binutils versions default to ISA spec version 20191213 which moves some -# instructions from the I extension to the Zicsr and Zifencei extensions. -toolchain-need-zicsr-zifencei := $(call cc-option-yn, -march=$(riscv-march-y)_zicsr_zifencei) -riscv-march-$(toolchain-need-zicsr-zifencei) := $(riscv-march-y)_zicsr_zifencei +ifdef CONFIG_TOOLCHAIN_NEEDS_OLD_ISA_SPEC +KBUILD_CFLAGS += -Wa,-misa-spec=2.2 +KBUILD_AFLAGS += -Wa,-misa-spec=2.2 +else +riscv-march-$(CONFIG_TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI) := $(riscv-march-y)_zicsr_zifencei +endif # Check if the toolchain supports Zicbom extension riscv-march-$(CONFIG_TOOLCHAIN_HAS_ZICBOM) := $(riscv-march-y)_zicbom @@ -83,6 +89,13 @@ # Avoid generating .eh_frame sections. KBUILD_CFLAGS += -fno-asynchronous-unwind-tables -fno-unwind-tables +# The RISC-V attributes frequently cause compatibility issues and provide no +# information, so just turn them off. +KBUILD_CFLAGS += $(call cc-option,-mno-riscv-attribute) +KBUILD_AFLAGS += $(call cc-option,-mno-riscv-attribute) +KBUILD_CFLAGS += $(call as-option,-Wa$(comma)-mno-arch-attr) +KBUILD_AFLAGS += $(call as-option,-Wa$(comma)-mno-arch-attr) + KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-relax) KBUILD_AFLAGS_MODULE += $(call as-option,-Wa$(comma)-mno-relax) --- linux-gcp-6.2.0.orig/arch/riscv/boot/dts/microchip/mpfs-icicle-kit.dts +++ linux-gcp-6.2.0/arch/riscv/boot/dts/microchip/mpfs-icicle-kit.dts @@ -167,9 +167,11 @@ status = "okay"; }; +/* UBUNTU: PCIe support is not yet ready, so disable it for now &pcie { status = "okay"; }; +*/ &qspi { status = "okay"; --- linux-gcp-6.2.0.orig/arch/riscv/boot/dts/sifive/fu740-c000.dtsi +++ linux-gcp-6.2.0/arch/riscv/boot/dts/sifive/fu740-c000.dtsi @@ -39,7 +39,7 @@ }; }; cpu1: cpu@1 { - compatible = "sifive,bullet0", "riscv"; + compatible = "sifive,u74-mc", "sifive,bullet0", "riscv"; d-cache-block-size = <64>; d-cache-sets = <64>; d-cache-size = <32768>; @@ -63,7 +63,7 @@ }; }; cpu2: cpu@2 { - compatible = "sifive,bullet0", "riscv"; + compatible = "sifive,u74-mc", "sifive,bullet0", "riscv"; d-cache-block-size = <64>; d-cache-sets = <64>; d-cache-size = <32768>; @@ -87,7 +87,7 @@ }; }; cpu3: cpu@3 { - compatible = "sifive,bullet0", "riscv"; + compatible = "sifive,u74-mc", "sifive,bullet0", "riscv"; d-cache-block-size = <64>; d-cache-sets = <64>; d-cache-size = <32768>; @@ -111,7 +111,7 @@ }; }; cpu4: cpu@4 { - compatible = "sifive,bullet0", "riscv"; + compatible = "sifive,u74-mc", "sifive,bullet0", "riscv"; d-cache-block-size = <64>; d-cache-sets = <64>; d-cache-size = <32768>; --- linux-gcp-6.2.0.orig/arch/riscv/boot/dts/sifive/hifive-unleashed-a00-microsemi.dts +++ linux-gcp-6.2.0/arch/riscv/boot/dts/sifive/hifive-unleashed-a00-microsemi.dts @@ -0,0 +1,28 @@ +// SPDX-License-Identifier: (GPL-2.0 OR MIT) + +#include "hifive-unleashed-a00.dts" + +/ { + soc { + pcie: pcie@2030000000 { + #address-cells = <0x3>; + #interrupt-cells = <0x1>; + #size-cells = <0x2>; + compatible = "microsemi,ms-pf-axi-pcie-host"; + device_type = "pci"; + bus-range = <0x01 0x7f>; + interrupt-map = <0 0 0 1 &ms_pcie_intc 0 0 0 0 2 &ms_pcie_intc 1 0 0 0 3 &ms_pcie_intc 2 0 0 0 4 &ms_pcie_intc 3>; + interrupt-map-mask = <0 0 0 7>; + interrupt-parent = <&plic0>; + interrupts = <32>; + ranges = <0x3000000 0x0 0x40000000 0x0 0x40000000 0x0 0x20000000>; + reg = <0x20 0x30000000 0x0 0x4000000 0x20 0x0 0x0 0x100000>; + reg-names = "control", "apb"; + ms_pcie_intc: interrupt-controller { + #address-cells = <0>; + #interrupt-cells = <1>; + interrupt-controller; + }; + }; + }; +}; --- linux-gcp-6.2.0.orig/arch/riscv/errata/sifive/errata.c +++ linux-gcp-6.2.0/arch/riscv/errata/sifive/errata.c @@ -4,6 +4,7 @@ */ #include +#include #include #include #include @@ -107,7 +108,9 @@ tmp = (1U << alt->errata_id); if (cpu_req_errata & tmp) { + mutex_lock(&text_mutex); patch_text_nosync(alt->old_ptr, alt->alt_ptr, alt->alt_len); + mutex_unlock(&text_mutex); cpu_apply_errata |= tmp; } } --- linux-gcp-6.2.0.orig/arch/riscv/errata/thead/errata.c +++ linux-gcp-6.2.0/arch/riscv/errata/thead/errata.c @@ -5,6 +5,7 @@ #include #include +#include #include #include #include @@ -97,11 +98,14 @@ tmp = (1U << alt->errata_id); if (cpu_req_errata & tmp) { /* On vm-alternatives, the mmu isn't running yet */ - if (stage == RISCV_ALTERNATIVES_EARLY_BOOT) + if (stage == RISCV_ALTERNATIVES_EARLY_BOOT) { memcpy((void *)__pa_symbol(alt->old_ptr), (void *)__pa_symbol(alt->alt_ptr), alt->alt_len); - else + } else { + mutex_lock(&text_mutex); patch_text_nosync(alt->old_ptr, alt->alt_ptr, alt->alt_len); + mutex_unlock(&text_mutex); + } } } --- linux-gcp-6.2.0.orig/arch/riscv/include/asm/ftrace.h +++ linux-gcp-6.2.0/arch/riscv/include/asm/ftrace.h @@ -42,6 +42,14 @@ * 2) jalr: setting low-12 offset to ra, jump to ra, and set ra to * return address (original pc + 4) * + *: + * 0: auipc t0/ra, 0x? + * 4: jalr t0/ra, ?(t0/ra) + * + *: + * 0: nop + * 4: nop + * * Dynamic ftrace generates probes to call sites, so we must deal with * both auipc and jalr at the same time. */ @@ -52,25 +60,43 @@ #define AUIPC_OFFSET_MASK (0xfffff000) #define AUIPC_PAD (0x00001000) #define JALR_SHIFT 20 -#define JALR_BASIC (0x000080e7) -#define AUIPC_BASIC (0x00000097) +#define JALR_RA (0x000080e7) +#define AUIPC_RA (0x00000097) +#define JALR_T0 (0x000282e7) +#define AUIPC_T0 (0x00000297) #define NOP4 (0x00000013) -#define make_call(caller, callee, call) \ +#define to_jalr_t0(offset) \ + (((offset & JALR_OFFSET_MASK) << JALR_SHIFT) | JALR_T0) + +#define to_auipc_t0(offset) \ + ((offset & JALR_SIGN_MASK) ? \ + (((offset & AUIPC_OFFSET_MASK) + AUIPC_PAD) | AUIPC_T0) : \ + ((offset & AUIPC_OFFSET_MASK) | AUIPC_T0)) + +#define make_call_t0(caller, callee, call) \ do { \ - call[0] = to_auipc_insn((unsigned int)((unsigned long)callee - \ - (unsigned long)caller)); \ - call[1] = to_jalr_insn((unsigned int)((unsigned long)callee - \ - (unsigned long)caller)); \ + unsigned int offset = \ + (unsigned long) callee - (unsigned long) caller; \ + call[0] = to_auipc_t0(offset); \ + call[1] = to_jalr_t0(offset); \ } while (0) -#define to_jalr_insn(offset) \ - (((offset & JALR_OFFSET_MASK) << JALR_SHIFT) | JALR_BASIC) +#define to_jalr_ra(offset) \ + (((offset & JALR_OFFSET_MASK) << JALR_SHIFT) | JALR_RA) -#define to_auipc_insn(offset) \ +#define to_auipc_ra(offset) \ ((offset & JALR_SIGN_MASK) ? \ - (((offset & AUIPC_OFFSET_MASK) + AUIPC_PAD) | AUIPC_BASIC) : \ - ((offset & AUIPC_OFFSET_MASK) | AUIPC_BASIC)) + (((offset & AUIPC_OFFSET_MASK) + AUIPC_PAD) | AUIPC_RA) : \ + ((offset & AUIPC_OFFSET_MASK) | AUIPC_RA)) + +#define make_call_ra(caller, callee, call) \ +do { \ + unsigned int offset = \ + (unsigned long) callee - (unsigned long) caller; \ + call[0] = to_auipc_ra(offset); \ + call[1] = to_jalr_ra(offset); \ +} while (0) /* * Let auipc+jalr be the basic *mcount unit*, so we make it 8 bytes here. @@ -83,6 +109,6 @@ #define ftrace_init_nop ftrace_init_nop #endif -#endif +#endif /* CONFIG_DYNAMIC_FTRACE */ #endif /* _ASM_RISCV_FTRACE_H */ --- linux-gcp-6.2.0.orig/arch/riscv/include/asm/jump_label.h +++ linux-gcp-6.2.0/arch/riscv/include/asm/jump_label.h @@ -18,6 +18,7 @@ const bool branch) { asm_volatile_goto( + " .align 2 \n\t" " .option push \n\t" " .option norelax \n\t" " .option norvc \n\t" @@ -39,6 +40,7 @@ const bool branch) { asm_volatile_goto( + " .align 2 \n\t" " .option push \n\t" " .option norelax \n\t" " .option norvc \n\t" --- linux-gcp-6.2.0.orig/arch/riscv/include/asm/mmu.h +++ linux-gcp-6.2.0/arch/riscv/include/asm/mmu.h @@ -19,8 +19,6 @@ #ifdef CONFIG_SMP /* A local icache flush is needed before user execution can resume. */ cpumask_t icache_stale_mask; - /* A local tlb flush is needed before user execution can resume. */ - cpumask_t tlb_stale_mask; #endif } mm_context_t; --- linux-gcp-6.2.0.orig/arch/riscv/include/asm/parse_asm.h +++ linux-gcp-6.2.0/arch/riscv/include/asm/parse_asm.h @@ -3,6 +3,9 @@ * Copyright (C) 2020 SiFive */ +#ifndef _ASM_RISCV_INSN_H +#define _ASM_RISCV_INSN_H + #include /* The bit field of immediate value in I-type instruction */ @@ -217,3 +220,5 @@ (RVC_X(x_, RVC_B_IMM_5_OPOFF, RVC_B_IMM_5_MASK) << RVC_B_IMM_5_OFF) | \ (RVC_X(x_, RVC_B_IMM_7_6_OPOFF, RVC_B_IMM_7_6_MASK) << RVC_B_IMM_7_6_OFF) | \ (RVC_IMM_SIGN(x_) << RVC_B_IMM_SIGN_OFF); }) + +#endif /* _ASM_RISCV_INSN_H */ --- linux-gcp-6.2.0.orig/arch/riscv/include/asm/patch.h +++ linux-gcp-6.2.0/arch/riscv/include/asm/patch.h @@ -9,4 +9,6 @@ int patch_text_nosync(void *addr, const void *insns, size_t len); int patch_text(void *addr, u32 insn); +extern int riscv_patch_in_stop_machine; + #endif /* _ASM_RISCV_PATCH_H */ --- linux-gcp-6.2.0.orig/arch/riscv/include/asm/pgtable.h +++ linux-gcp-6.2.0/arch/riscv/include/asm/pgtable.h @@ -415,7 +415,7 @@ * Relying on flush_tlb_fix_spurious_fault would suffice, but * the extra traps reduce performance. So, eagerly SFENCE.VMA. */ - flush_tlb_page(vma, address); + local_flush_tlb_page(address); } #define __HAVE_ARCH_UPDATE_MMU_TLB --- linux-gcp-6.2.0.orig/arch/riscv/include/asm/thread_info.h +++ linux-gcp-6.2.0/arch/riscv/include/asm/thread_info.h @@ -43,6 +43,7 @@ #ifndef __ASSEMBLY__ extern long shadow_stack[SHADOW_OVERFLOW_STACK_SIZE / sizeof(long)]; +extern unsigned long spin_shadow_stack; #include #include --- linux-gcp-6.2.0.orig/arch/riscv/include/asm/tlbflush.h +++ linux-gcp-6.2.0/arch/riscv/include/asm/tlbflush.h @@ -12,6 +12,8 @@ #include #ifdef CONFIG_MMU +extern unsigned long asid_mask; + static inline void local_flush_tlb_all(void) { __asm__ __volatile__ ("sfence.vma" : : : "memory"); @@ -22,24 +24,6 @@ { ALT_FLUSH_TLB_PAGE(__asm__ __volatile__ ("sfence.vma %0" : : "r" (addr) : "memory")); } - -static inline void local_flush_tlb_all_asid(unsigned long asid) -{ - __asm__ __volatile__ ("sfence.vma x0, %0" - : - : "r" (asid) - : "memory"); -} - -static inline void local_flush_tlb_page_asid(unsigned long addr, - unsigned long asid) -{ - __asm__ __volatile__ ("sfence.vma %0, %1" - : - : "r" (addr), "r" (asid) - : "memory"); -} - #else /* CONFIG_MMU */ #define local_flush_tlb_all() do { } while (0) #define local_flush_tlb_page(addr) do { } while (0) --- linux-gcp-6.2.0.orig/arch/riscv/include/uapi/asm/setup.h +++ linux-gcp-6.2.0/arch/riscv/include/uapi/asm/setup.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */ + +#ifndef _UAPI_ASM_RISCV_SETUP_H +#define _UAPI_ASM_RISCV_SETUP_H + +#define COMMAND_LINE_SIZE 1024 + +#endif /* _UAPI_ASM_RISCV_SETUP_H */ --- linux-gcp-6.2.0.orig/arch/riscv/kernel/compat_vdso/Makefile +++ linux-gcp-6.2.0/arch/riscv/kernel/compat_vdso/Makefile @@ -14,6 +14,10 @@ COMPAT_CC_FLAGS := -march=rv32g -mabi=ilp32 COMPAT_LD_FLAGS := -melf32lriscv +# Disable attributes, as they're useless and break the build. +COMPAT_CC_FLAGS += $(call cc-option,-mno-riscv-attribute) +COMPAT_CC_FLAGS += $(call as-option,-Wa$(comma)-mno-arch-attr) + # Files to link into the compat_vdso obj-compat_vdso = $(patsubst %, %.o, $(compat_vdso-syms)) note.o --- linux-gcp-6.2.0.orig/arch/riscv/kernel/cpufeature.c +++ linux-gcp-6.2.0/arch/riscv/kernel/cpufeature.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include @@ -339,8 +340,11 @@ } tmp = (1U << alt->errata_id); - if (cpu_req_feature & tmp) + if (cpu_req_feature & tmp) { + mutex_lock(&text_mutex); patch_text_nosync(alt->old_ptr, alt->alt_ptr, alt->alt_len); + mutex_unlock(&text_mutex); + } } } #endif --- linux-gcp-6.2.0.orig/arch/riscv/kernel/ftrace.c +++ linux-gcp-6.2.0/arch/riscv/kernel/ftrace.c @@ -15,10 +15,19 @@ void ftrace_arch_code_modify_prepare(void) __acquires(&text_mutex) { mutex_lock(&text_mutex); + + /* + * The code sequences we use for ftrace can't be patched while the + * kernel is running, so we need to use stop_machine() to modify them + * for now. This doesn't play nice with text_mutex, we use this flag + * to elide the check. + */ + riscv_patch_in_stop_machine = true; } void ftrace_arch_code_modify_post_process(void) __releases(&text_mutex) { + riscv_patch_in_stop_machine = false; mutex_unlock(&text_mutex); } @@ -55,12 +64,15 @@ } static int __ftrace_modify_call(unsigned long hook_pos, unsigned long target, - bool enable) + bool enable, bool ra) { unsigned int call[2]; unsigned int nops[2] = {NOP4, NOP4}; - make_call(hook_pos, target, call); + if (ra) + make_call_ra(hook_pos, target, call); + else + make_call_t0(hook_pos, target, call); /* Replace the auipc-jalr pair at once. Return -EPERM on write error. */ if (patch_text_nosync @@ -70,42 +82,13 @@ return 0; } -/* - * Put 5 instructions with 16 bytes at the front of function within - * patchable function entry nops' area. - * - * 0: REG_S ra, -SZREG(sp) - * 1: auipc ra, 0x? - * 2: jalr -?(ra) - * 3: REG_L ra, -SZREG(sp) - * - * So the opcodes is: - * 0: 0xfe113c23 (sd)/0xfe112e23 (sw) - * 1: 0x???????? -> auipc - * 2: 0x???????? -> jalr - * 3: 0xff813083 (ld)/0xffc12083 (lw) - */ -#if __riscv_xlen == 64 -#define INSN0 0xfe113c23 -#define INSN3 0xff813083 -#elif __riscv_xlen == 32 -#define INSN0 0xfe112e23 -#define INSN3 0xffc12083 -#endif - -#define FUNC_ENTRY_SIZE 16 -#define FUNC_ENTRY_JMP 4 - int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr) { - unsigned int call[4] = {INSN0, 0, 0, INSN3}; - unsigned long target = addr; - unsigned long caller = rec->ip + FUNC_ENTRY_JMP; + unsigned int call[2]; - call[1] = to_auipc_insn((unsigned int)(target - caller)); - call[2] = to_jalr_insn((unsigned int)(target - caller)); + make_call_t0(rec->ip, addr, call); - if (patch_text_nosync((void *)rec->ip, call, FUNC_ENTRY_SIZE)) + if (patch_text_nosync((void *)rec->ip, call, MCOUNT_INSN_SIZE)) return -EPERM; return 0; @@ -114,15 +97,14 @@ int ftrace_make_nop(struct module *mod, struct dyn_ftrace *rec, unsigned long addr) { - unsigned int nops[4] = {NOP4, NOP4, NOP4, NOP4}; + unsigned int nops[2] = {NOP4, NOP4}; - if (patch_text_nosync((void *)rec->ip, nops, FUNC_ENTRY_SIZE)) + if (patch_text_nosync((void *)rec->ip, nops, MCOUNT_INSN_SIZE)) return -EPERM; return 0; } - /* * This is called early on, and isn't wrapped by * ftrace_arch_code_modify_{prepare,post_process}() and therefor doesn't hold @@ -134,9 +116,9 @@ { int out; - ftrace_arch_code_modify_prepare(); + mutex_lock(&text_mutex); out = ftrace_make_nop(mod, rec, MCOUNT_ADDR); - ftrace_arch_code_modify_post_process(); + mutex_unlock(&text_mutex); return out; } @@ -144,10 +126,10 @@ int ftrace_update_ftrace_func(ftrace_func_t func) { int ret = __ftrace_modify_call((unsigned long)&ftrace_call, - (unsigned long)func, true); + (unsigned long)func, true, true); if (!ret) { ret = __ftrace_modify_call((unsigned long)&ftrace_regs_call, - (unsigned long)func, true); + (unsigned long)func, true, true); } return ret; @@ -159,16 +141,16 @@ unsigned long addr) { unsigned int call[2]; - unsigned long caller = rec->ip + FUNC_ENTRY_JMP; + unsigned long caller = rec->ip; int ret; - make_call(caller, old_addr, call); + make_call_t0(caller, old_addr, call); ret = ftrace_check_current_call(caller, call); if (ret) return ret; - return __ftrace_modify_call(caller, addr, true); + return __ftrace_modify_call(caller, addr, true, false); } #endif @@ -203,12 +185,12 @@ int ret; ret = __ftrace_modify_call((unsigned long)&ftrace_graph_call, - (unsigned long)&prepare_ftrace_return, true); + (unsigned long)&prepare_ftrace_return, true, true); if (ret) return ret; return __ftrace_modify_call((unsigned long)&ftrace_graph_regs_call, - (unsigned long)&prepare_ftrace_return, true); + (unsigned long)&prepare_ftrace_return, true, true); } int ftrace_disable_ftrace_graph_caller(void) @@ -216,12 +198,12 @@ int ret; ret = __ftrace_modify_call((unsigned long)&ftrace_graph_call, - (unsigned long)&prepare_ftrace_return, false); + (unsigned long)&prepare_ftrace_return, false, true); if (ret) return ret; return __ftrace_modify_call((unsigned long)&ftrace_graph_regs_call, - (unsigned long)&prepare_ftrace_return, false); + (unsigned long)&prepare_ftrace_return, false, true); } #endif /* CONFIG_DYNAMIC_FTRACE */ #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ --- linux-gcp-6.2.0.orig/arch/riscv/kernel/mcount-dyn.S +++ linux-gcp-6.2.0/arch/riscv/kernel/mcount-dyn.S @@ -13,8 +13,8 @@ .text -#define FENTRY_RA_OFFSET 12 -#define ABI_SIZE_ON_STACK 72 +#define FENTRY_RA_OFFSET 8 +#define ABI_SIZE_ON_STACK 80 #define ABI_A0 0 #define ABI_A1 8 #define ABI_A2 16 @@ -23,10 +23,10 @@ #define ABI_A5 40 #define ABI_A6 48 #define ABI_A7 56 -#define ABI_RA 64 +#define ABI_T0 64 +#define ABI_RA 72 .macro SAVE_ABI - addi sp, sp, -SZREG addi sp, sp, -ABI_SIZE_ON_STACK REG_S a0, ABI_A0(sp) @@ -37,6 +37,7 @@ REG_S a5, ABI_A5(sp) REG_S a6, ABI_A6(sp) REG_S a7, ABI_A7(sp) + REG_S t0, ABI_T0(sp) REG_S ra, ABI_RA(sp) .endm @@ -49,24 +50,18 @@ REG_L a5, ABI_A5(sp) REG_L a6, ABI_A6(sp) REG_L a7, ABI_A7(sp) + REG_L t0, ABI_T0(sp) REG_L ra, ABI_RA(sp) addi sp, sp, ABI_SIZE_ON_STACK - addi sp, sp, SZREG .endm #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS .macro SAVE_ALL - addi sp, sp, -SZREG addi sp, sp, -PT_SIZE_ON_STACK - REG_S x1, PT_EPC(sp) - addi sp, sp, PT_SIZE_ON_STACK - REG_L x1, (sp) - addi sp, sp, -PT_SIZE_ON_STACK + REG_S t0, PT_EPC(sp) REG_S x1, PT_RA(sp) - REG_L x1, PT_EPC(sp) - REG_S x2, PT_SP(sp) REG_S x3, PT_GP(sp) REG_S x4, PT_TP(sp) @@ -100,15 +95,11 @@ .endm .macro RESTORE_ALL + REG_L t0, PT_EPC(sp) REG_L x1, PT_RA(sp) - addi sp, sp, PT_SIZE_ON_STACK - REG_S x1, (sp) - addi sp, sp, -PT_SIZE_ON_STACK - REG_L x1, PT_EPC(sp) REG_L x2, PT_SP(sp) REG_L x3, PT_GP(sp) REG_L x4, PT_TP(sp) - REG_L x5, PT_T0(sp) REG_L x6, PT_T1(sp) REG_L x7, PT_T2(sp) REG_L x8, PT_S0(sp) @@ -137,17 +128,16 @@ REG_L x31, PT_T6(sp) addi sp, sp, PT_SIZE_ON_STACK - addi sp, sp, SZREG .endm #endif /* CONFIG_DYNAMIC_FTRACE_WITH_REGS */ ENTRY(ftrace_caller) SAVE_ABI - addi a0, ra, -FENTRY_RA_OFFSET + addi a0, t0, -FENTRY_RA_OFFSET la a1, function_trace_op REG_L a2, 0(a1) - REG_L a1, ABI_SIZE_ON_STACK(sp) + mv a1, ra mv a3, sp ftrace_call: @@ -155,8 +145,8 @@ call ftrace_stub #ifdef CONFIG_FUNCTION_GRAPH_TRACER - addi a0, sp, ABI_SIZE_ON_STACK - REG_L a1, ABI_RA(sp) + addi a0, sp, ABI_RA + REG_L a1, ABI_T0(sp) addi a1, a1, -FENTRY_RA_OFFSET #ifdef HAVE_FUNCTION_GRAPH_FP_TEST mv a2, s0 @@ -166,17 +156,17 @@ call ftrace_stub #endif RESTORE_ABI - ret + jr t0 ENDPROC(ftrace_caller) #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS ENTRY(ftrace_regs_caller) SAVE_ALL - addi a0, ra, -FENTRY_RA_OFFSET + addi a0, t0, -FENTRY_RA_OFFSET la a1, function_trace_op REG_L a2, 0(a1) - REG_L a1, PT_SIZE_ON_STACK(sp) + mv a1, ra mv a3, sp ftrace_regs_call: @@ -196,6 +186,6 @@ #endif RESTORE_ALL - ret + jr t0 ENDPROC(ftrace_regs_caller) #endif /* CONFIG_DYNAMIC_FTRACE_WITH_REGS */ --- linux-gcp-6.2.0.orig/arch/riscv/kernel/patch.c +++ linux-gcp-6.2.0/arch/riscv/kernel/patch.c @@ -11,6 +11,7 @@ #include #include #include +#include #include struct patch_insn { @@ -19,6 +20,8 @@ atomic_t cpu_count; }; +int riscv_patch_in_stop_machine = false; + #ifdef CONFIG_MMU /* * The fix_to_virt(, idx) needs a const value (not a dynamic variable of @@ -59,8 +62,15 @@ * Before reaching here, it was expected to lock the text_mutex * already, so we don't need to give another lock here and could * ensure that it was safe between each cores. + * + * We're currently using stop_machine() for ftrace & kprobes, and while + * that ensures text_mutex is held before installing the mappings it + * does not ensure text_mutex is held by the calling thread. That's + * safe but triggers a lockdep failure, so just elide it for that + * specific case. */ - lockdep_assert_held(&text_mutex); + if (!riscv_patch_in_stop_machine) + lockdep_assert_held(&text_mutex); if (across_pages) patch_map(addr + len, FIX_TEXT_POKE1); @@ -121,13 +131,25 @@ int patch_text(void *addr, u32 insn) { + int ret; struct patch_insn patch = { .addr = addr, .insn = insn, .cpu_count = ATOMIC_INIT(0), }; - return stop_machine_cpuslocked(patch_text_cb, - &patch, cpu_online_mask); + /* + * kprobes takes text_mutex, before calling patch_text(), but as we call + * calls stop_machine(), the lockdep assertion in patch_insn_write() + * gets confused by the context in which the lock is taken. + * Instead, ensure the lock is held before calling stop_machine(), and + * set riscv_patch_in_stop_machine to skip the check in + * patch_insn_write(). + */ + lockdep_assert_held(&text_mutex); + riscv_patch_in_stop_machine = true; + ret = stop_machine_cpuslocked(patch_text_cb, &patch, cpu_online_mask); + riscv_patch_in_stop_machine = false; + return ret; } NOKPROBE_SYMBOL(patch_text); --- linux-gcp-6.2.0.orig/arch/riscv/kernel/signal.c +++ linux-gcp-6.2.0/arch/riscv/kernel/signal.c @@ -19,6 +19,7 @@ #include #include #include +#include extern u32 __user_rt_sigreturn[2]; @@ -181,6 +182,7 @@ { struct rt_sigframe __user *frame; long err = 0; + unsigned long __maybe_unused addr; frame = get_sigframe(ksig, regs, sizeof(*frame)); if (!access_ok(frame, sizeof(*frame))) @@ -209,7 +211,12 @@ if (copy_to_user(&frame->sigreturn_code, __user_rt_sigreturn, sizeof(frame->sigreturn_code))) return -EFAULT; - regs->ra = (unsigned long)&frame->sigreturn_code; + + addr = (unsigned long)&frame->sigreturn_code; + /* Make sure the two instructions are pushed to icache. */ + flush_icache_range(addr, addr + sizeof(frame->sigreturn_code)); + + regs->ra = addr; #endif /* CONFIG_MMU */ /* --- linux-gcp-6.2.0.orig/arch/riscv/kernel/stacktrace.c +++ linux-gcp-6.2.0/arch/riscv/kernel/stacktrace.c @@ -101,7 +101,7 @@ while (!kstack_end(ksp)) { if (__kernel_text_address(pc) && unlikely(!fn(arg, pc))) break; - pc = (*ksp++) - 0x4; + pc = READ_ONCE_NOCHECK(*ksp++) - 0x4; } } --- linux-gcp-6.2.0.orig/arch/riscv/kernel/time.c +++ linux-gcp-6.2.0/arch/riscv/kernel/time.c @@ -5,6 +5,7 @@ */ #include +#include #include #include #include @@ -29,6 +30,8 @@ of_clk_init(NULL); timer_probe(); + + tick_setup_hrtimer_broadcast(); } void clocksource_arch_init(struct clocksource *cs) --- linux-gcp-6.2.0.orig/arch/riscv/kernel/traps.c +++ linux-gcp-6.2.0/arch/riscv/kernel/traps.c @@ -34,10 +34,11 @@ static int die_counter; int ret; long cause; + unsigned long flags; oops_enter(); - spin_lock_irq(&die_lock); + spin_lock_irqsave(&die_lock, flags); console_verbose(); bust_spinlocks(1); @@ -54,7 +55,7 @@ bust_spinlocks(0); add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE); - spin_unlock_irq(&die_lock); + spin_unlock_irqrestore(&die_lock, flags); oops_exit(); if (in_interrupt()) --- linux-gcp-6.2.0.orig/arch/riscv/kvm/vcpu_timer.c +++ linux-gcp-6.2.0/arch/riscv/kvm/vcpu_timer.c @@ -147,10 +147,8 @@ return; delta_ns = kvm_riscv_delta_cycles2ns(t->next_cycles, gt, t); - if (delta_ns) { - hrtimer_start(&t->hrt, ktime_set(0, delta_ns), HRTIMER_MODE_REL); - t->next_set = true; - } + hrtimer_start(&t->hrt, ktime_set(0, delta_ns), HRTIMER_MODE_REL); + t->next_set = true; } static void kvm_riscv_vcpu_timer_unblocking(struct kvm_vcpu *vcpu) --- linux-gcp-6.2.0.orig/arch/riscv/mm/context.c +++ linux-gcp-6.2.0/arch/riscv/mm/context.c @@ -22,7 +22,7 @@ static unsigned long asid_bits; static unsigned long num_asids; -static unsigned long asid_mask; +unsigned long asid_mask; static atomic_long_t current_version; @@ -196,16 +196,6 @@ if (need_flush_tlb) local_flush_tlb_all(); -#ifdef CONFIG_SMP - else { - cpumask_t *mask = &mm->context.tlb_stale_mask; - - if (cpumask_test_cpu(cpu, mask)) { - cpumask_clear_cpu(cpu, mask); - local_flush_tlb_all_asid(cntx & asid_mask); - } - } -#endif } static void set_mm_noasid(struct mm_struct *mm) @@ -215,12 +205,24 @@ local_flush_tlb_all(); } -static inline void set_mm(struct mm_struct *mm, unsigned int cpu) +static inline void set_mm(struct mm_struct *prev, + struct mm_struct *next, unsigned int cpu) { - if (static_branch_unlikely(&use_asid_allocator)) - set_mm_asid(mm, cpu); - else - set_mm_noasid(mm); + /* + * The mm_cpumask indicates which harts' TLBs contain the virtual + * address mapping of the mm. Compared to noasid, using asid + * can't guarantee that stale TLB entries are invalidated because + * the asid mechanism wouldn't flush TLB for every switch_mm for + * performance. So when using asid, keep all CPUs footmarks in + * cpumask() until mm reset. + */ + cpumask_set_cpu(cpu, mm_cpumask(next)); + if (static_branch_unlikely(&use_asid_allocator)) { + set_mm_asid(next, cpu); + } else { + cpumask_clear_cpu(cpu, mm_cpumask(prev)); + set_mm_noasid(next); + } } static int __init asids_init(void) @@ -274,7 +276,8 @@ } early_initcall(asids_init); #else -static inline void set_mm(struct mm_struct *mm, unsigned int cpu) +static inline void set_mm(struct mm_struct *prev, + struct mm_struct *next, unsigned int cpu) { /* Nothing to do here when there is no MMU */ } @@ -327,10 +330,7 @@ */ cpu = smp_processor_id(); - cpumask_clear_cpu(cpu, mm_cpumask(prev)); - cpumask_set_cpu(cpu, mm_cpumask(next)); - - set_mm(next, cpu); + set_mm(prev, next, cpu); flush_icache_deferred(next, cpu); } --- linux-gcp-6.2.0.orig/arch/riscv/mm/fault.c +++ linux-gcp-6.2.0/arch/riscv/mm/fault.c @@ -143,6 +143,8 @@ no_context(regs, addr); return; } + if (pud_leaf(*pud_k)) + goto flush_tlb; /* * Since the vmalloc area is global, it is unnecessary @@ -153,6 +155,8 @@ no_context(regs, addr); return; } + if (pmd_leaf(*pmd_k)) + goto flush_tlb; /* * Make sure the actual PTE exists as well to @@ -172,6 +176,7 @@ * ordering constraint, not a cache flush; it is * necessary even after writing invalid entries. */ +flush_tlb: local_flush_tlb_page(addr); } @@ -267,10 +272,12 @@ if (user_mode(regs)) flags |= FAULT_FLAG_USER; - if (!user_mode(regs) && addr < TASK_SIZE && - unlikely(!(regs->status & SR_SUM))) - die_kernel_fault("access to user memory without uaccess routines", - addr, regs); + if (!user_mode(regs) && addr < TASK_SIZE && unlikely(!(regs->status & SR_SUM))) { + if (fixup_exception(regs)) + return; + + die_kernel_fault("access to user memory without uaccess routines", addr, regs); + } perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, addr); --- linux-gcp-6.2.0.orig/arch/riscv/mm/init.c +++ linux-gcp-6.2.0/arch/riscv/mm/init.c @@ -795,6 +795,10 @@ disable_pgtable_l4(); } + /* UBUNTU: Force disable sv57 and fallback to sv48 */ + if (pgtable_l5_enabled) + disable_pgtable_l5(); + memset(early_pg_dir, 0, PAGE_SIZE); memset(early_p4d, 0, PAGE_SIZE); memset(early_pud, 0, PAGE_SIZE); --- linux-gcp-6.2.0.orig/arch/riscv/mm/tlbflush.c +++ linux-gcp-6.2.0/arch/riscv/mm/tlbflush.c @@ -5,7 +5,23 @@ #include #include #include -#include + +static inline void local_flush_tlb_all_asid(unsigned long asid) +{ + __asm__ __volatile__ ("sfence.vma x0, %0" + : + : "r" (asid) + : "memory"); +} + +static inline void local_flush_tlb_page_asid(unsigned long addr, + unsigned long asid) +{ + __asm__ __volatile__ ("sfence.vma %0, %1" + : + : "r" (addr), "r" (asid) + : "memory"); +} void flush_tlb_all(void) { @@ -15,7 +31,6 @@ static void __sbi_tlb_flush_range(struct mm_struct *mm, unsigned long start, unsigned long size, unsigned long stride) { - struct cpumask *pmask = &mm->context.tlb_stale_mask; struct cpumask *cmask = mm_cpumask(mm); unsigned int cpuid; bool broadcast; @@ -27,16 +42,7 @@ /* check if the tlbflush needs to be sent to other CPUs */ broadcast = cpumask_any_but(cmask, cpuid) < nr_cpu_ids; if (static_branch_unlikely(&use_asid_allocator)) { - unsigned long asid = atomic_long_read(&mm->context.id); - - /* - * TLB will be immediately flushed on harts concurrently - * executing this MM context. TLB flush on other harts - * is deferred until this MM context migrates there. - */ - cpumask_setall(pmask); - cpumask_clear_cpu(cpuid, pmask); - cpumask_andnot(pmask, pmask, cmask); + unsigned long asid = atomic_long_read(&mm->context.id) & asid_mask; if (broadcast) { sbi_remote_sfence_vma_asid(cmask, start, size, asid); --- linux-gcp-6.2.0.orig/arch/s390/Makefile +++ linux-gcp-6.2.0/arch/s390/Makefile @@ -162,7 +162,7 @@ ifdef CONFIG_EXPOLINE_EXTERN modules_prepare: expoline_prepare -expoline_prepare: +expoline_prepare: scripts $(Q)$(MAKE) $(build)=arch/s390/lib/expoline arch/s390/lib/expoline/expoline.o endif endif --- linux-gcp-6.2.0.orig/arch/s390/boot/boot.h +++ linux-gcp-6.2.0/arch/s390/boot/boot.h @@ -8,10 +8,26 @@ #ifndef __ASSEMBLY__ +struct vmlinux_info { + unsigned long default_lma; + void (*entry)(void); + unsigned long image_size; /* does not include .bss */ + unsigned long bss_size; /* uncompressed image .bss size */ + unsigned long bootdata_off; + unsigned long bootdata_size; + unsigned long bootdata_preserved_off; + unsigned long bootdata_preserved_size; + unsigned long dynsym_start; + unsigned long rela_dyn_start; + unsigned long rela_dyn_end; + unsigned long amode31_size; +}; + void startup_kernel(void); -unsigned long detect_memory(void); +unsigned long detect_memory(unsigned long *safe_addr); bool is_ipl_block_dump(void); void store_ipl_parmblock(void); +unsigned long read_ipl_report(unsigned long safe_addr); void setup_boot_command_line(void); void parse_boot_command_line(void); void verify_facilities(void); @@ -20,6 +36,7 @@ void print_pgm_check_info(void); unsigned long get_random_base(unsigned long safe_addr); void __printf(1, 2) decompressor_printk(const char *fmt, ...); +void error(char *m); /* Symbols defined by linker scripts */ extern const char kernel_version[]; @@ -31,8 +48,11 @@ extern char __boot_data_preserved_start[], __boot_data_preserved_end[]; extern char _decompressor_syms_start[], _decompressor_syms_end[]; extern char _stack_start[], _stack_end[]; - -unsigned long read_ipl_report(unsigned long safe_offset); +extern char _end[]; +extern unsigned char _compressed_start[]; +extern unsigned char _compressed_end[]; +extern struct vmlinux_info _vmlinux_info; +#define vmlinux _vmlinux_info #endif /* __ASSEMBLY__ */ #endif /* BOOT_BOOT_H */ --- linux-gcp-6.2.0.orig/arch/s390/boot/decompressor.c +++ linux-gcp-6.2.0/arch/s390/boot/decompressor.c @@ -11,6 +11,7 @@ #include #include #include "decompressor.h" +#include "boot.h" /* * gzip declarations --- linux-gcp-6.2.0.orig/arch/s390/boot/decompressor.h +++ linux-gcp-6.2.0/arch/s390/boot/decompressor.h @@ -2,37 +2,11 @@ #ifndef BOOT_COMPRESSED_DECOMPRESSOR_H #define BOOT_COMPRESSED_DECOMPRESSOR_H -#include - #ifdef CONFIG_KERNEL_UNCOMPRESSED static inline void *decompress_kernel(void) { return NULL; } #else void *decompress_kernel(void); #endif unsigned long mem_safe_offset(void); -void error(char *m); - -struct vmlinux_info { - unsigned long default_lma; - void (*entry)(void); - unsigned long image_size; /* does not include .bss */ - unsigned long bss_size; /* uncompressed image .bss size */ - unsigned long bootdata_off; - unsigned long bootdata_size; - unsigned long bootdata_preserved_off; - unsigned long bootdata_preserved_size; - unsigned long dynsym_start; - unsigned long rela_dyn_start; - unsigned long rela_dyn_end; - unsigned long amode31_size; -}; - -/* Symbols defined by linker scripts */ -extern char _end[]; -extern unsigned char _compressed_start[]; -extern unsigned char _compressed_end[]; -extern char _vmlinux_info[]; - -#define vmlinux (*(struct vmlinux_info *)_vmlinux_info) #endif /* BOOT_COMPRESSED_DECOMPRESSOR_H */ --- linux-gcp-6.2.0.orig/arch/s390/boot/ipl_report.c +++ linux-gcp-6.2.0/arch/s390/boot/ipl_report.c @@ -57,11 +57,19 @@ if (IS_ENABLED(CONFIG_BLK_DEV_INITRD) && initrd_data.start && initrd_data.size && intersects(initrd_data.start, initrd_data.size, safe_addr, size)) safe_addr = initrd_data.start + initrd_data.size; + if (intersects(safe_addr, size, (unsigned long)comps, comps->len)) { + safe_addr = (unsigned long)comps + comps->len; + goto repeat; + } for_each_rb_entry(comp, comps) if (intersects(safe_addr, size, comp->addr, comp->len)) { safe_addr = comp->addr + comp->len; goto repeat; } + if (intersects(safe_addr, size, (unsigned long)certs, certs->len)) { + safe_addr = (unsigned long)certs + certs->len; + goto repeat; + } for_each_rb_entry(cert, certs) if (intersects(safe_addr, size, cert->addr, cert->len)) { safe_addr = cert->addr + cert->len; --- linux-gcp-6.2.0.orig/arch/s390/boot/kaslr.c +++ linux-gcp-6.2.0/arch/s390/boot/kaslr.c @@ -174,7 +174,6 @@ { unsigned long memory_limit = get_mem_detect_end(); unsigned long base_pos, max_pos, kernel_size; - unsigned long kasan_needs; int i; memory_limit = min(memory_limit, ident_map_size); @@ -186,12 +185,7 @@ */ memory_limit -= kasan_estimate_memory_needs(memory_limit); - if (IS_ENABLED(CONFIG_BLK_DEV_INITRD) && initrd_data.start && initrd_data.size) { - if (safe_addr < initrd_data.start + initrd_data.size) - safe_addr = initrd_data.start + initrd_data.size; - } safe_addr = ALIGN(safe_addr, THREAD_SIZE); - kernel_size = vmlinux.image_size + vmlinux.bss_size; if (safe_addr + kernel_size > memory_limit) return 0; --- linux-gcp-6.2.0.orig/arch/s390/boot/mem_detect.c +++ linux-gcp-6.2.0/arch/s390/boot/mem_detect.c @@ -16,29 +16,10 @@ #define ENTRIES_EXTENDED_MAX \ (256 * (1020 / 2) * sizeof(struct mem_detect_block)) -/* - * To avoid corrupting old kernel memory during dump, find lowest memory - * chunk possible either right after the kernel end (decompressed kernel) or - * after initrd (if it is present and there is no hole between the kernel end - * and initrd) - */ -static void *mem_detect_alloc_extended(void) -{ - unsigned long offset = ALIGN(mem_safe_offset(), sizeof(u64)); - - if (IS_ENABLED(CONFIG_BLK_DEV_INITRD) && initrd_data.start && initrd_data.size && - initrd_data.start < offset + ENTRIES_EXTENDED_MAX) - offset = ALIGN(initrd_data.start + initrd_data.size, sizeof(u64)); - - return (void *)offset; -} - static struct mem_detect_block *__get_mem_detect_block_ptr(u32 n) { if (n < MEM_INLINED_ENTRIES) return &mem_detect.entries[n]; - if (unlikely(!mem_detect.entries_extended)) - mem_detect.entries_extended = mem_detect_alloc_extended(); return &mem_detect.entries_extended[n - MEM_INLINED_ENTRIES]; } @@ -147,7 +128,7 @@ return rc; } -static void search_mem_end(void) +static unsigned long search_mem_end(void) { unsigned long range = 1 << (MAX_PHYSMEM_BITS - 20); /* in 1MB blocks */ unsigned long offset = 0; @@ -159,33 +140,34 @@ if (!tprot(pivot << 20)) offset = pivot; } - - add_mem_detect_block(0, (offset + 1) << 20); + return (offset + 1) << 20; } -unsigned long detect_memory(void) +unsigned long detect_memory(unsigned long *safe_addr) { - unsigned long max_physmem_end; + unsigned long max_physmem_end = 0; sclp_early_get_memsize(&max_physmem_end); + mem_detect.entries_extended = (struct mem_detect_block *)ALIGN(*safe_addr, sizeof(u64)); if (!sclp_early_read_storage_info()) { mem_detect.info_source = MEM_DETECT_SCLP_STOR_INFO; - return max_physmem_end; - } - - if (!diag260()) { + } else if (!diag260()) { mem_detect.info_source = MEM_DETECT_DIAG260; - return max_physmem_end; - } - - if (max_physmem_end) { + max_physmem_end = max_physmem_end ?: get_mem_detect_end(); + } else if (max_physmem_end) { add_mem_detect_block(0, max_physmem_end); mem_detect.info_source = MEM_DETECT_SCLP_READ_INFO; - return max_physmem_end; + } else { + max_physmem_end = search_mem_end(); + add_mem_detect_block(0, max_physmem_end); + mem_detect.info_source = MEM_DETECT_BIN_SEARCH; + } + + if (mem_detect.count > MEM_INLINED_ENTRIES) { + *safe_addr += (mem_detect.count - MEM_INLINED_ENTRIES) * + sizeof(struct mem_detect_block); } - search_mem_end(); - mem_detect.info_source = MEM_DETECT_BIN_SEARCH; - return get_mem_detect_end(); + return max_physmem_end; } --- linux-gcp-6.2.0.orig/arch/s390/boot/startup.c +++ linux-gcp-6.2.0/arch/s390/boot/startup.c @@ -57,16 +57,17 @@ } #endif -static void rescue_initrd(unsigned long addr) +static unsigned long rescue_initrd(unsigned long safe_addr) { if (!IS_ENABLED(CONFIG_BLK_DEV_INITRD)) - return; + return safe_addr; if (!initrd_data.start || !initrd_data.size) - return; - if (addr <= initrd_data.start) - return; - memmove((void *)addr, (void *)initrd_data.start, initrd_data.size); - initrd_data.start = addr; + return safe_addr; + if (initrd_data.start < safe_addr) { + memmove((void *)safe_addr, (void *)initrd_data.start, initrd_data.size); + initrd_data.start = safe_addr; + } + return initrd_data.start + initrd_data.size; } static void copy_bootdata(void) @@ -250,6 +251,7 @@ void startup_kernel(void) { + unsigned long max_physmem_end; unsigned long random_lma; unsigned long safe_addr; void *img; @@ -265,12 +267,13 @@ safe_addr = reserve_amode31(safe_addr); safe_addr = read_ipl_report(safe_addr); uv_query_info(); - rescue_initrd(safe_addr); + safe_addr = rescue_initrd(safe_addr); sclp_early_read_info(); setup_boot_command_line(); parse_boot_command_line(); sanitize_prot_virt_host(); - setup_ident_map_size(detect_memory()); + max_physmem_end = detect_memory(&safe_addr); + setup_ident_map_size(max_physmem_end); setup_vmalloc_size(); setup_kernel_memory_layout(); --- linux-gcp-6.2.0.orig/arch/s390/include/asm/ap.h +++ linux-gcp-6.2.0/arch/s390/include/asm/ap.h @@ -239,7 +239,10 @@ union { unsigned long value; struct ap_qirq_ctrl qirqctrl; - struct ap_queue_status status; + struct { + u32 _pad; + struct ap_queue_status status; + }; } reg1; unsigned long reg2 = pa_ind; @@ -253,7 +256,7 @@ " lgr %[reg1],1\n" /* gr1 (status) into reg1 */ : [reg1] "+&d" (reg1) : [reg0] "d" (reg0), [reg2] "d" (reg2) - : "cc", "0", "1", "2"); + : "cc", "memory", "0", "1", "2"); return reg1.status; } @@ -290,7 +293,10 @@ unsigned long reg0 = qid | (5UL << 24) | ((ifbit & 0x01) << 22); union { unsigned long value; - struct ap_queue_status status; + struct { + u32 _pad; + struct ap_queue_status status; + }; } reg1; unsigned long reg2; --- linux-gcp-6.2.0.orig/arch/s390/include/asm/ipl.h +++ linux-gcp-6.2.0/arch/s390/include/asm/ipl.h @@ -139,6 +139,7 @@ unsigned char flags, unsigned short cert); int ipl_report_add_certificate(struct ipl_report *report, void *key, unsigned long addr, unsigned long len); +bool ipl_get_secureboot(void); /* * DIAG 308 support --- linux-gcp-6.2.0.orig/arch/s390/include/asm/pgtable.h +++ linux-gcp-6.2.0/arch/s390/include/asm/pgtable.h @@ -181,6 +181,8 @@ #define _PAGE_SOFT_DIRTY 0x000 #endif +#define _PAGE_SW_BITS 0xffUL /* All SW bits */ + #define _PAGE_SWP_EXCLUSIVE _PAGE_LARGE /* SW pte exclusive swap bit */ /* Set of bits not changed in pte_modify */ @@ -188,6 +190,12 @@ _PAGE_YOUNG | _PAGE_SOFT_DIRTY) /* + * Mask of bits that must not be changed with RDP. Allow only _PAGE_PROTECT + * HW bit and all SW bits. + */ +#define _PAGE_RDP_MASK ~(_PAGE_PROTECT | _PAGE_SW_BITS) + +/* * handle_pte_fault uses pte_present and pte_none to find out the pte type * WITHOUT holding the page table lock. The _PAGE_PRESENT bit is used to * distinguish present from not-present ptes. It is changed only with the page @@ -1045,6 +1053,19 @@ #define IPTE_NODAT 0x400 #define IPTE_GUEST_ASCE 0x800 +static __always_inline void __ptep_rdp(unsigned long addr, pte_t *ptep, + unsigned long opt, unsigned long asce, + int local) +{ + unsigned long pto; + + pto = __pa(ptep) & ~(PTRS_PER_PTE * sizeof(pte_t) - 1); + asm volatile(".insn rrf,0xb98b0000,%[r1],%[r2],%[asce],%[m4]" + : "+m" (*ptep) + : [r1] "a" (pto), [r2] "a" ((addr & PAGE_MASK) | opt), + [asce] "a" (asce), [m4] "i" (local)); +} + static __always_inline void __ptep_ipte(unsigned long address, pte_t *ptep, unsigned long opt, unsigned long asce, int local) @@ -1195,6 +1216,42 @@ ptep_xchg_lazy(mm, addr, ptep, pte_wrprotect(pte)); } +/* + * Check if PTEs only differ in _PAGE_PROTECT HW bit, but also allow SW PTE + * bits in the comparison. Those might change e.g. because of dirty and young + * tracking. + */ +static inline int pte_allow_rdp(pte_t old, pte_t new) +{ + /* + * Only allow changes from RO to RW + */ + if (!(pte_val(old) & _PAGE_PROTECT) || pte_val(new) & _PAGE_PROTECT) + return 0; + + return (pte_val(old) & _PAGE_RDP_MASK) == (pte_val(new) & _PAGE_RDP_MASK); +} + +static inline void flush_tlb_fix_spurious_fault(struct vm_area_struct *vma, + unsigned long address) +{ + /* + * RDP might not have propagated the PTE protection reset to all CPUs, + * so there could be spurious TLB protection faults. + * NOTE: This will also be called when a racing pagetable update on + * another thread already installed the correct PTE. Both cases cannot + * really be distinguished. + * Therefore, only do the local TLB flush when RDP can be used, to avoid + * unnecessary overhead. + */ + if (MACHINE_HAS_RDP) + asm volatile("ptlb" : : : "memory"); +} +#define flush_tlb_fix_spurious_fault flush_tlb_fix_spurious_fault + +void ptep_reset_dat_prot(struct mm_struct *mm, unsigned long addr, pte_t *ptep, + pte_t new); + #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS static inline int ptep_set_access_flags(struct vm_area_struct *vma, unsigned long addr, pte_t *ptep, @@ -1202,7 +1259,10 @@ { if (pte_same(*ptep, entry)) return 0; - ptep_xchg_direct(vma->vm_mm, addr, ptep, entry); + if (MACHINE_HAS_RDP && !mm_has_pgste(vma->vm_mm) && pte_allow_rdp(*ptep, entry)) + ptep_reset_dat_prot(vma->vm_mm, addr, ptep, entry); + else + ptep_xchg_direct(vma->vm_mm, addr, ptep, entry); return 1; } --- linux-gcp-6.2.0.orig/arch/s390/include/asm/setup.h +++ linux-gcp-6.2.0/arch/s390/include/asm/setup.h @@ -34,6 +34,7 @@ #define MACHINE_FLAG_GS BIT(16) #define MACHINE_FLAG_SCC BIT(17) #define MACHINE_FLAG_PCI_MIO BIT(18) +#define MACHINE_FLAG_RDP BIT(19) #define LPP_MAGIC BIT(31) #define LPP_PID_MASK _AC(0xffffffff, UL) @@ -95,6 +96,7 @@ #define MACHINE_HAS_GS (S390_lowcore.machine_flags & MACHINE_FLAG_GS) #define MACHINE_HAS_SCC (S390_lowcore.machine_flags & MACHINE_FLAG_SCC) #define MACHINE_HAS_PCI_MIO (S390_lowcore.machine_flags & MACHINE_FLAG_PCI_MIO) +#define MACHINE_HAS_RDP (S390_lowcore.machine_flags & MACHINE_FLAG_RDP) /* * Console mode. Override with conmode= --- linux-gcp-6.2.0.orig/arch/s390/include/uapi/asm/zcrypt.h +++ linux-gcp-6.2.0/arch/s390/include/uapi/asm/zcrypt.h @@ -85,7 +85,8 @@ struct CPRBX { __u16 cprb_len; /* CPRB length 220 */ __u8 cprb_ver_id; /* CPRB version id. 0x02 */ - __u8 _pad_000[3]; /* Alignment pad bytes */ + __u8 ctfm; /* Command Type Filtering Mask */ + __u8 pad_000[2]; /* Alignment pad bytes */ __u8 func_id[2]; /* function id 0x5432 */ __u8 cprb_flags[4]; /* Flags */ __u32 req_parml; /* request parameter buffer len */ --- linux-gcp-6.2.0.orig/arch/s390/kernel/early.c +++ linux-gcp-6.2.0/arch/s390/kernel/early.c @@ -227,6 +227,8 @@ S390_lowcore.machine_flags |= MACHINE_FLAG_PCI_MIO; /* the control bit is set during PCI initialization */ } + if (test_facility(194)) + S390_lowcore.machine_flags |= MACHINE_FLAG_RDP; } static inline void save_vector_registers(void) @@ -288,7 +290,6 @@ void __init startup_init(void) { - sclp_early_adjust_va(); reset_tod_clock(); check_image_bootable(); time_early_init(); --- linux-gcp-6.2.0.orig/arch/s390/kernel/head64.S +++ linux-gcp-6.2.0/arch/s390/kernel/head64.S @@ -25,6 +25,7 @@ larl %r14,init_task stg %r14,__LC_CURRENT larl %r15,init_thread_union+THREAD_SIZE-STACK_FRAME_OVERHEAD-__PT_SIZE + brasl %r14,sclp_early_adjust_va # allow sclp_early_printk #ifdef CONFIG_KASAN brasl %r14,kasan_early_init #endif --- linux-gcp-6.2.0.orig/arch/s390/kernel/idle.c +++ linux-gcp-6.2.0/arch/s390/kernel/idle.c @@ -44,7 +44,7 @@ S390_lowcore.last_update_timer = idle->timer_idle_exit; } -void arch_cpu_idle(void) +void noinstr arch_cpu_idle(void) { struct s390_idle_data *idle = this_cpu_ptr(&s390_idle); unsigned long idle_time; --- linux-gcp-6.2.0.orig/arch/s390/kernel/ipl.c +++ linux-gcp-6.2.0/arch/s390/kernel/ipl.c @@ -593,6 +593,7 @@ &sys_ipl_type_attr.attr, &sys_ipl_eckd_bootprog_attr.attr, &sys_ipl_eckd_br_chr_attr.attr, + &sys_ipl_ccw_loadparm_attr.attr, &sys_ipl_device_attr.attr, &sys_ipl_secure_attr.attr, &sys_ipl_has_secure_attr.attr, @@ -888,23 +889,27 @@ return len; } -/* FCP wrapper */ -static ssize_t reipl_fcp_loadparm_show(struct kobject *kobj, - struct kobj_attribute *attr, char *page) -{ - return reipl_generic_loadparm_show(reipl_block_fcp, page); -} - -static ssize_t reipl_fcp_loadparm_store(struct kobject *kobj, - struct kobj_attribute *attr, - const char *buf, size_t len) -{ - return reipl_generic_loadparm_store(reipl_block_fcp, buf, len); -} - -static struct kobj_attribute sys_reipl_fcp_loadparm_attr = - __ATTR(loadparm, 0644, reipl_fcp_loadparm_show, - reipl_fcp_loadparm_store); +#define DEFINE_GENERIC_LOADPARM(name) \ +static ssize_t reipl_##name##_loadparm_show(struct kobject *kobj, \ + struct kobj_attribute *attr, char *page) \ +{ \ + return reipl_generic_loadparm_show(reipl_block_##name, page); \ +} \ +static ssize_t reipl_##name##_loadparm_store(struct kobject *kobj, \ + struct kobj_attribute *attr, \ + const char *buf, size_t len) \ +{ \ + return reipl_generic_loadparm_store(reipl_block_##name, buf, len); \ +} \ +static struct kobj_attribute sys_reipl_##name##_loadparm_attr = \ + __ATTR(loadparm, 0644, reipl_##name##_loadparm_show, \ + reipl_##name##_loadparm_store) + +DEFINE_GENERIC_LOADPARM(fcp); +DEFINE_GENERIC_LOADPARM(nvme); +DEFINE_GENERIC_LOADPARM(ccw); +DEFINE_GENERIC_LOADPARM(nss); +DEFINE_GENERIC_LOADPARM(eckd); static ssize_t reipl_fcp_clear_show(struct kobject *kobj, struct kobj_attribute *attr, char *page) @@ -994,24 +999,6 @@ DEFINE_IPL_ATTR_RW(reipl_nvme, br_lba, "%lld\n", "%lld\n", reipl_block_nvme->nvme.br_lba); -/* nvme wrapper */ -static ssize_t reipl_nvme_loadparm_show(struct kobject *kobj, - struct kobj_attribute *attr, char *page) -{ - return reipl_generic_loadparm_show(reipl_block_nvme, page); -} - -static ssize_t reipl_nvme_loadparm_store(struct kobject *kobj, - struct kobj_attribute *attr, - const char *buf, size_t len) -{ - return reipl_generic_loadparm_store(reipl_block_nvme, buf, len); -} - -static struct kobj_attribute sys_reipl_nvme_loadparm_attr = - __ATTR(loadparm, 0644, reipl_nvme_loadparm_show, - reipl_nvme_loadparm_store); - static struct attribute *reipl_nvme_attrs[] = { &sys_reipl_nvme_fid_attr.attr, &sys_reipl_nvme_nsid_attr.attr, @@ -1047,38 +1034,6 @@ /* CCW reipl device attributes */ DEFINE_IPL_CCW_ATTR_RW(reipl_ccw, device, reipl_block_ccw->ccw); -/* NSS wrapper */ -static ssize_t reipl_nss_loadparm_show(struct kobject *kobj, - struct kobj_attribute *attr, char *page) -{ - return reipl_generic_loadparm_show(reipl_block_nss, page); -} - -static ssize_t reipl_nss_loadparm_store(struct kobject *kobj, - struct kobj_attribute *attr, - const char *buf, size_t len) -{ - return reipl_generic_loadparm_store(reipl_block_nss, buf, len); -} - -/* CCW wrapper */ -static ssize_t reipl_ccw_loadparm_show(struct kobject *kobj, - struct kobj_attribute *attr, char *page) -{ - return reipl_generic_loadparm_show(reipl_block_ccw, page); -} - -static ssize_t reipl_ccw_loadparm_store(struct kobject *kobj, - struct kobj_attribute *attr, - const char *buf, size_t len) -{ - return reipl_generic_loadparm_store(reipl_block_ccw, buf, len); -} - -static struct kobj_attribute sys_reipl_ccw_loadparm_attr = - __ATTR(loadparm, 0644, reipl_ccw_loadparm_show, - reipl_ccw_loadparm_store); - static ssize_t reipl_ccw_clear_show(struct kobject *kobj, struct kobj_attribute *attr, char *page) { @@ -1176,6 +1131,7 @@ &sys_reipl_eckd_device_attr.attr, &sys_reipl_eckd_bootprog_attr.attr, &sys_reipl_eckd_br_chr_attr.attr, + &sys_reipl_eckd_loadparm_attr.attr, NULL, }; @@ -1251,10 +1207,6 @@ __ATTR(name, 0644, reipl_nss_name_show, reipl_nss_name_store); -static struct kobj_attribute sys_reipl_nss_loadparm_attr = - __ATTR(loadparm, 0644, reipl_nss_loadparm_show, - reipl_nss_loadparm_store); - static struct attribute *reipl_nss_attrs[] = { &sys_reipl_nss_name_attr.attr, &sys_reipl_nss_loadparm_attr.attr, @@ -2568,3 +2520,8 @@ } #endif + +bool ipl_get_secureboot(void) +{ + return !!ipl_secure_flag; +} --- linux-gcp-6.2.0.orig/arch/s390/kernel/kprobes.c +++ linux-gcp-6.2.0/arch/s390/kernel/kprobes.c @@ -278,6 +278,7 @@ { __this_cpu_write(current_kprobe, kcb->prev_kprobe.kp); kcb->kprobe_status = kcb->prev_kprobe.status; + kcb->prev_kprobe.kp = NULL; } NOKPROBE_SYMBOL(pop_kprobe); @@ -432,12 +433,11 @@ if (!p) return 0; + resume_execution(p, regs); if (kcb->kprobe_status != KPROBE_REENTER && p->post_handler) { kcb->kprobe_status = KPROBE_HIT_SSDONE; p->post_handler(p, regs, 0); } - - resume_execution(p, regs); pop_kprobe(kcb); preempt_enable_no_resched(); --- linux-gcp-6.2.0.orig/arch/s390/kernel/setup.c +++ linux-gcp-6.2.0/arch/s390/kernel/setup.c @@ -51,6 +51,7 @@ #include #include #include +#include #include #include @@ -981,6 +982,9 @@ log_component_list(); + if (ipl_get_secureboot()) + security_lock_kernel_down("Secure IPL mode", LOCKDOWN_INTEGRITY_MAX); + /* Have one command line that is parsed and saved in /proc/cmdline */ /* boot_command_line has been already set up in early.c */ *cmdline_p = boot_command_line; --- linux-gcp-6.2.0.orig/arch/s390/kernel/vdso64/Makefile +++ linux-gcp-6.2.0/arch/s390/kernel/vdso64/Makefile @@ -25,7 +25,7 @@ KBUILD_AFLAGS_64 += -m64 -s KBUILD_CFLAGS_64 := $(filter-out -m64,$(KBUILD_CFLAGS)) -KBUILD_CFLAGS_64 += -m64 -fPIC -shared -fno-common -fno-builtin +KBUILD_CFLAGS_64 += -m64 -fPIC -fno-common -fno-builtin ldflags-y := -fPIC -shared -soname=linux-vdso64.so.1 \ --hash-style=both --build-id=sha1 -T --- linux-gcp-6.2.0.orig/arch/s390/kernel/vmlinux.lds.S +++ linux-gcp-6.2.0/arch/s390/kernel/vmlinux.lds.S @@ -228,5 +228,6 @@ DISCARDS /DISCARD/ : { *(.eh_frame) + *(.interp) } } --- linux-gcp-6.2.0.orig/arch/s390/kvm/intercept.c +++ linux-gcp-6.2.0/arch/s390/kvm/intercept.c @@ -271,10 +271,18 @@ * handle_external_interrupt - used for external interruption interceptions * @vcpu: virtual cpu * - * This interception only occurs if the CPUSTAT_EXT_INT bit was set, or if - * the new PSW does not have external interrupts disabled. In the first case, - * we've got to deliver the interrupt manually, and in the second case, we - * drop to userspace to handle the situation there. + * This interception occurs if: + * - the CPUSTAT_EXT_INT bit was already set when the external interrupt + * occurred. In this case, the interrupt needs to be injected manually to + * preserve interrupt priority. + * - the external new PSW has external interrupts enabled, which will cause an + * interruption loop. We drop to userspace in this case. + * + * The latter case can be detected by inspecting the external mask bit in the + * external new psw. + * + * Under PV, only the latter case can occur, since interrupt priorities are + * handled in the ultravisor. */ static int handle_external_interrupt(struct kvm_vcpu *vcpu) { @@ -285,10 +293,18 @@ vcpu->stat.exit_external_interrupt++; - rc = read_guest_lc(vcpu, __LC_EXT_NEW_PSW, &newpsw, sizeof(psw_t)); - if (rc) - return rc; - /* We can not handle clock comparator or timer interrupt with bad PSW */ + if (kvm_s390_pv_cpu_is_protected(vcpu)) { + newpsw = vcpu->arch.sie_block->gpsw; + } else { + rc = read_guest_lc(vcpu, __LC_EXT_NEW_PSW, &newpsw, sizeof(psw_t)); + if (rc) + return rc; + } + + /* + * Clock comparator or timer interrupt with external interrupt enabled + * will cause interrupt loop. Drop to userspace. + */ if ((eic == EXT_IRQ_CLK_COMP || eic == EXT_IRQ_CPU_TIMER) && (newpsw.mask & PSW_MASK_EXT)) return -EOPNOTSUPP; --- linux-gcp-6.2.0.orig/arch/s390/kvm/kvm-s390.c +++ linux-gcp-6.2.0/arch/s390/kvm/kvm-s390.c @@ -5633,23 +5633,40 @@ if (kvm_s390_pv_get_handle(kvm)) return -EINVAL; - if (change == KVM_MR_DELETE || change == KVM_MR_FLAGS_ONLY) - return 0; - - /* A few sanity checks. We can have memory slots which have to be - located/ended at a segment boundary (1MB). The memory in userland is - ok to be fragmented into various different vmas. It is okay to mmap() - and munmap() stuff in this slot after doing this call at any time */ - - if (new->userspace_addr & 0xffffful) - return -EINVAL; + if (change != KVM_MR_DELETE && change != KVM_MR_FLAGS_ONLY) { + /* + * A few sanity checks. We can have memory slots which have to be + * located/ended at a segment boundary (1MB). The memory in userland is + * ok to be fragmented into various different vmas. It is okay to mmap() + * and munmap() stuff in this slot after doing this call at any time + */ + + if (new->userspace_addr & 0xffffful) + return -EINVAL; + + size = new->npages * PAGE_SIZE; + if (size & 0xffffful) + return -EINVAL; + + if ((new->base_gfn * PAGE_SIZE) + size > kvm->arch.mem_limit) + return -EINVAL; + } - size = new->npages * PAGE_SIZE; - if (size & 0xffffful) - return -EINVAL; + if (!kvm->arch.migration_mode) + return 0; - if ((new->base_gfn * PAGE_SIZE) + size > kvm->arch.mem_limit) - return -EINVAL; + /* + * Turn off migration mode when: + * - userspace creates a new memslot with dirty logging off, + * - userspace modifies an existing memslot (MOVE or FLAGS_ONLY) and + * dirty logging is turned off. + * Migration mode expects dirty page logging being enabled to store + * its dirty bitmap. + */ + if (change != KVM_MR_DELETE && + !(new->flags & KVM_MEM_LOG_DIRTY_PAGES)) + WARN(kvm_s390_vm_stop_migration(kvm), + "Failed to stop migration mode"); return 0; } --- linux-gcp-6.2.0.orig/arch/s390/lib/uaccess.c +++ linux-gcp-6.2.0/arch/s390/lib/uaccess.c @@ -172,7 +172,7 @@ "4: slgr %0,%0\n" "5:\n" EX_TABLE(0b,2b) EX_TABLE(6b,2b) EX_TABLE(3b,5b) EX_TABLE(7b,5b) - : "+a" (size), "+a" (to), "+a" (tmp1), "=a" (tmp2) + : "+&a" (size), "+&a" (to), "+a" (tmp1), "=&a" (tmp2) : "a" (empty_zero_page), [spec] "d" (spec.val) : "cc", "memory", "0"); return size; --- linux-gcp-6.2.0.orig/arch/s390/mm/dump_pagetables.c +++ linux-gcp-6.2.0/arch/s390/mm/dump_pagetables.c @@ -33,10 +33,6 @@ #endif IDENTITY_AFTER_NR, IDENTITY_AFTER_END_NR, -#ifdef CONFIG_KASAN - KASAN_SHADOW_START_NR, - KASAN_SHADOW_END_NR, -#endif VMEMMAP_NR, VMEMMAP_END_NR, VMALLOC_NR, @@ -47,6 +43,10 @@ ABS_LOWCORE_END_NR, MEMCPY_REAL_NR, MEMCPY_REAL_END_NR, +#ifdef CONFIG_KASAN + KASAN_SHADOW_START_NR, + KASAN_SHADOW_END_NR, +#endif }; static struct addr_marker address_markers[] = { @@ -62,10 +62,6 @@ #endif [IDENTITY_AFTER_NR] = {(unsigned long)_end, "Identity Mapping Start"}, [IDENTITY_AFTER_END_NR] = {0, "Identity Mapping End"}, -#ifdef CONFIG_KASAN - [KASAN_SHADOW_START_NR] = {KASAN_SHADOW_START, "Kasan Shadow Start"}, - [KASAN_SHADOW_END_NR] = {KASAN_SHADOW_END, "Kasan Shadow End"}, -#endif [VMEMMAP_NR] = {0, "vmemmap Area Start"}, [VMEMMAP_END_NR] = {0, "vmemmap Area End"}, [VMALLOC_NR] = {0, "vmalloc Area Start"}, @@ -76,6 +72,10 @@ [ABS_LOWCORE_END_NR] = {0, "Lowcore Area End"}, [MEMCPY_REAL_NR] = {0, "Real Memory Copy Area Start"}, [MEMCPY_REAL_END_NR] = {0, "Real Memory Copy Area End"}, +#ifdef CONFIG_KASAN + [KASAN_SHADOW_START_NR] = {KASAN_SHADOW_START, "Kasan Shadow Start"}, + [KASAN_SHADOW_END_NR] = {KASAN_SHADOW_END, "Kasan Shadow End"}, +#endif { -1, NULL } }; --- linux-gcp-6.2.0.orig/arch/s390/mm/extmem.c +++ linux-gcp-6.2.0/arch/s390/mm/extmem.c @@ -289,15 +289,17 @@ /* * real segment loading function, called from segment_load + * Must return either an error code < 0, or the segment type code >= 0 */ static int __segment_load (char *name, int do_nonshared, unsigned long *addr, unsigned long *end) { unsigned long start_addr, end_addr, dummy; struct dcss_segment *seg; - int rc, diag_cc; + int rc, diag_cc, segtype; start_addr = end_addr = 0; + segtype = -1; seg = kmalloc(sizeof(*seg), GFP_KERNEL | GFP_DMA); if (seg == NULL) { rc = -ENOMEM; @@ -326,9 +328,9 @@ seg->res_name[8] = '\0'; strlcat(seg->res_name, " (DCSS)", sizeof(seg->res_name)); seg->res->name = seg->res_name; - rc = seg->vm_segtype; - if (rc == SEG_TYPE_SC || - ((rc == SEG_TYPE_SR || rc == SEG_TYPE_ER) && !do_nonshared)) + segtype = seg->vm_segtype; + if (segtype == SEG_TYPE_SC || + ((segtype == SEG_TYPE_SR || segtype == SEG_TYPE_ER) && !do_nonshared)) seg->res->flags |= IORESOURCE_READONLY; /* Check for overlapping resources before adding the mapping. */ @@ -386,7 +388,7 @@ out_free: kfree(seg); out: - return rc; + return rc < 0 ? rc : segtype; } /* --- linux-gcp-6.2.0.orig/arch/s390/mm/fault.c +++ linux-gcp-6.2.0/arch/s390/mm/fault.c @@ -96,6 +96,20 @@ return KERNEL_FAULT; } +static unsigned long get_fault_address(struct pt_regs *regs) +{ + unsigned long trans_exc_code = regs->int_parm_long; + + return trans_exc_code & __FAIL_ADDR_MASK; +} + +static bool fault_is_write(struct pt_regs *regs) +{ + unsigned long trans_exc_code = regs->int_parm_long; + + return (trans_exc_code & store_indication) == 0x400; +} + static int bad_address(void *p) { unsigned long dummy; @@ -228,15 +242,26 @@ (void __user *)(regs->int_parm_long & __FAIL_ADDR_MASK)); } -static noinline void do_no_context(struct pt_regs *regs) +static noinline void do_no_context(struct pt_regs *regs, vm_fault_t fault) { + enum fault_type fault_type; + unsigned long address; + bool is_write; + if (fixup_exception(regs)) return; + fault_type = get_fault_type(regs); + if ((fault_type == KERNEL_FAULT) && (fault == VM_FAULT_BADCONTEXT)) { + address = get_fault_address(regs); + is_write = fault_is_write(regs); + if (kfence_handle_page_fault(address, is_write, regs)) + return; + } /* * Oops. The kernel tried to access some bad page. We'll have to * terminate things with extreme prejudice. */ - if (get_fault_type(regs) == KERNEL_FAULT) + if (fault_type == KERNEL_FAULT) printk(KERN_ALERT "Unable to handle kernel pointer dereference" " in virtual kernel address space\n"); else @@ -255,7 +280,7 @@ die (regs, "Low-address protection"); } - do_no_context(regs); + do_no_context(regs, VM_FAULT_BADACCESS); } static noinline void do_sigbus(struct pt_regs *regs) @@ -286,28 +311,28 @@ fallthrough; case VM_FAULT_BADCONTEXT: case VM_FAULT_PFAULT: - do_no_context(regs); + do_no_context(regs, fault); break; case VM_FAULT_SIGNAL: if (!user_mode(regs)) - do_no_context(regs); + do_no_context(regs, fault); break; default: /* fault & VM_FAULT_ERROR */ if (fault & VM_FAULT_OOM) { if (!user_mode(regs)) - do_no_context(regs); + do_no_context(regs, fault); else pagefault_out_of_memory(); } else if (fault & VM_FAULT_SIGSEGV) { /* Kernel mode? Handle exceptions or die */ if (!user_mode(regs)) - do_no_context(regs); + do_no_context(regs, fault); else do_sigsegv(regs, SEGV_MAPERR); } else if (fault & VM_FAULT_SIGBUS) { /* Kernel mode? Handle exceptions or die */ if (!user_mode(regs)) - do_no_context(regs); + do_no_context(regs, fault); else do_sigbus(regs); } else @@ -334,7 +359,6 @@ struct mm_struct *mm; struct vm_area_struct *vma; enum fault_type type; - unsigned long trans_exc_code; unsigned long address; unsigned int flags; vm_fault_t fault; @@ -351,9 +375,8 @@ return 0; mm = tsk->mm; - trans_exc_code = regs->int_parm_long; - address = trans_exc_code & __FAIL_ADDR_MASK; - is_write = (trans_exc_code & store_indication) == 0x400; + address = get_fault_address(regs); + is_write = fault_is_write(regs); /* * Verify that the fault happened in user space, that @@ -364,8 +387,6 @@ type = get_fault_type(regs); switch (type) { case KERNEL_FAULT: - if (kfence_handle_page_fault(address, is_write, regs)) - return 0; goto out; case USER_FAULT: case GMAP_FAULT: --- linux-gcp-6.2.0.orig/arch/s390/mm/pgtable.c +++ linux-gcp-6.2.0/arch/s390/mm/pgtable.c @@ -302,6 +302,31 @@ } EXPORT_SYMBOL(ptep_xchg_direct); +/* + * Caller must check that new PTE only differs in _PAGE_PROTECT HW bit, so that + * RDP can be used instead of IPTE. See also comments at pte_allow_rdp(). + */ +void ptep_reset_dat_prot(struct mm_struct *mm, unsigned long addr, pte_t *ptep, + pte_t new) +{ + preempt_disable(); + atomic_inc(&mm->context.flush_count); + if (cpumask_equal(mm_cpumask(mm), cpumask_of(smp_processor_id()))) + __ptep_rdp(addr, ptep, 0, 0, 1); + else + __ptep_rdp(addr, ptep, 0, 0, 0); + /* + * PTE is not invalidated by RDP, only _PAGE_PROTECT is cleared. That + * means it is still valid and active, and must not be changed according + * to the architecture. But writing a new value that only differs in SW + * bits is allowed. + */ + set_pte(ptep, new); + atomic_dec(&mm->context.flush_count); + preempt_enable(); +} +EXPORT_SYMBOL(ptep_reset_dat_prot); + pte_t ptep_xchg_lazy(struct mm_struct *mm, unsigned long addr, pte_t *ptep, pte_t new) { --- linux-gcp-6.2.0.orig/arch/s390/mm/vmem.c +++ linux-gcp-6.2.0/arch/s390/mm/vmem.c @@ -297,7 +297,7 @@ if (end > VMALLOC_START) return; #ifdef CONFIG_KASAN - if (start < KASAN_SHADOW_END && KASAN_SHADOW_START > end) + if (start < KASAN_SHADOW_END && end > KASAN_SHADOW_START) return; #endif pmd = pmd_offset(pud, start); @@ -372,7 +372,7 @@ if (end > VMALLOC_START) return; #ifdef CONFIG_KASAN - if (start < KASAN_SHADOW_END && KASAN_SHADOW_START > end) + if (start < KASAN_SHADOW_END && end > KASAN_SHADOW_START) return; #endif @@ -426,7 +426,7 @@ if (end > VMALLOC_START) return; #ifdef CONFIG_KASAN - if (start < KASAN_SHADOW_END && KASAN_SHADOW_START > end) + if (start < KASAN_SHADOW_END && end > KASAN_SHADOW_START) return; #endif --- linux-gcp-6.2.0.orig/arch/s390/net/bpf_jit_comp.c +++ linux-gcp-6.2.0/arch/s390/net/bpf_jit_comp.c @@ -1393,8 +1393,16 @@ /* lg %r1,bpf_func(%r1) */ EMIT6_DISP_LH(0xe3000000, 0x0004, REG_1, REG_1, REG_0, offsetof(struct bpf_prog, bpf_func)); - /* bc 0xf,tail_call_start(%r1) */ - _EMIT4(0x47f01000 + jit->tail_call_start); + if (nospec_uses_trampoline()) { + jit->seen |= SEEN_FUNC; + /* aghi %r1,tail_call_start */ + EMIT4_IMM(0xa70b0000, REG_1, jit->tail_call_start); + /* brcl 0xf,__s390_indirect_jump_r1 */ + EMIT6_PCREL_RILC(0xc0040000, 0xf, jit->r1_thunk_ip); + } else { + /* bc 0xf,tail_call_start(%r1) */ + _EMIT4(0x47f01000 + jit->tail_call_start); + } /* out: */ if (jit->prg_buf) { *(u16 *)(jit->prg_buf + patch_1_clrj + 2) = --- linux-gcp-6.2.0.orig/arch/s390/pci/pci.c +++ linux-gcp-6.2.0/arch/s390/pci/pci.c @@ -544,8 +544,7 @@ return r; } -int zpci_setup_bus_resources(struct zpci_dev *zdev, - struct list_head *resources) +int zpci_setup_bus_resources(struct zpci_dev *zdev) { unsigned long addr, size, flags; struct resource *res; @@ -581,7 +580,6 @@ return -ENOMEM; } zdev->bars[i].res = res; - pci_add_resource(resources, res); } zdev->has_resources = 1; @@ -590,17 +588,23 @@ static void zpci_cleanup_bus_resources(struct zpci_dev *zdev) { + struct resource *res; int i; + pci_lock_rescan_remove(); for (i = 0; i < PCI_STD_NUM_BARS; i++) { - if (!zdev->bars[i].size || !zdev->bars[i].res) + res = zdev->bars[i].res; + if (!res) continue; + release_resource(res); + pci_bus_remove_resource(zdev->zbus->bus, res); zpci_free_iomap(zdev, zdev->bars[i].map_idx); - release_resource(zdev->bars[i].res); - kfree(zdev->bars[i].res); + zdev->bars[i].res = NULL; + kfree(res); } zdev->has_resources = 0; + pci_unlock_rescan_remove(); } int pcibios_device_add(struct pci_dev *pdev) --- linux-gcp-6.2.0.orig/arch/s390/pci/pci_bus.c +++ linux-gcp-6.2.0/arch/s390/pci/pci_bus.c @@ -41,9 +41,7 @@ */ static int zpci_bus_prepare_device(struct zpci_dev *zdev) { - struct resource_entry *window, *n; - struct resource *res; - int rc; + int rc, i; if (!zdev_enabled(zdev)) { rc = zpci_enable_device(zdev); @@ -57,10 +55,10 @@ } if (!zdev->has_resources) { - zpci_setup_bus_resources(zdev, &zdev->zbus->resources); - resource_list_for_each_entry_safe(window, n, &zdev->zbus->resources) { - res = window->res; - pci_bus_add_resource(zdev->zbus->bus, res, 0); + zpci_setup_bus_resources(zdev); + for (i = 0; i < PCI_STD_NUM_BARS; i++) { + if (zdev->bars[i].res) + pci_bus_add_resource(zdev->zbus->bus, zdev->bars[i].res, 0); } } --- linux-gcp-6.2.0.orig/arch/s390/pci/pci_bus.h +++ linux-gcp-6.2.0/arch/s390/pci/pci_bus.h @@ -30,8 +30,7 @@ int zpci_alloc_domain(int domain); void zpci_free_domain(int domain); -int zpci_setup_bus_resources(struct zpci_dev *zdev, - struct list_head *resources); +int zpci_setup_bus_resources(struct zpci_dev *zdev); static inline struct zpci_dev *zdev_from_bus(struct pci_bus *bus, unsigned int devfn) --- linux-gcp-6.2.0.orig/arch/sh/include/asm/processor_32.h +++ linux-gcp-6.2.0/arch/sh/include/asm/processor_32.h @@ -50,6 +50,7 @@ #define SR_FD 0x00008000 #define SR_MD 0x40000000 +#define SR_USER_MASK 0x00000303 // M, Q, S, T bits /* * DSP structure and data */ --- linux-gcp-6.2.0.orig/arch/sh/kernel/signal_32.c +++ linux-gcp-6.2.0/arch/sh/kernel/signal_32.c @@ -115,6 +115,7 @@ restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc, int *r0_p) { unsigned int err = 0; + unsigned int sr = regs->sr & ~SR_USER_MASK; #define COPY(x) err |= __get_user(regs->x, &sc->sc_##x) COPY(regs[1]); @@ -130,6 +131,8 @@ COPY(sr); COPY(pc); #undef COPY + regs->sr = (regs->sr & SR_USER_MASK) | sr; + #ifdef CONFIG_SH_FPU if (boot_cpu_data.flags & CPU_HAS_FPU) { int owned_fp; --- linux-gcp-6.2.0.orig/arch/sparc/Kconfig +++ linux-gcp-6.2.0/arch/sparc/Kconfig @@ -283,7 +283,7 @@ This config option is actually maximum order plus one. For example, a value of 13 means that the largest free memory block is 2^12 pages. -if SPARC64 +if SPARC64 || COMPILE_TEST source "kernel/power/Kconfig" endif --- linux-gcp-6.2.0.orig/arch/um/drivers/vector_kern.c +++ linux-gcp-6.2.0/arch/um/drivers/vector_kern.c @@ -767,6 +767,7 @@ if (parsed == NULL) { *error_out = "vector_config failed to parse parameters"; + kfree(params); return -EINVAL; } --- linux-gcp-6.2.0.orig/arch/um/drivers/virt-pci.c +++ linux-gcp-6.2.0/arch/um/drivers/virt-pci.c @@ -132,8 +132,11 @@ out ? 1 : 0, posted ? cmd : HANDLE_NO_FREE(cmd), GFP_ATOMIC); - if (ret) + if (ret) { + if (posted) + kfree(cmd); goto out; + } if (posted) { virtqueue_kick(dev->cmd_vq); @@ -623,22 +626,33 @@ struct um_pci_device *dev = vdev->priv; int i; - /* Stop all virtqueues */ - virtio_reset_device(vdev); - vdev->config->del_vqs(vdev); - device_set_wakeup_enable(&vdev->dev, false); mutex_lock(&um_pci_mtx); for (i = 0; i < MAX_DEVICES; i++) { if (um_pci_devices[i].dev != dev) continue; + um_pci_devices[i].dev = NULL; irq_free_desc(dev->irq); + + break; } mutex_unlock(&um_pci_mtx); - um_pci_rescan(); + if (i < MAX_DEVICES) { + struct pci_dev *pci_dev; + + pci_dev = pci_get_slot(bridge->bus, i); + if (pci_dev) + pci_stop_and_remove_bus_device_locked(pci_dev); + } + + /* Stop all virtqueues */ + virtio_reset_device(vdev); + dev->cmd_vq = NULL; + dev->irq_vq = NULL; + vdev->config->del_vqs(vdev); kfree(dev); } --- linux-gcp-6.2.0.orig/arch/um/drivers/virtio_uml.c +++ linux-gcp-6.2.0/arch/um/drivers/virtio_uml.c @@ -168,7 +168,8 @@ if (!vu_dev->registered) return; - virtio_break_device(&vu_dev->vdev); + vu_dev->registered = 0; + schedule_work(&pdata->conn_broken_wk); } @@ -1136,6 +1137,15 @@ static void vu_of_conn_broken(struct work_struct *wk) { + struct virtio_uml_platform_data *pdata; + struct virtio_uml_device *vu_dev; + + pdata = container_of(wk, struct virtio_uml_platform_data, conn_broken_wk); + + vu_dev = platform_get_drvdata(pdata->pdev); + + virtio_break_device(&vu_dev->vdev); + /* * We can't remove the device from the devicetree so the only thing we * can do is warn. @@ -1266,8 +1276,14 @@ static void vu_conn_broken(struct work_struct *wk) { struct virtio_uml_platform_data *pdata; + struct virtio_uml_device *vu_dev; pdata = container_of(wk, struct virtio_uml_platform_data, conn_broken_wk); + + vu_dev = platform_get_drvdata(pdata->pdev); + + virtio_break_device(&vu_dev->vdev); + vu_unregister_cmdline_device(&pdata->pdev->dev, NULL); } --- linux-gcp-6.2.0.orig/arch/um/kernel/vmlinux.lds.S +++ linux-gcp-6.2.0/arch/um/kernel/vmlinux.lds.S @@ -1,4 +1,4 @@ - +#define RUNTIME_DISCARD_EXIT KERNEL_STACK_SIZE = 4096 * (1 << CONFIG_KERNEL_STACK_ORDER); #ifdef CONFIG_LD_SCRIPT_STATIC --- linux-gcp-6.2.0.orig/arch/x86/boot/video-vga.c +++ linux-gcp-6.2.0/arch/x86/boot/video-vga.c @@ -188,7 +188,7 @@ vga_set_vertical_end(60*8); } -static int vga_set_mode(struct mode_info *mode) +static int __attribute__((optimize("no-jump-tables"))) vga_set_mode(struct mode_info *mode) { /* Set the basic mode */ vga_set_basic_mode(); --- linux-gcp-6.2.0.orig/arch/x86/crypto/ghash-clmulni-intel_glue.c +++ linux-gcp-6.2.0/arch/x86/crypto/ghash-clmulni-intel_glue.c @@ -19,6 +19,7 @@ #include #include #include +#include #define GHASH_BLOCK_SIZE 16 #define GHASH_DIGEST_SIZE 16 @@ -54,15 +55,14 @@ const u8 *key, unsigned int keylen) { struct ghash_ctx *ctx = crypto_shash_ctx(tfm); - be128 *x = (be128 *)key; u64 a, b; if (keylen != GHASH_BLOCK_SIZE) return -EINVAL; /* perform multiplication by 'x' in GF(2^128) */ - a = be64_to_cpu(x->a); - b = be64_to_cpu(x->b); + a = get_unaligned_be64(key); + b = get_unaligned_be64(key + 8); ctx->shash.a = (b << 1) | (a >> 63); ctx->shash.b = (a << 1) | (b >> 63); --- linux-gcp-6.2.0.orig/arch/x86/events/amd/core.c +++ linux-gcp-6.2.0/arch/x86/events/amd/core.c @@ -923,6 +923,7 @@ /* Event overflow */ handled++; + status &= ~mask; perf_sample_data_init(&data, 0, hwc->last_period); if (!x86_perf_event_set_period(event)) @@ -935,8 +936,6 @@ if (perf_event_overflow(event, &data, regs)) x86_pmu_stop(event, 0); - - status &= ~mask; } /* --- linux-gcp-6.2.0.orig/arch/x86/events/intel/ds.c +++ linux-gcp-6.2.0/arch/x86/events/intel/ds.c @@ -2,12 +2,14 @@ #include #include #include +#include #include #include #include #include #include +#include #include "../perf_event.h" @@ -1519,6 +1521,27 @@ return val; } +static void setup_pebs_time(struct perf_event *event, + struct perf_sample_data *data, + u64 tsc) +{ + /* Converting to a user-defined clock is not supported yet. */ + if (event->attr.use_clockid != 0) + return; + + /* + * Doesn't support the conversion when the TSC is unstable. + * The TSC unstable case is a corner case and very unlikely to + * happen. If it happens, the TSC in a PEBS record will be + * dropped and fall back to perf_event_clock(). + */ + if (!using_native_sched_clock() || !sched_clock_stable()) + return; + + data->time = native_sched_clock_from_tsc(tsc) + __sched_clock_offset; + data->sample_flags |= PERF_SAMPLE_TIME; +} + #define PERF_SAMPLE_ADDR_TYPE (PERF_SAMPLE_ADDR | \ PERF_SAMPLE_PHYS_ADDR | \ PERF_SAMPLE_DATA_PAGE_SIZE) @@ -1668,11 +1691,8 @@ * * We can only do this for the default trace clock. */ - if (x86_pmu.intel_cap.pebs_format >= 3 && - event->attr.use_clockid == 0) { - data->time = native_sched_clock_from_tsc(pebs->tsc); - data->sample_flags |= PERF_SAMPLE_TIME; - } + if (x86_pmu.intel_cap.pebs_format >= 3) + setup_pebs_time(event, data, pebs->tsc); if (has_branch_stack(event)) { data->br_stack = &cpuc->lbr_stack; @@ -1735,10 +1755,7 @@ perf_sample_data_init(data, 0, event->hw.last_period); data->period = event->hw.last_period; - if (event->attr.use_clockid == 0) { - data->time = native_sched_clock_from_tsc(basic->tsc); - data->sample_flags |= PERF_SAMPLE_TIME; - } + setup_pebs_time(event, data, basic->tsc); /* * We must however always use iregs for the unwinder to stay sane; the --- linux-gcp-6.2.0.orig/arch/x86/events/intel/uncore.c +++ linux-gcp-6.2.0/arch/x86/events/intel/uncore.c @@ -1765,6 +1765,11 @@ .mmio_init = adl_uncore_mmio_init, }; +static const struct intel_uncore_init_fun mtl_uncore_init __initconst = { + .cpu_init = mtl_uncore_cpu_init, + .mmio_init = adl_uncore_mmio_init, +}; + static const struct intel_uncore_init_fun icx_uncore_init __initconst = { .cpu_init = icx_uncore_cpu_init, .pci_init = icx_uncore_pci_init, @@ -1832,6 +1837,8 @@ X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE, &adl_uncore_init), X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE_P, &adl_uncore_init), X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE_S, &adl_uncore_init), + X86_MATCH_INTEL_FAM6_MODEL(METEORLAKE, &mtl_uncore_init), + X86_MATCH_INTEL_FAM6_MODEL(METEORLAKE_L, &mtl_uncore_init), X86_MATCH_INTEL_FAM6_MODEL(SAPPHIRERAPIDS_X, &spr_uncore_init), X86_MATCH_INTEL_FAM6_MODEL(EMERALDRAPIDS_X, &spr_uncore_init), X86_MATCH_INTEL_FAM6_MODEL(ATOM_TREMONT_D, &snr_uncore_init), --- linux-gcp-6.2.0.orig/arch/x86/events/intel/uncore.h +++ linux-gcp-6.2.0/arch/x86/events/intel/uncore.h @@ -602,6 +602,7 @@ void icl_uncore_cpu_init(void); void tgl_uncore_cpu_init(void); void adl_uncore_cpu_init(void); +void mtl_uncore_cpu_init(void); void tgl_uncore_mmio_init(void); void tgl_l_uncore_mmio_init(void); void adl_uncore_mmio_init(void); --- linux-gcp-6.2.0.orig/arch/x86/events/intel/uncore_snb.c +++ linux-gcp-6.2.0/arch/x86/events/intel/uncore_snb.c @@ -109,6 +109,19 @@ #define PCI_DEVICE_ID_INTEL_RPL_23_IMC 0xA728 #define PCI_DEVICE_ID_INTEL_RPL_24_IMC 0xA729 #define PCI_DEVICE_ID_INTEL_RPL_25_IMC 0xA72A +#define PCI_DEVICE_ID_INTEL_MTL_1_IMC 0x7d00 +#define PCI_DEVICE_ID_INTEL_MTL_2_IMC 0x7d01 +#define PCI_DEVICE_ID_INTEL_MTL_3_IMC 0x7d02 +#define PCI_DEVICE_ID_INTEL_MTL_4_IMC 0x7d05 +#define PCI_DEVICE_ID_INTEL_MTL_5_IMC 0x7d10 +#define PCI_DEVICE_ID_INTEL_MTL_6_IMC 0x7d14 +#define PCI_DEVICE_ID_INTEL_MTL_7_IMC 0x7d15 +#define PCI_DEVICE_ID_INTEL_MTL_8_IMC 0x7d16 +#define PCI_DEVICE_ID_INTEL_MTL_9_IMC 0x7d21 +#define PCI_DEVICE_ID_INTEL_MTL_10_IMC 0x7d22 +#define PCI_DEVICE_ID_INTEL_MTL_11_IMC 0x7d23 +#define PCI_DEVICE_ID_INTEL_MTL_12_IMC 0x7d24 +#define PCI_DEVICE_ID_INTEL_MTL_13_IMC 0x7d28 #define IMC_UNCORE_DEV(a) \ @@ -205,6 +218,32 @@ #define ADL_UNC_ARB_PERFEVTSEL0 0x2FD0 #define ADL_UNC_ARB_MSR_OFFSET 0x8 +/* MTL Cbo register */ +#define MTL_UNC_CBO_0_PER_CTR0 0x2448 +#define MTL_UNC_CBO_0_PERFEVTSEL0 0x2442 + +/* MTL HAC_ARB register */ +#define MTL_UNC_HAC_ARB_CTR 0x2018 +#define MTL_UNC_HAC_ARB_CTRL 0x2012 + +/* MTL ARB register */ +#define MTL_UNC_ARB_CTR 0x2418 +#define MTL_UNC_ARB_CTRL 0x2412 + +/* MTL cNCU register */ +#define MTL_UNC_CNCU_FIXED_CTR 0x2408 +#define MTL_UNC_CNCU_FIXED_CTRL 0x2402 +#define MTL_UNC_CNCU_BOX_CTL 0x240e + +/* MTL sNCU register */ +#define MTL_UNC_SNCU_FIXED_CTR 0x2008 +#define MTL_UNC_SNCU_FIXED_CTRL 0x2002 +#define MTL_UNC_SNCU_BOX_CTL 0x200e + +/* MTL HAC_CBO register */ +#define MTL_UNC_HBO_CTR 0x2048 +#define MTL_UNC_HBO_CTRL 0x2042 + DEFINE_UNCORE_FORMAT_ATTR(event, event, "config:0-7"); DEFINE_UNCORE_FORMAT_ATTR(umask, umask, "config:8-15"); DEFINE_UNCORE_FORMAT_ATTR(chmask, chmask, "config:8-11"); @@ -598,6 +637,115 @@ uncore_msr_uncores = adl_msr_uncores; } +static struct intel_uncore_type mtl_uncore_cbox = { + .name = "cbox", + .num_counters = 2, + .perf_ctr_bits = 48, + .perf_ctr = MTL_UNC_CBO_0_PER_CTR0, + .event_ctl = MTL_UNC_CBO_0_PERFEVTSEL0, + .event_mask = ADL_UNC_RAW_EVENT_MASK, + .msr_offset = SNB_UNC_CBO_MSR_OFFSET, + .ops = &icl_uncore_msr_ops, + .format_group = &adl_uncore_format_group, +}; + +static struct intel_uncore_type mtl_uncore_hac_arb = { + .name = "hac_arb", + .num_counters = 2, + .num_boxes = 2, + .perf_ctr_bits = 48, + .perf_ctr = MTL_UNC_HAC_ARB_CTR, + .event_ctl = MTL_UNC_HAC_ARB_CTRL, + .event_mask = ADL_UNC_RAW_EVENT_MASK, + .msr_offset = SNB_UNC_CBO_MSR_OFFSET, + .ops = &icl_uncore_msr_ops, + .format_group = &adl_uncore_format_group, +}; + +static struct intel_uncore_type mtl_uncore_arb = { + .name = "arb", + .num_counters = 2, + .num_boxes = 2, + .perf_ctr_bits = 48, + .perf_ctr = MTL_UNC_ARB_CTR, + .event_ctl = MTL_UNC_ARB_CTRL, + .event_mask = ADL_UNC_RAW_EVENT_MASK, + .msr_offset = SNB_UNC_CBO_MSR_OFFSET, + .ops = &icl_uncore_msr_ops, + .format_group = &adl_uncore_format_group, +}; + +static struct intel_uncore_type mtl_uncore_hac_cbox = { + .name = "hac_cbox", + .num_counters = 2, + .num_boxes = 2, + .perf_ctr_bits = 48, + .perf_ctr = MTL_UNC_HBO_CTR, + .event_ctl = MTL_UNC_HBO_CTRL, + .event_mask = ADL_UNC_RAW_EVENT_MASK, + .msr_offset = SNB_UNC_CBO_MSR_OFFSET, + .ops = &icl_uncore_msr_ops, + .format_group = &adl_uncore_format_group, +}; + +static void mtl_uncore_msr_init_box(struct intel_uncore_box *box) +{ + wrmsrl(uncore_msr_box_ctl(box), SNB_UNC_GLOBAL_CTL_EN); +} + +static struct intel_uncore_ops mtl_uncore_msr_ops = { + .init_box = mtl_uncore_msr_init_box, + .disable_event = snb_uncore_msr_disable_event, + .enable_event = snb_uncore_msr_enable_event, + .read_counter = uncore_msr_read_counter, +}; + +static struct intel_uncore_type mtl_uncore_cncu = { + .name = "cncu", + .num_counters = 1, + .num_boxes = 1, + .box_ctl = MTL_UNC_CNCU_BOX_CTL, + .fixed_ctr_bits = 48, + .fixed_ctr = MTL_UNC_CNCU_FIXED_CTR, + .fixed_ctl = MTL_UNC_CNCU_FIXED_CTRL, + .single_fixed = 1, + .event_mask = SNB_UNC_CTL_EV_SEL_MASK, + .format_group = &icl_uncore_clock_format_group, + .ops = &mtl_uncore_msr_ops, + .event_descs = icl_uncore_events, +}; + +static struct intel_uncore_type mtl_uncore_sncu = { + .name = "sncu", + .num_counters = 1, + .num_boxes = 1, + .box_ctl = MTL_UNC_SNCU_BOX_CTL, + .fixed_ctr_bits = 48, + .fixed_ctr = MTL_UNC_SNCU_FIXED_CTR, + .fixed_ctl = MTL_UNC_SNCU_FIXED_CTRL, + .single_fixed = 1, + .event_mask = SNB_UNC_CTL_EV_SEL_MASK, + .format_group = &icl_uncore_clock_format_group, + .ops = &mtl_uncore_msr_ops, + .event_descs = icl_uncore_events, +}; + +static struct intel_uncore_type *mtl_msr_uncores[] = { + &mtl_uncore_cbox, + &mtl_uncore_hac_arb, + &mtl_uncore_arb, + &mtl_uncore_hac_cbox, + &mtl_uncore_cncu, + &mtl_uncore_sncu, + NULL +}; + +void mtl_uncore_cpu_init(void) +{ + mtl_uncore_cbox.num_boxes = icl_get_cbox_num(); + uncore_msr_uncores = mtl_msr_uncores; +} + enum { SNB_PCI_UNCORE_IMC, }; @@ -1264,6 +1412,19 @@ IMC_UNCORE_DEV(RPL_23), IMC_UNCORE_DEV(RPL_24), IMC_UNCORE_DEV(RPL_25), + IMC_UNCORE_DEV(MTL_1), + IMC_UNCORE_DEV(MTL_2), + IMC_UNCORE_DEV(MTL_3), + IMC_UNCORE_DEV(MTL_4), + IMC_UNCORE_DEV(MTL_5), + IMC_UNCORE_DEV(MTL_6), + IMC_UNCORE_DEV(MTL_7), + IMC_UNCORE_DEV(MTL_8), + IMC_UNCORE_DEV(MTL_9), + IMC_UNCORE_DEV(MTL_10), + IMC_UNCORE_DEV(MTL_11), + IMC_UNCORE_DEV(MTL_12), + IMC_UNCORE_DEV(MTL_13), { /* end: all zeroes */ } }; --- linux-gcp-6.2.0.orig/arch/x86/events/zhaoxin/core.c +++ linux-gcp-6.2.0/arch/x86/events/zhaoxin/core.c @@ -541,7 +541,13 @@ switch (boot_cpu_data.x86) { case 0x06: - if (boot_cpu_data.x86_model == 0x0f || boot_cpu_data.x86_model == 0x19) { + /* + * Support Zhaoxin CPU from ZXC series, exclude Nano series through FMS. + * Nano FMS: Family=6, Model=F, Stepping=[0-A][C-D] + * ZXC FMS: Family=6, Model=F, Stepping=E-F OR Family=6, Model=0x19, Stepping=0-3 + */ + if ((boot_cpu_data.x86_model == 0x0f && boot_cpu_data.x86_stepping >= 0x0e) || + boot_cpu_data.x86_model == 0x19) { x86_pmu.max_period = x86_pmu.cntval_mask >> 1; --- linux-gcp-6.2.0.orig/arch/x86/include/asm/apm.h +++ linux-gcp-6.2.0/arch/x86/include/asm/apm.h @@ -35,6 +35,7 @@ __asm__ __volatile__(APM_DO_ZERO_SEGS "pushl %%edi\n\t" "pushl %%ebp\n\t" + ANNOTATE_RETPOLINE_SAFE /* FRBS */ "lcall *%%cs:apm_bios_entry\n\t" "setc %%al\n\t" "popl %%ebp\n\t" @@ -59,6 +60,7 @@ __asm__ __volatile__(APM_DO_ZERO_SEGS "pushl %%edi\n\t" "pushl %%ebp\n\t" + ANNOTATE_RETPOLINE_SAFE /* FRBS */ "lcall *%%cs:apm_bios_entry\n\t" "setc %%bl\n\t" "popl %%ebp\n\t" --- linux-gcp-6.2.0.orig/arch/x86/include/asm/fpu/sched.h +++ linux-gcp-6.2.0/arch/x86/include/asm/fpu/sched.h @@ -39,7 +39,7 @@ static inline void switch_fpu_prepare(struct fpu *old_fpu, int cpu) { if (cpu_feature_enabled(X86_FEATURE_FPU) && - !(current->flags & PF_KTHREAD)) { + !(current->flags & (PF_KTHREAD | PF_IO_WORKER))) { save_fpregs_to_fpstate(old_fpu); /* * The save operation preserved register state, so the --- linux-gcp-6.2.0.orig/arch/x86/include/asm/fpu/xcr.h +++ linux-gcp-6.2.0/arch/x86/include/asm/fpu/xcr.h @@ -5,7 +5,7 @@ #define XCR_XFEATURE_ENABLED_MASK 0x00000000 #define XCR_XFEATURE_IN_USE_MASK 0x00000001 -static inline u64 xgetbv(u32 index) +static __always_inline u64 xgetbv(u32 index) { u32 eax, edx; @@ -27,7 +27,7 @@ * * Callers should check X86_FEATURE_XGETBV1. */ -static inline u64 xfeatures_in_use(void) +static __always_inline u64 xfeatures_in_use(void) { return xgetbv(XCR_XFEATURE_IN_USE_MASK); } --- linux-gcp-6.2.0.orig/arch/x86/include/asm/kvm_host.h +++ linux-gcp-6.2.0/arch/x86/include/asm/kvm_host.h @@ -1760,6 +1760,9 @@ #define KVM_X86_OP_OPTIONAL_RET0 KVM_X86_OP #include +int kvm_x86_vendor_init(struct kvm_x86_init_ops *ops); +void kvm_x86_vendor_exit(void); + #define __KVM_HAVE_ARCH_VM_ALLOC static inline struct kvm *kvm_arch_alloc_vm(void) { --- linux-gcp-6.2.0.orig/arch/x86/include/asm/microcode.h +++ linux-gcp-6.2.0/arch/x86/include/asm/microcode.h @@ -125,13 +125,13 @@ #ifdef CONFIG_MICROCODE extern void __init load_ucode_bsp(void); extern void load_ucode_ap(void); -void reload_early_microcode(void); +void reload_early_microcode(unsigned int cpu); extern bool initrd_gone; void microcode_bsp_resume(void); #else static inline void __init load_ucode_bsp(void) { } static inline void load_ucode_ap(void) { } -static inline void reload_early_microcode(void) { } +static inline void reload_early_microcode(unsigned int cpu) { } static inline void microcode_bsp_resume(void) { } #endif --- linux-gcp-6.2.0.orig/arch/x86/include/asm/microcode_amd.h +++ linux-gcp-6.2.0/arch/x86/include/asm/microcode_amd.h @@ -47,12 +47,12 @@ extern void __init load_ucode_amd_bsp(unsigned int family); extern void load_ucode_amd_ap(unsigned int family); extern int __init save_microcode_in_initrd_amd(unsigned int family); -void reload_ucode_amd(void); +void reload_ucode_amd(unsigned int cpu); #else static inline void __init load_ucode_amd_bsp(unsigned int family) {} static inline void load_ucode_amd_ap(unsigned int family) {} static inline int __init save_microcode_in_initrd_amd(unsigned int family) { return -EINVAL; } -static inline void reload_ucode_amd(void) {} +static inline void reload_ucode_amd(unsigned int cpu) {} #endif #endif /* _ASM_X86_MICROCODE_AMD_H */ --- linux-gcp-6.2.0.orig/arch/x86/include/asm/msr-index.h +++ linux-gcp-6.2.0/arch/x86/include/asm/msr-index.h @@ -49,6 +49,10 @@ #define SPEC_CTRL_RRSBA_DIS_S_SHIFT 6 /* Disable RRSBA behavior */ #define SPEC_CTRL_RRSBA_DIS_S BIT(SPEC_CTRL_RRSBA_DIS_S_SHIFT) +/* A mask for bits which the kernel toggles when controlling mitigations */ +#define SPEC_CTRL_MITIGATIONS_MASK (SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD \ + | SPEC_CTRL_RRSBA_DIS_S) + #define MSR_IA32_PRED_CMD 0x00000049 /* Prediction Command */ #define PRED_CMD_IBPB BIT(0) /* Indirect Branch Prediction Barrier */ --- linux-gcp-6.2.0.orig/arch/x86/include/asm/pci-direct.h +++ linux-gcp-6.2.0/arch/x86/include/asm/pci-direct.h @@ -10,9 +10,11 @@ extern u32 read_pci_config(u8 bus, u8 slot, u8 func, u8 offset); extern u8 read_pci_config_byte(u8 bus, u8 slot, u8 func, u8 offset); extern u16 read_pci_config_16(u8 bus, u8 slot, u8 func, u8 offset); +extern u32 pci_early_find_cap(int bus, int slot, int func, int cap); extern void write_pci_config(u8 bus, u8 slot, u8 func, u8 offset, u32 val); extern void write_pci_config_byte(u8 bus, u8 slot, u8 func, u8 offset, u8 val); extern void write_pci_config_16(u8 bus, u8 slot, u8 func, u8 offset, u16 val); +extern unsigned int pci_early_clear_msi; extern int early_pci_allowed(void); #endif /* _ASM_X86_PCI_DIRECT_H */ --- linux-gcp-6.2.0.orig/arch/x86/include/asm/processor.h +++ linux-gcp-6.2.0/arch/x86/include/asm/processor.h @@ -697,7 +697,8 @@ #endif void __noreturn stop_this_cpu(void *dummy); -void microcode_check(void); +void microcode_check(struct cpuinfo_x86 *prev_info); +void store_cpu_caps(struct cpuinfo_x86 *info); enum l1tf_mitigations { L1TF_MITIGATION_OFF, --- linux-gcp-6.2.0.orig/arch/x86/include/asm/reboot.h +++ linux-gcp-6.2.0/arch/x86/include/asm/reboot.h @@ -25,6 +25,8 @@ #define MRR_BIOS 0 #define MRR_APM 1 +void cpu_emergency_disable_virtualization(void); + typedef void (*nmi_shootdown_cb)(int, struct pt_regs*); void nmi_panic_self_stop(struct pt_regs *regs); void nmi_shootdown_cpus(nmi_shootdown_cb callback); --- linux-gcp-6.2.0.orig/arch/x86/include/asm/resctrl.h +++ linux-gcp-6.2.0/arch/x86/include/asm/resctrl.h @@ -49,7 +49,7 @@ * simple as possible. * Must be called with preemption disabled. */ -static void __resctrl_sched_in(void) +static inline void __resctrl_sched_in(struct task_struct *tsk) { struct resctrl_pqr_state *state = this_cpu_ptr(&pqr_state); u32 closid = state->default_closid; @@ -61,13 +61,13 @@ * Else use the closid/rmid assigned to this cpu. */ if (static_branch_likely(&rdt_alloc_enable_key)) { - tmp = READ_ONCE(current->closid); + tmp = READ_ONCE(tsk->closid); if (tmp) closid = tmp; } if (static_branch_likely(&rdt_mon_enable_key)) { - tmp = READ_ONCE(current->rmid); + tmp = READ_ONCE(tsk->rmid); if (tmp) rmid = tmp; } @@ -88,17 +88,17 @@ return val * scale; } -static inline void resctrl_sched_in(void) +static inline void resctrl_sched_in(struct task_struct *tsk) { if (static_branch_likely(&rdt_enable_key)) - __resctrl_sched_in(); + __resctrl_sched_in(tsk); } void resctrl_cpu_detect(struct cpuinfo_x86 *c); #else -static inline void resctrl_sched_in(void) {} +static inline void resctrl_sched_in(struct task_struct *tsk) {} static inline void resctrl_cpu_detect(struct cpuinfo_x86 *c) {} #endif /* CONFIG_X86_CPU_RESCTRL */ --- linux-gcp-6.2.0.orig/arch/x86/include/asm/sev-common.h +++ linux-gcp-6.2.0/arch/x86/include/asm/sev-common.h @@ -128,8 +128,9 @@ struct psc_entry entries[VMGEXIT_PSC_MAX_ENTRY]; } __packed; -/* Guest message request error code */ +/* Guest message request error codes */ #define SNP_GUEST_REQ_INVALID_LEN BIT_ULL(32) +#define SNP_GUEST_REQ_ERR_BUSY BIT_ULL(33) #define GHCB_MSR_TERM_REQ 0x100 #define GHCB_MSR_TERM_REASON_SET_POS 12 --- linux-gcp-6.2.0.orig/arch/x86/include/asm/special_insns.h +++ linux-gcp-6.2.0/arch/x86/include/asm/special_insns.h @@ -295,7 +295,7 @@ return 0; } -static inline void tile_release(void) +static __always_inline void tile_release(void) { /* * Instruction opcode for TILERELEASE; supported in binutils --- linux-gcp-6.2.0.orig/arch/x86/include/asm/svm.h +++ linux-gcp-6.2.0/arch/x86/include/asm/svm.h @@ -261,20 +261,22 @@ AVIC_IPI_FAILURE_INVALID_BACKING_PAGE, }; -#define AVIC_PHYSICAL_MAX_INDEX_MASK GENMASK_ULL(9, 0) +#define AVIC_PHYSICAL_MAX_INDEX_MASK GENMASK_ULL(8, 0) /* - * For AVIC, the max index allowed for physical APIC ID - * table is 0xff (255). + * For AVIC, the max index allowed for physical APIC ID table is 0xfe (254), as + * 0xff is a broadcast to all CPUs, i.e. can't be targeted individually. */ #define AVIC_MAX_PHYSICAL_ID 0XFEULL /* - * For x2AVIC, the max index allowed for physical APIC ID - * table is 0x1ff (511). + * For x2AVIC, the max index allowed for physical APIC ID table is 0x1ff (511). */ #define X2AVIC_MAX_PHYSICAL_ID 0x1FFUL +static_assert((AVIC_MAX_PHYSICAL_ID & AVIC_PHYSICAL_MAX_INDEX_MASK) == AVIC_MAX_PHYSICAL_ID); +static_assert((X2AVIC_MAX_PHYSICAL_ID & AVIC_PHYSICAL_MAX_INDEX_MASK) == X2AVIC_MAX_PHYSICAL_ID); + #define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF) #define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL --- linux-gcp-6.2.0.orig/arch/x86/include/asm/text-patching.h +++ linux-gcp-6.2.0/arch/x86/include/asm/text-patching.h @@ -184,6 +184,37 @@ unsigned long ip = int3_emulate_pop(regs); int3_emulate_jmp(regs, ip); } + +static __always_inline +void int3_emulate_jcc(struct pt_regs *regs, u8 cc, unsigned long ip, unsigned long disp) +{ + static const unsigned long jcc_mask[6] = { + [0] = X86_EFLAGS_OF, + [1] = X86_EFLAGS_CF, + [2] = X86_EFLAGS_ZF, + [3] = X86_EFLAGS_CF | X86_EFLAGS_ZF, + [4] = X86_EFLAGS_SF, + [5] = X86_EFLAGS_PF, + }; + + bool invert = cc & 1; + bool match; + + if (cc < 0xc) { + match = regs->flags & jcc_mask[cc >> 1]; + } else { + match = ((regs->flags & X86_EFLAGS_SF) >> X86_EFLAGS_SF_BIT) ^ + ((regs->flags & X86_EFLAGS_OF) >> X86_EFLAGS_OF_BIT); + if (cc >= 0xe) + match = match || (regs->flags & X86_EFLAGS_ZF); + } + + if ((match && !invert) || (!match && invert)) + ip += disp; + + int3_emulate_jmp(regs, ip); +} + #endif /* !CONFIG_UML_X86 */ #endif /* _ASM_X86_TEXT_PATCHING_H */ --- linux-gcp-6.2.0.orig/arch/x86/include/asm/virtext.h +++ linux-gcp-6.2.0/arch/x86/include/asm/virtext.h @@ -126,7 +126,21 @@ wrmsrl(MSR_VM_HSAVE_PA, 0); rdmsrl(MSR_EFER, efer); - wrmsrl(MSR_EFER, efer & ~EFER_SVME); + if (efer & EFER_SVME) { + /* + * Force GIF=1 prior to disabling SVM to ensure INIT and NMI + * aren't blocked, e.g. if a fatal error occurred between CLGI + * and STGI. Note, STGI may #UD if SVM is disabled from NMI + * context between reading EFER and executing STGI. In that + * case, GIF must already be set, otherwise the NMI would have + * been blocked, so just eat the fault. + */ + asm_volatile_goto("1: stgi\n\t" + _ASM_EXTABLE(1b, %l[fault]) + ::: "memory" : fault); +fault: + wrmsrl(MSR_EFER, efer & ~EFER_SVME); + } } /** Makes sure SVM is disabled, if it is supported on the CPU --- linux-gcp-6.2.0.orig/arch/x86/kernel/acpi/boot.c +++ linux-gcp-6.2.0/arch/x86/kernel/acpi/boot.c @@ -146,7 +146,11 @@ pr_debug("Local APIC address 0x%08x\n", madt->address); } - if (madt->header.revision >= 5) + + /* ACPI 6.3 and newer support the online capable bit. */ + if (acpi_gbl_FADT.header.revision > 6 || + (acpi_gbl_FADT.header.revision == 6 && + acpi_gbl_FADT.minor_revision >= 3)) acpi_support_online_capable = true; default_acpi_madt_oem_check(madt->header.oem_id, @@ -188,6 +192,18 @@ return cpu; } +static bool __init acpi_is_processor_usable(u32 lapic_flags) +{ + if (lapic_flags & ACPI_MADT_ENABLED) + return true; + + if (!acpi_support_online_capable || + (lapic_flags & ACPI_MADT_ONLINE_CAPABLE)) + return true; + + return false; +} + static int __init acpi_parse_x2apic(union acpi_subtable_headers *header, const unsigned long end) { @@ -212,6 +228,10 @@ if (apic_id == 0xffffffff) return 0; + /* don't register processors that cannot be onlined */ + if (!acpi_is_processor_usable(processor->lapic_flags)) + return 0; + /* * We need to register disabled CPU as well to permit * counting disabled CPUs. This allows us to size @@ -250,9 +270,7 @@ return 0; /* don't register processors that can not be onlined */ - if (acpi_support_online_capable && - !(processor->lapic_flags & ACPI_MADT_ENABLED) && - !(processor->lapic_flags & ACPI_MADT_ONLINE_CAPABLE)) + if (!acpi_is_processor_usable(processor->lapic_flags)) return 0; /* --- linux-gcp-6.2.0.orig/arch/x86/kernel/acpi/cstate.c +++ linux-gcp-6.2.0/arch/x86/kernel/acpi/cstate.c @@ -102,6 +102,21 @@ */ flags->bm_control = 0; } + if (c->x86_vendor == X86_VENDOR_AMD && c->x86 >= 0x17) { + /* + * For all AMD Zen or newer CPUs that support C3, caches + * should not be flushed by software while entering C3 + * type state. Set bm->check to 1 so that kernel doesn't + * need to execute cache flush operation. + */ + flags->bm_check = 1; + /* + * In current AMD C state implementation ARB_DIS is no longer + * used. So set bm_control to zero to indicate ARB_DIS is not + * required while entering C3 type state. + */ + flags->bm_control = 0; + } } EXPORT_SYMBOL(acpi_processor_power_init_bm_check); --- linux-gcp-6.2.0.orig/arch/x86/kernel/acpi/wakeup_32.S +++ linux-gcp-6.2.0/arch/x86/kernel/acpi/wakeup_32.S @@ -3,6 +3,7 @@ #include #include #include +#include # Copyright 2003, 2008 Pavel Machek opcode.bytes[0] == 0x0f && (insn->opcode.bytes[1] & 0xf0) == 0x80; +} + #if defined(CONFIG_RETPOLINE) && defined(CONFIG_OBJTOOL) /* @@ -378,12 +384,6 @@ return i; } -static inline bool is_jcc32(struct insn *insn) -{ - /* Jcc.d32 second opcode byte is in the range: 0x80-0x8f */ - return insn->opcode.bytes[0] == 0x0f && (insn->opcode.bytes[1] & 0xf0) == 0x80; -} - static int emit_call_track_retpoline(void *addr, struct insn *insn, int reg, u8 *bytes) { u8 op = insn->opcode.bytes[0]; @@ -1772,6 +1772,11 @@ on_each_cpu(do_sync_core, NULL, 1); } +/* + * NOTE: crazy scheme to allow patching Jcc.d32 but not increase the size of + * this thing. When len == 6 everything is prefixed with 0x0f and we map + * opcode to Jcc.d8, using len to distinguish. + */ struct text_poke_loc { /* addr := _stext + rel_addr */ s32 rel_addr; @@ -1893,6 +1898,10 @@ int3_emulate_jmp(regs, (long)ip + tp->disp); break; + case 0x70 ... 0x7f: /* Jcc */ + int3_emulate_jcc(regs, tp->opcode & 0xf, (long)ip, tp->disp); + break; + default: BUG(); } @@ -1966,16 +1975,26 @@ * Second step: update all but the first byte of the patched range. */ for (do_sync = 0, i = 0; i < nr_entries; i++) { - u8 old[POKE_MAX_OPCODE_SIZE] = { tp[i].old, }; + u8 old[POKE_MAX_OPCODE_SIZE+1] = { tp[i].old, }; + u8 _new[POKE_MAX_OPCODE_SIZE+1]; + const u8 *new = tp[i].text; int len = tp[i].len; if (len - INT3_INSN_SIZE > 0) { memcpy(old + INT3_INSN_SIZE, text_poke_addr(&tp[i]) + INT3_INSN_SIZE, len - INT3_INSN_SIZE); + + if (len == 6) { + _new[0] = 0x0f; + memcpy(_new + 1, new, 5); + new = _new; + } + text_poke(text_poke_addr(&tp[i]) + INT3_INSN_SIZE, - (const char *)tp[i].text + INT3_INSN_SIZE, + new + INT3_INSN_SIZE, len - INT3_INSN_SIZE); + do_sync++; } @@ -2003,8 +2022,7 @@ * The old instruction is recorded so that the event can be * processed forwards or backwards. */ - perf_event_text_poke(text_poke_addr(&tp[i]), old, len, - tp[i].text, len); + perf_event_text_poke(text_poke_addr(&tp[i]), old, len, new, len); } if (do_sync) { @@ -2021,10 +2039,15 @@ * replacing opcode. */ for (do_sync = 0, i = 0; i < nr_entries; i++) { - if (tp[i].text[0] == INT3_INSN_OPCODE) + u8 byte = tp[i].text[0]; + + if (tp[i].len == 6) + byte = 0x0f; + + if (byte == INT3_INSN_OPCODE) continue; - text_poke(text_poke_addr(&tp[i]), tp[i].text, INT3_INSN_SIZE); + text_poke(text_poke_addr(&tp[i]), &byte, INT3_INSN_SIZE); do_sync++; } @@ -2042,9 +2065,11 @@ const void *opcode, size_t len, const void *emulate) { struct insn insn; - int ret, i; + int ret, i = 0; - memcpy((void *)tp->text, opcode, len); + if (len == 6) + i = 1; + memcpy((void *)tp->text, opcode+i, len-i); if (!emulate) emulate = opcode; @@ -2055,6 +2080,13 @@ tp->len = len; tp->opcode = insn.opcode.bytes[0]; + if (is_jcc32(&insn)) { + /* + * Map Jcc.d32 onto Jcc.d8 and use len to distinguish. + */ + tp->opcode = insn.opcode.bytes[1] - 0x10; + } + switch (tp->opcode) { case RET_INSN_OPCODE: case JMP32_INSN_OPCODE: @@ -2071,7 +2103,6 @@ BUG_ON(len != insn.length); } - switch (tp->opcode) { case INT3_INSN_OPCODE: case RET_INSN_OPCODE: @@ -2080,6 +2111,7 @@ case CALL_INSN_OPCODE: case JMP32_INSN_OPCODE: case JMP8_INSN_OPCODE: + case 0x70 ... 0x7f: /* Jcc */ tp->disp = insn.immediate.value; break; --- linux-gcp-6.2.0.orig/arch/x86/kernel/aperture_64.c +++ linux-gcp-6.2.0/arch/x86/kernel/aperture_64.c @@ -136,32 +136,6 @@ } -/* Find a PCI capability */ -static u32 __init find_cap(int bus, int slot, int func, int cap) -{ - int bytes; - u8 pos; - - if (!(read_pci_config_16(bus, slot, func, PCI_STATUS) & - PCI_STATUS_CAP_LIST)) - return 0; - - pos = read_pci_config_byte(bus, slot, func, PCI_CAPABILITY_LIST); - for (bytes = 0; bytes < 48 && pos >= 0x40; bytes++) { - u8 id; - - pos &= ~3; - id = read_pci_config_byte(bus, slot, func, pos+PCI_CAP_LIST_ID); - if (id == 0xff) - break; - if (id == cap) - return pos; - pos = read_pci_config_byte(bus, slot, func, - pos+PCI_CAP_LIST_NEXT); - } - return 0; -} - /* Read a standard AGPv3 bridge header */ static u32 __init read_agp(int bus, int slot, int func, int cap, u32 *order) { @@ -250,8 +224,8 @@ case PCI_CLASS_BRIDGE_HOST: case PCI_CLASS_BRIDGE_OTHER: /* needed? */ /* AGP bridge? */ - cap = find_cap(bus, slot, func, - PCI_CAP_ID_AGP); + cap = pci_early_find_cap(bus, slot, + func, PCI_CAP_ID_AGP); if (!cap) break; *valid_agp = 1; --- linux-gcp-6.2.0.orig/arch/x86/kernel/cpu/amd.c +++ linux-gcp-6.2.0/arch/x86/kernel/cpu/amd.c @@ -880,6 +880,15 @@ } } #endif + /* + * Work around Erratum 1386. The XSAVES instruction malfunctions in + * certain circumstances on Zen1/2 uarch, and not all parts have had + * updated microcode at the time of writing (March 2023). + * + * Affected parts all have no supervisor XSAVE states, meaning that + * the XSAVEC instruction (which works fine) is equivalent. + */ + clear_cpu_cap(c, X86_FEATURE_XSAVES); } static void init_amd_zn(struct cpuinfo_x86 *c) --- linux-gcp-6.2.0.orig/arch/x86/kernel/cpu/bugs.c +++ linux-gcp-6.2.0/arch/x86/kernel/cpu/bugs.c @@ -144,9 +144,17 @@ * have unknown values. AMD64_LS_CFG MSR is cached in the early AMD * init code as it is not enumerated and depends on the family. */ - if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL)) + if (cpu_feature_enabled(X86_FEATURE_MSR_SPEC_CTRL)) { rdmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base); + /* + * Previously running kernel (kexec), may have some controls + * turned ON. Clear them and let the mitigations setup below + * rediscover them based on configuration. + */ + x86_spec_ctrl_base &= ~SPEC_CTRL_MITIGATIONS_MASK; + } + /* Select the proper CPU mitigations before patching alternatives: */ spectre_v1_select_mitigation(); spectre_v2_select_mitigation(); @@ -1124,14 +1132,18 @@ return SPECTRE_V2_USER_CMD_AUTO; } -static inline bool spectre_v2_in_ibrs_mode(enum spectre_v2_mitigation mode) +static inline bool spectre_v2_in_eibrs_mode(enum spectre_v2_mitigation mode) { - return mode == SPECTRE_V2_IBRS || - mode == SPECTRE_V2_EIBRS || + return mode == SPECTRE_V2_EIBRS || mode == SPECTRE_V2_EIBRS_RETPOLINE || mode == SPECTRE_V2_EIBRS_LFENCE; } +static inline bool spectre_v2_in_ibrs_mode(enum spectre_v2_mitigation mode) +{ + return spectre_v2_in_eibrs_mode(mode) || mode == SPECTRE_V2_IBRS; +} + static void __init spectre_v2_user_select_mitigation(void) { @@ -1194,12 +1206,19 @@ } /* - * If no STIBP, IBRS or enhanced IBRS is enabled, or SMT impossible, - * STIBP is not required. + * If no STIBP, enhanced IBRS is enabled, or SMT impossible, STIBP + * is not required. + * + * Enhanced IBRS also protects against cross-thread branch target + * injection in user-mode as the IBRS bit remains always set which + * implicitly enables cross-thread protections. However, in legacy IBRS + * mode, the IBRS bit is set only on kernel entry and cleared on return + * to userspace. This disables the implicit cross-thread protection, + * so allow for STIBP to be selected in that case. */ if (!boot_cpu_has(X86_FEATURE_STIBP) || !smt_possible || - spectre_v2_in_ibrs_mode(spectre_v2_enabled)) + spectre_v2_in_eibrs_mode(spectre_v2_enabled)) return; /* @@ -2327,7 +2346,7 @@ static char *stibp_state(void) { - if (spectre_v2_in_ibrs_mode(spectre_v2_enabled)) + if (spectre_v2_in_eibrs_mode(spectre_v2_enabled)) return ""; switch (spectre_v2_user_stibp) { --- linux-gcp-6.2.0.orig/arch/x86/kernel/cpu/common.c +++ linux-gcp-6.2.0/arch/x86/kernel/cpu/common.c @@ -2302,30 +2302,45 @@ #endif #ifdef CONFIG_MICROCODE_LATE_LOADING -/* +/** + * store_cpu_caps() - Store a snapshot of CPU capabilities + * @curr_info: Pointer where to store it + * + * Returns: None + */ +void store_cpu_caps(struct cpuinfo_x86 *curr_info) +{ + /* Reload CPUID max function as it might've changed. */ + curr_info->cpuid_level = cpuid_eax(0); + + /* Copy all capability leafs and pick up the synthetic ones. */ + memcpy(&curr_info->x86_capability, &boot_cpu_data.x86_capability, + sizeof(curr_info->x86_capability)); + + /* Get the hardware CPUID leafs */ + get_cpu_cap(curr_info); +} + +/** + * microcode_check() - Check if any CPU capabilities changed after an update. + * @prev_info: CPU capabilities stored before an update. + * * The microcode loader calls this upon late microcode load to recheck features, * only when microcode has been updated. Caller holds microcode_mutex and CPU * hotplug lock. + * + * Return: None */ -void microcode_check(void) +void microcode_check(struct cpuinfo_x86 *prev_info) { - struct cpuinfo_x86 info; + struct cpuinfo_x86 curr_info; perf_check_microcode(); - /* Reload CPUID max function as it might've changed. */ - info.cpuid_level = cpuid_eax(0); - - /* - * Copy all capability leafs to pick up the synthetic ones so that - * memcmp() below doesn't fail on that. The ones coming from CPUID will - * get overwritten in get_cpu_cap(). - */ - memcpy(&info.x86_capability, &boot_cpu_data.x86_capability, sizeof(info.x86_capability)); - - get_cpu_cap(&info); + store_cpu_caps(&curr_info); - if (!memcmp(&info.x86_capability, &boot_cpu_data.x86_capability, sizeof(info.x86_capability))) + if (!memcmp(&prev_info->x86_capability, &curr_info.x86_capability, + sizeof(prev_info->x86_capability))) return; pr_warn("x86/CPU: CPU features have changed after loading microcode, but might not take effect.\n"); --- linux-gcp-6.2.0.orig/arch/x86/kernel/cpu/mce/core.c +++ linux-gcp-6.2.0/arch/x86/kernel/cpu/mce/core.c @@ -2365,6 +2365,7 @@ { mce_timer_delete_all(); on_each_cpu(mce_cpu_restart, NULL, 1); + mce_schedule_work(); } /* Toggle features for corrected errors */ --- linux-gcp-6.2.0.orig/arch/x86/kernel/cpu/microcode/amd.c +++ linux-gcp-6.2.0/arch/x86/kernel/cpu/microcode/amd.c @@ -55,7 +55,9 @@ }; static u32 ucode_new_rev; -static u8 amd_ucode_patch[PATCH_MAX_SIZE]; + +/* One blob per node. */ +static u8 amd_ucode_patch[MAX_NUMNODES][PATCH_MAX_SIZE]; /* * Microcode patch container file is prepended to the initrd in cpio @@ -428,7 +430,7 @@ patch = (u8 (*)[PATCH_MAX_SIZE])__pa_nodebug(&amd_ucode_patch); #else new_rev = &ucode_new_rev; - patch = &amd_ucode_patch; + patch = &amd_ucode_patch[0]; #endif desc.cpuid_1_eax = cpuid_1_eax; @@ -553,8 +555,7 @@ apply_microcode_early_amd(cpuid_1_eax, cp.data, cp.size, false); } -static enum ucode_state -load_microcode_amd(bool save, u8 family, const u8 *data, size_t size); +static enum ucode_state load_microcode_amd(u8 family, const u8 *data, size_t size); int __init save_microcode_in_initrd_amd(unsigned int cpuid_1_eax) { @@ -572,19 +573,19 @@ if (!desc.mc) return -EINVAL; - ret = load_microcode_amd(true, x86_family(cpuid_1_eax), desc.data, desc.size); + ret = load_microcode_amd(x86_family(cpuid_1_eax), desc.data, desc.size); if (ret > UCODE_UPDATED) return -EINVAL; return 0; } -void reload_ucode_amd(void) +void reload_ucode_amd(unsigned int cpu) { - struct microcode_amd *mc; u32 rev, dummy __always_unused; + struct microcode_amd *mc; - mc = (struct microcode_amd *)amd_ucode_patch; + mc = (struct microcode_amd *)amd_ucode_patch[cpu_to_node(cpu)]; rdmsr(MSR_AMD64_PATCH_LEVEL, rev, dummy); @@ -850,9 +851,10 @@ return UCODE_OK; } -static enum ucode_state -load_microcode_amd(bool save, u8 family, const u8 *data, size_t size) +static enum ucode_state load_microcode_amd(u8 family, const u8 *data, size_t size) { + struct cpuinfo_x86 *c; + unsigned int nid, cpu; struct ucode_patch *p; enum ucode_state ret; @@ -865,22 +867,22 @@ return ret; } - p = find_patch(0); - if (!p) { - return ret; - } else { - if (boot_cpu_data.microcode >= p->patch_id) - return ret; + for_each_node(nid) { + cpu = cpumask_first(cpumask_of_node(nid)); + c = &cpu_data(cpu); + + p = find_patch(cpu); + if (!p) + continue; - ret = UCODE_NEW; - } + if (c->microcode >= p->patch_id) + continue; - /* save BSP's matching patch for early load */ - if (!save) - return ret; + ret = UCODE_NEW; - memset(amd_ucode_patch, 0, PATCH_MAX_SIZE); - memcpy(amd_ucode_patch, p->data, min_t(u32, p->size, PATCH_MAX_SIZE)); + memset(&amd_ucode_patch[nid], 0, PATCH_MAX_SIZE); + memcpy(&amd_ucode_patch[nid], p->data, min_t(u32, p->size, PATCH_MAX_SIZE)); + } return ret; } @@ -905,14 +907,9 @@ { char fw_name[36] = "amd-ucode/microcode_amd.bin"; struct cpuinfo_x86 *c = &cpu_data(cpu); - bool bsp = c->cpu_index == boot_cpu_data.cpu_index; enum ucode_state ret = UCODE_NFOUND; const struct firmware *fw; - /* reload ucode container only on the boot cpu */ - if (!bsp) - return UCODE_OK; - if (c->x86 >= 0x15) snprintf(fw_name, sizeof(fw_name), "amd-ucode/microcode_amd_fam%.2xh.bin", c->x86); @@ -925,7 +922,7 @@ if (!verify_container(fw->data, fw->size, false)) goto fw_release; - ret = load_microcode_amd(bsp, c->x86, fw->data, fw->size); + ret = load_microcode_amd(c->x86, fw->data, fw->size); fw_release: release_firmware(fw); --- linux-gcp-6.2.0.orig/arch/x86/kernel/cpu/microcode/core.c +++ linux-gcp-6.2.0/arch/x86/kernel/cpu/microcode/core.c @@ -298,7 +298,7 @@ #endif } -void reload_early_microcode(void) +void reload_early_microcode(unsigned int cpu) { int vendor, family; @@ -312,7 +312,7 @@ break; case X86_VENDOR_AMD: if (family >= 0x10) - reload_ucode_amd(); + reload_ucode_amd(cpu); break; default: break; @@ -438,6 +438,7 @@ static int microcode_reload_late(void) { int old = boot_cpu_data.microcode, ret; + struct cpuinfo_x86 prev_info; pr_err("Attempting late microcode loading - it is dangerous and taints the kernel.\n"); pr_err("You should switch to early loading, if possible.\n"); @@ -445,12 +446,21 @@ atomic_set(&late_cpus_in, 0); atomic_set(&late_cpus_out, 0); - ret = stop_machine_cpuslocked(__reload_late, NULL, cpu_online_mask); - if (ret == 0) - microcode_check(); + /* + * Take a snapshot before the microcode update in order to compare and + * check whether any bits changed after an update. + */ + store_cpu_caps(&prev_info); - pr_info("Reload completed, microcode revision: 0x%x -> 0x%x\n", - old, boot_cpu_data.microcode); + ret = stop_machine_cpuslocked(__reload_late, NULL, cpu_online_mask); + if (!ret) { + pr_info("Reload succeeded, microcode revision: 0x%x -> 0x%x\n", + old, boot_cpu_data.microcode); + microcode_check(&prev_info); + } else { + pr_info("Reload failed, current microcode revision: 0x%x\n", + boot_cpu_data.microcode); + } return ret; } @@ -557,7 +567,7 @@ if (uci->mc) microcode_ops->apply_microcode(cpu); else - reload_early_microcode(); + reload_early_microcode(cpu); } static struct syscore_ops mc_syscore_ops = { --- linux-gcp-6.2.0.orig/arch/x86/kernel/cpu/resctrl/ctrlmondata.c +++ linux-gcp-6.2.0/arch/x86/kernel/cpu/resctrl/ctrlmondata.c @@ -373,7 +373,6 @@ { struct resctrl_schema *s; struct rdtgroup *rdtgrp; - struct rdt_domain *dom; struct rdt_resource *r; char *tok, *resname; int ret = 0; @@ -402,10 +401,7 @@ goto out; } - list_for_each_entry(s, &resctrl_schema_all, list) { - list_for_each_entry(dom, &s->res->domains, list) - memset(dom->staged_config, 0, sizeof(dom->staged_config)); - } + rdt_staged_configs_clear(); while ((tok = strsep(&buf, "\n")) != NULL) { resname = strim(strsep(&tok, ":")); @@ -450,6 +446,7 @@ } out: + rdt_staged_configs_clear(); rdtgroup_kn_unlock(of->kn); cpus_read_unlock(); return ret ?: nbytes; --- linux-gcp-6.2.0.orig/arch/x86/kernel/cpu/resctrl/internal.h +++ linux-gcp-6.2.0/arch/x86/kernel/cpu/resctrl/internal.h @@ -527,5 +527,6 @@ void __check_limbo(struct rdt_domain *d, bool force_free); void rdt_domain_reconfigure_cdp(struct rdt_resource *r); void __init thread_throttle_mode_init(void); +void rdt_staged_configs_clear(void); #endif /* _ASM_X86_RESCTRL_INTERNAL_H */ --- linux-gcp-6.2.0.orig/arch/x86/kernel/cpu/resctrl/rdtgroup.c +++ linux-gcp-6.2.0/arch/x86/kernel/cpu/resctrl/rdtgroup.c @@ -78,6 +78,19 @@ va_end(ap); } +void rdt_staged_configs_clear(void) +{ + struct rdt_resource *r; + struct rdt_domain *dom; + + lockdep_assert_held(&rdtgroup_mutex); + + for_each_alloc_capable_rdt_resource(r) { + list_for_each_entry(dom, &r->domains, list) + memset(dom->staged_config, 0, sizeof(dom->staged_config)); + } +} + /* * Trivial allocator for CLOSIDs. Since h/w only supports a small number, * we can keep a bitmap of free CLOSIDs in a single integer. @@ -314,7 +327,7 @@ * executing task might have its own closid selected. Just reuse * the context switch code. */ - resctrl_sched_in(); + resctrl_sched_in(current); } /* @@ -535,7 +548,7 @@ * Otherwise, the MSR is updated when the task is scheduled in. */ if (task == current) - resctrl_sched_in(); + resctrl_sched_in(task); } static void update_task_closid_rmid(struct task_struct *t) @@ -2851,7 +2864,9 @@ { struct resctrl_schema *s; struct rdt_resource *r; - int ret; + int ret = 0; + + rdt_staged_configs_clear(); list_for_each_entry(s, &resctrl_schema_all, list) { r = s->res; @@ -2862,20 +2877,22 @@ } else { ret = rdtgroup_init_cat(s, rdtgrp->closid); if (ret < 0) - return ret; + goto out; } ret = resctrl_arch_update_domains(r, rdtgrp->closid); if (ret < 0) { rdt_last_cmd_puts("Failed to initialize allocations\n"); - return ret; + goto out; } } rdtgrp->mode = RDT_MODE_SHAREABLE; - return 0; +out: + rdt_staged_configs_clear(); + return ret; } static int mkdir_rdt_prepare(struct kernfs_node *parent_kn, --- linux-gcp-6.2.0.orig/arch/x86/kernel/crash.c +++ linux-gcp-6.2.0/arch/x86/kernel/crash.c @@ -37,7 +37,6 @@ #include #include #include -#include #include #include #include @@ -81,15 +80,6 @@ */ cpu_crash_vmclear_loaded_vmcss(); - /* Disable VMX or SVM if needed. - * - * We need to disable virtualization on all CPUs. - * Having VMX or SVM enabled on any CPU may break rebooting - * after the kdump kernel has finished its task. - */ - cpu_emergency_vmxoff(); - cpu_emergency_svm_disable(); - /* * Disable Intel PT to stop its logging */ @@ -148,12 +138,7 @@ */ cpu_crash_vmclear_loaded_vmcss(); - /* Booting kdump kernel with VMX or SVM enabled won't work, - * because (among other limitations) we can't disable paging - * with the virt flags. - */ - cpu_emergency_vmxoff(); - cpu_emergency_svm_disable(); + cpu_emergency_disable_virtualization(); /* * Disable Intel PT to stop its logging --- linux-gcp-6.2.0.orig/arch/x86/kernel/early-quirks.c +++ linux-gcp-6.2.0/arch/x86/kernel/early-quirks.c @@ -29,6 +29,37 @@ #include #include +static void __init early_pci_clear_msi(int bus, int slot, int func) +{ + int pos; + u16 ctrl; + + if (likely(!pci_early_clear_msi)) + return; + + pr_info_once("Clearing MSI/MSI-X enable bits early in boot (quirk)\n"); + + pos = pci_early_find_cap(bus, slot, func, PCI_CAP_ID_MSI); + if (pos) { + ctrl = read_pci_config_16(bus, slot, func, pos + PCI_MSI_FLAGS); + ctrl &= ~PCI_MSI_FLAGS_ENABLE; + write_pci_config_16(bus, slot, func, pos + PCI_MSI_FLAGS, ctrl); + + /* Read again to flush previous write */ + ctrl = read_pci_config_16(bus, slot, func, pos + PCI_MSI_FLAGS); + } + + pos = pci_early_find_cap(bus, slot, func, PCI_CAP_ID_MSIX); + if (pos) { + ctrl = read_pci_config_16(bus, slot, func, pos + PCI_MSIX_FLAGS); + ctrl &= ~PCI_MSIX_FLAGS_ENABLE; + write_pci_config_16(bus, slot, func, pos + PCI_MSIX_FLAGS, ctrl); + + /* Read again to flush previous write */ + ctrl = read_pci_config_16(bus, slot, func, pos + PCI_MSIX_FLAGS); + } +} + static void __init fix_hypertransport_config(int num, int slot, int func) { u32 htcfg; @@ -728,6 +759,7 @@ PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, force_disable_hpet}, { PCI_VENDOR_ID_BROADCOM, 0x4331, PCI_CLASS_NETWORK_OTHER, PCI_ANY_ID, 0, apple_airport_reset}, + { PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, early_pci_clear_msi}, {} }; @@ -780,6 +812,10 @@ PCI_HEADER_TYPE); if ((type & 0x7f) == PCI_HEADER_TYPE_BRIDGE) { + /* pci_early_clear_msi scans the buses differently. */ + if (pci_early_clear_msi) + return -1; + sec = read_pci_config_byte(num, slot, func, PCI_SECONDARY_BUS); if (sec > num) early_pci_scan_bus(sec); @@ -806,8 +842,13 @@ void __init early_quirks(void) { + int bus; + if (!early_pci_allowed()) return; early_pci_scan_bus(0); + /* pci_early_clear_msi scans more buses. */ + for (bus = 1; pci_early_clear_msi && bus < 256; bus++) + early_pci_scan_bus(bus); } --- linux-gcp-6.2.0.orig/arch/x86/kernel/fpu/context.h +++ linux-gcp-6.2.0/arch/x86/kernel/fpu/context.h @@ -57,7 +57,7 @@ struct fpu *fpu = ¤t->thread.fpu; int cpu = smp_processor_id(); - if (WARN_ON_ONCE(current->flags & PF_KTHREAD)) + if (WARN_ON_ONCE(current->flags & (PF_KTHREAD | PF_IO_WORKER))) return; if (!fpregs_state_valid(fpu, cpu)) { --- linux-gcp-6.2.0.orig/arch/x86/kernel/fpu/core.c +++ linux-gcp-6.2.0/arch/x86/kernel/fpu/core.c @@ -426,7 +426,7 @@ this_cpu_write(in_kernel_fpu, true); - if (!(current->flags & PF_KTHREAD) && + if (!(current->flags & (PF_KTHREAD | PF_IO_WORKER)) && !test_thread_flag(TIF_NEED_FPU_LOAD)) { set_thread_flag(TIF_NEED_FPU_LOAD); save_fpregs_to_fpstate(¤t->thread.fpu); @@ -853,12 +853,12 @@ * Initialize register state that may prevent from entering low-power idle. * This function will be invoked from the cpuidle driver only when needed. */ -void fpu_idle_fpregs(void) +noinstr void fpu_idle_fpregs(void) { /* Note: AMX_TILE being enabled implies XGETBV1 support */ if (cpu_feature_enabled(X86_FEATURE_AMX_TILE) && (xfeatures_in_use() & XFEATURE_MASK_XTILE)) { tile_release(); - fpregs_deactivate(¤t->thread.fpu); + __this_cpu_write(fpu_fpregs_owner_ctx, NULL); } } --- linux-gcp-6.2.0.orig/arch/x86/kernel/fpu/xstate.c +++ linux-gcp-6.2.0/arch/x86/kernel/fpu/xstate.c @@ -1118,21 +1118,20 @@ zerofrom = offsetof(struct xregs_state, extended_state_area); /* - * The ptrace buffer is in non-compacted XSAVE format. In - * non-compacted format disabled features still occupy state space, - * but there is no state to copy from in the compacted - * init_fpstate. The gap tracking will zero these states. + * This 'mask' indicates which states to copy from fpstate. + * Those extended states that are not present in fpstate are + * either disabled or initialized: + * + * In non-compacted format, disabled features still occupy + * state space but there is no state to copy from in the + * compacted init_fpstate. The gap tracking will zero these + * states. + * + * The extended features have an all zeroes init state. Thus, + * remove them from 'mask' to zero those features in the user + * buffer instead of retrieving them from init_fpstate. */ - mask = fpstate->user_xfeatures; - - /* - * Dynamic features are not present in init_fpstate. When they are - * in an all zeros init state, remove those from 'mask' to zero - * those features in the user buffer instead of retrieving them - * from init_fpstate. - */ - if (fpu_state_size_dynamic()) - mask &= (header.xfeatures | xinit->header.xcomp_bv); + mask = header.xfeatures; for_each_extended_xfeature(i, mask) { /* @@ -1151,9 +1150,8 @@ pkru.pkru = pkru_val; membuf_write(&to, &pkru, sizeof(pkru)); } else { - copy_feature(header.xfeatures & BIT_ULL(i), &to, + membuf_write(&to, __raw_xsave_addr(xsave, i), - __raw_xsave_addr(xinit, i), xstate_sizes[i]); } /* --- linux-gcp-6.2.0.orig/arch/x86/kernel/ftrace_64.S +++ linux-gcp-6.2.0/arch/x86/kernel/ftrace_64.S @@ -136,10 +136,12 @@ RET SYM_FUNC_END(ftrace_stub) +#ifdef CONFIG_FUNCTION_GRAPH_TRACER SYM_TYPED_FUNC_START(ftrace_stub_graph) CALL_DEPTH_ACCOUNT RET SYM_FUNC_END(ftrace_stub_graph) +#endif #ifdef CONFIG_DYNAMIC_FTRACE --- linux-gcp-6.2.0.orig/arch/x86/kernel/head_32.S +++ linux-gcp-6.2.0/arch/x86/kernel/head_32.S @@ -27,6 +27,7 @@ #include #include #include +#include /* Physical address */ #define pa(X) ((X) - __PAGE_OFFSET) --- linux-gcp-6.2.0.orig/arch/x86/kernel/kprobes/core.c +++ linux-gcp-6.2.0/arch/x86/kernel/kprobes/core.c @@ -464,50 +464,26 @@ } NOKPROBE_SYMBOL(kprobe_emulate_call); -static nokprobe_inline -void __kprobe_emulate_jmp(struct kprobe *p, struct pt_regs *regs, bool cond) +static void kprobe_emulate_jmp(struct kprobe *p, struct pt_regs *regs) { unsigned long ip = regs->ip - INT3_INSN_SIZE + p->ainsn.size; - if (cond) - ip += p->ainsn.rel32; + ip += p->ainsn.rel32; int3_emulate_jmp(regs, ip); } - -static void kprobe_emulate_jmp(struct kprobe *p, struct pt_regs *regs) -{ - __kprobe_emulate_jmp(p, regs, true); -} NOKPROBE_SYMBOL(kprobe_emulate_jmp); -static const unsigned long jcc_mask[6] = { - [0] = X86_EFLAGS_OF, - [1] = X86_EFLAGS_CF, - [2] = X86_EFLAGS_ZF, - [3] = X86_EFLAGS_CF | X86_EFLAGS_ZF, - [4] = X86_EFLAGS_SF, - [5] = X86_EFLAGS_PF, -}; - static void kprobe_emulate_jcc(struct kprobe *p, struct pt_regs *regs) { - bool invert = p->ainsn.jcc.type & 1; - bool match; + unsigned long ip = regs->ip - INT3_INSN_SIZE + p->ainsn.size; - if (p->ainsn.jcc.type < 0xc) { - match = regs->flags & jcc_mask[p->ainsn.jcc.type >> 1]; - } else { - match = ((regs->flags & X86_EFLAGS_SF) >> X86_EFLAGS_SF_BIT) ^ - ((regs->flags & X86_EFLAGS_OF) >> X86_EFLAGS_OF_BIT); - if (p->ainsn.jcc.type >= 0xe) - match = match || (regs->flags & X86_EFLAGS_ZF); - } - __kprobe_emulate_jmp(p, regs, (match && !invert) || (!match && invert)); + int3_emulate_jcc(regs, p->ainsn.jcc.type, ip, p->ainsn.rel32); } NOKPROBE_SYMBOL(kprobe_emulate_jcc); static void kprobe_emulate_loop(struct kprobe *p, struct pt_regs *regs) { + unsigned long ip = regs->ip - INT3_INSN_SIZE + p->ainsn.size; bool match; if (p->ainsn.loop.type != 3) { /* LOOP* */ @@ -535,7 +511,9 @@ else if (p->ainsn.loop.type == 1) /* LOOPE */ match = match && (regs->flags & X86_EFLAGS_ZF); - __kprobe_emulate_jmp(p, regs, match); + if (match) + ip += p->ainsn.rel32; + int3_emulate_jmp(regs, ip); } NOKPROBE_SYMBOL(kprobe_emulate_loop); --- linux-gcp-6.2.0.orig/arch/x86/kernel/kprobes/opt.c +++ linux-gcp-6.2.0/arch/x86/kernel/kprobes/opt.c @@ -46,8 +46,8 @@ /* This function only handles jump-optimized kprobe */ if (kp && kprobe_optimized(kp)) { op = container_of(kp, struct optimized_kprobe, kp); - /* If op->list is not empty, op is under optimizing */ - if (list_empty(&op->list)) + /* If op is optimized or under unoptimizing */ + if (list_empty(&op->list) || optprobe_queued_unopt(op)) goto found; } } @@ -353,7 +353,7 @@ for (i = 1; i < op->optinsn.size; i++) { p = get_kprobe(op->kp.addr + i); - if (p && !kprobe_disabled(p)) + if (p && !kprobe_disarmed(p)) return -EEXIST; } --- linux-gcp-6.2.0.orig/arch/x86/kernel/process_32.c +++ linux-gcp-6.2.0/arch/x86/kernel/process_32.c @@ -212,7 +212,7 @@ switch_fpu_finish(); /* Load the Intel cache allocation PQR MSR. */ - resctrl_sched_in(); + resctrl_sched_in(next_p); return prev_p; } --- linux-gcp-6.2.0.orig/arch/x86/kernel/process_64.c +++ linux-gcp-6.2.0/arch/x86/kernel/process_64.c @@ -656,7 +656,7 @@ } /* Load the Intel cache allocation PQR MSR. */ - resctrl_sched_in(); + resctrl_sched_in(next_p); return prev_p; } --- linux-gcp-6.2.0.orig/arch/x86/kernel/reboot.c +++ linux-gcp-6.2.0/arch/x86/kernel/reboot.c @@ -32,6 +32,7 @@ #include #include #include +#include /* * Power off function, if any @@ -488,7 +489,46 @@ DMI_MATCH(DMI_PRODUCT_NAME, "VGN-Z540N"), }, }, - + { /* Handle problems with rebooting on the Latitude E6520. */ + .callback = set_pci_reboot, + .ident = "Dell Latitude E6520", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6520"), + }, + }, + { /* Handle problems with rebooting on the OptiPlex 790. */ + .callback = set_pci_reboot, + .ident = "Dell OptiPlex 790", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 790"), + }, + }, + { /* Handle problems with rebooting on the OptiPlex 990. */ + .callback = set_pci_reboot, + .ident = "Dell OptiPlex 990", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 990"), + }, + }, + { /* Handle problems with rebooting on the Latitude E6220. */ + .callback = set_pci_reboot, + .ident = "Dell Latitude E6220", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6220"), + }, + }, + { /* Handle problems with rebooting on the OptiPlex 390. */ + .callback = set_pci_reboot, + .ident = "Dell OptiPlex 390", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 390"), + }, + }, { } }; @@ -528,33 +568,29 @@ } } -static void vmxoff_nmi(int cpu, struct pt_regs *regs) -{ - cpu_emergency_vmxoff(); -} +static inline void nmi_shootdown_cpus_on_restart(void); -/* Use NMIs as IPIs to tell all CPUs to disable virtualization */ -static void emergency_vmx_disable_all(void) +static void emergency_reboot_disable_virtualization(void) { /* Just make sure we won't change CPUs while doing this */ local_irq_disable(); /* - * Disable VMX on all CPUs before rebooting, otherwise we risk hanging - * the machine, because the CPU blocks INIT when it's in VMX root. + * Disable virtualization on all CPUs before rebooting to avoid hanging + * the system, as VMX and SVM block INIT when running in the host. * * We can't take any locks and we may be on an inconsistent state, so - * use NMIs as IPIs to tell the other CPUs to exit VMX root and halt. + * use NMIs as IPIs to tell the other CPUs to disable VMX/SVM and halt. * - * Do the NMI shootdown even if VMX if off on _this_ CPU, as that - * doesn't prevent a different CPU from being in VMX root operation. + * Do the NMI shootdown even if virtualization is off on _this_ CPU, as + * other CPUs may have virtualization enabled. */ - if (cpu_has_vmx()) { - /* Safely force _this_ CPU out of VMX root operation. */ - __cpu_emergency_vmxoff(); + if (cpu_has_vmx() || cpu_has_svm(NULL)) { + /* Safely force _this_ CPU out of VMX/SVM operation. */ + cpu_emergency_disable_virtualization(); - /* Halt and exit VMX root operation on the other CPUs. */ - nmi_shootdown_cpus(vmxoff_nmi); + /* Disable VMX/SVM and halt on other CPUs. */ + nmi_shootdown_cpus_on_restart(); } } @@ -590,7 +626,7 @@ unsigned short mode; if (reboot_emergency) - emergency_vmx_disable_all(); + emergency_reboot_disable_virtualization(); tboot_shutdown(TB_SHUTDOWN_REBOOT); @@ -795,6 +831,17 @@ /* This is the CPU performing the emergency shutdown work. */ int crashing_cpu = -1; +/* + * Disable virtualization, i.e. VMX or SVM, to ensure INIT is recognized during + * reboot. VMX blocks INIT if the CPU is post-VMXON, and SVM blocks INIT if + * GIF=0, i.e. if the crash occurred between CLGI and STGI. + */ +void cpu_emergency_disable_virtualization(void) +{ + cpu_emergency_vmxoff(); + cpu_emergency_svm_disable(); +} + #if defined(CONFIG_SMP) static nmi_shootdown_cb shootdown_callback; @@ -817,7 +864,14 @@ return NMI_HANDLED; local_irq_disable(); - shootdown_callback(cpu, regs); + if (shootdown_callback) + shootdown_callback(cpu, regs); + + /* + * Prepare the CPU for reboot _after_ invoking the callback so that the + * callback can safely use virtualization instructions, e.g. VMCLEAR. + */ + cpu_emergency_disable_virtualization(); atomic_dec(&waiting_for_crash_ipi); /* Assume hlt works */ @@ -828,18 +882,32 @@ return NMI_HANDLED; } -/* - * Halt all other CPUs, calling the specified function on each of them +/** + * nmi_shootdown_cpus - Stop other CPUs via NMI + * @callback: Optional callback to be invoked from the NMI handler * - * This function can be used to halt all other CPUs on crash - * or emergency reboot time. The function passed as parameter - * will be called inside a NMI handler on all CPUs. + * The NMI handler on the remote CPUs invokes @callback, if not + * NULL, first and then disables virtualization to ensure that + * INIT is recognized during reboot. + * + * nmi_shootdown_cpus() can only be invoked once. After the first + * invocation all other CPUs are stuck in crash_nmi_callback() and + * cannot respond to a second NMI. */ void nmi_shootdown_cpus(nmi_shootdown_cb callback) { unsigned long msecs; + local_irq_disable(); + /* + * Avoid certain doom if a shootdown already occurred; re-registering + * the NMI handler will cause list corruption, modifying the callback + * will do who knows what, etc... + */ + if (WARN_ON_ONCE(crash_ipi_issued)) + return; + /* Make a note of crashing cpu. Will be used in NMI callback. */ crashing_cpu = safe_smp_processor_id(); @@ -867,7 +935,17 @@ msecs--; } - /* Leave the nmi callback set */ + /* + * Leave the nmi callback set, shootdown is a one-time thing. Clearing + * the callback could result in a NULL pointer dereference if a CPU + * (finally) responds after the timeout expires. + */ +} + +static inline void nmi_shootdown_cpus_on_restart(void) +{ + if (!crash_ipi_issued) + nmi_shootdown_cpus(NULL); } /* @@ -897,6 +975,8 @@ /* No other CPUs to shoot down */ } +static inline void nmi_shootdown_cpus_on_restart(void) { } + void run_crash_ipi_callback(struct pt_regs *regs) { } --- linux-gcp-6.2.0.orig/arch/x86/kernel/relocate_kernel_32.S +++ linux-gcp-6.2.0/arch/x86/kernel/relocate_kernel_32.S @@ -9,6 +9,7 @@ #include #include #include +#include /* * Must be relocatable PIC code callable as a C function, in particular --- linux-gcp-6.2.0.orig/arch/x86/kernel/setup.c +++ linux-gcp-6.2.0/arch/x86/kernel/setup.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -1038,6 +1039,13 @@ if (efi_enabled(EFI_BOOT)) efi_init(); + efi_set_secure_boot(boot_params.secure_boot); + +#ifdef CONFIG_LOCK_DOWN_IN_SECURE_BOOT + if (efi_enabled(EFI_SECURE_BOOT)) + security_lock_kernel_down("EFI Secure Boot mode", LOCKDOWN_INTEGRITY_MAX); +#endif + dmi_setup(); /* @@ -1196,19 +1204,7 @@ /* Allocate bigger log buffer */ setup_log_buf(1); - if (efi_enabled(EFI_BOOT)) { - switch (boot_params.secure_boot) { - case efi_secureboot_mode_disabled: - pr_info("Secure boot disabled\n"); - break; - case efi_secureboot_mode_enabled: - pr_info("Secure boot enabled\n"); - break; - default: - pr_info("Secure boot could not be determined\n"); - break; - } - } + efi_set_secure_boot(boot_params.secure_boot); reserve_initrd(); --- linux-gcp-6.2.0.orig/arch/x86/kernel/sev.c +++ linux-gcp-6.2.0/arch/x86/kernel/sev.c @@ -2183,9 +2183,6 @@ struct ghcb *ghcb; int ret; - if (!cc_platform_has(CC_ATTR_GUEST_SEV_SNP)) - return -ENODEV; - if (!fw_err) return -EINVAL; @@ -2212,15 +2209,26 @@ if (ret) goto e_put; - if (ghcb->save.sw_exit_info_2) { + *fw_err = ghcb->save.sw_exit_info_2; + switch (*fw_err) { + case 0: + break; + + case SNP_GUEST_REQ_ERR_BUSY: + ret = -EAGAIN; + break; + + case SNP_GUEST_REQ_INVALID_LEN: /* Number of expected pages are returned in RBX */ - if (exit_code == SVM_VMGEXIT_EXT_GUEST_REQUEST && - ghcb->save.sw_exit_info_2 == SNP_GUEST_REQ_INVALID_LEN) + if (exit_code == SVM_VMGEXIT_EXT_GUEST_REQUEST) { input->data_npages = ghcb_get_rbx(ghcb); - - *fw_err = ghcb->save.sw_exit_info_2; - + ret = -ENOSPC; + break; + } + fallthrough; + default: ret = -EIO; + break; } e_put: --- linux-gcp-6.2.0.orig/arch/x86/kernel/signal.c +++ linux-gcp-6.2.0/arch/x86/kernel/signal.c @@ -360,7 +360,7 @@ static int __init strict_sas_size(char *arg) { - return kstrtobool(arg, &strict_sigaltstack_size); + return kstrtobool(arg, &strict_sigaltstack_size) == 0; } __setup("strict_sas_size", strict_sas_size); --- linux-gcp-6.2.0.orig/arch/x86/kernel/smp.c +++ linux-gcp-6.2.0/arch/x86/kernel/smp.c @@ -32,7 +32,7 @@ #include #include #include -#include +#include /* * Some notes on x86 processor bugs affecting SMP operation: @@ -122,7 +122,7 @@ if (raw_smp_processor_id() == atomic_read(&stopping_cpu)) return NMI_HANDLED; - cpu_emergency_vmxoff(); + cpu_emergency_disable_virtualization(); stop_this_cpu(NULL); return NMI_HANDLED; @@ -134,7 +134,7 @@ DEFINE_IDTENTRY_SYSVEC(sysvec_reboot) { ack_APIC_irq(); - cpu_emergency_vmxoff(); + cpu_emergency_disable_virtualization(); stop_this_cpu(NULL); } --- linux-gcp-6.2.0.orig/arch/x86/kernel/static_call.c +++ linux-gcp-6.2.0/arch/x86/kernel/static_call.c @@ -9,6 +9,7 @@ NOP = 1, /* site cond-call */ JMP = 2, /* tramp / site tail-call */ RET = 3, /* tramp / site cond-tail-call */ + JCC = 4, }; /* @@ -25,12 +26,40 @@ static const u8 retinsn[] = { RET_INSN_OPCODE, 0xcc, 0xcc, 0xcc, 0xcc }; +static u8 __is_Jcc(u8 *insn) /* Jcc.d32 */ +{ + u8 ret = 0; + + if (insn[0] == 0x0f) { + u8 tmp = insn[1]; + if ((tmp & 0xf0) == 0x80) + ret = tmp; + } + + return ret; +} + +extern void __static_call_return(void); + +asm (".global __static_call_return\n\t" + ".type __static_call_return, @function\n\t" + ASM_FUNC_ALIGN "\n\t" + "__static_call_return:\n\t" + ANNOTATE_NOENDBR + ANNOTATE_RETPOLINE_SAFE + "ret; int3\n\t" + ".size __static_call_return, . - __static_call_return \n\t"); + static void __ref __static_call_transform(void *insn, enum insn_type type, void *func, bool modinit) { const void *emulate = NULL; int size = CALL_INSN_SIZE; const void *code; + u8 op, buf[6]; + + if ((type == JMP || type == RET) && (op = __is_Jcc(insn))) + type = JCC; switch (type) { case CALL: @@ -57,6 +86,20 @@ else code = &retinsn; break; + + case JCC: + if (!func) { + func = __static_call_return; + if (cpu_feature_enabled(X86_FEATURE_RETHUNK)) + func = x86_return_thunk; + } + + buf[0] = 0x0f; + __text_gen_insn(buf+1, op, insn+1, func, 5); + code = buf; + size = 6; + + break; } if (memcmp(insn, code, size) == 0) @@ -68,9 +111,9 @@ text_poke_bp(insn, code, size, emulate); } -static void __static_call_validate(void *insn, bool tail, bool tramp) +static void __static_call_validate(u8 *insn, bool tail, bool tramp) { - u8 opcode = *(u8 *)insn; + u8 opcode = insn[0]; if (tramp && memcmp(insn+5, tramp_ud, 3)) { pr_err("trampoline signature fail"); @@ -79,7 +122,8 @@ if (tail) { if (opcode == JMP32_INSN_OPCODE || - opcode == RET_INSN_OPCODE) + opcode == RET_INSN_OPCODE || + __is_Jcc(insn)) return; } else { if (opcode == CALL_INSN_OPCODE || --- linux-gcp-6.2.0.orig/arch/x86/kernel/x86_init.c +++ linux-gcp-6.2.0/arch/x86/kernel/x86_init.c @@ -33,8 +33,8 @@ static void iommu_shutdown_noop(void) { } bool __init bool_x86_init_noop(void) { return false; } void x86_op_int_noop(int cpu) { } -static __init int set_rtc_noop(const struct timespec64 *now) { return -EINVAL; } -static __init void get_rtc_noop(struct timespec64 *now) { } +static int set_rtc_noop(const struct timespec64 *now) { return -EINVAL; } +static void get_rtc_noop(struct timespec64 *now) { } static __initconst const struct of_device_id of_cmos_match[] = { { .compatible = "motorola,mc146818" }, --- linux-gcp-6.2.0.orig/arch/x86/kvm/kvm_onhyperv.h +++ linux-gcp-6.2.0/arch/x86/kvm/kvm_onhyperv.h @@ -12,6 +12,11 @@ int hv_remote_flush_tlb(struct kvm *kvm); void hv_track_root_tdp(struct kvm_vcpu *vcpu, hpa_t root_tdp); #else /* !CONFIG_HYPERV */ +static inline int hv_remote_flush_tlb(struct kvm *kvm) +{ + return -EOPNOTSUPP; +} + static inline void hv_track_root_tdp(struct kvm_vcpu *vcpu, hpa_t root_tdp) { } --- linux-gcp-6.2.0.orig/arch/x86/kvm/lapic.c +++ linux-gcp-6.2.0/arch/x86/kvm/lapic.c @@ -2072,10 +2072,18 @@ { struct kvm *kvm = apic->vcpu->kvm; + if (!kvm_apic_hw_enabled(apic)) + return; + if (KVM_BUG_ON(apic_x2apic_mode(apic), kvm)) return; - if (kvm_xapic_id(apic) == apic->vcpu->vcpu_id) + /* + * Deliberately truncate the vCPU ID when detecting a modified APIC ID + * to avoid false positives if the vCPU ID, i.e. x2APIC ID, is a 32-bit + * value. + */ + if (kvm_xapic_id(apic) == (u8)apic->vcpu->vcpu_id) return; kvm_set_apicv_inhibit(apic->vcpu->kvm, APICV_INHIBIT_REASON_APIC_ID_MODIFIED); @@ -2219,10 +2227,14 @@ break; case APIC_SELF_IPI: - if (apic_x2apic_mode(apic)) - kvm_apic_send_ipi(apic, APIC_DEST_SELF | (val & APIC_VECTOR_MASK), 0); - else + /* + * Self-IPI exists only when x2APIC is enabled. Bits 7:0 hold + * the vector, everything else is reserved. + */ + if (!apic_x2apic_mode(apic) || (val & ~APIC_VECTOR_MASK)) ret = 1; + else + kvm_apic_send_ipi(apic, APIC_DEST_SELF | val, 0); break; default: ret = 1; @@ -2284,23 +2296,18 @@ struct kvm_lapic *apic = vcpu->arch.apic; u64 val; - if (apic_x2apic_mode(apic)) { - if (KVM_BUG_ON(kvm_lapic_msr_read(apic, offset, &val), vcpu->kvm)) - return; - } else { - val = kvm_lapic_get_reg(apic, offset); - } - /* * ICR is a single 64-bit register when x2APIC is enabled. For legacy * xAPIC, ICR writes need to go down the common (slightly slower) path * to get the upper half from ICR2. */ if (apic_x2apic_mode(apic) && offset == APIC_ICR) { + val = kvm_lapic_get_reg64(apic, APIC_ICR); kvm_apic_send_ipi(apic, (u32)val, (u32)(val >> 32)); trace_kvm_apic_write(APIC_ICR, val); } else { /* TODO: optimize to just emulate side effect w/o one more write */ + val = kvm_lapic_get_reg(apic, offset); kvm_lapic_reg_write(apic, offset, (u32)val); } } @@ -2429,6 +2436,7 @@ */ apic->isr_count = count_vectors(apic->regs + APIC_ISR); } + apic->highest_isr_cache = -1; } void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event) @@ -2484,7 +2492,6 @@ kvm_lapic_set_reg(apic, APIC_TMR + 0x10 * i, 0); } kvm_apic_update_apicv(vcpu); - apic->highest_isr_cache = -1; update_divide_count(apic); atomic_set(&apic->lapic_timer.pending, 0); @@ -2772,7 +2779,6 @@ __start_apic_timer(apic, APIC_TMCCT); kvm_lapic_set_reg(apic, APIC_TMCCT, 0); kvm_apic_update_apicv(vcpu); - apic->highest_isr_cache = -1; if (apic->apicv_active) { static_call_cond(kvm_x86_apicv_post_state_restore)(vcpu); static_call_cond(kvm_x86_hwapic_irr_update)(vcpu, apic_find_highest_irr(apic)); @@ -2943,13 +2949,17 @@ static int kvm_lapic_msr_write(struct kvm_lapic *apic, u32 reg, u64 data) { /* - * ICR is a 64-bit register in x2APIC mode (and Hyper'v PV vAPIC) and + * ICR is a 64-bit register in x2APIC mode (and Hyper-V PV vAPIC) and * can be written as such, all other registers remain accessible only * through 32-bit reads/writes. */ if (reg == APIC_ICR) return kvm_x2apic_icr_write(apic, data); + /* Bits 63:32 are reserved in all other registers. */ + if (data >> 32) + return 1; + return kvm_lapic_reg_write(apic, reg, (u32)data); } --- linux-gcp-6.2.0.orig/arch/x86/kvm/svm/avic.c +++ linux-gcp-6.2.0/arch/x86/kvm/svm/avic.c @@ -27,19 +27,29 @@ #include "irq.h" #include "svm.h" -/* AVIC GATAG is encoded using VM and VCPU IDs */ -#define AVIC_VCPU_ID_BITS 8 -#define AVIC_VCPU_ID_MASK ((1 << AVIC_VCPU_ID_BITS) - 1) - -#define AVIC_VM_ID_BITS 24 -#define AVIC_VM_ID_NR (1 << AVIC_VM_ID_BITS) -#define AVIC_VM_ID_MASK ((1 << AVIC_VM_ID_BITS) - 1) +/* + * Encode the arbitrary VM ID and the vCPU's default APIC ID, i.e the vCPU ID, + * into the GATag so that KVM can retrieve the correct vCPU from a GALog entry + * if an interrupt can't be delivered, e.g. because the vCPU isn't running. + * + * For the vCPU ID, use however many bits are currently allowed for the max + * guest physical APIC ID (limited by the size of the physical ID table), and + * use whatever bits remain to assign arbitrary AVIC IDs to VMs. Note, the + * size of the GATag is defined by hardware (32 bits), but is an opaque value + * as far as hardware is concerned. + */ +#define AVIC_VCPU_ID_MASK AVIC_PHYSICAL_MAX_INDEX_MASK -#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VCPU_ID_BITS) | \ +#define AVIC_VM_ID_SHIFT HWEIGHT32(AVIC_PHYSICAL_MAX_INDEX_MASK) +#define AVIC_VM_ID_MASK (GENMASK(31, AVIC_VM_ID_SHIFT) >> AVIC_VM_ID_SHIFT) + +#define AVIC_GATAG(x, y) (((x & AVIC_VM_ID_MASK) << AVIC_VM_ID_SHIFT) | \ (y & AVIC_VCPU_ID_MASK)) -#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VCPU_ID_BITS) & AVIC_VM_ID_MASK) +#define AVIC_GATAG_TO_VMID(x) ((x >> AVIC_VM_ID_SHIFT) & AVIC_VM_ID_MASK) #define AVIC_GATAG_TO_VCPUID(x) (x & AVIC_VCPU_ID_MASK) +static_assert(AVIC_GATAG(AVIC_VM_ID_MASK, AVIC_VCPU_ID_MASK) == -1u); + static bool force_avic; module_param_unsafe(force_avic, bool, 0444); @@ -86,6 +96,12 @@ /* Disabling MSR intercept for x2APIC registers */ svm_set_x2apic_msr_interception(svm, false); } else { + /* + * Flush the TLB, the guest may have inserted a non-APIC + * mapping into the TLB while AVIC was disabled. + */ + kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, &svm->vcpu); + /* For xAVIC and hybrid-xAVIC modes */ vmcb->control.avic_physical_id |= AVIC_MAX_PHYSICAL_ID; /* Enabling MSR intercept for x2APIC registers */ @@ -496,14 +512,18 @@ trace_kvm_avic_incomplete_ipi(vcpu->vcpu_id, icrh, icrl, id, index); switch (id) { + case AVIC_IPI_FAILURE_INVALID_TARGET: case AVIC_IPI_FAILURE_INVALID_INT_TYPE: /* * Emulate IPIs that are not handled by AVIC hardware, which - * only virtualizes Fixed, Edge-Triggered INTRs. The exit is - * a trap, e.g. ICR holds the correct value and RIP has been - * advanced, KVM is responsible only for emulating the IPI. - * Sadly, hardware may sometimes leave the BUSY flag set, in - * which case KVM needs to emulate the ICR write as well in + * only virtualizes Fixed, Edge-Triggered INTRs, and falls over + * if _any_ targets are invalid, e.g. if the logical mode mask + * is a superset of running vCPUs. + * + * The exit is a trap, e.g. ICR holds the correct value and RIP + * has been advanced, KVM is responsible only for emulating the + * IPI. Sadly, hardware may sometimes leave the BUSY flag set, + * in which case KVM needs to emulate the ICR write as well in * order to clear the BUSY flag. */ if (icrl & APIC_ICR_BUSY) @@ -519,8 +539,6 @@ */ avic_kick_target_vcpus(vcpu->kvm, apic, icrl, icrh, index); break; - case AVIC_IPI_FAILURE_INVALID_TARGET: - break; case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE: WARN_ONCE(1, "Invalid backing page\n"); break; @@ -739,18 +757,6 @@ avic_handle_ldr_update(vcpu); } -void avic_set_virtual_apic_mode(struct kvm_vcpu *vcpu) -{ - if (!lapic_in_kernel(vcpu) || avic_mode == AVIC_MODE_NONE) - return; - - if (kvm_get_apic_mode(vcpu) == LAPIC_MODE_INVALID) { - WARN_ONCE(true, "Invalid local APIC state (vcpu_id=%d)", vcpu->vcpu_id); - return; - } - avic_refresh_apicv_exec_ctrl(vcpu); -} - static int avic_set_pi_irte_mode(struct kvm_vcpu *vcpu, bool activate) { int ret = 0; @@ -1092,17 +1098,18 @@ WRITE_ONCE(*(svm->avic_physical_id_cache), entry); } - -void avic_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu) +void avic_refresh_virtual_apic_mode(struct kvm_vcpu *vcpu) { struct vcpu_svm *svm = to_svm(vcpu); struct vmcb *vmcb = svm->vmcb01.ptr; - bool activated = kvm_vcpu_apicv_active(vcpu); + + if (!lapic_in_kernel(vcpu) || avic_mode == AVIC_MODE_NONE) + return; if (!enable_apicv) return; - if (activated) { + if (kvm_vcpu_apicv_active(vcpu)) { /** * During AVIC temporary deactivation, guest could update * APIC ID, DFR and LDR registers, which would not be trapped @@ -1116,6 +1123,16 @@ avic_deactivate_vmcb(svm); } vmcb_mark_dirty(vmcb, VMCB_AVIC); +} + +void avic_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu) +{ + bool activated = kvm_vcpu_apicv_active(vcpu); + + if (!enable_apicv) + return; + + avic_refresh_virtual_apic_mode(vcpu); if (activated) avic_vcpu_load(vcpu, vcpu->cpu); --- linux-gcp-6.2.0.orig/arch/x86/kvm/svm/sev.c +++ linux-gcp-6.2.0/arch/x86/kvm/svm/sev.c @@ -1293,7 +1293,7 @@ /* Check if we are crossing the page boundary */ offset = params.guest_uaddr & (PAGE_SIZE - 1); - if ((params.guest_len + offset > PAGE_SIZE)) + if (params.guest_len > PAGE_SIZE || (params.guest_len + offset) > PAGE_SIZE) return -EINVAL; /* Pin guest memory */ @@ -1473,7 +1473,7 @@ /* Check if we are crossing the page boundary */ offset = params.guest_uaddr & (PAGE_SIZE - 1); - if ((params.guest_len + offset > PAGE_SIZE)) + if (params.guest_len > PAGE_SIZE || (params.guest_len + offset) > PAGE_SIZE) return -EINVAL; hdr = psp_copy_user_blob(params.hdr_uaddr, params.hdr_len); --- linux-gcp-6.2.0.orig/arch/x86/kvm/svm/svm.c +++ linux-gcp-6.2.0/arch/x86/kvm/svm/svm.c @@ -3718,7 +3718,7 @@ svm->vmcb->save.rflags |= (X86_EFLAGS_TF | X86_EFLAGS_RF); } -static void svm_flush_tlb_current(struct kvm_vcpu *vcpu) +static void svm_flush_tlb_asid(struct kvm_vcpu *vcpu) { struct vcpu_svm *svm = to_svm(vcpu); @@ -3742,6 +3742,37 @@ svm->current_vmcb->asid_generation--; } +static void svm_flush_tlb_current(struct kvm_vcpu *vcpu) +{ + hpa_t root_tdp = vcpu->arch.mmu->root.hpa; + + /* + * When running on Hyper-V with EnlightenedNptTlb enabled, explicitly + * flush the NPT mappings via hypercall as flushing the ASID only + * affects virtual to physical mappings, it does not invalidate guest + * physical to host physical mappings. + */ + if (svm_hv_is_enlightened_tlb_enabled(vcpu) && VALID_PAGE(root_tdp)) + hyperv_flush_guest_mapping(root_tdp); + + svm_flush_tlb_asid(vcpu); +} + +static void svm_flush_tlb_all(struct kvm_vcpu *vcpu) +{ + /* + * When running on Hyper-V with EnlightenedNptTlb enabled, remote TLB + * flushes should be routed to hv_remote_flush_tlb() without requesting + * a "regular" remote flush. Reaching this point means either there's + * a KVM bug or a prior hv_remote_flush_tlb() call failed, both of + * which might be fatal to the guest. Yell, but try to recover. + */ + if (WARN_ON_ONCE(svm_hv_is_enlightened_tlb_enabled(vcpu))) + hv_remote_flush_tlb(vcpu->kvm); + + svm_flush_tlb_asid(vcpu); +} + static void svm_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t gva) { struct vcpu_svm *svm = to_svm(vcpu); @@ -4747,10 +4778,10 @@ .set_rflags = svm_set_rflags, .get_if_flag = svm_get_if_flag, - .flush_tlb_all = svm_flush_tlb_current, + .flush_tlb_all = svm_flush_tlb_all, .flush_tlb_current = svm_flush_tlb_current, .flush_tlb_gva = svm_flush_tlb_gva, - .flush_tlb_guest = svm_flush_tlb_current, + .flush_tlb_guest = svm_flush_tlb_asid, .vcpu_pre_run = svm_vcpu_pre_run, .vcpu_run = svm_vcpu_run, @@ -4771,7 +4802,7 @@ .enable_nmi_window = svm_enable_nmi_window, .enable_irq_window = svm_enable_irq_window, .update_cr8_intercept = svm_update_cr8_intercept, - .set_virtual_apic_mode = avic_set_virtual_apic_mode, + .set_virtual_apic_mode = avic_refresh_virtual_apic_mode, .refresh_apicv_exec_ctrl = avic_refresh_apicv_exec_ctrl, .check_apicv_inhibit_reasons = avic_check_apicv_inhibit_reasons, .apicv_post_state_restore = avic_apicv_post_state_restore, @@ -5097,15 +5128,34 @@ static int __init svm_init(void) { + int r; + __unused_size_checks(); - return kvm_init(&svm_init_ops, sizeof(struct vcpu_svm), - __alignof__(struct vcpu_svm), THIS_MODULE); + r = kvm_x86_vendor_init(&svm_init_ops); + if (r) + return r; + + /* + * Common KVM initialization _must_ come last, after this, /dev/kvm is + * exposed to userspace! + */ + r = kvm_init(&svm_init_ops, sizeof(struct vcpu_svm), + __alignof__(struct vcpu_svm), THIS_MODULE); + if (r) + goto err_kvm_init; + + return 0; + +err_kvm_init: + kvm_x86_vendor_exit(); + return r; } static void __exit svm_exit(void) { kvm_exit(); + kvm_x86_vendor_exit(); } module_init(svm_init) --- linux-gcp-6.2.0.orig/arch/x86/kvm/svm/svm.h +++ linux-gcp-6.2.0/arch/x86/kvm/svm/svm.h @@ -648,7 +648,7 @@ void avic_vcpu_unblocking(struct kvm_vcpu *vcpu); void avic_ring_doorbell(struct kvm_vcpu *vcpu); unsigned long avic_vcpu_get_apicv_inhibit_reasons(struct kvm_vcpu *vcpu); -void avic_set_virtual_apic_mode(struct kvm_vcpu *vcpu); +void avic_refresh_virtual_apic_mode(struct kvm_vcpu *vcpu); /* sev.c */ --- linux-gcp-6.2.0.orig/arch/x86/kvm/svm/svm_onhyperv.h +++ linux-gcp-6.2.0/arch/x86/kvm/svm/svm_onhyperv.h @@ -6,6 +6,8 @@ #ifndef __ARCH_X86_KVM_SVM_ONHYPERV_H__ #define __ARCH_X86_KVM_SVM_ONHYPERV_H__ +#include + #if IS_ENABLED(CONFIG_HYPERV) #include "kvm_onhyperv.h" @@ -15,6 +17,14 @@ int svm_hv_enable_l2_tlb_flush(struct kvm_vcpu *vcpu); +static inline bool svm_hv_is_enlightened_tlb_enabled(struct kvm_vcpu *vcpu) +{ + struct hv_vmcb_enlightenments *hve = &to_svm(vcpu)->vmcb->control.hv_enlightenments; + + return ms_hyperv.nested_features & HV_X64_NESTED_ENLIGHTENED_TLB && + !!hve->hv_enlightenments_control.enlightened_npt_tlb; +} + static inline void svm_hv_init_vmcb(struct vmcb *vmcb) { struct hv_vmcb_enlightenments *hve = &vmcb->control.hv_enlightenments; @@ -30,7 +40,7 @@ hve->hv_enlightenments_control.msr_bitmap = 1; } -static inline void svm_hv_hardware_setup(void) +static inline __init void svm_hv_hardware_setup(void) { if (npt_enabled && ms_hyperv.nested_features & HV_X64_NESTED_ENLIGHTENED_TLB) { @@ -80,11 +90,16 @@ } #else +static inline bool svm_hv_is_enlightened_tlb_enabled(struct kvm_vcpu *vcpu) +{ + return false; +} + static inline void svm_hv_init_vmcb(struct vmcb *vmcb) { } -static inline void svm_hv_hardware_setup(void) +static inline __init void svm_hv_hardware_setup(void) { } --- linux-gcp-6.2.0.orig/arch/x86/kvm/vmx/hyperv.h +++ linux-gcp-6.2.0/arch/x86/kvm/vmx/hyperv.h @@ -190,16 +190,6 @@ return *(u16 *)((char *)current_evmcs + offset); } -static inline void evmcs_touch_msr_bitmap(void) -{ - if (unlikely(!current_evmcs)) - return; - - if (current_evmcs->hv_enlightenments_control.msr_bitmap) - current_evmcs->hv_clean_fields &= - ~HV_VMX_ENLIGHTENED_CLEAN_FIELD_MSR_BITMAP; -} - static inline void evmcs_load(u64 phys_addr) { struct hv_vp_assist_page *vp_ap = @@ -219,7 +209,6 @@ static inline u32 evmcs_read32(unsigned long field) { return 0; } static inline u16 evmcs_read16(unsigned long field) { return 0; } static inline void evmcs_load(u64 phys_addr) {} -static inline void evmcs_touch_msr_bitmap(void) {} #endif /* IS_ENABLED(CONFIG_HYPERV) */ #define EVMPTR_INVALID (-1ULL) --- linux-gcp-6.2.0.orig/arch/x86/kvm/vmx/nested.c +++ linux-gcp-6.2.0/arch/x86/kvm/vmx/nested.c @@ -3021,7 +3021,7 @@ struct vmcs12 *vmcs12, enum vm_entry_failure_code *entry_failure_code) { - bool ia32e; + bool ia32e = !!(vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE); *entry_failure_code = ENTRY_FAIL_DEFAULT; @@ -3047,6 +3047,13 @@ vmcs12->guest_ia32_perf_global_ctrl))) return -EINVAL; + if (CC((vmcs12->guest_cr0 & (X86_CR0_PG | X86_CR0_PE)) == X86_CR0_PG)) + return -EINVAL; + + if (CC(ia32e && !(vmcs12->guest_cr4 & X86_CR4_PAE)) || + CC(ia32e && !(vmcs12->guest_cr0 & X86_CR0_PG))) + return -EINVAL; + /* * If the load IA32_EFER VM-entry control is 1, the following checks * are performed on the field for the IA32_EFER MSR: @@ -3058,7 +3065,6 @@ */ if (to_vmx(vcpu)->nested.nested_run_pending && (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) { - ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0; if (CC(!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer)) || CC(ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA)) || CC(((vmcs12->guest_cr0 & X86_CR0_PG) && @@ -3867,7 +3873,12 @@ exit_qual = 0; } - if (ex->has_error_code) { + /* + * Unlike AMD's Paged Real Mode, which reports an error code on #PF + * VM-Exits even if the CPU is in Real Mode, Intel VMX never sets the + * "has error code" flags on VM-Exit if the CPU is in Real Mode. + */ + if (ex->has_error_code && is_protmode(vcpu)) { /* * Intel CPUs do not generate error codes with bits 31:16 set, * and more importantly VMX disallows setting bits 31:16 in the --- linux-gcp-6.2.0.orig/arch/x86/kvm/vmx/vmx.c +++ linux-gcp-6.2.0/arch/x86/kvm/vmx/vmx.c @@ -551,6 +551,33 @@ return 0; } +static void hv_reset_evmcs(void) +{ + struct hv_vp_assist_page *vp_ap; + + if (!static_branch_unlikely(&enable_evmcs)) + return; + + /* + * KVM should enable eVMCS if and only if all CPUs have a VP assist + * page, and should reject CPU onlining if eVMCS is enabled the CPU + * doesn't have a VP assist page allocated. + */ + vp_ap = hv_get_vp_assist_page(smp_processor_id()); + if (WARN_ON_ONCE(!vp_ap)) + return; + + /* + * Reset everything to support using non-enlightened VMCS access later + * (e.g. when we reload the module with enlightened_vmcs=0) + */ + vp_ap->nested_control.features.directhypercall = 0; + vp_ap->current_nested_vmcs = 0; + vp_ap->enlighten_vmentry = 0; +} + +#else /* IS_ENABLED(CONFIG_HYPERV) */ +static void hv_reset_evmcs(void) {} #endif /* IS_ENABLED(CONFIG_HYPERV) */ /* @@ -2527,6 +2554,8 @@ if (cpu_vmxoff()) kvm_spurious_fault(); + hv_reset_evmcs(); + intel_pt_handle_vmx(0); } @@ -3865,8 +3894,13 @@ * 'Enlightened MSR Bitmap' feature L0 needs to know that MSR * bitmap has changed. */ - if (static_branch_unlikely(&enable_evmcs)) - evmcs_touch_msr_bitmap(); + if (IS_ENABLED(CONFIG_HYPERV) && static_branch_unlikely(&enable_evmcs)) { + struct hv_enlightened_vmcs *evmcs = (void *)vmx->vmcs01.vmcs; + + if (evmcs->hv_enlightenments_control.msr_bitmap) + evmcs->hv_clean_fields &= + ~HV_VMX_ENLIGHTENED_CLEAN_FIELD_MSR_BITMAP; + } vmx->nested.force_msr_bitmap_recalc = true; } @@ -8487,41 +8521,23 @@ l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO; } -static void vmx_exit(void) +static void __vmx_exit(void) { + allow_smaller_maxphyaddr = false; + #ifdef CONFIG_KEXEC_CORE RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL); synchronize_rcu(); #endif + vmx_cleanup_l1d_flush(); +} +static void vmx_exit(void) +{ kvm_exit(); + kvm_x86_vendor_exit(); -#if IS_ENABLED(CONFIG_HYPERV) - if (static_branch_unlikely(&enable_evmcs)) { - int cpu; - struct hv_vp_assist_page *vp_ap; - /* - * Reset everything to support using non-enlightened VMCS - * access later (e.g. when we reload the module with - * enlightened_vmcs=0) - */ - for_each_online_cpu(cpu) { - vp_ap = hv_get_vp_assist_page(cpu); - - if (!vp_ap) - continue; - - vp_ap->nested_control.features.directhypercall = 0; - vp_ap->current_nested_vmcs = 0; - vp_ap->enlighten_vmentry = 0; - } - - static_branch_disable(&enable_evmcs); - } -#endif - vmx_cleanup_l1d_flush(); - - allow_smaller_maxphyaddr = false; + __vmx_exit(); } module_exit(vmx_exit); @@ -8562,23 +8578,20 @@ } #endif - r = kvm_init(&vmx_init_ops, sizeof(struct vcpu_vmx), - __alignof__(struct vcpu_vmx), THIS_MODULE); + r = kvm_x86_vendor_init(&vmx_init_ops); if (r) return r; /* - * Must be called after kvm_init() so enable_ept is properly set + * Must be called after common x86 init so enable_ept is properly set * up. Hand the parameter mitigation value in which was stored in * the pre module init parser. If no parameter was given, it will * contain 'auto' which will be turned into the default 'cond' * mitigation mode. */ r = vmx_setup_l1d_flush(vmentry_l1d_flush_param); - if (r) { - vmx_exit(); - return r; - } + if (r) + goto err_l1d_flush; vmx_setup_fb_clear_ctrl(); @@ -8602,6 +8615,21 @@ if (!enable_ept) allow_smaller_maxphyaddr = true; + /* + * Common KVM initialization _must_ come last, after this, /dev/kvm is + * exposed to userspace! + */ + r = kvm_init(&vmx_init_ops, sizeof(struct vcpu_vmx), + __alignof__(struct vcpu_vmx), THIS_MODULE); + if (r) + goto err_kvm_init; + return 0; + +err_kvm_init: + __vmx_exit(); +err_l1d_flush: + kvm_x86_vendor_exit(); + return r; } module_init(vmx_init); --- linux-gcp-6.2.0.orig/arch/x86/kvm/x86.c +++ linux-gcp-6.2.0/arch/x86/kvm/x86.c @@ -9292,7 +9292,16 @@ int kvm_arch_init(void *opaque) { - struct kvm_x86_init_ops *ops = opaque; + return 0; +} + +void kvm_arch_exit(void) +{ + +} + +int kvm_x86_vendor_init(struct kvm_x86_init_ops *ops) +{ u64 host_pat; int r; @@ -9307,7 +9316,7 @@ return -EOPNOTSUPP; } if (ops->disabled_by_bios()) { - pr_err_ratelimited("kvm: support for '%s' disabled by bios\n", + pr_warn_ratelimited("kvm: support for '%s' disabled by bios\n", ops->runtime_ops->name); return -EOPNOTSUPP; } @@ -9382,8 +9391,9 @@ kmem_cache_destroy(x86_emulator_cache); return r; } +EXPORT_SYMBOL_GPL(kvm_x86_vendor_init); -void kvm_arch_exit(void) +void kvm_x86_vendor_exit(void) { #ifdef CONFIG_X86_64 if (hypervisor_is_type(X86_HYPER_MS_HYPERV)) @@ -9410,6 +9420,7 @@ WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key)); #endif } +EXPORT_SYMBOL_GPL(kvm_x86_vendor_exit); static int __kvm_emulate_halt(struct kvm_vcpu *vcpu, int state, int reason) { @@ -9784,13 +9795,20 @@ static void kvm_inject_exception(struct kvm_vcpu *vcpu) { + /* + * Suppress the error code if the vCPU is in Real Mode, as Real Mode + * exceptions don't report error codes. The presence of an error code + * is carried with the exception and only stripped when the exception + * is injected as intercepted #PF VM-Exits for AMD's Paged Real Mode do + * report an error code despite the CPU being in Real Mode. + */ + vcpu->arch.exception.has_error_code &= is_protmode(vcpu); + trace_kvm_inj_exception(vcpu->arch.exception.vector, vcpu->arch.exception.has_error_code, vcpu->arch.exception.error_code, vcpu->arch.exception.injected); - if (vcpu->arch.exception.error_code && !is_protmode(vcpu)) - vcpu->arch.exception.error_code = false; static_call(kvm_x86_inject_exception)(vcpu); } --- linux-gcp-6.2.0.orig/arch/x86/mm/cpu_entry_area.c +++ linux-gcp-6.2.0/arch/x86/mm/cpu_entry_area.c @@ -10,6 +10,7 @@ #include #include #include +#include static DEFINE_PER_CPU_PAGE_ALIGNED(struct entry_stack_page, entry_stack_storage); @@ -29,6 +30,12 @@ unsigned int max_cea; unsigned int i, j; + if (!kaslr_enabled()) { + for_each_possible_cpu(i) + per_cpu(_cea_offset, i) = i; + return; + } + max_cea = (CPU_ENTRY_AREA_MAP_SIZE - PAGE_SIZE) / CPU_ENTRY_AREA_SIZE; /* O(sodding terrible) */ --- linux-gcp-6.2.0.orig/arch/x86/mm/mem_encrypt_identity.c +++ linux-gcp-6.2.0/arch/x86/mm/mem_encrypt_identity.c @@ -600,7 +600,8 @@ cmdline_ptr = (const char *)((u64)bp->hdr.cmd_line_ptr | ((u64)bp->ext_cmd_line_ptr << 32)); - cmdline_find_option(cmdline_ptr, cmdline_arg, buffer, sizeof(buffer)); + if (cmdline_find_option(cmdline_ptr, cmdline_arg, buffer, sizeof(buffer)) < 0) + return; if (!strncmp(buffer, cmdline_on, sizeof(buffer))) sme_me_mask = me_mask; --- linux-gcp-6.2.0.orig/arch/x86/pci/common.c +++ linux-gcp-6.2.0/arch/x86/pci/common.c @@ -34,6 +34,7 @@ #endif int pcibios_last_bus = -1; unsigned long pirq_table_addr; +unsigned int pci_early_clear_msi; const struct pci_raw_ops *__read_mostly raw_pci_ops; const struct pci_raw_ops *__read_mostly raw_pci_ext_ops; @@ -614,6 +615,9 @@ } else if (!strcmp(str, "skip_isa_align")) { pci_probe |= PCI_CAN_SKIP_ISA_ALIGN; return NULL; + } else if (!strcmp(str, "clearmsi")) { + pci_early_clear_msi = 1; + return NULL; } else if (!strcmp(str, "noioapicquirk")) { noioapicquirk = 1; return NULL; --- linux-gcp-6.2.0.orig/arch/x86/pci/early.c +++ linux-gcp-6.2.0/arch/x86/pci/early.c @@ -51,6 +51,31 @@ outw(val, 0xcfc + (offset&2)); } +u32 pci_early_find_cap(int bus, int slot, int func, int cap) +{ + int bytes; + u8 pos; + + if (!(read_pci_config_16(bus, slot, func, PCI_STATUS) & + PCI_STATUS_CAP_LIST)) + return 0; + + pos = read_pci_config_byte(bus, slot, func, PCI_CAPABILITY_LIST); + for (bytes = 0; bytes < 48 && pos >= 0x40; bytes++) { + u8 id; + + pos &= ~3; + id = read_pci_config_byte(bus, slot, func, pos+PCI_CAP_LIST_ID); + if (id == 0xff) + break; + if (id == cap) + return pos; + pos = read_pci_config_byte(bus, slot, func, + pos+PCI_CAP_LIST_NEXT); + } + return 0; +} + int early_pci_allowed(void) { return (pci_probe & (PCI_PROBE_CONF1|PCI_PROBE_NOEARLY)) == --- linux-gcp-6.2.0.orig/arch/x86/pci/fixup.c +++ linux-gcp-6.2.0/arch/x86/pci/fixup.c @@ -7,6 +7,7 @@ #include #include #include +#include #include #include @@ -824,3 +825,23 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x7910, rs690_fix_64bit_dma); #endif + +#ifdef CONFIG_AMD_NB + +#define AMD_15B8_RCC_DEV2_EPF0_STRAP2 0x10136008 +#define AMD_15B8_RCC_DEV2_EPF0_STRAP2_NO_SOFT_RESET_DEV2_F0_MASK 0x00000080L + +static void quirk_clear_strap_no_soft_reset_dev2_f0(struct pci_dev *dev) +{ + u32 data; + + if (!amd_smn_read(0, AMD_15B8_RCC_DEV2_EPF0_STRAP2, &data)) { + data &= ~AMD_15B8_RCC_DEV2_EPF0_STRAP2_NO_SOFT_RESET_DEV2_F0_MASK; + if (amd_smn_write(0, AMD_15B8_RCC_DEV2_EPF0_STRAP2, data)) + pci_err(dev, "Failed to write data 0x%x\n", data); + } else { + pci_err(dev, "Failed to read data\n"); + } +} +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x15b8, quirk_clear_strap_no_soft_reset_dev2_f0); +#endif --- linux-gcp-6.2.0.orig/arch/x86/realmode/rm/trampoline_32.S +++ linux-gcp-6.2.0/arch/x86/realmode/rm/trampoline_32.S @@ -23,6 +23,7 @@ #include #include #include +#include #include "realmode.h" .text @@ -59,6 +60,7 @@ .section ".text32","ax" .code32 SYM_CODE_START(startup_32) # note: also used from wakeup_asm.S + ANNOTATE_RETPOLINE_SAFE jmp *%eax SYM_CODE_END(startup_32) --- linux-gcp-6.2.0.orig/arch/x86/um/vdso/um_vdso.c +++ linux-gcp-6.2.0/arch/x86/um/vdso/um_vdso.c @@ -17,8 +17,10 @@ { long ret; - asm("syscall" : "=a" (ret) : - "0" (__NR_clock_gettime), "D" (clock), "S" (ts) : "memory"); + asm("syscall" + : "=a" (ret) + : "0" (__NR_clock_gettime), "D" (clock), "S" (ts) + : "rcx", "r11", "memory"); return ret; } @@ -29,8 +31,10 @@ { long ret; - asm("syscall" : "=a" (ret) : - "0" (__NR_gettimeofday), "D" (tv), "S" (tz) : "memory"); + asm("syscall" + : "=a" (ret) + : "0" (__NR_gettimeofday), "D" (tv), "S" (tz) + : "rcx", "r11", "memory"); return ret; } --- linux-gcp-6.2.0.orig/arch/x86/xen/Makefile +++ linux-gcp-6.2.0/arch/x86/xen/Makefile @@ -45,6 +45,6 @@ obj-$(CONFIG_XEN_DEBUG_FS) += debugfs.o -obj-$(CONFIG_XEN_PV_DOM0) += vga.o +obj-$(CONFIG_XEN_DOM0) += vga.o obj-$(CONFIG_XEN_EFI) += efi.o --- linux-gcp-6.2.0.orig/arch/x86/xen/enlighten_pv.c +++ linux-gcp-6.2.0/arch/x86/xen/enlighten_pv.c @@ -1389,7 +1389,8 @@ x86_platform.set_legacy_features = xen_dom0_set_legacy_features; - xen_init_vga(info, xen_start_info->console.dom0.info_size); + xen_init_vga(info, xen_start_info->console.dom0.info_size, + &boot_params.screen_info); xen_start_info->console.domU.mfn = 0; xen_start_info->console.domU.evtchn = 0; --- linux-gcp-6.2.0.orig/arch/x86/xen/enlighten_pvh.c +++ linux-gcp-6.2.0/arch/x86/xen/enlighten_pvh.c @@ -43,6 +43,19 @@ x86_init.oem.banner = xen_banner; xen_efi_init(boot_params); + + if (xen_initial_domain()) { + struct xen_platform_op op = { + .cmd = XENPF_get_dom0_console, + }; + int ret = HYPERVISOR_platform_op(&op); + + if (ret > 0) + xen_init_vga(&op.u.dom0_console, + min(ret * sizeof(char), + sizeof(op.u.dom0_console)), + &boot_params->screen_info); + } } void __init mem_map_via_hcall(struct boot_params *boot_params_p) --- linux-gcp-6.2.0.orig/arch/x86/xen/vga.c +++ linux-gcp-6.2.0/arch/x86/xen/vga.c @@ -9,10 +9,9 @@ #include "xen-ops.h" -void __init xen_init_vga(const struct dom0_vga_console_info *info, size_t size) +void __init xen_init_vga(const struct dom0_vga_console_info *info, size_t size, + struct screen_info *screen_info) { - struct screen_info *screen_info = &boot_params.screen_info; - /* This is drawn from a dump from vgacon:startup in * standard Linux. */ screen_info->orig_video_mode = 3; --- linux-gcp-6.2.0.orig/arch/x86/xen/xen-ops.h +++ linux-gcp-6.2.0/arch/x86/xen/xen-ops.h @@ -108,11 +108,12 @@ struct dom0_vga_console_info; -#ifdef CONFIG_XEN_PV_DOM0 -void __init xen_init_vga(const struct dom0_vga_console_info *, size_t size); +#ifdef CONFIG_XEN_DOM0 +void __init xen_init_vga(const struct dom0_vga_console_info *, size_t size, + struct screen_info *); #else static inline void __init xen_init_vga(const struct dom0_vga_console_info *info, - size_t size) + size_t size, struct screen_info *si) { } #endif --- linux-gcp-6.2.0.orig/arch/xtensa/kernel/traps.c +++ linux-gcp-6.2.0/arch/xtensa/kernel/traps.c @@ -539,7 +539,7 @@ void show_stack(struct task_struct *task, unsigned long *sp, const char *loglvl) { - size_t len; + size_t len, off = 0; if (!sp) sp = stack_pointer(task); @@ -548,9 +548,17 @@ kstack_depth_to_print * STACK_DUMP_ENTRY_SIZE); printk("%sStack:\n", loglvl); - print_hex_dump(loglvl, " ", DUMP_PREFIX_NONE, - STACK_DUMP_LINE_SIZE, STACK_DUMP_ENTRY_SIZE, - sp, len, false); + while (off < len) { + u8 line[STACK_DUMP_LINE_SIZE]; + size_t line_len = len - off > STACK_DUMP_LINE_SIZE ? + STACK_DUMP_LINE_SIZE : len - off; + + __memcpy(line, (u8 *)sp + off, line_len); + print_hex_dump(loglvl, " ", DUMP_PREFIX_NONE, + STACK_DUMP_LINE_SIZE, STACK_DUMP_ENTRY_SIZE, + line, line_len, false); + off += STACK_DUMP_LINE_SIZE; + } show_trace(task, sp, loglvl); } --- linux-gcp-6.2.0.orig/block/bio-integrity.c +++ linux-gcp-6.2.0/block/bio-integrity.c @@ -418,6 +418,7 @@ bip->bip_vcnt = bip_src->bip_vcnt; bip->bip_iter = bip_src->bip_iter; + bip->bip_flags = bip_src->bip_flags & ~BIP_BLOCK_INTEGRITY; return 0; } --- linux-gcp-6.2.0.orig/block/bio.c +++ linux-gcp-6.2.0/block/bio.c @@ -773,6 +773,7 @@ if ((bio->bi_opf & REQ_POLLED) && !WARN_ON_ONCE(in_interrupt())) { bio->bi_next = cache->free_list; + bio->bi_bdev = NULL; cache->free_list = bio; cache->nr++; } else { --- linux-gcp-6.2.0.orig/block/blk-cgroup.c +++ linux-gcp-6.2.0/block/blk-cgroup.c @@ -2001,6 +2001,9 @@ struct blkg_iostat_set *bis; unsigned long flags; + if (!cgroup_subsys_on_dfl(io_cgrp_subsys)) + return; + /* Root-level stats are sourced from system-wide IO stats */ if (!cgroup_parent(blkcg->css.cgroup)) return; @@ -2032,8 +2035,7 @@ } u64_stats_update_end_irqrestore(&bis->sync, flags); - if (cgroup_subsys_on_dfl(io_cgrp_subsys)) - cgroup_rstat_updated(blkcg->css.cgroup, cpu); + cgroup_rstat_updated(blkcg->css.cgroup, cpu); put_cpu(); } --- linux-gcp-6.2.0.orig/block/blk-core.c +++ linux-gcp-6.2.0/block/blk-core.c @@ -684,6 +684,18 @@ void submit_bio_noacct_nocheck(struct bio *bio) { + blk_cgroup_bio_start(bio); + blkcg_bio_issue_init(bio); + + if (!bio_flagged(bio, BIO_TRACE_COMPLETION)) { + trace_block_bio_queue(bio); + /* + * Now that enqueuing has been traced, we need to trace + * completion as well. + */ + bio_set_flag(bio, BIO_TRACE_COMPLETION); + } + /* * We only want one ->submit_bio to be active at a time, else stack * usage with stacked devices could be a problem. Use current->bio_list @@ -788,17 +800,6 @@ if (blk_throtl_bio(bio)) return; - - blk_cgroup_bio_start(bio); - blkcg_bio_issue_init(bio); - - if (!bio_flagged(bio, BIO_TRACE_COMPLETION)) { - trace_block_bio_queue(bio); - /* Now that enqueuing has been traced, we need to trace - * completion as well. - */ - bio_set_flag(bio, BIO_TRACE_COMPLETION); - } submit_bio_noacct_nocheck(bio); return; @@ -853,10 +854,16 @@ */ int bio_poll(struct bio *bio, struct io_comp_batch *iob, unsigned int flags) { - struct request_queue *q = bdev_get_queue(bio->bi_bdev); blk_qc_t cookie = READ_ONCE(bio->bi_cookie); + struct block_device *bdev; + struct request_queue *q; int ret = 0; + bdev = READ_ONCE(bio->bi_bdev); + if (!bdev) + return 0; + + q = bdev_get_queue(bdev); if (cookie == BLK_QC_T_NONE || !test_bit(QUEUE_FLAG_POLL, &q->queue_flags)) return 0; @@ -916,7 +923,7 @@ */ rcu_read_lock(); bio = READ_ONCE(kiocb->private); - if (bio && bio->bi_bdev) + if (bio) ret = bio_poll(bio, iob, flags); rcu_read_unlock(); @@ -939,16 +946,11 @@ } } -unsigned long bdev_start_io_acct(struct block_device *bdev, - unsigned int sectors, enum req_op op, +unsigned long bdev_start_io_acct(struct block_device *bdev, enum req_op op, unsigned long start_time) { - const int sgrp = op_stat_group(op); - part_stat_lock(); update_io_ticks(bdev, start_time, false); - part_stat_inc(bdev, ios[sgrp]); - part_stat_add(bdev, sectors[sgrp], sectors); part_stat_local_inc(bdev, in_flight[op_is_write(op)]); part_stat_unlock(); @@ -964,13 +966,12 @@ */ unsigned long bio_start_io_acct(struct bio *bio) { - return bdev_start_io_acct(bio->bi_bdev, bio_sectors(bio), - bio_op(bio), jiffies); + return bdev_start_io_acct(bio->bi_bdev, bio_op(bio), jiffies); } EXPORT_SYMBOL_GPL(bio_start_io_acct); void bdev_end_io_acct(struct block_device *bdev, enum req_op op, - unsigned long start_time) + unsigned int sectors, unsigned long start_time) { const int sgrp = op_stat_group(op); unsigned long now = READ_ONCE(jiffies); @@ -978,6 +979,8 @@ part_stat_lock(); update_io_ticks(bdev, now, true); + part_stat_inc(bdev, ios[sgrp]); + part_stat_add(bdev, sectors[sgrp], sectors); part_stat_add(bdev, nsecs[sgrp], jiffies_to_nsecs(duration)); part_stat_local_dec(bdev, in_flight[op_is_write(op)]); part_stat_unlock(); @@ -987,7 +990,7 @@ void bio_end_io_acct_remapped(struct bio *bio, unsigned long start_time, struct block_device *orig_bdev) { - bdev_end_io_acct(orig_bdev, bio_op(bio), start_time); + bdev_end_io_acct(orig_bdev, bio_op(bio), bio_sectors(bio), start_time); } EXPORT_SYMBOL_GPL(bio_end_io_acct_remapped); --- linux-gcp-6.2.0.orig/block/blk-iocost.c +++ linux-gcp-6.2.0/block/blk-iocost.c @@ -866,9 +866,14 @@ *page = *seqio = *randio = 0; - if (bps) - *page = DIV64_U64_ROUND_UP(VTIME_PER_SEC, - DIV_ROUND_UP_ULL(bps, IOC_PAGE_SIZE)); + if (bps) { + u64 bps_pages = DIV_ROUND_UP_ULL(bps, IOC_PAGE_SIZE); + + if (bps_pages) + *page = DIV64_U64_ROUND_UP(VTIME_PER_SEC, bps_pages); + else + *page = 1; + } if (seqiops) { v = DIV64_U64_ROUND_UP(VTIME_PER_SEC, seqiops); --- linux-gcp-6.2.0.orig/block/blk-merge.c +++ linux-gcp-6.2.0/block/blk-merge.c @@ -757,6 +757,33 @@ rq->rq_flags |= RQF_MIXED_MERGE; } +static inline blk_opf_t bio_failfast(const struct bio *bio) +{ + if (bio->bi_opf & REQ_RAHEAD) + return REQ_FAILFAST_MASK; + + return bio->bi_opf & REQ_FAILFAST_MASK; +} + +/* + * After we are marked as MIXED_MERGE, any new RA bio has to be updated + * as failfast, and request's failfast has to be updated in case of + * front merge. + */ +static inline void blk_update_mixed_merge(struct request *req, + struct bio *bio, bool front_merge) +{ + if (req->rq_flags & RQF_MIXED_MERGE) { + if (bio->bi_opf & REQ_RAHEAD) + bio->bi_opf |= REQ_FAILFAST_MASK; + + if (front_merge) { + req->cmd_flags &= ~REQ_FAILFAST_MASK; + req->cmd_flags |= bio->bi_opf & REQ_FAILFAST_MASK; + } + } +} + static void blk_account_io_merge_request(struct request *req) { if (blk_do_io_stat(req)) { @@ -954,7 +981,7 @@ static enum bio_merge_status bio_attempt_back_merge(struct request *req, struct bio *bio, unsigned int nr_segs) { - const blk_opf_t ff = bio->bi_opf & REQ_FAILFAST_MASK; + const blk_opf_t ff = bio_failfast(bio); if (!ll_back_merge_fn(req, bio, nr_segs)) return BIO_MERGE_FAILED; @@ -965,6 +992,8 @@ if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff) blk_rq_set_mixed_merge(req); + blk_update_mixed_merge(req, bio, false); + req->biotail->bi_next = bio; req->biotail = bio; req->__data_len += bio->bi_iter.bi_size; @@ -978,7 +1007,7 @@ static enum bio_merge_status bio_attempt_front_merge(struct request *req, struct bio *bio, unsigned int nr_segs) { - const blk_opf_t ff = bio->bi_opf & REQ_FAILFAST_MASK; + const blk_opf_t ff = bio_failfast(bio); if (!ll_front_merge_fn(req, bio, nr_segs)) return BIO_MERGE_FAILED; @@ -989,6 +1018,8 @@ if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff) blk_rq_set_mixed_merge(req); + blk_update_mixed_merge(req, bio, true); + bio->bi_next = req->bio; req->bio = bio; --- linux-gcp-6.2.0.orig/block/blk-mq-sched.c +++ linux-gcp-6.2.0/block/blk-mq-sched.c @@ -19,8 +19,7 @@ #include "blk-wbt.h" /* - * Mark a hardware queue as needing a restart. For shared queues, maintain - * a count of how many hardware queues are marked for restart. + * Mark a hardware queue as needing a restart. */ void blk_mq_sched_mark_restart_hctx(struct blk_mq_hw_ctx *hctx) { @@ -82,7 +81,7 @@ /* * Only SCSI implements .get_budget and .put_budget, and SCSI restarts * its queue by itself in its completion handler, so we don't need to - * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE. + * restart queue if .get_budget() fails to get the budget. * * Returns -EAGAIN if hctx->dispatch was found non-empty and run_work has to * be run again. This is necessary to avoid starving flushes. @@ -210,7 +209,7 @@ /* * Only SCSI implements .get_budget and .put_budget, and SCSI restarts * its queue by itself in its completion handler, so we don't need to - * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE. + * restart queue if .get_budget() fails to get the budget. * * Returns -EAGAIN if hctx->dispatch was found non-empty and run_work has to * be run again. This is necessary to avoid starving flushes. --- linux-gcp-6.2.0.orig/block/blk-mq.c +++ linux-gcp-6.2.0/block/blk-mq.c @@ -658,7 +658,8 @@ * allocator for this for the rare use case of a command tied to * a specific queue. */ - if (WARN_ON_ONCE(!(flags & (BLK_MQ_REQ_NOWAIT | BLK_MQ_REQ_RESERVED)))) + if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)) || + WARN_ON_ONCE(!(flags & BLK_MQ_REQ_RESERVED))) return ERR_PTR(-EINVAL); if (hctx_idx >= q->nr_hw_queues) @@ -1358,8 +1359,6 @@ return false; if (rq->mq_hctx->type != HCTX_TYPE_POLL) return false; - if (WARN_ON_ONCE(!rq->bio)) - return false; return true; } EXPORT_SYMBOL_GPL(blk_rq_is_poll); @@ -1367,7 +1366,7 @@ static void blk_rq_poll_completion(struct request *rq, struct completion *wait) { do { - bio_poll(rq->bio, NULL, 0); + blk_mq_poll(rq->q, blk_rq_to_qc(rq), NULL, 0); cond_resched(); } while (!completion_done(wait)); } @@ -1825,12 +1824,13 @@ static bool blk_mq_mark_tag_wait(struct blk_mq_hw_ctx *hctx, struct request *rq) { - struct sbitmap_queue *sbq = &hctx->tags->bitmap_tags; + struct sbitmap_queue *sbq; struct wait_queue_head *wq; wait_queue_entry_t *wait; bool ret; - if (!(hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) { + if (!(hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED) && + !(blk_mq_is_shared_tags(hctx->flags))) { blk_mq_sched_mark_restart_hctx(hctx); /* @@ -1848,6 +1848,10 @@ if (!list_empty_careful(&wait->entry)) return false; + if (blk_mq_tag_is_reserved(rq->mq_hctx->sched_tags, rq->internal_tag)) + sbq = &hctx->tags->breserved_tags; + else + sbq = &hctx->tags->bitmap_tags; wq = &bt_wait_ptr(sbq, hctx)->wait; spin_lock_irq(&wq->lock); @@ -2096,7 +2100,8 @@ bool needs_restart; /* For non-shared tags, the RESTART check will suffice */ bool no_tag = prep == PREP_DISPATCH_NO_TAG && - (hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED); + ((hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED) || + blk_mq_is_shared_tags(hctx->flags)); if (nr_budgets) blk_mq_release_budgets(q, list); @@ -2736,6 +2741,7 @@ struct blk_mq_hw_ctx *this_hctx = NULL; struct blk_mq_ctx *this_ctx = NULL; struct request *requeue_list = NULL; + struct request **requeue_lastp = &requeue_list; unsigned int depth = 0; LIST_HEAD(list); @@ -2746,10 +2752,10 @@ this_hctx = rq->mq_hctx; this_ctx = rq->mq_ctx; } else if (this_hctx != rq->mq_hctx || this_ctx != rq->mq_ctx) { - rq_list_add(&requeue_list, rq); + rq_list_add_tail(&requeue_lastp, rq); continue; } - list_add_tail(&rq->queuelist, &list); + list_add(&rq->queuelist, &list); depth++; } while (!rq_list_empty(plug->mq_list)); --- linux-gcp-6.2.0.orig/block/blk-mq.h +++ linux-gcp-6.2.0/block/blk-mq.h @@ -378,12 +378,13 @@ #define __blk_mq_run_dispatch_ops(q, check_sleep, dispatch_ops) \ do { \ if ((q)->tag_set->flags & BLK_MQ_F_BLOCKING) { \ + struct blk_mq_tag_set *__tag_set = (q)->tag_set; \ int srcu_idx; \ \ might_sleep_if(check_sleep); \ - srcu_idx = srcu_read_lock((q)->tag_set->srcu); \ + srcu_idx = srcu_read_lock(__tag_set->srcu); \ (dispatch_ops); \ - srcu_read_unlock((q)->tag_set->srcu, srcu_idx); \ + srcu_read_unlock(__tag_set->srcu, srcu_idx); \ } else { \ rcu_read_lock(); \ (dispatch_ops); \ --- linux-gcp-6.2.0.orig/block/blk-throttle.c +++ linux-gcp-6.2.0/block/blk-throttle.c @@ -2175,12 +2175,6 @@ rcu_read_lock(); - if (!cgroup_subsys_on_dfl(io_cgrp_subsys)) { - blkg_rwstat_add(&tg->stat_bytes, bio->bi_opf, - bio->bi_iter.bi_size); - blkg_rwstat_add(&tg->stat_ios, bio->bi_opf, 1); - } - spin_lock_irq(&q->queue_lock); throtl_update_latency_buckets(td); --- linux-gcp-6.2.0.orig/block/blk-throttle.h +++ linux-gcp-6.2.0/block/blk-throttle.h @@ -185,6 +185,15 @@ struct throtl_grp *tg = blkg_to_tg(bio->bi_blkg); int rw = bio_data_dir(bio); + if (!cgroup_subsys_on_dfl(io_cgrp_subsys)) { + if (!bio_flagged(bio, BIO_CGROUP_ACCT)) { + bio_set_flag(bio, BIO_CGROUP_ACCT); + blkg_rwstat_add(&tg->stat_bytes, bio->bi_opf, + bio->bi_iter.bi_size); + } + blkg_rwstat_add(&tg->stat_ios, bio->bi_opf, 1); + } + /* iops limit is always counted */ if (tg->has_rules_iops[rw]) return true; --- linux-gcp-6.2.0.orig/block/blk.h +++ linux-gcp-6.2.0/block/blk.h @@ -427,7 +427,7 @@ struct request_queue *blk_alloc_queue(int node_id); -int disk_scan_partitions(struct gendisk *disk, fmode_t mode, void *owner); +int disk_scan_partitions(struct gendisk *disk, fmode_t mode); int disk_alloc_events(struct gendisk *disk); void disk_add_events(struct gendisk *disk); --- linux-gcp-6.2.0.orig/block/fops.c +++ linux-gcp-6.2.0/block/fops.c @@ -221,6 +221,24 @@ bio_endio(bio); break; } + if (iocb->ki_flags & IOCB_NOWAIT) { + /* + * This is nonblocking IO, and we need to allocate + * another bio if we have data left to map. As we + * cannot guarantee that one of the sub bios will not + * fail getting issued FOR NOWAIT and as error results + * are coalesced across all of them, be safe and ask for + * a retry of this from blocking context. + */ + if (unlikely(iov_iter_count(iter))) { + bio_release_pages(bio, false); + bio_clear_flag(bio, BIO_REFFED); + bio_put(bio); + blk_finish_plug(&plug); + return -EAGAIN; + } + bio->bi_opf |= REQ_NOWAIT; + } if (is_read) { if (dio->flags & DIO_SHOULD_DIRTY) @@ -228,9 +246,6 @@ } else { task_io_account_write(bio->bi_iter.bi_size); } - if (iocb->ki_flags & IOCB_NOWAIT) - bio->bi_opf |= REQ_NOWAIT; - dio->size += bio->bi_iter.bi_size; pos += bio->bi_iter.bi_size; --- linux-gcp-6.2.0.orig/block/genhd.c +++ linux-gcp-6.2.0/block/genhd.c @@ -356,9 +356,10 @@ } EXPORT_SYMBOL_GPL(disk_uevent); -int disk_scan_partitions(struct gendisk *disk, fmode_t mode, void *owner) +int disk_scan_partitions(struct gendisk *disk, fmode_t mode) { struct block_device *bdev; + int ret = 0; if (disk->flags & (GENHD_FL_NO_PART | GENHD_FL_HIDDEN)) return -EINVAL; @@ -366,16 +367,35 @@ return -EINVAL; if (disk->open_partitions) return -EBUSY; - /* Someone else has bdev exclusively open? */ - if (disk->part0->bd_holder && disk->part0->bd_holder != owner) - return -EBUSY; + + /* + * If the device is opened exclusively by current thread already, it's + * safe to scan partitons, otherwise, use bd_prepare_to_claim() to + * synchronize with other exclusive openers and other partition + * scanners. + */ + if (!(mode & FMODE_EXCL)) { + ret = bd_prepare_to_claim(disk->part0, disk_scan_partitions); + if (ret) + return ret; + } set_bit(GD_NEED_PART_SCAN, &disk->state); - bdev = blkdev_get_by_dev(disk_devt(disk), mode, NULL); + bdev = blkdev_get_by_dev(disk_devt(disk), mode & ~FMODE_EXCL, NULL); if (IS_ERR(bdev)) - return PTR_ERR(bdev); - blkdev_put(bdev, mode); - return 0; + ret = PTR_ERR(bdev); + else + blkdev_put(bdev, mode & ~FMODE_EXCL); + + /* + * If blkdev_get_by_dev() failed early, GD_NEED_PART_SCAN is still set, + * and this will cause that re-assemble partitioned raid device will + * creat partition for underlying disk. + */ + clear_bit(GD_NEED_PART_SCAN, &disk->state); + if (!(mode & FMODE_EXCL)) + bd_abort_claiming(disk->part0, disk_scan_partitions); + return ret; } /** @@ -497,9 +517,14 @@ if (ret) goto out_unregister_bdi; + /* Make sure the first partition scan will be proceed */ + if (get_capacity(disk) && !(disk->flags & GENHD_FL_NO_PART) && + !test_bit(GD_SUPPRESS_PART_SCAN, &disk->state)) + set_bit(GD_NEED_PART_SCAN, &disk->state); + bdev_add(disk->part0, ddev->devt); if (get_capacity(disk)) - disk_scan_partitions(disk, FMODE_READ, NULL); + disk_scan_partitions(disk, FMODE_READ); /* * Announce the disk and partitions after all partitions are --- linux-gcp-6.2.0.orig/block/ioctl.c +++ linux-gcp-6.2.0/block/ioctl.c @@ -467,10 +467,10 @@ * user space. Note the separate arg/argp parameters that are needed * to deal with the compat_ptr() conversion. */ -static int blkdev_common_ioctl(struct file *file, fmode_t mode, unsigned cmd, - unsigned long arg, void __user *argp) +static int blkdev_common_ioctl(struct block_device *bdev, fmode_t mode, + unsigned int cmd, unsigned long arg, + void __user *argp) { - struct block_device *bdev = I_BDEV(file->f_mapping->host); unsigned int max_sectors; switch (cmd) { @@ -528,8 +528,7 @@ return -EACCES; if (bdev_is_partition(bdev)) return -EINVAL; - return disk_scan_partitions(bdev->bd_disk, mode & ~FMODE_EXCL, - file); + return disk_scan_partitions(bdev->bd_disk, mode); case BLKTRACESTART: case BLKTRACESTOP: case BLKTRACETEARDOWN: @@ -607,7 +606,7 @@ break; } - ret = blkdev_common_ioctl(file, mode, cmd, arg, argp); + ret = blkdev_common_ioctl(bdev, mode, cmd, arg, argp); if (ret != -ENOIOCTLCMD) return ret; @@ -676,7 +675,7 @@ break; } - ret = blkdev_common_ioctl(file, mode, cmd, arg, argp); + ret = blkdev_common_ioctl(bdev, mode, cmd, arg, argp); if (ret == -ENOIOCTLCMD && disk->fops->compat_ioctl) ret = disk->fops->compat_ioctl(bdev, mode, cmd, arg); --- linux-gcp-6.2.0.orig/certs/blacklist.c +++ linux-gcp-6.2.0/certs/blacklist.c @@ -273,6 +273,9 @@ if (IS_ERR(key)) { pr_err("Problem with revocation key (%ld)\n", PTR_ERR(key)); return PTR_ERR(key); + } else { + pr_notice("Revoked X.509 cert '%s'\n", + key_ref_to_ptr(key)->description); } return 0; --- linux-gcp-6.2.0.orig/crypto/aegis128-neon-inner.c +++ linux-gcp-6.2.0/crypto/aegis128-neon-inner.c @@ -147,8 +147,8 @@ kiv, vld1q_u8(const1), vld1q_u8(const0), - k ^ vld1q_u8(const0), - k ^ vld1q_u8(const1), + (uint8x16_t) (k ^ vld1q_u8(const0)), + (uint8x16_t) (k ^ vld1q_u8(const1)), }}; int i; --- linux-gcp-6.2.0.orig/crypto/asymmetric_keys/pkcs7_verify.c +++ linux-gcp-6.2.0/crypto/asymmetric_keys/pkcs7_verify.c @@ -79,16 +79,16 @@ } if (sinfo->msgdigest_len != sig->digest_size) { - pr_debug("Sig %u: Invalid digest size (%u)\n", - sinfo->index, sinfo->msgdigest_len); + pr_warn("Sig %u: Invalid digest size (%u)\n", + sinfo->index, sinfo->msgdigest_len); ret = -EBADMSG; goto error; } if (memcmp(sig->digest, sinfo->msgdigest, sinfo->msgdigest_len) != 0) { - pr_debug("Sig %u: Message digest doesn't match\n", - sinfo->index); + pr_warn("Sig %u: Message digest doesn't match\n", + sinfo->index); ret = -EKEYREJECTED; goto error; } @@ -478,7 +478,7 @@ const void *data, size_t datalen) { if (pkcs7->data) { - pr_debug("Data already supplied\n"); + pr_warn("Data already supplied\n"); return -EINVAL; } pkcs7->data = data; --- linux-gcp-6.2.0.orig/crypto/asymmetric_keys/public_key.c +++ linux-gcp-6.2.0/crypto/asymmetric_keys/public_key.c @@ -186,8 +186,28 @@ len = crypto_akcipher_maxsize(tfm); info->key_size = len * 8; - info->max_data_size = len; - info->max_sig_size = len; + + if (strncmp(pkey->pkey_algo, "ecdsa", 5) == 0) { + /* + * ECDSA key sizes are much smaller than RSA, and thus could + * operate on (hashed) inputs that are larger than key size. + * For example SHA384-hashed input used with secp256r1 + * based keys. Set max_data_size to be at least as large as + * the largest supported hash size (SHA512) + */ + info->max_data_size = 64; + + /* + * Verify takes ECDSA-Sig (described in RFC 5480) as input, + * which is actually 2 'key_size'-bit integers encoded in + * ASN.1. Account for the ASN.1 encoding overhead here. + */ + info->max_sig_size = 2 * (len + 3) + 2; + } else { + info->max_data_size = len; + info->max_sig_size = len; + } + info->max_enc_size = len; info->max_dec_size = len; info->supported_ops = (KEYCTL_SUPPORTS_ENCRYPT | --- linux-gcp-6.2.0.orig/crypto/asymmetric_keys/verify_pefile.c +++ linux-gcp-6.2.0/crypto/asymmetric_keys/verify_pefile.c @@ -74,7 +74,7 @@ break; default: - pr_debug("Unknown PEOPT magic = %04hx\n", pe32->magic); + pr_warn("Unknown PEOPT magic = %04hx\n", pe32->magic); return -ELIBBAD; } @@ -95,7 +95,7 @@ ctx->certs_size = ddir->certs.size; if (!ddir->certs.virtual_address || !ddir->certs.size) { - pr_debug("Unsigned PE binary\n"); + pr_warn("Unsigned PE binary\n"); return -ENODATA; } @@ -127,7 +127,7 @@ unsigned len; if (ctx->sig_len < sizeof(wrapper)) { - pr_debug("Signature wrapper too short\n"); + pr_warn("Signature wrapper too short\n"); return -ELIBBAD; } @@ -135,19 +135,23 @@ pr_debug("sig wrapper = { %x, %x, %x }\n", wrapper.length, wrapper.revision, wrapper.cert_type); - /* Both pesign and sbsign round up the length of certificate table - * (in optional header data directories) to 8 byte alignment. + /* sbsign rounds up the length of certificate table (in optional + * header data directories) to 8 byte alignment. However, the PE + * specification states that while entries are 8-byte aligned, this is + * not included in their length, and as a result, pesign has not + * rounded up since 0.110. */ - if (round_up(wrapper.length, 8) != ctx->sig_len) { - pr_debug("Signature wrapper len wrong\n"); + if (wrapper.length > ctx->sig_len) { + pr_warn("Signature wrapper bigger than sig len (%x > %x)\n", + ctx->sig_len, wrapper.length); return -ELIBBAD; } if (wrapper.revision != WIN_CERT_REVISION_2_0) { - pr_debug("Signature is not revision 2.0\n"); + pr_warn("Signature is not revision 2.0\n"); return -ENOTSUPP; } if (wrapper.cert_type != WIN_CERT_TYPE_PKCS_SIGNED_DATA) { - pr_debug("Signature certificate type is not PKCS\n"); + pr_warn("Signature certificate type is not PKCS\n"); return -ENOTSUPP; } @@ -160,7 +164,7 @@ ctx->sig_offset += sizeof(wrapper); ctx->sig_len -= sizeof(wrapper); if (ctx->sig_len < 4) { - pr_debug("Signature data missing\n"); + pr_warn("Signature data missing\n"); return -EKEYREJECTED; } @@ -194,7 +198,7 @@ return 0; } not_pkcs7: - pr_debug("Signature data not PKCS#7\n"); + pr_warn("Signature data not PKCS#7\n"); return -ELIBBAD; } @@ -337,8 +341,8 @@ digest_size = crypto_shash_digestsize(tfm); if (digest_size != ctx->digest_len) { - pr_debug("Digest size mismatch (%zx != %x)\n", - digest_size, ctx->digest_len); + pr_warn("Digest size mismatch (%zx != %x)\n", + digest_size, ctx->digest_len); ret = -EBADMSG; goto error_no_desc; } @@ -369,7 +373,7 @@ * PKCS#7 certificate. */ if (memcmp(digest, ctx->digest, ctx->digest_len) != 0) { - pr_debug("Digest mismatch\n"); + pr_warn("Digest mismatch\n"); ret = -EKEYREJECTED; } else { pr_debug("The digests match!\n"); --- linux-gcp-6.2.0.orig/crypto/asymmetric_keys/x509_loader.c +++ linux-gcp-6.2.0/crypto/asymmetric_keys/x509_loader.c @@ -41,6 +41,7 @@ if (IS_ERR(key)) { pr_err("Problem loading in-kernel X.509 certificate (%ld)\n", PTR_ERR(key)); + WARN_ON_ONCE(1); } else { pr_notice("Loaded X.509 cert '%s'\n", key_ref_to_ptr(key)->description); --- linux-gcp-6.2.0.orig/crypto/essiv.c +++ linux-gcp-6.2.0/crypto/essiv.c @@ -171,7 +171,12 @@ struct aead_request *req = areq->data; struct essiv_aead_request_ctx *rctx = aead_request_ctx(req); + if (err == -EINPROGRESS) + goto out; + kfree(rctx->assoc); + +out: aead_request_complete(req, err); } @@ -247,7 +252,7 @@ err = enc ? crypto_aead_encrypt(subreq) : crypto_aead_decrypt(subreq); - if (rctx->assoc && err != -EINPROGRESS) + if (rctx->assoc && err != -EINPROGRESS && err != -EBUSY) kfree(rctx->assoc); return err; } --- linux-gcp-6.2.0.orig/crypto/rsa-pkcs1pad.c +++ linux-gcp-6.2.0/crypto/rsa-pkcs1pad.c @@ -214,16 +214,14 @@ struct crypto_async_request *child_async_req, int err) { struct akcipher_request *req = child_async_req->data; - struct crypto_async_request async_req; if (err == -EINPROGRESS) - return; + goto out; - async_req.data = req->base.data; - async_req.tfm = crypto_akcipher_tfm(crypto_akcipher_reqtfm(req)); - async_req.flags = child_async_req->flags; - req->base.complete(&async_req, - pkcs1pad_encrypt_sign_complete(req, err)); + err = pkcs1pad_encrypt_sign_complete(req, err); + +out: + akcipher_request_complete(req, err); } static int pkcs1pad_encrypt(struct akcipher_request *req) @@ -332,15 +330,14 @@ struct crypto_async_request *child_async_req, int err) { struct akcipher_request *req = child_async_req->data; - struct crypto_async_request async_req; if (err == -EINPROGRESS) - return; + goto out; + + err = pkcs1pad_decrypt_complete(req, err); - async_req.data = req->base.data; - async_req.tfm = crypto_akcipher_tfm(crypto_akcipher_reqtfm(req)); - async_req.flags = child_async_req->flags; - req->base.complete(&async_req, pkcs1pad_decrypt_complete(req, err)); +out: + akcipher_request_complete(req, err); } static int pkcs1pad_decrypt(struct akcipher_request *req) @@ -513,15 +510,14 @@ struct crypto_async_request *child_async_req, int err) { struct akcipher_request *req = child_async_req->data; - struct crypto_async_request async_req; if (err == -EINPROGRESS) - return; + goto out; + + err = pkcs1pad_verify_complete(req, err); - async_req.data = req->base.data; - async_req.tfm = crypto_akcipher_tfm(crypto_akcipher_reqtfm(req)); - async_req.flags = child_async_req->flags; - req->base.complete(&async_req, pkcs1pad_verify_complete(req, err)); +out: + akcipher_request_complete(req, err); } /* --- linux-gcp-6.2.0.orig/crypto/seqiv.c +++ linux-gcp-6.2.0/crypto/seqiv.c @@ -23,7 +23,7 @@ struct aead_request *subreq = aead_request_ctx(req); struct crypto_aead *geniv; - if (err == -EINPROGRESS) + if (err == -EINPROGRESS || err == -EBUSY) return; if (err) --- linux-gcp-6.2.0.orig/crypto/xts.c +++ linux-gcp-6.2.0/crypto/xts.c @@ -203,12 +203,12 @@ if (!err) { struct xts_request_ctx *rctx = skcipher_request_ctx(req); - rctx->subreq.base.flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP; + rctx->subreq.base.flags &= CRYPTO_TFM_REQ_MAY_BACKLOG; err = xts_xor_tweak_post(req, true); if (!err && unlikely(req->cryptlen % XTS_BLOCK_SIZE)) { err = xts_cts_final(req, crypto_skcipher_encrypt); - if (err == -EINPROGRESS) + if (err == -EINPROGRESS || err == -EBUSY) return; } } @@ -223,12 +223,12 @@ if (!err) { struct xts_request_ctx *rctx = skcipher_request_ctx(req); - rctx->subreq.base.flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP; + rctx->subreq.base.flags &= CRYPTO_TFM_REQ_MAY_BACKLOG; err = xts_xor_tweak_post(req, false); if (!err && unlikely(req->cryptlen % XTS_BLOCK_SIZE)) { err = xts_cts_final(req, crypto_skcipher_decrypt); - if (err == -EINPROGRESS) + if (err == -EINPROGRESS || err == -EBUSY) return; } } --- linux-gcp-6.2.0.orig/debian.gcp/abi/abiname +++ linux-gcp-6.2.0/debian.gcp/abi/abiname @@ -0,0 +1 @@ +1006 --- linux-gcp-6.2.0.orig/debian.gcp/abi/amd64/gcp +++ linux-gcp-6.2.0/debian.gcp/abi/amd64/gcp @@ -0,0 +1,27545 @@ +ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux +BRCMFMAC EXPORT_SYMBOL_GPL 0x159487e6 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0x47cd20a3 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x46bcb508 counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x498b4a06 devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x71c0b03c counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x94133361 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xabb9f6fa counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xc02259d4 counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xd2cf1769 counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xefbedb78 counter_put drivers/counter/counter +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xac5684b8 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xb639225e crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd6090548 crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x0b236619 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0c158a18 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0c3b197a is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x14687bdd devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x16fe3323 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x17a23c1a cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1bc6a36a find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1c0722fa cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x207c6d51 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x21442f57 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x289ab133 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2bf5d093 is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3244e835 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3383b95e to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x347b419c cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x391f6f7c cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3d9ae51d devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x40a5a16f read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x444b2e45 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x45f15894 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4692ccf7 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x471d2866 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x47257fdf to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4b091425 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x589dceed to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x60c6e5fe cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x613007d8 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x66f8af53 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6af22eb8 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6d2c3ad4 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7611617b cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x798f7852 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7db0f985 cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux +CXL EXPORT_SYMBOL_GPL 0x8126e737 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux +CXL EXPORT_SYMBOL_GPL 0x86ec4423 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x87b45679 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8be38474 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x92598018 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x940dcf9d to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9f42485e cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa370e7cd cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa37293c6 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6b40907 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6ffe09e devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xac9e99c6 to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xad6bd899 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xae491190 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb21204bb cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb83bfc2f is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc5746cd9 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd273799a clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd7f1a0d9 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdeb885c2 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe9898413 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xebc0d3ca devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf031ebee is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf1f197f9 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf62dc263 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf65840df is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf8410cf1 cxl_dev_state_identify drivers/cxl/core/cxl_core +DEVMEM EXPORT_SYMBOL_GPL 0x3c804b25 cpu_cache_invalidate_memregion vmlinux +DEVMEM EXPORT_SYMBOL_GPL 0xd6551b9c cpu_cache_has_invalidate_memregion vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0062d3b2 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x04789723 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0c0e672c dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2132397c dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x259d48ee dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x61be5d03 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6408c2d6 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x64184bd3 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6ebc8a06 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x77c5a699 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x81e2149f dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8f8ace43 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9cb29caf dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa941ca9b dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb40f4564 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xbecd5d2f dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd0d1b161 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xde1f3d3b dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdfad52f9 dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xea78a079 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf6bfc788 dma_buf_move_notify vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x2303b915 efivar_lock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x5a3c9dbb efivar_get_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xa336852c efivar_get_next_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xc961bff7 efivar_unlock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xefc77711 efivar_set_variable_locked vmlinux +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 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 0x138659e8 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x1d9147a8 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x32d5eea1 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x46daedae crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x4d5d1c07 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x7b1d5754 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/sha3_generic 0x0e56b4fa crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x540578d2 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x58f61abb crypto_sha3_update +EXPORT_SYMBOL crypto/sm2_generic 0x0fe0950e 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 0x103735ba acpi_video_report_nolcd +EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight +EXPORT_SYMBOL drivers/acpi/video 0x7917e851 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0x8e268f5b acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0xab17113b acpi_video_backlight_use_native +EXPORT_SYMBOL drivers/acpi/video 0xd1aaf8d4 acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0xc5d46796 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x40937d8c bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xba7edce0 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 0x01b28e30 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x1795287e pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x28af3f4f pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x37aefc65 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x405e5869 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x46c997aa pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x5cc4f1b9 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x943deb0a pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x9e0dfe41 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb7392d28 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xca53d6b0 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xe4f7e031 pi_init +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x673a5c6d btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x17777c12 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x11a2f469 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 0x108f5480 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 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 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd5902c55 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0xf43c5a2d ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf64f53cb 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 0x08fe6b32 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x337b2914 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x723a603b st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7c9529e0 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x34367ac6 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x920d25ff xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xbc709b2c xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x28e9e338 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x70b88189 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe73c19be xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x03bcc3cf atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x399397cd atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6e53921c atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_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/ccp/ccp 0x47d3c97f psp_check_tee_status +EXPORT_SYMBOL drivers/crypto/ccp/ccp 0xaa04056c psp_tee_process_cmd +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1418105f fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1fe71eb2 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2576a231 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2fbcd5ef fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x315e7ebb fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x37785eef fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ae3df87 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f02cf75 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f57b7ab fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x41d13b1d fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x52344a20 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x738dfd30 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ee92296 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3f14b30 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa839616b fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb9531fdf fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb9621a90 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcd881b97 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd40c08a4 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc13d5d4 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdf439a20 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xea018257 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1809138 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf7fdab5e fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf87e3014 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8947942 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/fpga/dfl 0x69f866cf __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xdfec09dd dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x2cb8e4ba sysconfig_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0061e1df drm_dp_cec_register_connector +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 0x02ce356e drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06145f56 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x061a0004 drm_dp_mst_atomic_enable_dsc +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 0x06e6e40f drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x080b5331 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b1c2eea drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d495e6b drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0e9093f2 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f1e4d24 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12c293db drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13dca9a3 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1465cc6a drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14df7017 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x159b2215 drm_dp_vsc_sdp_log +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 0x18321ef1 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x19bdcf68 drm_dp_downstream_debug +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 0x1cd7e10b drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e41aa3f drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e75d298 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2540a487 drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x255f60c2 drm_dp_128b132b_read_aux_rd_interval +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 0x2960754a drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29df8819 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29ef9b19 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e0c4958 drm_atomic_get_mst_topology_state +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 0x312b10f9 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3176b74d drm_dp_send_query_stream_enc_status +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 0x414dd30a drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x421366b2 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42aa2b25 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42d37fd7 drm_dp_mst_topology_mgr_resume +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 0x48f164a2 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4b18990d drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4bd187b0 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e30fa98 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4fa8f9f8 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x50824d47 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x51601726 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x519e14a8 drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x52ee3ee1 drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x53169c5b drm_dp_read_clock_recovery_delay +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 0x559574f8 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x57841f75 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5811f05b drm_dp_add_payload_part1 +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 0x5a86f411 drm_dp_phy_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5f373f89 drm_dp_read_lttpr_phy_caps +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 0x645d500d drm_dp_lttpr_link_train_channel_eq_delay +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 0x669058f6 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x67f86ec4 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x69d9428b drm_dp_aux_register +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 0x6b02884d drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b1cbf4f drm_dp_pcon_convert_rgb_to_ycbcr +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 0x6da17ab1 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f985862 drm_dp_mst_connector_late_register +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 0x715d0375 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x71df31b1 drm_dp_atomic_release_time_slots +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 0x738aa193 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74f701f7 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76051227 drm_panel_dp_aux_backlight +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 0x7d1712fc drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7e848ade drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7f5ed691 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x807abf52 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x846c0e0d drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86332797 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a20a428 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a8e4e8d drm_dp_mst_dsc_aux_for_port +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 0x911aa020 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x91994f09 drm_lspcon_set_mode +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 0x9554f82e drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x983d66fa drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x987e7057 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x98e65f60 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9b00179d drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9b6e4982 drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9bb22c98 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9df50ec8 drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f87bae8 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa204d920 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa389822d drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5d4886e drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa7cad06d drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xadc74941 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaecae7b8 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb604bea7 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb630e624 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbcb737b0 drm_scdc_read +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 0xc2d10883 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc4cb6f8d drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc4fb0764 drm_dp_link_train_channel_eq_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 0xc63c3e02 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 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc98b7452 drm_dp_mst_atomic_wait_for_dependencies +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 0xcf0117f2 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd103ff20 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd146254a drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd32e3f64 drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5495832 drm_dp_read_lttpr_common_caps +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 0xdcf14303 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdd66bafd drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdf12f3ac drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe1dd9272 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 0xe78b00d3 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7f3cfe6 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe879b070 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec3ffac5 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec65c7d6 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf48cd6c1 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf48d71cb drm_dp_mst_dump_topology +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 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 0xff2a4e0c drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff340146 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02eed979 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03242307 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e04708 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04b15e86 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04dc2483 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0502f6a6 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x055b0a81 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0615c184 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c194f2 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06fc5305 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08a808c6 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09801965 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0992dd11 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a4b71d1 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac41736 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac7c084 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d099486 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d445924 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only +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 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f8495e5 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10773259 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x112b1b6f drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x115399ac drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x130af675 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13440af5 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e9136b drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15ad06e4 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x167ae902 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ba0a9d drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16f5bfcd drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x176bf4bf drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c6338c drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17d224b2 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f25410 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f490b6 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19074c2c drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e10635 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19f449a5 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba67369 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1df3c95d drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e03c655 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec537c7 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ee46dd1 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23440592 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2354ec93 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23945d51 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23bedba1 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x241beefc drm_atomic_add_affected_planes +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 0x24d91545 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25d76ba3 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2606fc2d drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26854efa drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2720a52e drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2787c745 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d46a2f drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27db5876 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x282b68b6 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2843785c drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x284d4fea drm_edid_override_connector_update +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 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b5985e9 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b7692fc drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b8782b4 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bdab33d drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c33b9ae drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c3668fa drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dd4511d drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e842396 drm_panel_disable +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 0x2f53160d drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fdd22a6 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x303298f8 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31966a45 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3202b0ef drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32d70e4e drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x331327e5 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x331ea3cf drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34232ae2 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x349b411b drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3503c849 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3583ad5a drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e9ac87 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3785cfc5 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37e78927 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3821d17c drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e96ed7 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x390661e4 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x390fec2a drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3951d60e __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x395f4fa0 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a585c4a __drmm_encoder_alloc +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 0x3b2773cf __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba87203 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c7f2d52 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d01eaf1 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d17148e __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e9d17bf drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f98115e drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc08970 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x408d4582 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40cfea1f drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a7bd6a drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41ac3589 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42fafbd5 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4745c6b1 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47aa3275 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47b616d8 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48456f55 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48660385 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49063ff5 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4931ed9a drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49d5190c drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a686d7b drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a6dcef2 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a89cb0f drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a9dcaea drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b30c3de devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b58f90f drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bcb58b6 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf18dd9 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c0c45d7 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c466ae0 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc1f2c9 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3e9f8c drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d94ae98 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f923596 drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fca2d72 drm_privacy_screen_register_notifier +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 0x54ed3dfe drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55500182 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x558d931a devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55ce8294 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55e9665c drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x567cc36f drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f0ed3b drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x571a7eb8 drm_privacy_screen_call_notifier_chain +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 0x58bc26a4 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f4b1d2 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x596690dd drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a83d575 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ac29168 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b47c9c7 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4b42e9 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4ffd5c drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dea7634 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ea35fc3 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f013a71 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x602fbf14 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6086edb5 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a94737 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61f64277 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62a24397 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62db1a70 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x632e4985 drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63656727 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64600ccf drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65192729 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65e16537 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65eb5f7e drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ed22eb drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6995c7f5 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a0cf665 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a984e91 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bf1e9eb drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca0ac9e drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da03a71 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ddc8e12 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df0fca2 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df84eb8 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e342624 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e55bc8f __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea13e50 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70611cb3 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70fb2891 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71548b35 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x723a50e5 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b4495e drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b8d9a5 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74969c92 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7497f993 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75068d31 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x770fa057 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7837361a drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x784ce70e drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78936e9f drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79326a83 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a5e92da drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a794c82 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a801ab0 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a90554c drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b70fdcd drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c5b7cab drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c63658c drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d2f7118 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ef7e73f drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ff3df97 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x812a9a18 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8173d388 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82548c95 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x825f38cd drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82aba3a6 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x835583ac drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83a330e4 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x840b8f43 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842a1ede drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842e1b5f __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86c5f561 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x890a2706 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x890d26d5 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x893e3081 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8960943a drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ab79036 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad63124 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b728363 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b91f1d3 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2d0d03 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e1d1002 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f06a682 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f67f744 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ffb85a1 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9028ec18 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b9fae7 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e5f969 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x913dba61 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x913e3371 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92c0536f drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9329869a drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94dc43f5 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9550b3ec drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a09c84 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a12402 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9811fec8 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99f235df drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac4cfc5 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aeaf827 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b4d864d drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8ddc09 drm_wait_one_vblank +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 0x9beeb2ba drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d3b8220 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eb609e9 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f33063a drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f4b0b83 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa01b3bb2 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa124c44f drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1499ae9 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1a0baf9 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa26e886b drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa34381ae drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa53720ca drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5adf30c drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa70d8b8b drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa719f1b5 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7dc77a5 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa987a0e6 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9b8cfc1 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa40cb56 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaa75623 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaafea55b drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xace93bf6 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf10c5c drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad707cfa drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee0e257 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1358f4 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf78157e drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0266f74 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06817f7 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb086fb7b drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1101d4c drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb224114a drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2ff7c88 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb302a051 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb36fe6df drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb433935c drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4a29e9f drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4b2cd43 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb537f135 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb729eeb8 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb733da7f drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb77a13d4 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb79bbd4a drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb94e2093 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9867819 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a04d01 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3284cb drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc981ba drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbccfe9ba drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd495526 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdaafbb1 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe345c49 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbef69eaa drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf44acd0 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a40835 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0cd9683 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1416733 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1c9ca12 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3703b4d drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4993b6a drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6d1d185 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b14629 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8cd065 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca918f79 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa47cb1 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb0dad40 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb6cc25c drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc957a07 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc4865f drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdde9372 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcded5860 drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf5db347 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff0198c drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd17a15cb drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2a59a7a drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3394503 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd342b7a9 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3ceb111 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f3078d drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd49b4365 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd49e0ca6 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4ae3960 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd65f9d49 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd722b951 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7bd319f drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd848b2d1 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdadccd0f drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1ed242 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb76d768 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb7fd1f2 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc5e3034 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd5cfc2b drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdde2a184 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4b28f3 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe230ee13 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2cbb2b4 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3a46c64 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3b69860 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3c8cffb drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3fab68d drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4654fd3 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4c77dca drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe62277a3 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7a67690 drm_dev_unplug +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 0xea546fca drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeafe4119 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb147737 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb456170 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb9f31cc drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeced99cf drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed946e7a drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedaffa04 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1c8189 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef7f5724 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0045af5 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0d6e2ca drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e56f93 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1551f72 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1e03bb4 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1e8bf19 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f89a6c drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4083784 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf43b0bd9 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4a9a03a drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c86345 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf72c318d drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf76b79b3 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf90d0a55 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a8e6d3 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa7383f1 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaf06832 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc6823e drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5cec6f drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc6724cc drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf6c203 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd5bdbf8 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde6ce6f drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff31de89 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffbe9075 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfff9afaf drm_framebuffer_lookup +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_dma_helper 0xe1b363f9 drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xfe0e99de drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f8d030 drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02ff380a __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0347ce06 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04aae2e9 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04c482b0 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05425415 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0562253a drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x070b38b0 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x074e28d9 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x076b9445 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x076ba3fd drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x085fecab __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08e1275b drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a433567 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a94cfe4 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b034052 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e2719c9 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x119b5d58 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x129b28ce drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13ae911b drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1457dd34 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1580b272 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x158f0517 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15bb1eaf drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x187a5da1 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a06ab29 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ba4acdd drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cccb62c drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d5b5ace drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e50829f drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x216e12ce drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21ac594d drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22b6637f drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x234626c7 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x247b193e drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x289a8413 drm_fb_helper_cfb_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29271a7f drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x299178a9 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a0ba45a drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aec1343 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b45d026 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b70245d drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2eadc027 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fe0f66c drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31bb3cc6 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32aff8fe __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32cda7e0 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33f719eb drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34d3e8f5 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3648afa4 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36bde30b drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x381b2097 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38a1e928 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b3c1b6f drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c8b43a0 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d7bdf1a drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dd85fd0 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f2e0ba3 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f54dd66 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40031f88 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4187016a drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42254f51 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x427a7b5f drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42c92279 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x433e27fd drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x445dd511 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46e7d71d drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47a6a25f drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4821e251 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4884e2a4 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c5e63b7 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5125697f drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x513366df drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51b79b32 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x529a4518 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54948a51 drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57a4b114 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58cef254 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59390e51 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f5c9e29 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fed519f drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60ad8272 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61256f09 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x620cbc5f drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62a73706 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63e1f8d7 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64950913 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a7aec63 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b1f92f8 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c661934 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e9ec98a drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71e7d11c drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71eb968c devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7257ed3f drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75cf083d drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7673f69c drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77bf3d62 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77e556fc drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x780f4a21 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7974c5d7 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a586625 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7efc6acf drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f9f35b0 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810f0b47 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83d17faa drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x843f701f drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84a40f96 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87a03b0b drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8967717e drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e19abd drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b513069 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c1aee4a drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c1b8322 drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91c00200 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9340f97f drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93d49998 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94626567 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x960b5de7 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9709292b drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x993c1a7e drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a6b26f4 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c37ce17 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f0b128e drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa07f6b7f drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1bf0258 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2abae87 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6750af1 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa698e6f0 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa82fc5ec drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa877e90b drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa88f32f7 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8dce9e8 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa92a41cd drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa95715af drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaafcd29 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafa15847 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2ed03b4 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb30a9ef4 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3184ca3 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb39e632d drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb66523c6 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb81cb2b0 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9000821 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd34ad0b __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd90b535 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc33e0ca6 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4f58836 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc53b36fb drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc911b9bc drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca121c2b drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce150fdf drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce1a34a7 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce8051f0 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd02c2983 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd05fffe4 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1bfe31e __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1d9f72a drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3242be0 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd477f815 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd650f54b drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7d69575 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8bda58c drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd918a491 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd919a27d drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda5f5afd drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb4f599f drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc08a846 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc0ef654 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc16ed8f drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcae2b1b drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd75d298 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd7e3c94 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1cc482c drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe30210fb drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe32da0bf drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3681bb2 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe641be2d drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6472343 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6d5655d drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeabbb4a4 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb892ad7 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf02fce3a drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf142e17a drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4b2450d drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf63ae96d drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf718f32d __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7fcb9de drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf87f7651 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a5782a drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa9b171d drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd2781c4 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe420730 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe798be5 drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff01bbac drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff56d10d drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2ea7d2eb mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3480904b mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x34f0f702 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x39d3a30f mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3f8d4402 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x66934e6b mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x78475967 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7b8e1379 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7c3b7c7d mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x80a16013 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x89ceeaf3 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9b848761 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa032f272 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbc5013ce mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdf7fb09f mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe636a687 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xec3149d6 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfba8275f mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1fe87031 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x52f77567 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x5af5afe4 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x763db2a3 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa53a430b drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc2bc0fd9 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc397d239 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcab1a356 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd4495966 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdfb51867 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x02c2f5ce drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x09eb8707 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x82b6dcbb drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xadfab70e drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf50f318f drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0087e94a drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1d949052 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x25c35792 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x265e6e6c drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2deab7ec drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2fbff600 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x57999921 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7e5fb1a2 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x84fe2630 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x87f4bb77 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbc8021d3 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbf6cc5ce drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbf92c71c drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdaa3b510 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe5ccc14b drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf7faddb1 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0cd04384 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0d63c48a drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0e638abc drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x30f2a3d8 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3ba57af6 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3d7a755c drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4769827b drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x47a714e3 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x488004a7 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x56394319 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x57551c1d drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x742cb66d drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x79a53ffa drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7b2d26ce drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8913c323 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8e40c079 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbbd340f2 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbbe983f1 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbf7dfec1 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc18afcab drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xce9aa24d drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xec599b24 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf7f06982 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf9802ffb drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00b4f3a4 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07124035 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09326b22 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09df3296 ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a2ee08c ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a60d3f7 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e1ecf9f ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x122a3260 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b1978c1 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c00f906 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e9ca972 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1efb00fd ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20f5b60f ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22303260 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cc41258 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2db0219e ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e1d1762 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33e544b6 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35cfacb2 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ae96c55 ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x412a8192 ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4586b49d ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d7790e4 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f79fdb3 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x539b512a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5507f664 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56164216 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x586fb124 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ccdf640 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a847134 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6dd4b2e5 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x725b4907 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d6c7563 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x810f6789 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82153522 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8547df32 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8631d846 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86a624ec ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90a02beb ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x935dadf2 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x999c4253 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a28dcaa ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c581a13 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d481485 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7dd564b ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae8cbf43 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd7346c4 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0a5f3b8 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2be518e ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7477705 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca04c259 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca92fe86 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcac49c89 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce455cca ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1b09d08 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd430f37f ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5e8bb55 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd60bd421 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb4b0f26 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc6a7236 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5624d91 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9178b4c ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeadee0e7 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf491c21a ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7baa5ff ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb9c35d7 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/hid/hid 0xe2e6bd70 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x02e24b68 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x065e671e ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0ec873a3 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2199e993 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x23adc0a8 ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3d6c900d ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x436dcf79 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4f4199d2 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x52b5fd76 ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x550f9a27 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x650cffa8 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x658162c9 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6b396d6b ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7bf25c51 ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7e249602 ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x802a3ab4 ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x820bcf47 ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x87a5dfaa ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa1e2f697 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa3e888d6 ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa8374099 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa83769d5 ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa8853a83 ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa911740c ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa930300e ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xadf91ae5 ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb0916eff ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbdaeab32 ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc1e7db5e ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc2f0e00f ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc8ca38ed ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcafe5e3f ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd6cd06e5 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd838b9f0 ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe139b422 ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe1d820a1 ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe52dc5d2 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe923e8f1 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xee850d04 ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf74fccd4 ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf90ecdaa ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfdc044f4 ishtp_trace_callback +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4517796a vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4ef895f6 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xbeddc769 vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x38b707bd adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x083cf7e0 ltc2947_pm_ops +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 0xd9a4c619 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6644ca39 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7607d795 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfc7dee54 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x2924f954 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb6148ac7 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xe05978ef 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 0x44cc48cd iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xd8bc7386 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbe1174f2 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf2cfd921 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xb31ed972 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x04f0c7af iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x05bf4be3 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x17a3f60d iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x26159298 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2e92be83 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x7240b812 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x7d7180d1 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x8189875e iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x8fa9cda2 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x9a1bcefd iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x9f458d1c iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xa32862cc iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xa4276948 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xad9d0d0c __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb8c43649 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xbb24c414 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xbfb4a736 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xc686f2de iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xc83b13bd iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe0bbbd2d iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xed2c9553 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xf1877501 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xbe894831 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x5b0c735f iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x65700e5b iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x79e78138 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xcbc41300 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x31985d24 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb52dbd7f iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc3878c76 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc5b3f78b iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x0603b2f5 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xe7c61120 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x479c8263 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0f77354c ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d9d8d1a ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3b25b72e ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3c0c5bf5 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x49444cc2 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5589e1ef ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x64a01d0f ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x71f77f0f ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7922a5ad ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb6726cb6 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd16977af ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xea367c8a ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xed6a6489 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf8429cfa ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfc8eeb0b ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00484f50 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00954210 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x012f0a30 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0417da31 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04f3d823 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x057b512b rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07769256 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0911c88d ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0945d7b6 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x098fab56 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ba0eb5a rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bc46e72 ib_cq_pool_put +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 0x0d44d7b1 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ded349a rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f234da2 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f2ab5b5 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11f128f5 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12862cfa ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12888ff0 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12ebdb8b ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15e310d1 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16ab9fec ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16faf9ae rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1770b07e rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17b161f8 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17c9447a ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19ffeae0 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a21fd9e ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a582a93 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a89244c rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b53d272 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c014c2c ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cb32369 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e07762b rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f14c3e0 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22030c94 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22180fdf ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x244778ea ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26a1b387 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27fd3b03 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2993d150 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c0555df rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cce6b58 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2da7635d rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x314eb22e rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31617ed8 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x316b49f6 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x338e15ac ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36213c2a ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36dbc04a rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x397b90a9 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ac5cfa8 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b677962 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d87bda9 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f0b52a8 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41382f9f rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c7961 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4381c627 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4523a038 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x458bdfde ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x465fb40d _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a4dd951 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a79868c ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b97948a ib_detach_mcast +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 0x504cb7dd ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50e7e050 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5336513e rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53a2f8a1 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5476bcf7 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x547de422 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54b7348b ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x553d6297 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55c2ae1c rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56efd234 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5771abf9 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5816d351 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5830ee3e ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ba4bc86 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c0022a0 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x600764f7 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60c0ed88 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61532513 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x616be361 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62131167 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63698514 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63bf4bfc ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6646f4bc ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6877d398 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68f9cb17 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6984b16c rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e119fe7 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7230284f ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x734df5fd rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75029b6f ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76ea680f ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x780d294b ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dda2df5 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7de32976 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f1ed6c2 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fa49811 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80195e3d ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82128ddd ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x842e6050 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8573f2d4 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x872f5e9b rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8733b92f rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87862007 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88004fae ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88b17b04 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88d44483 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89b9a3a6 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a52d860 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c62dd40 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dd2a0f6 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91b6cce4 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91ca431f rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93949da8 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93eeda6c __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b11f35 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95bd759f rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96db6f9c ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97f877d4 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b66fce4 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9db9c790 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2142751 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3ca20f6 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5a59cea rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa74fb991 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa859a467 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa925a377 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa24ba2d ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac7fbfb8 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac92d6d4 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae34810a rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2d0982d rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5022be7 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5208b3b ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6bca129 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7be2d90 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaaab8cd ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb57ca07 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc68088f rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd539ce6 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdde31f1 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe9a3a0d ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0aee618 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4a2c811 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4c9fa02 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8cee3a6 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9636ab3 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaabc0f8 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcba11e58 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd03f4ae ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd90086e ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfe701ea ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd01c0df0 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd098faeb rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0d52e39 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1b806c1 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2ecb2ee rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd442dd15 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd46d7472 ib_find_gid +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 0xdaa19a8a rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaea4f3c ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc64f1b6 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde8b85a0 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe113a5de rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe333893d ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3eeaff7 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4008716 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4f41bd7 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe83bad6e rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8a7345e ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8caec16 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeba49db1 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeca5cfb1 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed98d3ce ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeec01c9b ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeee4a69d ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef571a24 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0fc7e51 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2b2e87f ib_sa_join_multicast +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 0xf95c9791 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa1b9a1c ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd352a8d rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfecc6617 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x012f46c4 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10043455 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x130266d2 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x14ccd34d ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26cd652d _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30ddf536 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3ba2ea4e flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47bab242 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4afe7351 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x51f5aa4c uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x532f073d uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56fc0ecf ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x622ededf ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x634390fa ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x67bbe923 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f268926 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x875618ba ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b63446c ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b8182d6 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9784c3fe _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x989f489c ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa23a406a ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa895fe3b ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xacc0c381 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb3f75b0b ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb81d83e2 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbcb4a53b flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc96ad50b uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc247285 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd0d1997d uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1127e83 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe1f83406 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe295cd16 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe7c4a114 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2af62d1 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfeae6c01 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xff88e1cd _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x118743e8 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x18328377 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x25a98cd4 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x27c50a96 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x37ccce9b iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3b791664 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7eafdad9 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc2567bdd iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x01589cb2 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07f3d4b9 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a045ae0 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1062da94 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11d3e595 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19e835ec rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19fb78a8 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d0550b8 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e4ef5d9 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f727f91 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x273eadad rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3717b66c rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a05f366 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a5c2262 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b9ffb26 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x415c26cd rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54aa8ead rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59553a96 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x783d3ae7 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84b08dc6 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d493fd3 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0d8b661 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa622c2c7 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb31aacbf rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcaf694f6 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc465543 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd162878c rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda57537d __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd96ebf7 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe53a8b17 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe7a314df rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb9e7bbe rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xef64d790 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf109047f rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2445cf5b rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2a9cec12 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x36ad808d rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3707fadd rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x44e55435 rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x491007c2 rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x49a8ed4e rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4cfa1245 rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x69207e9d rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6b042f41 rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x701d66ff rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x72fbba84 rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x741188ac rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x95eba87c rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9c60f40a rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa2083353 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xabca1d52 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc328b635 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc523313f rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc62cec0d rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc67a09d3 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc8202212 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd0bca349 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd0e76346 rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd1216849 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe13761b5 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf73a56fa rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf8920e82 rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf8cf7a41 rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x33cab4f4 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8ec6f01f rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb0174693 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb5162a82 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbd079286 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd914c20d rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe4751007 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x22253bc3 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 0x2883140e rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x35a96c38 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4a2d131d 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 0xe15357ef sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0b50f9b2 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa9c84e8e rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xacee4943 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc6fc6ee7 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xda442baa rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xeeae0f88 rtrs_srv_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0bffda97 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0fba6447 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x25c933b7 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2b727245 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x306b8e72 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x405ccddc gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x804a634f __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8c27fed6 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x96bb7534 gameport_unregister_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x21965e32 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9b8e5c72 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xcf28f56e iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x81005254 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x84c7c4f3 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x96325f49 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf36dcee1 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xbafd0181 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x78e74707 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x33631a6e sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x8c829ad4 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9d16f864 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa50c072a sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xdd685454 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x642f7565 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x683841eb ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x078f74c5 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x1fbdd38d amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x409cab09 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x468bd5f9 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xb7afa365 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xe53e841c amd_iommu_init_device +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0ece16ec attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x36a98146 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb3ed7f83 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdaee9d3e capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf4765d8a 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 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x09703290 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1c7ec879 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x780ba994 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xabdaa08f mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1883a238 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x36c82e05 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1064c731 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x157ae443 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2077586e 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 0x2b5c3ee8 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x52567087 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5728f4f3 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x62351c69 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e780843 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74fe4518 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c44a087 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c55a26f get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9247e3ca recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9443b11b mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x951b8aa9 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x97965cf5 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa475fec4 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6595dac bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbda17e6d mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc549440d mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc32acf5 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd34ffee0 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec5aefb9 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xece5c604 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x2e95452d 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 0xbbf470f6 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/dm-log 0x2c09d8a7 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x2dfd557d dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xa0d611b9 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xd53bd2b2 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5db25bb2 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x61d576d4 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9606b212 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb10f3580 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb4f2893e dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe31710f8 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0x185ed385 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xbe2211dc raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x095d719e flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x167d5324 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x17f79c47 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x22835762 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2432544f flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5302258f flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6446e11e flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7416b3e6 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x92765d9d flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9ed7f94f flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaa714c84 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc834a0c3 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd86e45b3 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1f2758bf cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x32f1202c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6feab45d cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8052140c cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd775c605 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x2b126e67 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x775b762d ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xad1a024c 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 0xc163f34e vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe28055ba vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x181544f7 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x75cc44d4 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x95fa38b2 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x98d93966 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc82af6f9 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdc3c63b0 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x52a9d5a3 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x125170e0 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e00ef40 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1fac7d06 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x27eb314a dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2852dee1 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f9445b1 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x38d999a4 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3cb93dda dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d66e718 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x500a1172 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x503291f0 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5eeb1709 dvb_ca_en50221_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 0x797f9415 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x81513f74 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x863df01c 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 0x9283c29c dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d534e43 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa66c6e3 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xafd437c3 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0815ac2 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3d936f3 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd40b745b dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe17328c8 dvb_ca_en50221_release +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 0xfee6811c dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xe6497947 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x2d972e9a atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0d840056 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x28161483 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x38757741 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x492b2bbe au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4d32958d au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x529159c2 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x68558ed7 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8be2d12e au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa5e3aaa3 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xc6dd608c au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x97bddcdf bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x6eff1f4c cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xcc3af082 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xcaf188e3 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x87680d67 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb585753b cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x146a2cb8 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x0075f458 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xdf3ab1b1 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xeba71238 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xf806aefa cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x26e1574e cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd9bf4100 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xf4057713 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x48d752a2 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xabe6ea27 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc590adf8 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd3e8e322 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd7c92363 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x133d9cfc dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x169b47b6 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3ea5888c dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x64addd23 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7136093c dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x79cd8e1d dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7ae9cee1 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7d37c9f1 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x90059998 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x95d04487 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x968fd470 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae83ba28 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc69e99fa dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca2a31cb dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfd654f95 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xb9e84726 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4f7345b1 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6700ee42 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb477abbb dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb570e8bc dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbb8f932e dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc99a3d8e dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x54c67a05 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6e28b8af dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb8a47520 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe1d71ec7 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x5e3c21bf dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x00a26ef2 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2b2f99ef dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4a59c04a dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6e55f782 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6e58eb5d dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7560e270 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7ed81b22 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x80f2a640 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x924121f5 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9ece97b3 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb1f4bd4d dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xec331a9d dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xee7a99d9 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf1bbe971 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x19bb4edc dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x234972e9 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x27674aa1 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa4435661 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe7a59fe0 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xd8b2036e drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x061b3222 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x81693824 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x65011c01 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x60616e0b dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x4c45e9bd dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x66383fb6 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xe78bcdd5 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x2daa0914 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x28398faa helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xc8cd5d9a helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x63ca8e0f horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xe9dc524b isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x11f706ae isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x65aee3a9 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xb75be286 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x8154a60a ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x3b38d88e l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xda79e52b lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x54f38f64 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x1e04ca40 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x959610f0 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x24579436 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x39bea4ca lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x1b3a23be lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x55acb9a1 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x443c0d76 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xfd9139a9 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xbb937da0 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x11985de4 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf2780275 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xe7f89af6 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x3a2aad85 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xa21f8c63 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xff555970 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x83b8b2b4 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x9d06107f nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x027d9814 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x6b8ad8a9 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x939d1823 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xafa8ca35 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xae3fcb3e s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x6d0a9d9c s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8828be42 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x203d87a1 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x86011c3d s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xcd77ad52 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x0a41fda2 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x9fbdca57 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xadddd1e1 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x35884c26 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x0da0dc4b stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x5eb0957a stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xd14265c2 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x779ee441 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa3225103 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd0560266 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x12a951bd stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xbf52a21d stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x71ea6c2f stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x28f202ae stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x730adf92 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xe0d2af75 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x7a314c0f tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x284a3100 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xdc29e75a tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x6eddd78b tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x463fecfe tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x718ec79d tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x79e03fbe tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe5994b77 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x73b3a208 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x0be72484 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x29d9ae8a ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xeac47201 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x24e2cb33 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x6e804d0c zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xeeba8e16 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xd88b7e6a zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x5be4b707 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0efb8f5e flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x50d4ab87 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x67b64a04 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9e099fb4 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xad1a76a3 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc1a7d773 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf9f8bda9 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0bced880 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x67cb6be6 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9ae63c7c bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xff1818d0 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x81bbbb9d bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa0412b15 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xc852f5fd bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3172ebf0 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3d56cd47 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x636a0c31 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6bd6e42e dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x71e83eab dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9d6cecb0 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb26a3185 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf083b2a0 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfa5b48db dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x6c78e93b dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x071186f2 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x392afd14 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4bea4db9 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8c2a489f cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9b0cc463 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 0x26ca43c4 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3eb06ac5 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x457be050 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x479ae6e9 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x82d19ca1 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xaea0c13e cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xca13253e cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x37f51760 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe1d0d49c vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6f3f778e cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7315ecda cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x78dd4242 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf672b78f cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x249f20fe cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3df1a68e cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x50dcb3ec cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5db8867f cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xde7f31a8 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe35e34b6 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xedb92671 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x072a1a16 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0eb6216a cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x151e28f4 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x26cb44bf cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2790131e cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2ab32eab cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2ad029bf cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x42f96771 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x53fd337b cx88_dsp_detect_stereo_sap +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 0x7d4f5cc2 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x888062e7 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8913204f cx88_risc_databuffer +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 0xcb324ae0 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe2a280e8 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeafcb7d1 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeb195abe cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeba1bc2d cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf3ceed77 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf5c39089 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfbdc0f51 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x39cced2f ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x28f22077 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x331d8479 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3bea1a5d ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4861b49e ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4a761fcc ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x589af7b1 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5b1bf73b ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x60000f98 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x86f59c6f ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x88b2c06d ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa575dee5 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbe4c7325 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcbd835d5 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdd032018 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe049e7cc ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf989bccf ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfd681dd7 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 0x1e1029c9 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2410daf1 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b56db9a saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x569998d8 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9ba8bc69 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa19f0ef6 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaef3f7e8 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb005b9c0 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb9d14dca saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd436c1f1 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xed5fcd3f saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/radio/tea575x 0x03677593 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x18f57590 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x270f0a92 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4045143a snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x88d71cf8 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd5571107 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xdd329704 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x1aeb2113 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 0x8d9c3175 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 0xee06b001 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xa8118916 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9355634a fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc27c93ec fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe525f3a9 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x286a21fd max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xc0c15cb8 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x2df96ee8 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xa2360f41 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xa116622c mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x4a5293f0 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x8cbca75c qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x9ce341ee 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 0xa2bd1f75 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xede496bb xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x10bf5e56 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xb7f90f2a cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc18ef63f cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x01209bd2 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0177f4ae dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x01b0d8c4 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x608da6cf dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x62154fa4 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6e328873 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa587ded5 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb4607766 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc3845f0a dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x01fe778b usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0586e051 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x06520709 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x078e46af dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7d082b76 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xac246c36 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 0xbd50d7ef 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 0x0d65f365 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3ca2a28a dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4ab6660f dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5e7ec47d dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5ff105d9 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x84867f43 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 0x9ec1e5be dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd1b11901 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd8ff8226 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x27fb3def dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x68517010 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd29332c0 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf724b9ab em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x122c07b1 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18f7ad48 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x254c837b go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3472f883 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5432766a go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9576a8b3 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd35fbf54 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe4ee1584 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf580a2cd go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x333ae136 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3cc005d0 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x80628ae7 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x99f43f9f gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9c38ab0b gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa2a60485 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb73ecaaf gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc5fc5779 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x4e827832 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x654579f8 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x337d17fb v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4152bec3 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x46dea157 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8f0c2366 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbf6ec8e3 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe03a0fac 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 0x817e2fd9 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8ccc0d56 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xaa8836f8 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xafdd3eed v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x040e4220 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04e56209 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06aa5cbc video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06b0d297 video_devdata +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 0x17f486f5 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ebd768d __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30a16b7a video_device_release_empty +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 0x376fcebc v4l2_ctrl_radio_filter +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 0x45a195fb v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47015cec v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4837968e v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49ede37c v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e62d414 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ea724d5 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50bb00d0 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6418d83b v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6abd2698 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6cad9835 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73a7c905 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75825176 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x783db085 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a7da2f7 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ade06a1 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b2ae445 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d75f606 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e0217ab v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8034ca81 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82422eb6 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82b58446 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82fabede video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8755ca30 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c41fe74 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cd9a6a0 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95af1a0f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x969e2d41 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d644618 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f2f0cfa v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2af87d0 __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac3c98dc v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac8e3b85 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb4ae0 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7be17e3 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbfb7bfbf v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc36092f1 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc90f98da v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc50ad3c v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc542bcd __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd05c056 video_device_release +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 0xda6dba89 v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf3e230d v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe271e0bc v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5c96cee v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe76fc8d1 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8f5d1ce v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec640952 v4l2_subdev_call_wrappers +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 0xf5a94d17 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7059986 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/memstick/core/memstick 0x05415b9f memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1cefcac7 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2208caeb memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2ccd58b3 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3e840753 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5fe30394 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x80a5cd22 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8b9470c4 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xad8a910d memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb126d521 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb4cabfa7 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe4f5bb1e memstick_add_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00c37dc6 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x023bce15 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x104872b5 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x257b7b87 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2df9e8be mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b6ddcee mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43f847e4 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5a9676c2 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74c2c3ba mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7a2ff673 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x99449fdb mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a3ad9b5 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaa96bf00 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaea76cce mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb29f12b9 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb660425f mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc4cae25 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdef57eb mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc8a24a5a mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcad08fda mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcf7d3653 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde1cb7fd mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9bef66c mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9d0e825 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec6d42b5 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3164f43 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf530f333 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5cec6bf mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfdffc61f mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0eb286e5 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1943b791 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x25630233 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2fdb989b mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32f74f14 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b3f91a9 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x40e5eea2 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4112576b mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48dd0d47 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4e4346f9 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c6e2fdd mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6e973ad6 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6fd2160b mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x732a07f3 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x77e0cfec mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a5b64cc mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x83fd66bd mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x847bd782 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8eae7e7c mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9dd185da mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xca5bfcb6 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd5173e3 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd88f4ab5 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe9917a5d mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf5df2bd8 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf989b664 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfdb0e27b mptscsih_resume +EXPORT_SYMBOL drivers/mfd/axp20x 0x28ff22e7 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xaf21a47a axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xdfa733b0 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x65556b14 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x8184e58f dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xb4523783 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x98927457 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xaaa53ac7 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x09da32d5 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0c19ac27 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0db31812 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x33a70c10 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3d974056 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x49ae64dc mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x50b26987 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6d2e0487 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x95764e6d mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa2d7c76d mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xff08bc01 mc13xxx_reg_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 0x4f090839 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x5f598493 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6d633f0a wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xcc0e8c88 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xd1280262 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xf2013d27 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x550831fe ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xda86af0a ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x88c5d783 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xab79b83a c2port_device_register +EXPORT_SYMBOL drivers/misc/mei/mei 0x0bb25295 __SCT__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x14dc7949 __SCT__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x289b8751 __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x3b7c0dae __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x41f1652c __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x8034a96e __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xbd3c2a0d __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xde40033a __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xf509d598 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xf8586ef7 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xf92fbc0a __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x1e605801 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x278e65e1 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x32e731dc tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x35550338 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x3a3739d0 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x43736ff2 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x6402b423 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x6c8581d6 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x827d3265 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x86a03d08 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe5a962d2 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xfd9bdc45 tifm_alloc_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x229369a6 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x499f9d66 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6e347050 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x79d38a54 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x960bb717 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x4acdc894 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf1966a0b mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5a06bb6d cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x67819dbe cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x81fc97a8 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd8bab787 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdfe5d966 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe2323841 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe93bfff0 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1dc25020 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x60914144 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x84d9b442 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf0620c12 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x5aa957fd mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x39b40af5 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf97acf7e simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0xd95538a9 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xf932c4fd mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1572dbb3 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x195ae125 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1bf8c02e nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1f828f78 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2dba66fc nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2feee1cb nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x33298d0a nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x418ad2cc nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x42b89eb9 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5665f974 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5a1c4e7e nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x603e2bcb nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7adc5fb5 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x84a07611 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8557e59f nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa380f467 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb33c097f nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc0b3e3fb nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd3feba21 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe4b2f3de nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe825da7d nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xed56b14b nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x5d488a5a onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xd41c53a9 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xceeb5927 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xe937a6a3 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x031a21a5 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x09c01cc8 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x316f51d7 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x38be6659 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3c1d07b9 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5726e800 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x578f57d9 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5dccee0d nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x781d470c rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x823e4bc9 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x82af0afa nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa53511ba nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa9683803 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcacc5d96 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe311b6a1 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe3dd6e2d rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xffdc8dbe nand_create_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0ed35ab1 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2ce6fbd1 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3be9b999 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4170a3bf arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x543baa78 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7518650a arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8db1758e arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x928a89d5 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9886b947 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd9f3427f free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xedf08551 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1ec03915 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x65a0f99f com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb26aa67c com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x7d28e757 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xa7a1028e ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xf77e7d17 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xf3b62cd4 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xfe8f006b can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0411f5c5 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x05f09d7d b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x08c72f90 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0c97cf1b b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0cf6e87a b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d352ced b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x11fb6147 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x144f5f69 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d3629ad b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a3b45e7 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2c8b700b b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2ff0250a b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3bee381e b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d8c3297 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43610418 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x49a39e8a b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x53418fa8 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x55f418e3 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x570d80f6 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f1fdd73 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7007b2f9 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e4d7d94 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ea53d5d b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8dd7edee b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9768f249 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d963e5e b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa850b6b7 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf1710f1 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb66f44f7 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbd26719a b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca4cafe4 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xce0eb1fd b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe5353d1a b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeeb6d6a4 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf4df2ed0 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf7c7dca2 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf96e50b6 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd23c5ac b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x43d23d60 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x454159f2 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xef2562f4 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfc1e0b76 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x0fdb6285 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x5f174e3b lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xcedbfa17 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x57bdef5c ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x7321c869 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x75ea256a ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x4f3cb34b vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb0882f6f vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xd8d2c06f vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x31f75d80 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6903a936 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 0x96914087 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 0xcf05f04a xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x134407cf ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x184ac23a NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4f6666bc __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5ca941c2 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x62cb686a ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x784a4257 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x81f81b2d ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x892cd38c ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8c27a36a ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf3efe2e8 ei_close +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x79a55a74 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xfc880ba8 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x3fa64b77 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xfa2e68cf 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 0x0a6cf41c cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1e6cf36c cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3ec059b1 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5eda2a34 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x65b95fb3 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9285907e t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x94a40b34 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x94ecb655 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9b589059 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa48082c4 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc0f65345 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcbf8bea6 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcefab579 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd946ce64 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd9b65ec5 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe660410b t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02018eca cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x035093df cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06049327 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06e409b3 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c9c635e cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ccfff65 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e8f0f74 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10144fe2 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11c5a73d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13b55d91 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e9536dd cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2da59240 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f09fcee cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f3fda0e cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39548676 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39b0c074 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b485031 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e12c2e1 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e4f24c3 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x407a99b8 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x409c440f cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x464dcb3c cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b04572f t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c027a67 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4e64d00a cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a546c2f cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6328f68f cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d412b45 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x737e2371 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x785e5e54 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cdfba73 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x844aa28c cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90eded71 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0dabd0f cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1720d9e cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa66fdff2 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf71bd04 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc48b3f09 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc93544ac cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd45981a cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe15e1c80 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe794050d cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8f6d9d6 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf812a24d cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb7171ae cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdddcf41 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x024a44d4 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1c773f6c cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7a2ccca0 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8b0f79b3 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xaf2f8746 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc66f272b cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe8e4b48c cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x44a60163 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4bdc0911 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7141544d enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xaa591469 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe082ed61 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf1da57b1 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5db34660 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbb9f2c4c be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x5c08642b fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x5d4077de fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x85dd6a29 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xcb419e3e fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xd1183631 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xd5cec0a1 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 0x3d8a8f7d prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb11edbb6 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c848890 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d7e591d mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10303c04 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x180ac6f6 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f8ee987 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c853218 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ee2f648 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33e1a682 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3890010f mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39388bc6 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x459f3c9a mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e369433 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x566526f9 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ae7c06d mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60cd1f8e mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62a2b528 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6759e251 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c21bc40 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6de21216 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x718a9a11 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72062dec mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dd38535 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84f135bc mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96ba85e5 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x975f7327 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9911d4b4 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x993b3bf0 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9983fcaf mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8b9c212 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9bf0d8d mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab6bec9a mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacd8f580 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb705f38d mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbb633d8 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc27c3c83 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbc6dd49 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4e71ae2 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda8d6142 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddca5722 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfdabb9b mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef767412 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef94dc9d mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4890f2c mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf698060a set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02120e4c mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x079bb6d5 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08f05348 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b61db4f mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x115d6232 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x133eb4bc __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d565c7 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1679f8f9 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x173e5e9f mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e98ec1 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x198ff777 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aae5b36 mlx5_eq_update_ci +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 0x1d5e41a8 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x213d10fb __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2143d9b4 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x244cea06 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24e9d119 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28be9560 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c5efb81 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e949180 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ec3b27a __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31a0118e __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32c5f17d mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32e60800 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3476f3a8 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37bfc676 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b11932b mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dadd159 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ed0861c mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f9c90e7 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x411390f5 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4563f98e __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45788546 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46813d0d mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x471c9fb3 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x473c89e0 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4851d154 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x486618d3 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x490d4da2 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5d761f mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e2f56f4 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f2cf3e8 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f7c8997 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50bccd0b mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50cb72a6 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5152314e mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517195fe mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53078a78 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53331755 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55515fbb mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56e536f4 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5801f6fb mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58183433 mlx5_packet_reformat_dealloc +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 0x5ed85c89 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f6d0ce8 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fe0e31d mlx5_core_dealloc_transport_domain +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 0x617296ef mlx5_fpga_sbu_conn_destroy +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 0x6409c3c3 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6482eeea __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66ca879e __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67a68e40 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72d1f52e __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7491117b mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x750bd15a mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a9fa10 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76ffa8d3 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77651253 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77c13dd7 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x789c3e8f mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79b3ea5e mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a13af89 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b2bfe1d mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80b56791 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81f15d6e mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82c79d6e mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d01f41 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84721a38 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8495ca61 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87d705b9 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d9ae027 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x909a4f22 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91e5eccc mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x929581a5 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93eceb31 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x943ec8ee mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94c8c95b mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94e1fd7d mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96078217 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96d99b87 mlx5_core_detach_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 0x97b8fe0e mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97ec6f05 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9810da64 mlx5_core_create_tis +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 0x9dd38886 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f453102 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa054a421 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa10ff3dd mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa318ab6a mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa64e4f79 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa662901b __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9a2d508 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9bcda49 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaae4689a 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 0xac86cf93 mlx5_lag_get_roce_netdev +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 0xad1b2995 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf1ad071 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafe351cd mlx5_eq_get_eqe +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 0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb654aa88 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8c6a83f __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9a50886 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba2a037f __SCK__tp_func_mlx5_fs_add_fg +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 0xbdad87ea mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe5d3345 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc311976e mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3d76d9a mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4ce946b mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc666c8f0 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6c79aea mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7b17a3c mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc978b2e2 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc987225c mlx5_core_alloc_pd +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 0xcafc32bc __tracepoint_mlx5_fs_del_fte +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 0xced58f20 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf758c69 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf8e391c mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd015bba4 __traceiter_mlx5_fs_add_rule +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 0xd764311b mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8e737f0 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda4d2c73 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda7519d8 mlx5_vf_get_core_dev +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 0xdbc542ed __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd072c76 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddc0dc24 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf5dc62b mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfbc08aa __SCT__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe638442b __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6663acd mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9876a6b mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec1f07ff mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecefaf75 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedf2862b mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0b1f238 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1358163 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf56c442e mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6dd6c20 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf92c02cc mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdc95468 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe576916 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff540237 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 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 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode +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 0x16f4221d mlxsw_core_irq_event_handler_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +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 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b8eab94 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x32de0205 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39574818 mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3c59c991 mlxsw_core_rx_listener_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 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x44f01b96 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get +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 0x54dda2f3 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 +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 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6919e794 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify +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 0x785f0b53 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7d4bc209 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x86817014 mlxsw_core_read_utc_nsec +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 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 0x9f692abd mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9fb08aeb mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb196e9ed mlxsw_core_bus_device_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 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbc6a213 mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbcb5bb18 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbda212df mlxsw_core_irq_event_handlers_call +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port +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 0xd111d3e8 mlxsw_core_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag +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 0xd65329b6 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd888ffb3 mlxsw_afa_block_append_ip +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 0xdc5c95df mlxsw_core_resources_query +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 0xe1860dde mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop +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 0xf0455165 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf6e7b209 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfbdc3e42 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfd08f5f7 mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0962eb mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x5c739557 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa4ce516b mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8e50f350 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xeef2d7d9 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x020dcd8a ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02d6affd ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0498da28 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0aaff05b ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11e913be ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1276939c ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13f1dec9 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x148f745f ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x154ae0ca ocelot_mact_learn +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 0x1f6d15f4 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x203f2f23 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2470a6ab ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2616738c ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b410cd4 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cb2ca78 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 0x2f24b78d ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39303732 ocelot_mrp_del_ring_role +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 0x432fcba9 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x467e316c ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cc04443 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e168e7f ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e76bb10 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4efe96a2 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54bfc86e ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54d00bac ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x584da0ab ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a2f68ef ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5bc591db ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x620a32fe ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x669ab3dd ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6aa2c09b ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c83d2d9 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d8f51af ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ea4f29a ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74200186 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79e75b16 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a2228de ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a3ee519 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bc559a7 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bde39fc ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d0fda07 ocelot_get_max_mtu +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 0x82012700 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8583fe55 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x870ebedd ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c4e30d2 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cb8efcf ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9057ce58 ocelot_port_mdb_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 0x9211bf82 ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92525072 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa025ef9f ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5883d36 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8920f42 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae2d1620 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1f6f76e ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbafc1702 ocelot_port_lag_change +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 0xc1284d06 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5b0a425 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc69e32dd ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc92e15a3 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbe1ac03 ocelot_fdb_dump +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 0xcf870593 ocelot_ptp_verify +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 0xd31ab8a8 ocelot_get_strings +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 0xe036584b ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2059115 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3ee1b71 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe65e63c0 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe67ee6ad 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 0xef9d506d ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7169fc4 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa6d40ef ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbecc7d1 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc204d98 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc29c673 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc7c9599 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0ab2e1e0 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1ae7e750 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x305d5f07 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x447db31c 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/qede/qede 0xb0719e65 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xdf6be766 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0b1f622e wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1267c5eb wx_set_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x16a3e99e wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x16f1b65f wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2097504c wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x38c3e9e3 wx_clear_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3f2f73c0 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4438e9aa wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5b0f3280 wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x62ab4d6d wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x763b16a4 wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x94352dde wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xad4fbe23 wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb6c449c3 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb7d54817 wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc17f9023 wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf4e1d9e8 wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf7549e94 wx_mng_present +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0ff13d2e hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4248f42c hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5050b06b hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa00996da hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xed007f6e 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 0x7e8fabde 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 0x1b2ff839 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x60bf874a alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x85f42d14 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xc0e4d99f mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd4530fe4 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd8a76232 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x9844e676 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mii 0x3d329ca7 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x4f433211 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x602482ab generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x6764340f mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x74964b3c mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x85f4f8de mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x86eab5cf mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x91c8df71 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xb169c4a6 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xe0404df3 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0cad3e7a lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xe05a2613 lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xedcfc1fb lynx_pcs_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xb11466ba bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x236276b5 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3cb1af2e pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5954a9f2 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa5b4716c pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xb45ce6a7 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x13d5c32b team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x52b0f501 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x78371ecc team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x885c5316 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x8d120093 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x95230f72 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xd0cb5cdd team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xf64bc0db team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x16bdaf25 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x378d0631 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6a3540a8 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x205b3317 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4919ea7c alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x615ba830 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x629cce9c hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b1e60cb detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6c0d9fbb register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7ab885ee hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xac79a0b0 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc2f3aac3 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf8f5be86 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x04234f1b ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b66f3ed ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0f187701 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x14f5bc5b ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x37fc6d89 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4a7c67eb ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x61bb8aae ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6b3506c6 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7ef5494f ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8cf5c7c9 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa00f339e 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 0xc0013f92 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd1785119 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 0x02785493 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x052aa1c7 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0682ae0d ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08915d3a ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x097eabbe ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d7ede06 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0edd95d8 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10b61d52 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x12e7d583 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15d46220 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x179c41ac ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18339feb ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1bd52cf8 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d12b9a1 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x25240aa8 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x27fd1fde ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30158730 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35aff790 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x38e72c2a ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41ad0dfe ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x431d0546 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x446f37ea ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45360fa4 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c3b0c64 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x567677eb ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a08dce5 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x61ab7dcc ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66259520 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70bcda6c ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x739bf40f ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x740e644d ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75869884 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78391dff ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d4a44a9 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80dc517f __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x827bfcac ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88fb2071 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8abd8c01 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9489d24b ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x988013c1 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa4edf3ed ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9771e47 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf2fab30 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb87240a3 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc290a1b5 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc368957c ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc797d558 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca98d43e ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcfccedff ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6ba5796 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc072a6d ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe15f083a ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe61c3dac ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe65c1f85 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe898ff8a ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee476ba2 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2f1303c ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x096e9f81 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x115c0dd2 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x148b58fc ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f879d01 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x20bfec05 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x21420c5a ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x229f75ed ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x23229411 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x25981ccf ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x289231b5 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2989f246 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2a36361c ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2c9a8da7 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3556266f ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x38ea0a5d ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x400f19a6 ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x401d764e ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x47a21af8 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5747b498 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5895e7fb ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5c491d85 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5e8e7a26 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5f249721 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6794a386 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x72a09a9d ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7e3c3761 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8fe1ea7a ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9523d329 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9754c008 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa512f77a ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xadefcd7b ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb540ab8c ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcc919b0c ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd45d09e1 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd4881a38 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd8d74f60 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdcb39652 ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe0a54a1e ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe19410f2 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe19548dc __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xefbc4656 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf7a5ed0e ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x085e9711 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x10f40b91 ath6kl_core_destroy +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 0x4ec4bfa3 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5095a8ae ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x56e59a94 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6e88a458 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8db341d0 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 0xb26d6b58 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd49f2f72 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd741c9d3 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf5c0826d ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02eb30d9 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2ece9894 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x395f5141 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3b43308a ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x57a6ab4a ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x625e4514 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x843bfaf8 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x85bbc710 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x98d7b978 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa467bd78 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa7029945 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa878313b ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb03e1b75 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9a1e164 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba841414 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe23c8ba ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5b1ee26 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe8ee38d1 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xed40c32f ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf11001a7 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7f10038 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfbb7d500 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfc449324 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0075116a ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02c80ae7 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x077943f4 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a3c4243 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c228140 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cc15cf7 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f074c73 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12a6a92c ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x190ee666 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19e0aa54 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fd034dc ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21e73b7b ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x230103a1 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23217e93 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23e31605 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25d16107 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x280287d3 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x283fc603 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29a715cf ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d23e145 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2df1ba37 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e219cc8 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30441960 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35f081e8 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3643943e ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ea86ba ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39f56f0b ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3be43def ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bfb4add ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40c651b8 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43b8d6d2 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47a96da3 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48578c02 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49d84874 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a0d9137 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b4f4f17 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ede9d0f ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f7831ce ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f8858b0 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x502fb8ba ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50cb7052 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51547da4 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51e8e3f3 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57a47b5d ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ef40f78 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x602a9c7a ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62aeeeea ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x650f6713 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66194154 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66b1c515 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ac31402 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bf1220c ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72fdc238 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x758ccdb2 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7611771a ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77ce3dfa ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78e7787b ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79715c6d ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a7934bc ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b834761 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c6e81f8 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x823535c9 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x827cef18 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x865a1a81 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87ad1670 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88e884ce ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cd4039e ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ffb09c9 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91c7185f ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x960522cc ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x997ce67c ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99fc2eb6 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1517d47 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2ea87d8 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8eb091c ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab8a33ad ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaecabe2b ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4a583e4 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb56188ab ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9aed29d ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9cc7ef8 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbb491a2 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd037f71 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbded5043 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe0e2ad8 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe1d8bde ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe9b8ea8 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1172249 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1e16a91 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5c0a972 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb3f542e ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0053162 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd232a2dd ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd67ad506 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd754aa52 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9531909 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdba14652 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdccf5eda ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde3b3791 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe40996c1 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe40f8da2 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4d4677e ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7eaf2e8 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1fc082f ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf48b075a ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc485726 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe196172 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x00ff82a8 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xbac26bc6 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xed56c419 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x09fa7f91 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x11adb594 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 0x292ce331 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4579d1ec brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5a6ab0ea brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5bfb7344 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x673f585e brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7acefeec brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8788e6c1 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa6f27499 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd0d8fc79 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe01da812 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf716fcf9 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x3ce87117 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xa1550a1b reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xf91fed25 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0a720e22 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1054d864 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x11411ce6 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x23713ac2 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x238053b4 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4ec8fb81 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4fb2357d libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6a33f1bf alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6efe34f4 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7460fc11 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8c6017bb libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbe31c43a libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc2b58621 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc6553f10 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde20df4b libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde916021 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe2cef903 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe63ef4e4 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xec5510bb libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xef64e54c free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0557abea il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0561068d il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e6bee86 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f4608e0 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f8a77bf il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10c2bdd5 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11b72118 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1988df0f il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1de8a58f il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2496c6b7 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x285cc864 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28b2c7e9 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29a692ad il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29cb15c1 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3031e42c il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3230e492 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34bbe205 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c7f731e il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fbb4402 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x409bf304 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42e63a0c il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x459e4ea5 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47fd0cb0 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4961440a il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49ec4f95 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a18cd8c il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4db28f9a _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dbcb8e9 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x548de4f9 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x586526c4 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c1171cb il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c7b532e il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x611a32ea il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62eafede il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63cb26ba il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x661ca37c il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69621a5a il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69915076 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c913987 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d529826 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ff7a998 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x701076e0 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7280b705 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7351caac il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73b19587 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b10631d il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bd71a31 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c230696 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e9d2a8f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f3862d0 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80661a2b il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86e81072 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8881a762 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89eb5dcb il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89ec90b3 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90f9d9ef il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96e0262b il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x992e4384 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b0ef2c5 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b1939b0 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa21a0458 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2420574 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2dce613 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa56e34ee il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa59b7106 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8650d3d il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8fa3694 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaba90459 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1cfdcf2 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4e14f73 il_set_rxon_hwcrypto +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 0xb9da882a il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb27b3e4 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb2ad50f il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd178736 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd47aaf1 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc40781b8 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7585137 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1e88468 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2dc5fe1 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd90bf185 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda7e0edb il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdaa4625f il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc36b541 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdebc3c98 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4c548b6 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe52369ed il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe61c9864 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe71cbb91 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7a540ff il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed525524 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1c1e303 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1fd0a94 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2abf46a il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf647bd66 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6f457fd il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9d96bd5 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa513b81 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb9cdfe6 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x12e0599d iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x32b6ab58 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38688d65 __SCT__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a2a40a5 __SCT__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x453b61d2 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e989f5f __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8765f03d __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88fe8b40 __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa53ad762 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbb01e695 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xda537cce __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf914e365 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b478f68 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0fc6c923 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x14fba63c hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x15131b25 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x176a634e hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2bab8012 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2c81972e hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2dfb15f1 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x48525c36 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x52238b10 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5f36950e hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x707e5223 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7873a0cf hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9bfe1759 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa0efbad4 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xadb0d3b4 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb400924c hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbb4c94b6 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbd074d9d hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc69cf2b8 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd5c98796 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd6f92f06 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe9f8950f hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xef89acd7 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xef89da65 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 0x08c07b4f orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1b26a1c1 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2f780d3a __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3a7a7a84 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3bfe2b16 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x421ab491 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x44c3e51d orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x545a275c orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6ef0bf46 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6f17a547 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7732b8f2 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x91e006bb orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa65b5a91 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdfd525d2 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xed5b7398 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xc83a979c mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd6e66624 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01255f2d rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x021a1152 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04162619 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04d4f00a rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1452eef0 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15444585 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18a84547 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19f79c71 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d9aa196 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31d9b086 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32fcb55f rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39c442ac rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x431f1638 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47e9a376 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d9fbe42 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5eb9734d rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65b654cb rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6feeb6a9 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72e95162 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73f0d2e7 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74f0b993 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x788925cd rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8012851a rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81bff259 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x855e9daf _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8847610e rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88bc90dd rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d44a6fa _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e955d47 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92a6fa5a rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x946fe8ac rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cbdfd4a rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa49f841d _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab0cf80d rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc676cb8e rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb78d776 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc434712 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1ce2bac _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe61a12d7 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe76eb929 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xecbb4eee rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1382d14b rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x266bdd7f rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x638b9196 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd3b3dd07 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1c33723a rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x23f6f3df rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x766b1b87 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf11f4943 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0568d65e rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b43ba17 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0dc85abf rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14839010 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18587414 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a2858bd 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 0x1fb6d845 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x404179bb rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x528a34dc rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53dbef40 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5771c8c5 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60e3a7f1 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6569db3b rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e9cd8c9 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70a0ffa9 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8490cdb9 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f8e1c84 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9126bfd9 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa30ca0eb rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6a7f0b1 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8381d27 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb878c128 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc71d86bc rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbbffcb9 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1b98641 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd66e395b efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3fba797 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe88c566f efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8ab2d4a rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6ba7de3 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x4f0b75d6 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xd2cb025b rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xa4eb0f64 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x4b29645a rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01788df2 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02a9dec6 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08a281d6 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0a87a6ea rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0ba7a80e rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18c66951 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19ba119d rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1edea629 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f757169 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x21e422fd rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x22aea7d8 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x252c3549 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e2f83f0 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2fd5fb60 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3653f3ce 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 0x3a040926 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bf53897 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3c638af3 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f7a779d rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x42fe5913 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 0x4eb4076f rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5345824c rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57489699 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5dba049d rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74b0b056 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76c09cf7 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x787a3254 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ba30ee2 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d4c07f2 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x814e977e rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82768439 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x876c7093 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x899551d3 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90f028ce rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x98bee6af check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x999c101c rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9c2912e8 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa630c8be rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa3f122b rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa45adb6 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xacfdd025 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf774d52 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb1ff691a rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb66a3538 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb8afd6d8 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc28719eb rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9221250 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb20da2f rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0040519 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6a6113b rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda95f31b rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe13ba4b2 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6bd8de4 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xecbdea83 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xed018213 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeda27a7b rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee6ad14c rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeed1ed8d rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf17009f8 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfce32230 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5a2f9ef6 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5d841c93 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x82cc0a96 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xab496bc1 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x7647bee8 rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xaebec9bc rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xe2b64d54 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x95289fa4 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x0e8dd3cb rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x003b4c1e rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02f94945 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x03da57de rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0660bfa1 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x15210d99 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2fb03cc8 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x39334215 rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3eee894e rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3fd811e2 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x413a7d9e rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4403a436 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4715fb3d rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x48d3dee2 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x49decc87 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f9b579c rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x507d3262 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x57995c45 rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6315df56 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x634f028d __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6896cd58 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6aaddbcd rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e2bbf8d rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x72e73a40 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7854e093 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x79f4b1d7 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7db59d7b rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x858aca34 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x87de1eb6 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9c1f4742 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa03622a5 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa0e86be4 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa16d1e7e rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa421bca9 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa6acb6c6 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaeea3b78 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb1703cec rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc08864d4 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc2f7e5ff rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc46e59c6 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd9aad486 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdabb4ce7 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe1122430 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe26f1203 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3ad5dcf rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe79a77af rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe82ab952 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe950381f rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeaec40ac rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeb4f6ea9 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xede66248 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee948347 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf25489f9 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf5855064 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf710b38e rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf794609c rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf94d577c rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa6fcdf8 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfde87a6e rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfe916ef9 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0a0b8545 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0dcd3eb1 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x351eec0a rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x4d4746d7 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7e8621ca 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 0x9dda1e67 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd1f595c1 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd38f4c4c rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdb783438 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xeafc87f3 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xed55f2e2 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf15d6626 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf50db617 rtw89_pci_ltr_set +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 0xf7f5a879 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf95e7483 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x01bbbf22 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1a476866 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4b782f1d wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb9411391 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd1e44c1e wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3730a145 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x69ba5e61 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x828b0e4e microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xd09ecb39 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x19aee153 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x5e4a2ec5 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe36dc73c nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x57c243b6 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4f6dd062 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x9f8b36ff pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x866799e8 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x97c1f8f2 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9deaf592 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9e032bcb 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 0x0291dec5 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0471ad80 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a14ffc2 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a59c034 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x21f6cbf3 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3b3998db st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3fa1a62b st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa00db45c st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa63efd28 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf0a1b468 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x06923719 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x07435aef st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x13393f6e st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1d846e57 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x24995bb2 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x298bbfef st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2ec4e44d st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4d5adbd5 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e41b820 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x518377ac st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x69c6932c st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x75520ab5 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c3c519a st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x91afe235 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9d8fb739 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc0d29d38 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xda1cd7fa st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeeaf86dc st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/ntb/ntb 0x0da6a146 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x229b1bcd ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x2506eb17 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x316ec6dc ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x375a3207 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x3efdee88 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x4b53fc03 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x62139f26 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x68fdc09c ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x7c22b6e8 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xa32d52d9 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xa5f85ac5 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xbb6f9b42 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xd602a521 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xd71520ba ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xdb6e9d12 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xdc85fddc ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xdf50f6df __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xdfba60cc ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xf5d09285 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x8eae65a8 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xbb0c317b nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x05491ef4 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x11102ad1 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x11edef6f parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x1be064fa parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x203451f0 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x22153ea5 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x2ae3f4f1 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x3c8095b9 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x466c3ec7 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x49c30ca1 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4d331a75 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x53839669 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x557df273 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x55ef8681 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x58d8fb64 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x5ca6454c parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x618c5475 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x693e44ab parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x6bd8146d parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x8393d630 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x8564ff5f parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x8d18ec32 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x923e1cbe parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x998be650 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xa5e265ea parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xbf82cf89 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xcf3ea2a5 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xd12851cc parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xd2e0426a parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xe81d4e9c parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xf44625ac parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x737ab48d parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xf5e34405 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0136e499 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0bccb131 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0d00110a pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3bf41a32 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x41bc967b pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x42ccc443 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5327cdab pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5d27d9da pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7053888a pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x78da5a16 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7d6d4f36 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x97ad5fec pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x98876b60 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaffc9bf5 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcc043f6a pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xce64b82f pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf911cb3 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xeba285bf pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0371a7df pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0edce451 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3e8cb236 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x50605db1 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x84ff8896 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8666d192 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd1080cd6 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd2d788a4 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xeb9317dd pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfde9345f pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x458ca92d pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9fd5eae1 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x73eb4379 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa6ed2754 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xab4b61fd cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xba9d4f28 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/x86/dell/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/platform/x86/intel/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0xd857cac7 sony_pic_camera_command +EXPORT_SYMBOL drivers/platform/x86/wmi 0x97ac231e __wmi_driver_register +EXPORT_SYMBOL drivers/platform/x86/wmi 0x99c3630a wmi_driver_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x17aa4432 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x75b1ef62 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0e403462 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3dcfbce3 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3f7bf069 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x52661d28 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x645a18c3 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6b83a6b0 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x72735992 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8c648283 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8dd47c2e rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8fa6ead6 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa6204920 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa8048baa rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xadf82456 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xafbc5367 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc225ade6 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xca2d7422 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcacb9464 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcdcd06f6 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe629ba23 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x77e05662 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x8d0a33b1 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x7839bfb2 NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0x78fbf2bb NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x41a93e6d scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x78b6fa1d scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbb6d1431 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf77ffd6d scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x057c2370 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x560b36cc fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7d8d3b00 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8f53fb02 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9708cc45 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9e62210b fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb286e148 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb96a6fce fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcd7929ba fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6d755de fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf5e8725f fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04955e67 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x095c8ba4 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a45a81e fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ae363ef fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x145f51a6 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1587b20d fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1801077a fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a21fdf4 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b149b22 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f086170 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f6be8f6 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x203d84ef fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22e8694d fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2dd2e35f fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x332bef18 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35299dd6 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40897f54 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x423f8c46 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47df6a19 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x483b787c fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ace635e fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ca2973c fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ce0da4e fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51ee21ba fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x523a7cc2 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x532c5952 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a786165 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d6e7079 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e1f403c fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63e89388 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67f71dab fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69c3fa1c fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6cb0a433 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7097c21a fc_exch_mgr_free +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 0x81f6b77c fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82484096 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fd38021 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9641fc49 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b08c8d2 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9bf9ce75 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f04e6b8 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4e118d3 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb058b32a fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb396ffe8 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb51d24a2 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc589da4 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1d35683 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc30d3be7 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6e047ff fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8c669ea fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc93ce133 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd003d4d fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd496f0e7 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc990076 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe42f8373 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9bc64e1 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfea18166 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfed209e6 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x004ea351 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7d30f0af sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8e050cab sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd3d51ff9 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x29679d71 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 0x0179d91e qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x04ebfa66 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1fdc48d5 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3f968b9d qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x43d24b9d qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x603f07db qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x70477c67 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa2b52cb4 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa76225ab qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb6762b2b qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe7916da2 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfc34cbd0 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x0c45918a qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9a2e3594 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xaf2502a0 qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xbb999dc5 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xbbcdd6e0 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdb74d8e6 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 0x8f4cd82c raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xb5d76e34 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xc6d3cf8f raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1ef3ec6f fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29d3c108 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2c8e2d46 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3bc7f318 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5e71ff5b fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6f4322f1 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x706a93f6 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x83cc469e fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa6c6efe0 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaaaec4d0 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc53b2b54 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xced6e7be fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd7cd7856 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd8209444 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xde0ed9ca fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf594513a fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf98ebdfc fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x017d6921 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1cbbad5e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x330e2fd7 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b4a0a56 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5615d94c sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56d89ca5 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x571019aa sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x577df067 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5b103a17 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67614ae1 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c2cd3c9 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ede9f85 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8083cc62 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8391ae71 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x879a4741 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x96bdfb21 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9836bda9 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab4d335a sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb46e275e scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xba3a7923 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbca27aea sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc070e05e scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc3c3eaac sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc404d8e4 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf4facd5 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe8319050 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe9541cc0 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe98e7d53 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0c6be24 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x05bcd12a spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x09a8e16a spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x23aeebe1 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x65d01911 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb4fcee22 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x32029967 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x392acd42 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5907b0d5 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x84ac19a6 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa44df303 srp_rport_put +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0d1a8527 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1d14b44b qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5c66d9d4 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5ee61ef9 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5eef26ee qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7f327dde qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa0431d47 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb13623c2 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc9e67652 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfcd22421 qmi_add_server +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 0x379689dc sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x39f06354 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b04e0ac sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3e98f82a sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x40eaa51b sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x412dc6e5 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x48ca80f5 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x50a0ea47 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5754d88c sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f439a4e sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7bed0961 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7eb905a3 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7f63a91d sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fb0bd8e sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x85446ee6 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x86843274 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x86c5c8ef sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x87677394 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8f1c6d5c sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8f867f9f sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x92fb3358 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x976ce332 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f204c9e sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbe6e0669 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcae62f68 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd8534110 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf4af29ad sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x271208ff cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x389d0d41 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3ee2a925 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5a3bcf32 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x81ca4d18 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x82b3ac64 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8524552c cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8c964c1f sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa71259ea sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa71d979b cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb59228aa sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe8299e7d sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe9a63203 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xed7f1642 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf4ec19d0 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfa7fc16b sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfc505f70 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xc8334265 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x0d14c28c ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x0e13b113 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x0eb53e48 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x10a8617b ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x13075b15 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x2b309943 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x5362e998 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x69c61344 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x715e841c ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x9cd5ffd9 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xa8970acf ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xbcfe3f5e ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xc0b4eae1 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xc1c2e058 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd200bb84 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xd2614f1c ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xd9d536f0 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xdfb0ae0e ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xee4f7ada ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xf8c21fba __ssb_driver_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x125c51da fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x12ce3db1 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1738e208 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x235fed45 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x251294e2 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2c1728fc fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f2227c4 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x358e1811 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x35e9433f fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4615c1aa fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48fa71b7 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x566ce4a8 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x617073e5 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6bd0447d fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d483284 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x76b44809 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e0307ea fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8c2f59d8 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xafc7fc44 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb66b8673 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcb912386 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd73ba52e fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe19fcb6d fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb3051e7 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf309a6a5 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x10300776 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x15b28cd1 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x6b7db618 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xec011ef1 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x623aa30e ade7854_probe +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05203951 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x080d37ff rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08616009 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b859a45 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1618142c rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1dfd0ac9 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e40eb2d rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e50a0ff rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22da8bfa rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23551dd9 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2414993a rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a80e4fd rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f531776 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32f9f39f notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3573b2b9 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38879314 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3970ead8 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44746d38 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5792da3d rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57ea0230 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5978fcb0 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ecd1c0c rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6df7b354 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6dff0fcd rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7373137f rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a880904 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7bc2c683 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82abb9d8 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b2e6c6e rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x972a222b HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99cb6ba4 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa178e5c5 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa737c2ab rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa8ff0ab rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad76d702 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb51a2fcd dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbadf0dd8 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbbb0a772 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0a7fc9c rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcad4937d rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0195ab4 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd06182b9 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3dba042 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4b51a16 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe13875fb RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5fdeaaf rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe6791e6c rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea79284e rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9140350 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a5339c4 ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0b733714 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x122ec6aa ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2147799d HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x296fd80d ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a980b8d ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2cda53c8 ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31e9519f ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32a9e3e3 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32c4f7b6 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3994ec3d ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a64334b ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42e25838 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x499f2313 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b3d6264 ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e6d4db5 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x500edf3c ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x504c3876 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53bbebf6 ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x544ebaa8 ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56e8530a ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59fe6114 ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71a704ef ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72e7c1ec rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x730a7bee ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7671a6a2 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7859f8d6 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7bf54251 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d926065 ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88e4ffc9 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8cada43d ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91279a4e ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0a93fb7 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0184408 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0285c49 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb43a6a4f ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbaaa00f2 ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6d2050a SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdb13bb3 ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce22caea ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdded9a7c ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe160170d ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe19d798e ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe437354d ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4b05aa0 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6297db5 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7a4c414 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9df35cf dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb0e5b3c ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2322346 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf57dda2a ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9048d5d ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb68de56 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0124da0f iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01a1f01e iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02629dcb iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x062ac33c iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ac424b0 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b75d278 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d98e42b iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2012e94e iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x393a4b66 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39f40cfa iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b750b82 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3fb51321 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x482ec73b iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d940701 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51a778c4 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59d2482d iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x681a2d02 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x728a5341 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75540e33 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c5b8026 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d61a9cb iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82550f20 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85843016 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86343251 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86a40f50 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86b41767 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b6b9e2b iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9a4b56d8 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b83f24e iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa13a9328 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb72d953d iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb823f798 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0d947e7 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc60d9835 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd1f6c22 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2de605d iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd512344c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xddea8269 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1a01f65 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe31a5190 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6d7b662 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe79348ad iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe862ee2c iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea322dd4 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf55f2328 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x021a8d36 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x0638e35d sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x06bc8d41 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x07e52504 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0bca71f9 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1190cfe4 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x15f64a17 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x166aa942 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x196d3309 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x19b385b2 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a1f2c6e target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a276feb sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x1aaf9db1 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fdd2bce core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2005c80d spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x20d7d9d9 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a3ab156 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d876d0f target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x422b0c98 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x48ba1693 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ce052dc transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x53e4a872 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c564939 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d63087f transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d89c8f2 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x5eed1139 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f2321a1 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x6689e831 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x69228f87 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c72fa0a transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cd9a8b0 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e0f6f7b target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x70bf56bc target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x73851e3d core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x813c4ff0 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x82692610 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x831378e8 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x85ec4dbf transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x86a7c889 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x87292cd9 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x87f59a26 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x885d6750 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x88db7b31 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f499a19 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x900ca679 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9904705d core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x9bab585c target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cfe72dd transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x9edd4f03 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2e30938 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6072e94 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xace14003 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xad57cd1e transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc96dae9 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0c01b71 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5ff4de5 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6a1ce32 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xc98058fb target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xcca19425 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xccd9ca52 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1ba1f76 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xd35158fe target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd580b5ce target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xda682911 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe45e7dc2 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5eb7cf8 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe67d744d transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6f12dac passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe894fc24 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xf281ff75 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5883654 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc382ecf core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd44c449 target_stop_session +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 0x014160a5 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x09ff5dd9 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x27ee92d8 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x4d9fbbae ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x62e92592 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x633fc463 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7add7f5f ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xd6c7664a ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x9a6fa663 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xf03d8c72 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x2489fb75 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x9d4a62c6 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xb6aa4073 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xa65e9325 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x3b7f9ec4 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0be10aa9 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x115c84df usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x39fe9869 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4c29a0e3 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x93b29406 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9cba29d2 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa1317f89 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa2ce99dd usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xab275412 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf48c8998 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xff8eafd4 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9ae39581 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xfd0e5a61 usb_serial_resume +EXPORT_SYMBOL drivers/vdpa/vdpa 0x9b7898c4 vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x64458858 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6a22c9a4 mdev_register_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x73373fc0 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xaa63f176 mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x2012c6ae vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x51be3d4f vfio_dma_rw +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 0xc0ccf8b4 vfio_pin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x62b9a058 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xc4505242 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 0x24228ad2 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x65030e5a devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xbdedc180 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdc0e706b devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x08bb6116 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1a278ccf svga_get_tilemax +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 0x586f238a svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x654042f9 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 0x90d882f9 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x93450185 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcbd9d076 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x739d56aa sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xc9fb9f7c sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xfd6d56f2 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x52748227 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x2eb90b57 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7efd513c matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb6f1736e g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xeb37a72a matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x78584a2e matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xeaa29d0b DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xeda138a1 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xee9b46d6 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xced2f7bb matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xfd0b3d72 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x682f4730 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa3d5926a matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xc833d0b0 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xeb7573c4 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x717acc3a matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc2ae439e matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0f052546 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x322a6b31 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x32f3381f matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x92a08ea5 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb5698cf8 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x04ef60a1 vbg_hgcm_connect +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 0x975f5e4b vbg_hgcm_disconnect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xa026201f vbg_get_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xb757a8d3 vbg_hgcm_call +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xd72b2fda vbg_put_gdev +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x1e3575fe is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x34dcac55 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x9b1c86a1 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xfc2f1b73 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x23ca43ac w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa34a82b3 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x7403fb80 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa4b8eb14 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x18b20b93 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x891d713e w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xc18008d8 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xde3eac3f w1_remove_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport +EXPORT_SYMBOL fs/fscache/fscache 0x03d5cda7 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x04acfc38 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x08267a48 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x0a23e729 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x11081280 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x123e9ac3 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x18333f55 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1be44b9f fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x3220bc51 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x32272e9a __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x3ae49230 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x4111dc33 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x42fa4ca3 __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x45fb3a7c fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x47c142a7 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +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 0x5a998607 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x69d6320c fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6af30e28 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x6f8cf170 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7b1b25da __SCT__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7c87e02d __SCT__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x899d7401 __fscache_use_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 0xa692d21e __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa960465b fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xa9a8cca1 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb16ace15 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0xb93ca944 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xba7fc3ea __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0xbb4b6bce fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xc1a52ffb fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xc9fb5c8b fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0xcce0623b fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xce411dbd __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd9e65386 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xf26215c1 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf7c62464 fscache_wait_for_operation +EXPORT_SYMBOL fs/netfs/netfs 0x55800b72 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x657698f4 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x6ddf3c2f netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x9d3f55b9 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xaf733411 netfs_stats_show +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x22bec320 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x54f42909 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x75a4d4e0 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x89e2bb66 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa91e494b qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdf6c4ab5 qtree_entry_unused +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crc8 0x9c5d5b94 crc8 +EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x6c713da5 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x916491ac chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/lru_cache 0x0cb562e6 lc_put +EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed +EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get +EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del +EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xa209469d lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create +EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xc2792c74 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find +EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xf0e20f9b lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xfba16232 lc_get_cumulative +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 0x003d6a57 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7d7cc39e lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xaf62dcaa lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb8c7ff03 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xbe09e56a lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe8534e49 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x26a685a2 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xf95d7e6c register_8022_client +EXPORT_SYMBOL net/802/psnap 0x0c596a6e register_snap_client +EXPORT_SYMBOL net/802/psnap 0x3e1c4f19 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x038dd030 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x09a19299 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x09dd54ff p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x0d94accc p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x0e93e7a7 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x12132a00 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x16a70a46 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x16cedb1b p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x25d017f7 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3edb08e2 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x3f529758 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x439ae137 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x4c305a91 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x5261d995 __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x64d92466 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x6d45008c v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x6f2bf1cf p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x6fbc1f06 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x754a9cc6 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x76a75fb3 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x783dbac3 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7d347b05 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x84aafdfa p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x8ed88775 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x94f980a1 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x9a5fd3ff p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x9c88208e p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xa9ab85b1 __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xb11a2e7f v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xb2954cc0 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb798a888 __SCT__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xbe5c6c7f p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xc3156381 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc3f5c5dc p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd2007117 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd4e17def v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xded3553e p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xe54eaaa2 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xe579c2b8 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xecf43bb6 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xf0d8ca27 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xf298bbf6 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xf5b862e1 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xf78ef1ab do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0xf7c6f446 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xf8bfb539 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0xfce81584 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xfe458999 __SCK__tp_func_9p_fid_ref +EXPORT_SYMBOL net/appletalk/appletalk 0x0f0bada4 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x408f138e atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x9b5ef440 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xf6af7487 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x074f0808 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x08a97fe2 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x109b7e65 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x371dd068 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x62c9307a atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x7e702895 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x885c8ff4 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x8974404a atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa1d1bad8 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xd37b4002 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xd9370d75 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xe69d56e5 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xed46031b atm_charge +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x816149ea ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xb6e6b07d ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc6e19874 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc7c53f15 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd955000d ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xda084931 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xe29a37f2 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xff9c2d58 ax25_find_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0392c913 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x093d0ed9 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c27b2c6 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c68e37a __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13f0431c bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x27f22bef l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x282c173e bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x358ade11 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x359b6cf4 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x46e8b021 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x49994942 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53d10e84 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5baeb613 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e17483e hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7208b82a hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7621b096 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a043986 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a881b57 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x87ed433b l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x893ad3e4 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8adc644e hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93e58fa5 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x942b7844 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9734651c bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9aa9c1f8 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa75b1adf hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xae75fa71 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1c71fbb hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5b00765 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf57d0b2 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc74cca04 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc771e143 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc81d7b5c hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc90054a9 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xca667829 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0e7b779 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdccf6389 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0c17e8b bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0d2ae8d bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3700305 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec04cd75 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xefe27ae3 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf100f685 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf132a469 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1d4e5a0 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf573c6e8 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf83ad34e bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbb04d32 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbd59bbb hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe7b12eb bt_sock_wait_state +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x802499f3 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xab1a986d ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc065b706 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcb7a3d51 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xda0fe825 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xddf2abae 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 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x7cda4690 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8dc126c0 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xc1f515ea caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xd2a686c8 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xec7957e9 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x1a688067 can_proto_register +EXPORT_SYMBOL net/can/can 0x1c3fd334 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x20fd3809 can_send +EXPORT_SYMBOL net/can/can 0xa6e87c84 can_rx_register +EXPORT_SYMBOL net/can/can 0xde7961b0 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xe079a4a8 can_sock_destruct +EXPORT_SYMBOL net/ceph/libceph 0x018e15db ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x0199cd1c ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x01e59b25 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x07f99cc3 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x08939b3a ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x08a4db25 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x0fdbb2ae ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x119a096a osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x13d74962 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x14e1f4c4 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x17400fcf osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x184f38af ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1855488a ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x18dafe9f osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x1ae8cccf ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x1af3175e ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x1b1ea585 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x1b3fdc0a ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x2068d991 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x209ef5cc ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x217a9d1c ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x21b82b7a ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x23c14bba ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x2414e0a7 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x2626f7fa ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x27f0133d osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x281eb419 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x29cced8e ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2d0c090c ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x2e3c5d38 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x322cb74a osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x35f0ff1c ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x36228007 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x39a72ecf osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x3afb0dd6 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3e4ed2e3 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x40a4d6f7 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x40b175dc osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46afb974 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x4822c902 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x489486ab ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x49728f7e ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x49b6e55e ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4c100596 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x4c3021e8 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x503c19b3 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x5299e163 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x55f8145c osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5601d709 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5656e48c osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x56f18ba3 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x570ccfdd ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5840ea87 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5c28a66c ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x624a7ab0 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x68a0a880 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x6980ec31 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6d630c03 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6f0789ad ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x7251769e ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x753a5b70 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x7584eab1 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7597c293 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x7e907282 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x7f3ecfa2 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8d61a734 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x900be94a ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x977b3f7f ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x97b2ab13 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x9860f6da ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9a24d78a ceph_con_open +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 0x9cd2c8b0 ceph_zero_page_vector_range +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 0xa2452e55 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xaa1d6e07 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xaaf87ea2 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xab5f2dc6 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xad2d03aa ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae9eccc7 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb4238160 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xb43cc819 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xb4ff7468 ceph_osdc_wait_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 0xb8c2cd40 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbde1a00f ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc0e0792c osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xc1cf9a39 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xc25c8d9a ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc26b17ff osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc28ef741 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc82e4146 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcc520d1a ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xccf9cd27 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xd1531ebf ceph_osdc_new_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 0xda199041 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xde2e0214 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xdf1c0ac1 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe90348c0 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xe91bd79a ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xebd0a355 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xecf2f15d ceph_alloc_page_vector +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 0xfaa00fb0 ceph_cls_lock_info +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x38dcbad1 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xffd562b4 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x42fea525 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x8962fa5b hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x27cc7b45 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x787b3060 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa78fbf90 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbdd97fa6 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc074b4ae wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc73a11da wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xeea585e3 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xfed0ab0d __gue_build_header +EXPORT_SYMBOL net/ipv4/gre 0xd469373f gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1eb42ff8 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5828d787 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xee58fea4 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf53dbd46 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x55022c77 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7b4f849a arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xad20cbc8 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe0648c9e arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0b470724 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x33a808b6 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x75d2bb9c ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xbe344a31 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0xbc453948 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xe735fc41 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x6e5ddc58 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0188f965 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1e1e98d4 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5401bcfb ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x780c44e5 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x83fa4030 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x85b0b6c8 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb7e3a47e ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc04f3665 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd51d5aa8 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x38c5e649 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7945147b ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9dc4ecf6 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xec5b5f9c ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x3cf21590 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x5035d53e xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xad031359 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc6106552 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x00b8b12f lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x0a5fd82e lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x64a567ed lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xb86d251a lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xc1d55a00 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xe271f1eb lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xe975af1b lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xf920f3eb lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x17ce807d llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x294a2d9c llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x29ffa5f0 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3c3d355c llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0xa94b970b llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xaeee96aa llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xefc03dbc llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x02374930 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x03a254c1 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x04705df5 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x049c286f ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x052f7816 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x07e1dab5 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x104265aa ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x135ecd52 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x13d08fff ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x1416e89e ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x155c3ca6 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x1591f132 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x1722d835 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1acd33ed ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x1bbd6d28 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x1be7ffd2 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x1d2beb28 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x26b34430 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x26c71ebb ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2f053df6 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x312d341b ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x340b8dbe ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x3518eccc ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x35233b35 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x362b7dc9 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x38d0323a ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x38fc7b39 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x3a497759 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x3b2bf652 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x3c4ff3f3 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x4034e3aa ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x4174a291 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x41d83e1c ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x477182ee ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x490c5023 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4b0a78cc ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4de3d3af ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x4ff6c53f ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x51fee24f ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x52f475e6 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x58485f23 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x588f9380 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x5b10c026 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5ece157c __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x60aac8c2 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x630034fd ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x6fe0bde7 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x7529b89f ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x7674bfd5 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x7a6f7cc2 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x7d58ef3a ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x81d6459b ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8450120b ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x856d1834 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x89c2d649 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x8b05bed1 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x8ceb5d6c ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x8d24837f ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x916b5264 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x91d41df8 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x99837dc6 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x9d88372c ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xa0aaa046 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xa33840ef ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xa76b6fff ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xaa0959c1 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xaa24f56e ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xab1b8a50 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xab2e5bed ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xad083c91 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xad524588 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xadf7e97d ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb2b5d9c9 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xb873271a ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xbdb9a2b1 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xbdc10803 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xc589c09a ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xc5943d84 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xc728aecd ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xcbc21e74 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xcf935728 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xcfe8877e ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdc6a2ce9 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xddf358f9 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xde48679f ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xe1065c1d ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xe1d4d8be ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe994da9d ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xe99dbd19 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xec772033 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xed43f300 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xedddd015 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xeef1d121 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xeefa4f2e ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xef9c900d ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf21e72d0 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf3202a08 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf6786bfb ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf6a85009 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xfa61fac7 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xfb22795e ieee80211_sta_eosp +EXPORT_SYMBOL net/mac802154/mac802154 0x35da652e ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x55ebcb0d ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x74f64791 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7f3dee10 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x8598daae ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xb8e73fcf ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xdd08f5ed ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe0a9d9fc ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xe696df34 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0950221c unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x127c04fe register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x30cebfe5 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x36b86a7e ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4289ead0 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55b4f31d ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b2361d8 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6eb09c5c ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x853b679e ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95159349 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa8c5b54d ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xacbbc940 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xee2b0b08 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf0a84eec ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf0badab0 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x072547cc nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x92017fe1 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xb2aceaf6 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xda419a96 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x2a7120a9 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x362a9b58 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x79eaf3b5 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7a1280c8 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x86da7152 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x9269097f xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa69a0158 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xc3daa0a9 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xe92ca4ee xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xf5c0fc3d xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x1612446f nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x1f0c40fd nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x2bba5249 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x40711eba nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x4105fb3f nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x434966c6 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x56cf1a2b nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x58197961 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x5aedaae0 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x91933118 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x93255437 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xa487d153 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xd2465865 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xd479218c nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xdfbd3cf6 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xe4194269 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xe84e1faa nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xf1ef1eac nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xf70456c3 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xfb409247 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xfcf22a5d nfc_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x03e1c844 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x1de068da nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x245df0c4 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x2d6bda9d nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x365003b6 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x36d7d562 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x37f954db nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x42d06829 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x450be348 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x462885f9 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x4fa11785 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x545eee0b nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x62b4bf53 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x664aa771 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7d8acf2a nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x862e4de1 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8a3d02ab nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xa26f61e6 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa8ef7dee nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb22d9d87 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbd39160a nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xcb869ec5 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xd13aeb0d nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xd72869dc nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd9a3812b nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xf0f4a095 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xf17164e6 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf2754025 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xffc49981 nci_recv_frame +EXPORT_SYMBOL net/nfc/nfc 0x07509414 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x20d0f7e6 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x282c63b4 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x40a4417e nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x48e6a4e3 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x67a67840 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x6b2539f0 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x6fea06d2 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x84e14eea nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x91016b3c nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x9604ca1b nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xa18a6b7a nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xa81c1857 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xa97a4b50 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xbc19880a nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xc8268fe4 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xc8853faf nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xc94f97f8 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xd2b5fd23 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xd382c9f6 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xd408ff8c nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xd83db138 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xdc891b0d nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xe06c8c1e nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf3e77312 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc_digital 0x2af3c7f2 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x3d3ad37a nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x50c627d1 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8c632f98 nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x3fa5ebd0 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x46a99f9e pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x4d042c2c pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x56a11ac0 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x59e560a6 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xd0993e02 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xf59f4a6f pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xfb62a244 pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x39029a67 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4ba6f115 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5a56837b rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5e510586 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x680a59a1 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x89dea612 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8f4d5a37 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9ea9b1f9 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9fe706dd key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa2c46faf rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb8e03eeb rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc36c7ec3 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc5abf18b rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc5bba97f rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcd4c8186 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcfeb37ab rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe3c8cfdb rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf03d535f rxrpc_kernel_recv_data +EXPORT_SYMBOL net/sctp/sctp 0x9979ba74 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x0e4a534b __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x0fb0e032 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x1e612b77 __SCT__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x3516cf47 __SCK__tp_func_smcr_link_down +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 0x441ab6bf __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x55dbb8a1 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x5a6249b5 __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x613ed5b9 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x71ba2315 __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x87ccd0c7 __SCT__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x8ceb4eaa __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xace340a1 __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xe39fc858 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xe6bdd655 __traceiter_smcr_link_down +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x59f4b85f gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbced5167 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf8e1dc4b gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb33e698b xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd13430a9 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xfaa3a1d9 svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x78d9ac9c tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x81dd0576 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xe8caeab2 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xf7b6fc4b tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0xf3d066f5 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x03cf2ada __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x04f809a0 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x091b2a8b cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0ed2ed1f wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x1696c050 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x181f95bd cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x197a4035 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1b8df86e wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x1bf7af95 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1dae9145 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x20a8c5ca ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x226e044d cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x25929ecd cfg80211_ch_switch_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 0x2936d854 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x34ebe63b wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x35189599 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x384fab32 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x389f75eb cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x39bb9c09 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x3b7892a7 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x3ca36921 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x3f0dc1d6 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x3fc92f0d cfg80211_rx_mgmt_ext +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 0x456e6a37 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x4ae6fa83 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x4cf15bb7 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x50e8ca1c cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x51eb5db7 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x51fcefac cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x52507172 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x528abf81 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x528e97e3 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x52a3b76f cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x54347d3e cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x56dd9e52 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x57a2e172 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x587b138d cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x63aac886 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x6722c45d wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x68a50e46 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a68bef0 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x6a993ca4 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6e8edb6f ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x7262f5d0 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x72e10c77 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x72f9d82e cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x73aecbbe cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x7567e531 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x76b34729 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7abd255e cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7b39e6ed cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x7b69acc9 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x7c26d2d6 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7d2129fc wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f185c87 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7f74c490 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x80b10b97 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x8220d06d cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x8574c31f cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x8655a3d6 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x8747620e cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x89e40b00 cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0x8d39e071 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x92750a54 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x9a22405a cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x9b4be8da ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9d197450 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa26751aa cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xa56bb80b cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa761c65d cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xabf7c947 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xac8b3e65 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xae669d21 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb1b30705 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xb620c65c wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xbb54b619 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xbea38754 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xc17f2001 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xc3995d19 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xc3cb1d82 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xc5419b0a regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xc70265b5 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcc6436b8 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xcdc735f6 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xce50ced3 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xcf461005 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xcfef297c cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xd179e412 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xd257aca7 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xd3d38d37 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xd49f9715 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd85fccab cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdb6c0de5 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdfacef9e cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xe0b29a69 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xef3824b7 cfg80211_assoc_comeback +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 0xf93f408e cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xfb543371 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xfe0d76ae cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xfe8fb478 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/lib80211 0x26d10d40 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x4fe9c21d lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x5dd8e39f lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x5e5d5a1a lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xd843089f lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xe2fcf253 lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x29c2517f ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x5150ffbe 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 0x459c4192 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x95c1b78a snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc9c114b0 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xdd5ff809 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 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 0x43e0c0e0 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x03023a07 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x0b8002b5 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x15d3622f snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x19329c8b snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1deb6b39 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x2176bca4 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x27e9e302 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x33f9ee26 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x37027f32 snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0x37a4b856 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3995d129 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x3b734baa snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x45f4c590 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x501428e4 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x583df602 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x583f37fe _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x5ce8dff7 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x628e4fbc snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x6663e63a snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x6f432e81 snd_ctl_remove +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 0x75efbe53 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x7bc2b57a snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x8293b0bb snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x857ffb13 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x85feb799 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x99ba7e30 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0a2358a snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xac878912 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xb01090ff snd_device_free +EXPORT_SYMBOL sound/core/snd 0xb0fe8514 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb3618ed1 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xb38ebeaa snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xb9711d96 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xbf5793a3 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xc4eea002 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xc4f7c2d6 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc80b80fd snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xcce88bb0 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xd0c8c6fd snd_register_device +EXPORT_SYMBOL sound/core/snd 0xd45498ba snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xd51baf82 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xdbecc527 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xe18470a5 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xe8efee38 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xf04344b4 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xf3973074 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xf7c5e145 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xfda50e18 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xff284ce7 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x7b3ebb23 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0xade04d9c snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x3e631ccf snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x001c7a11 snd_sgbuf_get_page +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 0x07ed0977 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x0a982173 snd_sgbuf_get_addr +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 0x1e14ab3f snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x295d9be5 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x2c3adf59 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x35dc1948 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x36a29fa1 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x38543c2f snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3cd61891 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x3e86f589 snd_pcm_create_iec958_consumer +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 0x55483ee5 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x5c8270b4 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60de7063 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x6290b957 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x67649d38 _snd_pcm_lib_alloc_vmalloc_buffer +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 0x6da43e50 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x6e002bc5 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x6f7db673 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x7915c97a snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8747281f snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x89534b30 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x8a2b667f snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x8c4be9c0 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x8f0b5d1f snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x9128739c snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x91f32268 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x94ef96e8 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x97518075 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x98982b5d snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x98d2af4a snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xa15f56bf snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xa2acad1a snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa49eb4f1 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa86b845e snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb37408de snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb5e88449 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc00e0e58 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xc749e06d snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc759cc0d snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xcc2921c2 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xd4279625 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xd77bd4ac snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xdff65117 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe6f08a90 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xe9096ab3 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xed92d200 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xf90a0f04 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-pcm 0xffffce11 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-rawmidi 0x14f6513b snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x19c2f0da snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1e294bf5 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x219acde8 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x234282f8 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x24a55da7 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x272762cd snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x343a33b8 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x394e77ff snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7161bade snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x77710e4c snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x80259602 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa2ba5818 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb267b1f5 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbb6c0c21 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc226eb1b snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd0a3a5a5 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd18ae857 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x1816c356 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 0x0bbcb16e snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x11e1b04d snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x237a6542 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x408a2596 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x42d6dac1 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x5341fbcf snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x58da31bb snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x64cf69fe snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x8cddb936 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x8f117351 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x9c4eac0a snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xacd3e3af snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xcdd0a453 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xdd51ba40 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xe3903d69 snd_timer_resolution +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xb5e49250 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1b71b021 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1f2934fa snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x51e960bf snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x54347aec snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7d3fb4df snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xae9d7598 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb132bef5 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xba149904 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8872059 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x050180bf 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 0x799bc41f snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x814ffc36 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x903fe067 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9fca8548 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa78b288c snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xaf569281 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb8fd4fb1 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc3020222 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x089b4a6a fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11bf4e6b cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1dbae58b amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x217029dc amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x425b5344 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x43ea5093 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45e45b48 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47e0398d cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b1a406e avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5fe8c8d5 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x612928c7 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8bef5a2a fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d1af55c cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9017392d avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9530373f amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98b18dd6 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c4d8395 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1c0d448 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa76ceaaf fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa90a5156 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xada67a7b amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xadacf9fa snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3672e88 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd639c3c cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcff31e3e amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd0b4471a amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe675c7d3 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe7a61d73 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf4564f58 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x45474cd2 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xb7b836b3 intel_nhlt_ssp_mclk_mask +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe5dfee39 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf5def415 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0bc61ba2 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0d432b03 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3b751b86 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x94709c7c snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbdfd8e35 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd332a362 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdb8898e9 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe3e22f5a snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x430ee3ed snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x457ad575 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5f52235b snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x67ad46f4 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x79ea3c2c snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd20792af snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x39a5b189 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8068aaed snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe279927c snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf114ecfa snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x11ef87e5 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6834951f snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0ee28e4c snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x19d251a1 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2e841ab4 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4d8f9fe2 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7a5a6a03 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8c2b1c35 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x28db1864 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5c8c1a1f snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x647b391b snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x69041c04 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb1672ff3 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc087418d snd_i2c_sendbytes +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0b0b429e snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1925021c snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3df83011 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x451e4b02 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x55ec58ed snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5e90e873 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb6aeb7ee snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc0e97a62 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc4e879b0 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfa190efc snd_sbdsp_get_byte +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x09852b9e snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x10efd65e snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2cbc061e snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2d387a75 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2d3984f5 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3b79d743 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4449d9da snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x58d33705 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x636a98db snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x63f0b9b6 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7f808bf9 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb1ac8801 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb91cd24f snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xca787d56 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda564102 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdc365a50 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf32ea173 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x8e2f0a90 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0f0a33d0 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2e5fe58e snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x72cffa48 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x773b04ae snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x92426b7b snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa1134fa1 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd1c406ff snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd4619f17 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xffbd82d9 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6af66f44 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xcb57615a snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd96ddea3 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0480cb47 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x13a46e2f oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26737187 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2d4f72b8 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x312a96d9 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x36828b85 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x52f4a3d0 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5a8c00c5 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6a5e72e9 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d756db2 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d93a5f5 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x90806b59 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa2a488a2 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb606d8c3 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xce56a202 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd0e851ed oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xda7e4aa7 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdc5b4872 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeedd5890 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa47c281 oxygen_write32 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x08fb0333 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9bd99040 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbef5b38c snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcf3b614c snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe53cda19 snd_trident_start_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x8fafb4d5 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xcbbf67b4 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xd9ce37e8 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xf8d27351 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xbaf794a1 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x06d76276 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x9d4796fb pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x66c9eeb0 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x9a6f0394 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x109260d1 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x26ddefa2 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x56da92c5 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7da34d6d aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x972623ec 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 0x5d44b808 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x5ff42ffe wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x77b8abc7 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 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x07328144 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x292ce630 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x4e1f5399 fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/snd-soc-core 0x96054e50 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x024c6251 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x064aca6a snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13eacdcb snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x150c89ff sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17db3cee snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x19b34018 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1a03d30a snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x22987b0c sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x229f84db snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c9a61ea snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34cc054a snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x399425f4 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x39af2d41 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3cb8255c sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d900e87 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3e772e47 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40827d27 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x438fef90 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4496c34a sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f525ccd sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5cf25475 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6019ccea snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x695169bc snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a1e4030 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6ac9a363 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6d3433fa sof_ipc4_set_pipeline_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x70076dc0 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x75d3ba19 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78eacc5c sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x815405fb sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8bd9e9e9 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8eba9bef snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90489534 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9de8d668 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa5aa1799 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7077f31 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac445b01 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac53f98d snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb39b23be snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb74fb48e snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc2a4793b sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc3424f4c sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc3d16817 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc658817b sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb321931 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb7cc941 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf4579dc sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5a57231 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5a98990 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd98eee03 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc89caac sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xddb235c8 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb3d8dbf sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1291f10 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2b6bbfb sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfc4b998b snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe47fc89 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x6f663022 snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x066e77fa sound_class +EXPORT_SYMBOL sound/soundcore 0x145a8779 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x1e40543d register_sound_special +EXPORT_SYMBOL sound/soundcore 0x35e4daac register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xbb4f505d register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x33290115 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3feadb3d snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4fa6a9fa 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 0x8269b17d snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb2a59795 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe22b0a2f snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x914f3491 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9223e14b snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x80df2253 __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 0x00066a3c tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x001af985 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x002d8c54 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x0067d1dc to_ndd +EXPORT_SYMBOL vmlinux 0x006bd573 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x006ed6e5 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x0075152f generic_fadvise +EXPORT_SYMBOL vmlinux 0x009c4365 devm_release_resource +EXPORT_SYMBOL vmlinux 0x009e6e51 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00c377fa blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e89a49 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x00e98c5b phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x010f410b phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x0114eed5 sock_alloc +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x0122c086 acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x01286de8 simple_rmdir +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x01470db9 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01483876 sget +EXPORT_SYMBOL vmlinux 0x014a5fdc skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x01512913 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x01634f0f iget_failed +EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x01703d57 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017b86bc ptp_find_pin +EXPORT_SYMBOL vmlinux 0x017bb47e dev_mc_init +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x0193961b kernel_accept +EXPORT_SYMBOL vmlinux 0x01a3068f genphy_resume +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01ceb46b scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x01e61d6c __x86_indirect_call_thunk_r12 +EXPORT_SYMBOL vmlinux 0x01eb066a netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x0200f4f3 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x024085a6 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024b52cb vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x0251d8d5 md_integrity_register +EXPORT_SYMBOL vmlinux 0x025b7375 dcb_getapp +EXPORT_SYMBOL vmlinux 0x025ecdff pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02886465 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x028f9892 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x029666db scsi_register_driver +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a3efa7 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02c7bc4e init_net +EXPORT_SYMBOL vmlinux 0x02ceab42 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x02d6bd3f xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x02d99bdc __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x02ef4c16 fasync_helper +EXPORT_SYMBOL vmlinux 0x02f0875d sg_miter_next +EXPORT_SYMBOL vmlinux 0x0310304f setattr_prepare +EXPORT_SYMBOL vmlinux 0x032ad9d4 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0336fa2c flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x033acbd4 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x033b464c send_sig_info +EXPORT_SYMBOL vmlinux 0x03537ce5 kfree_skb_list_reason +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 0x036cce78 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x036cd3bd __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add +EXPORT_SYMBOL vmlinux 0x037d71fc seq_putc +EXPORT_SYMBOL vmlinux 0x037fcee4 __destroy_inode +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0382ffa8 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x0390d7b3 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03ad4449 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x03b303d7 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x03b429fc __serio_register_port +EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x03b8a1ac nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03c3da30 param_ops_charp +EXPORT_SYMBOL vmlinux 0x03c5731c mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x03f722cd n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0403b661 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x040c5787 input_match_device_id +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 +EXPORT_SYMBOL vmlinux 0x045f4cd4 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x046d8e8d xfrm6_rcv_tnl +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 0x04adc2b8 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04deb105 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x04e47e14 dev_trans_start +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051322cd inode_init_always +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053671d4 amd_iommu_snp_en +EXPORT_SYMBOL vmlinux 0x053bfbfc trace_event_printf +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05468b75 bio_uninit +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x0574827c rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x057839c0 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x0598734d filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05ceb868 tcp_child_process +EXPORT_SYMBOL vmlinux 0x05f02d51 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x05f20b7b nla_reserve +EXPORT_SYMBOL vmlinux 0x0600f757 tty_write_room +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061468ff ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062b4a47 get_fs_type +EXPORT_SYMBOL vmlinux 0x062d304c inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063ec647 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x065f3e4c netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x066f64e1 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x067e541a dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x0696f502 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x06992848 __bread_gfp +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06ab3568 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06c3f824 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x06c771b5 nd_device_notify +EXPORT_SYMBOL vmlinux 0x06cb6c4f bio_chain +EXPORT_SYMBOL vmlinux 0x06cf254a d_obtain_root +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06ef2bf3 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x07062302 __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x0710f2a9 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x071978ec __fs_parse +EXPORT_SYMBOL vmlinux 0x071c11ee ihold +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0736a855 block_dirty_folio +EXPORT_SYMBOL vmlinux 0x0744d91f inet6_add_offload +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x076e2701 __d_drop +EXPORT_SYMBOL vmlinux 0x07750acb xfrm_register_type +EXPORT_SYMBOL vmlinux 0x077cfd85 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x0780a7e2 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x079f7cbf tcp_read_sock +EXPORT_SYMBOL vmlinux 0x07a268fe tcp_sendpage +EXPORT_SYMBOL vmlinux 0x07a542ec nd_dax_probe +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07af5343 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x07b783a8 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x07b883c8 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x07c31a55 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x07c91bb0 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cc55d2 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07e030fd md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x07e3f40c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x07ecfcd2 folio_migrate_mapping +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 0x0809fcab phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x080dece3 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x0823e9ce block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x08267cc3 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x0826b590 elv_rb_add +EXPORT_SYMBOL vmlinux 0x0829ee94 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08336bb2 padata_do_serial +EXPORT_SYMBOL vmlinux 0x0833a072 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x0833ad24 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0852a43c agp_find_bridge +EXPORT_SYMBOL vmlinux 0x0865d17c scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x08691503 ip_frag_init +EXPORT_SYMBOL vmlinux 0x08907d67 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x08b34eea d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x08bd53d2 pci_free_irq +EXPORT_SYMBOL vmlinux 0x08f57122 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x094d45c3 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x0962078f zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x0966e107 __x86_indirect_call_thunk_r9 +EXPORT_SYMBOL vmlinux 0x096dfa00 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x09799e03 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x0981bced pci_set_master +EXPORT_SYMBOL vmlinux 0x098ac534 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x099dd1e0 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x09a59eca free_netdev +EXPORT_SYMBOL vmlinux 0x09b03ea4 xfrm_input +EXPORT_SYMBOL vmlinux 0x09b9998d folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d77d44 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e0edb2 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x09f11bdb xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a08ada2 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a19b956 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a25a1c0 arp_send +EXPORT_SYMBOL vmlinux 0x0a2f54df input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x0a3914a4 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x0a4057cb bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x0a43ced2 find_vma +EXPORT_SYMBOL vmlinux 0x0a5f394b tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x0a650cfa input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x0a679198 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x0a707ad4 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a775351 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a851164 get_watch_queue +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa551c6 twl6040_power +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ab24ecd ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x0ab9f222 km_state_notify +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adcf4f9 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x0affb012 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x0b0fea1e max8998_update_reg +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 0x0b49e272 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x0b50bcf8 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x0b5eff3e fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b86755d phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x0b882f42 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bb258f1 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x0bb2f61a md_register_thread +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcfab6a devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0bfefb1b devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x0c21dcb1 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x0c22d6cf tcp_filter +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c47484a netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x0c4c32b8 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c61aabb tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x0c694a09 napi_enable +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c812eed scsi_device_put +EXPORT_SYMBOL vmlinux 0x0c9cbf8a skb_expand_head +EXPORT_SYMBOL vmlinux 0x0ca74d98 pps_register_source +EXPORT_SYMBOL vmlinux 0x0cc0094b tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cd40d19 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cf872da inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x0cf9645c eth_header +EXPORT_SYMBOL vmlinux 0x0cfcf5c7 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x0cfe3e72 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d0a8e13 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x0d22fffe xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d507070 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x0d50c731 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d59b250 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x0d788c83 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x0d855680 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x0d99675a set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0da6fb6a __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0db384c3 key_unlink +EXPORT_SYMBOL vmlinux 0x0dcce5c3 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x0ddc9ab2 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x0de252b3 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x0deacc6c xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x0df990e3 __fput_sync +EXPORT_SYMBOL vmlinux 0x0e0310b2 tcp_close +EXPORT_SYMBOL vmlinux 0x0e0b24e9 genlmsg_put +EXPORT_SYMBOL vmlinux 0x0e0fb248 folio_alloc +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e357bcc inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e5d72f0 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x0e6bde29 register_quota_format +EXPORT_SYMBOL vmlinux 0x0e76e7cf tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x0e7e5096 finalize_exec +EXPORT_SYMBOL vmlinux 0x0e81a9fb __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x0e956674 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x0e9902c0 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0ea7e980 get_user_pages +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecafe4a param_set_int +EXPORT_SYMBOL vmlinux 0x0ee6ed50 seq_pad +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f134a0b __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f1f6c80 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x0f25d771 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x0f28670e dev_load +EXPORT_SYMBOL vmlinux 0x0f30f582 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x0f36f806 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f633dbe register_framebuffer +EXPORT_SYMBOL vmlinux 0x0f66f2a6 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x0f6e833c mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f9b6fb6 __seq_open_private +EXPORT_SYMBOL vmlinux 0x0fa8a732 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fcbee15 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x0fd20dcd xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe53f2b inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x0ff15ed0 __napi_schedule +EXPORT_SYMBOL vmlinux 0x0ff2fa56 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x100c571b mark_page_accessed +EXPORT_SYMBOL vmlinux 0x10145cc8 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x10228132 neigh_xmit +EXPORT_SYMBOL vmlinux 0x102ae06b ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x103491f7 inet_sendpage +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x104ad007 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x104dbbfa call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x105b4f13 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x106202ec unregister_shrinker +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107dd046 __x86_indirect_call_thunk_r8 +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1091efed bio_add_page +EXPORT_SYMBOL vmlinux 0x109e853e pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x10bc133c mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x10cad96e fs_param_is_path +EXPORT_SYMBOL vmlinux 0x10d1216a fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x10d8f435 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10ef72f4 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11097c60 uart_resume_port +EXPORT_SYMBOL vmlinux 0x111c7f7c vga_put +EXPORT_SYMBOL vmlinux 0x1120c6af __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x1127f9a4 netif_rx +EXPORT_SYMBOL vmlinux 0x11442ce3 fget_raw +EXPORT_SYMBOL vmlinux 0x1144b968 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x114b9263 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x11586998 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x115feded phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x1165af52 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x1166b2aa netif_receive_skb +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117bcdce nf_log_unset +EXPORT_SYMBOL vmlinux 0x1195e71a tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x119a203b kill_block_super +EXPORT_SYMBOL vmlinux 0x11bb99d3 nf_log_trace +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x12136410 pci_find_resource +EXPORT_SYMBOL vmlinux 0x1213a2ef netdev_state_change +EXPORT_SYMBOL vmlinux 0x121c614a fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x122c3a7e _printk +EXPORT_SYMBOL vmlinux 0x123ac37c xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x12448542 netlink_unicast +EXPORT_SYMBOL vmlinux 0x1247daa1 task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x124913ec tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x125a8356 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down +EXPORT_SYMBOL vmlinux 0x12813bf2 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x128decea kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x12a0402c migrate_folio +EXPORT_SYMBOL vmlinux 0x12b99b91 _dev_warn +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12f0adc1 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x130ca5b8 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1315218b input_reset_device +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x1324e3e3 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x1325ffaa dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x134e3ec4 may_umount +EXPORT_SYMBOL vmlinux 0x1363448d security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x137473a6 peernet2id +EXPORT_SYMBOL vmlinux 0x137dc015 dma_resv_init +EXPORT_SYMBOL vmlinux 0x1383a572 page_get_link +EXPORT_SYMBOL vmlinux 0x13870d1c mmc_free_host +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x139c7ca1 filemap_flush +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13bcb487 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13c4b595 give_up_console +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13de557f folio_write_one +EXPORT_SYMBOL vmlinux 0x13e0a018 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x13e461e5 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x13f2a545 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f4994a fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x14159b34 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x142844a4 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x1445659d blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x1460c2e0 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1475a732 dma_ops +EXPORT_SYMBOL vmlinux 0x147afd93 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x14804af2 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x14a16d40 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg +EXPORT_SYMBOL vmlinux 0x14bf9b62 kill_pid +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14cf3992 request_firmware +EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock +EXPORT_SYMBOL vmlinux 0x14f97123 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x14fe0d02 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x14fefaa8 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x150b50e1 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x150e4749 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x15156cea key_task_permission +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x153e8e1f tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155789c0 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x15587a20 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x156919f0 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x156f0647 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x15773cf7 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x1577a9ef sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x158910fd mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x15ad95c9 serio_rescan +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 0x15cbf372 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x15d966a3 sk_dst_check +EXPORT_SYMBOL vmlinux 0x15f2c7a9 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x15f402b0 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x15f5bb9c bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x162484dc __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1636f887 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x163fdfbb simple_write_begin +EXPORT_SYMBOL vmlinux 0x164d8bbe xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x16776217 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x1677cae6 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167d288d configfs_depend_item +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x168b084c __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x168bdfcd devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x16aec733 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x16b5b873 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x16bb6045 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16db573a rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e0f31c key_alloc +EXPORT_SYMBOL vmlinux 0x16e124b2 readahead_expand +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ff46ea fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x1703def7 pci_release_region +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x1725beba flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x1736c04d nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x17444da0 do_splice_direct +EXPORT_SYMBOL vmlinux 0x1747d4f3 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x174880a4 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x1756b440 security_path_mknod +EXPORT_SYMBOL vmlinux 0x1758207c devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x17587b0d pci_get_class +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x175f3cf5 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x1766e71a blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x176a7ddb __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x1781aa8d tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x178e2a49 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x17b670ea netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17ead8c6 kobject_set_name +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f3ca86 kobject_put +EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x17fad531 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x184c5f17 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x1859e58a alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x185d46d5 clear_user_rep_good +EXPORT_SYMBOL vmlinux 0x18680ec3 devm_iounmap +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18a3aca8 set_pages_uc +EXPORT_SYMBOL vmlinux 0x18a45322 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18b8f619 unload_nls +EXPORT_SYMBOL vmlinux 0x18c43a0a iov_iter_init +EXPORT_SYMBOL vmlinux 0x18c74ad5 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x18d1303e serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x18d34eb2 seq_open +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f868ab reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x18fd2c2d __x86_indirect_call_thunk_r13 +EXPORT_SYMBOL vmlinux 0x190af8d1 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x191dec68 __register_binfmt +EXPORT_SYMBOL vmlinux 0x191faba9 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x192261a7 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x193f181e acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x1950991c dev_addr_mod +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x1954e68f tty_register_device +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198bad8d devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b1ec00 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19bd4a79 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x19bd7615 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x1a2a3b13 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x1a2ba62d qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x1a3feca5 __free_pages +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a52afdd component_match_add_typed +EXPORT_SYMBOL vmlinux 0x1a5fed0e mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0x1a99dff1 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1ab9077d __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac81cda touch_buffer +EXPORT_SYMBOL vmlinux 0x1ac96cd1 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x1aca0226 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x1aee5b96 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x1af21c3e inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x1afce163 ethtool_notify +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1a11cd block_commit_write +EXPORT_SYMBOL vmlinux 0x1b238eb4 locks_init_lock +EXPORT_SYMBOL vmlinux 0x1b23f88c param_ops_uint +EXPORT_SYMBOL vmlinux 0x1b2d6720 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x1b3b1ad8 devm_request_resource +EXPORT_SYMBOL vmlinux 0x1b3d69f1 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x1b3eef6b devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x1b422c9b udp_sendmsg +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b668890 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b82fae4 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x1ba44d2d dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bacfc5a __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bd157cd set_trace_device +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bf9d223 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x1bfbbe61 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x1c0abe6d acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x1c400c9a netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c8ab2c7 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cc3260c netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x1cc5b954 user_path_create +EXPORT_SYMBOL vmlinux 0x1cc83fd1 lookup_one_len +EXPORT_SYMBOL vmlinux 0x1ccda6a1 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cee93a1 d_splice_alias +EXPORT_SYMBOL vmlinux 0x1cefd5d3 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask +EXPORT_SYMBOL vmlinux 0x1d1a8c01 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d29092a __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d44920d __dquot_free_space +EXPORT_SYMBOL vmlinux 0x1d463dbb bpf_link_put +EXPORT_SYMBOL vmlinux 0x1d704870 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x1d85c778 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x1d90135a skb_checksum_help +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1d989a9e block_truncate_page +EXPORT_SYMBOL vmlinux 0x1da0f148 tty_unlock +EXPORT_SYMBOL vmlinux 0x1db33b7b configfs_register_group +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dcf101c pci_claim_resource +EXPORT_SYMBOL vmlinux 0x1dd51398 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de2d5c7 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1dfbfedb clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x1e071963 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e34f3fd seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x1e3a1239 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x1e46bab7 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x1e54741b skb_queue_tail +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e79f83f nonseekable_open +EXPORT_SYMBOL vmlinux 0x1e7beaa8 dput +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea8e8a1 blkdev_put +EXPORT_SYMBOL vmlinux 0x1eb784fd __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ebadade pipe_unlock +EXPORT_SYMBOL vmlinux 0x1ec2bb65 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x1ed364b6 __scsi_execute +EXPORT_SYMBOL vmlinux 0x1ed3ec77 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1f00b297 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x1f1821ae efi +EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string +EXPORT_SYMBOL vmlinux 0x1f4976a1 sk_stream_error +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f5a2a64 tcp_req_err +EXPORT_SYMBOL vmlinux 0x1f69a5bd ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x1f83fe5a t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x1faeec47 release_sock +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc42891 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd2f29d napi_gro_frags +EXPORT_SYMBOL vmlinux 0x1fe2be5e d_set_fallthru +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201848f0 skb_queue_head +EXPORT_SYMBOL vmlinux 0x201e3e3a pci_scan_bus +EXPORT_SYMBOL vmlinux 0x2023c54d d_invalidate +EXPORT_SYMBOL vmlinux 0x2026fa05 dev_uc_del +EXPORT_SYMBOL vmlinux 0x202c8afe __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x20489636 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x205ebf00 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x20680570 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x20768d0c user_revoke +EXPORT_SYMBOL vmlinux 0x20819f3b netpoll_print_options +EXPORT_SYMBOL vmlinux 0x2088c80a config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x209183f9 default_llseek +EXPORT_SYMBOL vmlinux 0x209cadff param_get_charp +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b0fc14 bio_put +EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20cca82a pnp_possible_config +EXPORT_SYMBOL vmlinux 0x20d2c9bd tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x20d5aeb3 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20dde75d jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x21173909 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x21395fa8 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21556699 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21bce680 md_handle_request +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c236a0 setup_new_exec +EXPORT_SYMBOL vmlinux 0x21dc9d8c xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e47e4b phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f7964b tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x21fed743 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x220bd2c3 ip6_output +EXPORT_SYMBOL vmlinux 0x2221cfea udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x22226aa1 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x2227d91c mmc_release_host +EXPORT_SYMBOL vmlinux 0x222d72ed phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x224925e8 dma_fence_describe +EXPORT_SYMBOL vmlinux 0x226d514f xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x2272a78f fs_lookup_param +EXPORT_SYMBOL vmlinux 0x2279c69a __find_get_block +EXPORT_SYMBOL vmlinux 0x22856b2d __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x22885dbe sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x22a1422d percpu_counter_sum_all +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22bdd702 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x22c8eaa2 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x22e3bf0e ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x22fe2140 vfs_rename +EXPORT_SYMBOL vmlinux 0x2320b9c1 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x2326704c dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x2326f918 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x2328001c sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x233aa46c mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x233aed1d inode_nohighmem +EXPORT_SYMBOL vmlinux 0x2342b15e genphy_read_status +EXPORT_SYMBOL vmlinux 0x23507cd5 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x236467c3 vma_set_file +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 0x239a719f flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x23a087e0 __bio_advance +EXPORT_SYMBOL vmlinux 0x23b092c8 fd_install +EXPORT_SYMBOL vmlinux 0x23b09485 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bae739 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23ff3e55 md_done_sync +EXPORT_SYMBOL vmlinux 0x24002982 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x2421aead md_update_sb +EXPORT_SYMBOL vmlinux 0x242496ce nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x242ec727 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x2434e37a jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x2451e354 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245eb8fb flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x24611e6f blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x246e679e kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x2472aaea inc_node_page_state +EXPORT_SYMBOL vmlinux 0x247e258a kernel_getpeername +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24971fc5 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x24a11e17 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x24c7ff67 override_creds +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d81891 netdev_notice +EXPORT_SYMBOL vmlinux 0x24e10858 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x24ed48d1 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x252664ed console_stop +EXPORT_SYMBOL vmlinux 0x2538e759 sock_release +EXPORT_SYMBOL vmlinux 0x254cd4b4 pipe_lock +EXPORT_SYMBOL vmlinux 0x25562d08 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x2566204b security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25832158 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x258eaf3a mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x25a43179 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x25b53936 genphy_loopback +EXPORT_SYMBOL vmlinux 0x25c00d8f registered_fb +EXPORT_SYMBOL vmlinux 0x25c535d6 simple_empty +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e5911f d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fe45f3 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x261dd11d key_revoke +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263ec61a tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x265557fd param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x2688f441 sock_init_data +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x268a488a flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x268ad052 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x2695128c skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x269a4c71 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x269fa751 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x26c292a7 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x26e1f405 would_dump +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26efe0ac __neigh_event_send +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x26f945ed unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x2725eb98 rw_verify_area +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x2742db97 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274ba1c4 free_buffer_head +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27607a9f nf_ct_attach +EXPORT_SYMBOL vmlinux 0x276f5a48 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277e947e jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27ef9c31 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x280269af km_policy_expired +EXPORT_SYMBOL vmlinux 0x2813bcba xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x283d0d7c __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x28407b8b simple_statfs +EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0x286823ec generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x286c9ad9 from_kprojid +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x289771bb commit_creds +EXPORT_SYMBOL vmlinux 0x289cbbe0 param_get_ulong +EXPORT_SYMBOL vmlinux 0x289ec5c8 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x28c99da3 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x28d23385 netdev_emerg +EXPORT_SYMBOL vmlinux 0x28dab5d3 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x28dc86d4 kmalloc_trace +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x2907f64d pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x290bf4b5 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x291d0032 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0x293bd1e6 filp_close +EXPORT_SYMBOL vmlinux 0x294e3acc lease_modify +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x2989487b nla_append +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29b737ea simple_transaction_release +EXPORT_SYMBOL vmlinux 0x29bc12a8 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x29caac27 ps2_drain +EXPORT_SYMBOL vmlinux 0x29db8183 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x29dcf282 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29f3703d dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x2a001fdd i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a34cf15 simple_link +EXPORT_SYMBOL vmlinux 0x2a531310 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x2a63ae74 qdisc_reset +EXPORT_SYMBOL vmlinux 0x2a69a3f0 skb_ext_add +EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable +EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x2a7597dc buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x2a85b203 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x2a8a6ab0 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2abf38ef netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x2acb4eaf __x86_indirect_call_thunk_r11 +EXPORT_SYMBOL vmlinux 0x2ad28027 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x2afeb122 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x2b41b77a skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x2b76253f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x2b79dd2c sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x2b89d15b unpin_user_page +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bae204e mt_find +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bb7c05d __x86_indirect_call_thunk_rsi +EXPORT_SYMBOL vmlinux 0x2bd12c84 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2be281a7 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x2bfa42b4 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x2c0ca365 __register_nls +EXPORT_SYMBOL vmlinux 0x2c14bf0f acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x2c1bf8b8 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c4db1a1 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x2c510326 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c58f5a7 path_has_submounts +EXPORT_SYMBOL vmlinux 0x2c620e67 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c7814bf __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x2c796feb ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c8310f2 sock_no_accept +EXPORT_SYMBOL vmlinux 0x2c9a1b4e __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2ce3bd94 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table +EXPORT_SYMBOL vmlinux 0x2cf14065 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x2d02fb99 mount_single +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d2d67e7 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3e5088 bdi_put +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d5cd77a remap_pfn_range +EXPORT_SYMBOL vmlinux 0x2d61671a register_qdisc +EXPORT_SYMBOL vmlinux 0x2d690c3a convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x2d8e7de9 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2dac52c1 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x2db1c6bc folio_mapping +EXPORT_SYMBOL vmlinux 0x2db1cefb take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2dee6428 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e0653bd ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e0e7035 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x2e1b77c1 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e27600d scsi_done_direct +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c8b3b vm_mmap +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e460476 phy_write_paged +EXPORT_SYMBOL vmlinux 0x2e4775d3 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x2e5e6cd5 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e804b6b set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x2e8433d2 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x2e886ca9 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x2e9da022 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x2eb12e1c scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x2eb5739b mmc_add_host +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecaec8d elv_rb_find +EXPORT_SYMBOL vmlinux 0x2ed8938a jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x2edb78cd seq_open_private +EXPORT_SYMBOL vmlinux 0x2edc1a3b clk_add_alias +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ee600a4 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0929df tty_port_init +EXPORT_SYMBOL vmlinux 0x2f1d20ca rproc_report_crash +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f351ce3 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f4bfd1f sg_miter_start +EXPORT_SYMBOL vmlinux 0x2f5ba773 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x2f6212b6 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x2f73ab71 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x2f77502f inet6_release +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f799e6d i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x2f7d907d scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x2f9ada96 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x2fa82d6b dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x2fb76fc2 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x2fc9b19d dcache_dir_close +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fee7258 neigh_for_each +EXPORT_SYMBOL vmlinux 0x2ff8983e find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x30053a47 pci_match_id +EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x30296b97 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x302b7a49 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x303c503e tcp_make_synack +EXPORT_SYMBOL vmlinux 0x304917b6 neigh_update +EXPORT_SYMBOL vmlinux 0x3053311f folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x3059a866 dm_io +EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0x3076816c devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x307aaac9 tcp_check_req +EXPORT_SYMBOL vmlinux 0x30861a8d pci_fixup_device +EXPORT_SYMBOL vmlinux 0x3090c3c5 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a890da tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30f1eacc simple_rename +EXPORT_SYMBOL vmlinux 0x30ff4467 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x30ff9e70 __f_setown +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312985cc read_cache_page +EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info +EXPORT_SYMBOL vmlinux 0x3141e9a4 iput +EXPORT_SYMBOL vmlinux 0x314b08d9 rt6_lookup +EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x316160b1 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x3167badb napi_build_skb +EXPORT_SYMBOL vmlinux 0x316ca652 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x317c5279 agp_create_memory +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a62ef3 config_group_init +EXPORT_SYMBOL vmlinux 0x31c3657a add_to_pipe +EXPORT_SYMBOL vmlinux 0x31c8cc0a genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x31ecdebc mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x31ef14b2 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x31efac21 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x31f5d920 dst_release +EXPORT_SYMBOL vmlinux 0x31fc33ee vfs_get_tree +EXPORT_SYMBOL vmlinux 0x32028db2 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x3206200c __register_chrdev +EXPORT_SYMBOL vmlinux 0x321081ec crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x3226e24c bdi_unregister +EXPORT_SYMBOL vmlinux 0x323bf528 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x323c2639 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x323d1832 phy_device_free +EXPORT_SYMBOL vmlinux 0x3241a6b5 vme_slot_num +EXPORT_SYMBOL vmlinux 0x324cc1a3 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x32571331 param_ops_long +EXPORT_SYMBOL vmlinux 0x325be5b5 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x325dffab eth_header_parse +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32929d88 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x32aa8adf rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x32abc29d netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x32b31e32 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x32c4a5f7 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d47d84 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x32dc87b9 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x32de75a8 __x86_indirect_call_thunk_rdi +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load +EXPORT_SYMBOL vmlinux 0x32ecc21a phy_register_fixup +EXPORT_SYMBOL vmlinux 0x32f0874d dm_table_event +EXPORT_SYMBOL vmlinux 0x33037215 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x33048a31 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x33089ad5 __lock_buffer +EXPORT_SYMBOL vmlinux 0x33150ce5 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x3316cb2f unix_get_socket +EXPORT_SYMBOL vmlinux 0x331c0b0e __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x33244146 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x3348791a pskb_extract +EXPORT_SYMBOL vmlinux 0x336451f2 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x338e296e remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x339110b4 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x33a0b114 to_nd_btt +EXPORT_SYMBOL vmlinux 0x33a75a18 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x33b034a1 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33d07fee __x86_indirect_call_thunk_r10 +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +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 0x3410698c iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x34360167 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x34426eab d_prune_aliases +EXPORT_SYMBOL vmlinux 0x3458700a set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x3472737b mark_info_dirty +EXPORT_SYMBOL vmlinux 0x3475bb92 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x347d4120 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x348c6aa5 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349ec1a6 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34b04931 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x34c0f8d2 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x350db4db ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x350ef46d skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x351701d6 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3530449f unregister_md_personality +EXPORT_SYMBOL vmlinux 0x3537b538 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x354afc9f kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3589bdf0 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x3592403d misc_register +EXPORT_SYMBOL vmlinux 0x3593f5b8 input_inject_event +EXPORT_SYMBOL vmlinux 0x35966a80 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b56dd7 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x35e2c8d0 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x35ee0cf3 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360b9ea0 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x3617198e pci_choose_state +EXPORT_SYMBOL vmlinux 0x3619d01d locks_copy_lock +EXPORT_SYMBOL vmlinux 0x3619e2d1 scsi_partsize +EXPORT_SYMBOL vmlinux 0x36284363 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x362ac19a dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36763bd8 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x367c946d truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x3686ab19 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x368a0869 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x368ab757 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x36a2cf37 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36baf3a9 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x36d182b7 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x36d7ec55 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x36dae268 arp_create +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x371a82de wake_up_process +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x372ffd80 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x378679cb pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x379dbd6f nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x37a1b77b md_write_inc +EXPORT_SYMBOL vmlinux 0x37a22833 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x37a55c28 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c482ae dump_skip +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37f7fe6f lease_get_mtime +EXPORT_SYMBOL vmlinux 0x37fe25cd pci_dev_get +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x386cea58 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x386d4d9c kern_path +EXPORT_SYMBOL vmlinux 0x387503db mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x387cefcb dev_mc_add +EXPORT_SYMBOL vmlinux 0x38823e04 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38ad84d4 dev_driver_string +EXPORT_SYMBOL vmlinux 0x38b1954c scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x39107e8a vme_master_request +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x3923a536 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x392891e3 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x392dd0d0 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x392eaa7d tcp_read_done +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 0x395c54ba i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x396704af scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x3986015c devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x39912500 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3996f565 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399bacd9 simple_fill_super +EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x39bcab0e neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39e2b669 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39fd5672 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x3a18ec8d ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x3a1ab3b5 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x3a3de95d netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x3a40e031 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a8a7fd1 edac_mc_find +EXPORT_SYMBOL vmlinux 0x3a95d777 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x3aa47c55 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abb79af inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x3abe2f1c amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x3ac9713b drop_nlink +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3acbde35 pci_ep_cfs_remove_epc_group +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 0x3ae8d98b scsi_device_get +EXPORT_SYMBOL vmlinux 0x3ae9792e devm_clk_get +EXPORT_SYMBOL vmlinux 0x3af67ce4 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b2eadfd tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x3b3179d0 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b64fbf9 phy_loopback +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b7af66f dev_activate +EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b8b3ea6 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3bb5872c jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x3bb96897 input_open_device +EXPORT_SYMBOL vmlinux 0x3bcd8898 inet_del_offload +EXPORT_SYMBOL vmlinux 0x3bd27e9c __SetPageMovable +EXPORT_SYMBOL vmlinux 0x3bd3519d invalidate_disk +EXPORT_SYMBOL vmlinux 0x3bd6ebd7 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x3bebe073 __quota_error +EXPORT_SYMBOL vmlinux 0x3bf12a45 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x3bfdea54 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x3c062b17 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c22cfff __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x3c239a40 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x3c36b4bc phy_find_first +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c447eba phy_device_remove +EXPORT_SYMBOL vmlinux 0x3c519394 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x3c542916 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x3c8ed0d5 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x3c9024a8 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x3c9b1152 vfs_setpos +EXPORT_SYMBOL vmlinux 0x3ca5c0bb capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3cd2059d request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x3cd37e73 km_new_mapping +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ced01bd simple_dir_operations +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d345014 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x3d53074b mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x3d688808 param_set_long +EXPORT_SYMBOL vmlinux 0x3d6daad2 page_readlink +EXPORT_SYMBOL vmlinux 0x3d747464 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x3d7e611c input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x3d8d3586 fget +EXPORT_SYMBOL vmlinux 0x3d90a730 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x3d97ac52 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x3d980c7f md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x3d99c682 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da9b138 pci_read_config_word +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 0x3db7c990 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dc64929 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd96fbb tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3dfa52d6 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e26d2a1 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x3e31a9b8 notify_change +EXPORT_SYMBOL vmlinux 0x3e38f203 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x3e3a74bb bio_reset +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e4188aa md_flush_request +EXPORT_SYMBOL vmlinux 0x3e452156 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x3e4beba8 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x3e4d5479 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x3e4f47ff devm_ioremap +EXPORT_SYMBOL vmlinux 0x3e5cb2fd unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x3e663ff7 put_cmsg +EXPORT_SYMBOL vmlinux 0x3e849788 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x3e8b5237 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x3e952992 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x3e95e832 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x3e960430 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x3e9e5cbb bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x3ea1bebd __mdiobus_register +EXPORT_SYMBOL vmlinux 0x3ec7025e inet_stream_connect +EXPORT_SYMBOL vmlinux 0x3ecb1f41 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit +EXPORT_SYMBOL vmlinux 0x3ed0c4e9 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x3ed91660 I_BDEV +EXPORT_SYMBOL vmlinux 0x3ee60443 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x3eef5ace platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x3ef984e5 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f03e348 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f169c1e bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x3f1af4eb mmc_wait_for_req +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 0x3f58f263 vc_resize +EXPORT_SYMBOL vmlinux 0x3f606289 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x3f642193 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x3f6708f6 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x3f68578d iov_iter_advance +EXPORT_SYMBOL vmlinux 0x3f6f39ea dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x3f775236 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x3f8383fe dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3fb10db3 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc0186e mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x3fc9487a unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fdc8ccf netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x3fe020f4 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3ff43da5 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x3ffa475a generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x40146265 simple_open +EXPORT_SYMBOL vmlinux 0x4020c452 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x40258fb8 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x404de4ed unlock_buffer +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x4089a7fd phy_connect +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a7f853 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40adca4d dquot_quota_on +EXPORT_SYMBOL vmlinux 0x40aed616 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cbeac4 import_iovec +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40df6edc genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x40e09289 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x40ee201f register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x40f1f759 dma_set_mask +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x41247399 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x41290888 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4136d567 register_filesystem +EXPORT_SYMBOL vmlinux 0x41381d9f ip_getsockopt +EXPORT_SYMBOL vmlinux 0x4139e3f5 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x413de78b mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x415fd0e5 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x41672898 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x41854f2d audit_log_start +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4198b100 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x41a13796 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range +EXPORT_SYMBOL vmlinux 0x41bb024f tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x41e7ce28 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f15fdc udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x41fc9d3e kernel_write +EXPORT_SYMBOL vmlinux 0x41fcf141 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x4220c122 pci_map_rom +EXPORT_SYMBOL vmlinux 0x4221fbd0 kill_anon_super +EXPORT_SYMBOL vmlinux 0x42272c7b vfs_mknod +EXPORT_SYMBOL vmlinux 0x4231aa80 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42560269 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x4268ccce dquot_resume +EXPORT_SYMBOL vmlinux 0x4269a11e release_pages +EXPORT_SYMBOL vmlinux 0x4274c7c6 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x4284779d kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x42a0db51 phy_driver_register +EXPORT_SYMBOL vmlinux 0x42af4154 vfs_unlink +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42d6f12c iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x42ded009 get_cached_acl +EXPORT_SYMBOL vmlinux 0x42e06886 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42fbcabe flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x431ac1fe set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x43245857 tcp_poll +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x4339eb02 elv_rb_del +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x434aa6be flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436a0969 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x436c86ce dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43921727 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x4395989e tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x439718b5 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x439b7feb fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d6f5ea scsi_print_command +EXPORT_SYMBOL vmlinux 0x43f16198 __skb_pad +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x44303838 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4473d4c2 tcp_parse_options +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 0x44af34ca napi_complete_done +EXPORT_SYMBOL vmlinux 0x44bc1819 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x44c4847c free_task +EXPORT_SYMBOL vmlinux 0x44dad936 tty_port_close +EXPORT_SYMBOL vmlinux 0x44dfadb7 dump_align +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ed4fdb dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x44f77c93 mntget +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450639ab sg_last +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450a950e pneigh_lookup +EXPORT_SYMBOL vmlinux 0x45114a69 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454f2746 find_vma_intersection +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x455ea0b0 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x456874bf posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x456cae27 napi_disable +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45816d5c blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x45afa6e8 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x45b83ed3 register_console +EXPORT_SYMBOL vmlinux 0x45c001ed pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45d62767 done_path_create +EXPORT_SYMBOL vmlinux 0x45e6e996 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x4605914d scsi_host_busy +EXPORT_SYMBOL vmlinux 0x460b5053 sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x4612d87c has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x461641d4 proc_create +EXPORT_SYMBOL vmlinux 0x461d10cc phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x462d9a61 km_query +EXPORT_SYMBOL vmlinux 0x4633d056 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x46426dee __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x465053a3 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x46565c69 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466d59b9 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4689dfa3 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x468ef892 component_match_add_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c74680 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval +EXPORT_SYMBOL vmlinux 0x46e4b21e qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x471a1c22 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x473b2658 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x475e1a55 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x475fe1cd sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x476b3f4d netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x476bff91 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x476c1179 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x476d0e32 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4783a797 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x478ef588 dev_mc_del +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x4796b6fc phy_attach_direct +EXPORT_SYMBOL vmlinux 0x479f93a3 skb_clone_sk +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 0x47d5a9d8 single_release +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47ecca01 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x47f20875 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x47f56938 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x4807ed65 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x480a918e sync_blockdev_range +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 0x4819f6c0 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x48260d46 mdio_device_register +EXPORT_SYMBOL vmlinux 0x4826eab7 module_put +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484a9b47 __block_write_begin +EXPORT_SYMBOL vmlinux 0x484dd013 devm_memremap +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 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48f000d9 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x48f100bb devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range +EXPORT_SYMBOL vmlinux 0x490095b0 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x491db36c __neigh_create +EXPORT_SYMBOL vmlinux 0x49292ae0 sock_rfree +EXPORT_SYMBOL vmlinux 0x493a7f17 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x49479b7f phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x4949fe06 seq_read_iter +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49e467ef netlink_capable +EXPORT_SYMBOL vmlinux 0x49ef2050 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x49f67671 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x49fa3b0e __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a3c0a02 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x4a3d70f1 sock_from_file +EXPORT_SYMBOL vmlinux 0x4a42221c sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a50ff29 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x4a51b8d9 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x4a57823f param_set_byte +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9d3350 seq_file_path +EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4ad07351 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x4ad23401 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x4ad7367e phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x4ae676e7 __phy_resume +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0af19c security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x4b0b306a dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x4b1865d9 pci_find_capability +EXPORT_SYMBOL vmlinux 0x4b2d834b __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x4b36d622 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x4b381aa7 sync_blockdev +EXPORT_SYMBOL vmlinux 0x4b38487b kernel_listen +EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x4b4a879a set_blocksize +EXPORT_SYMBOL vmlinux 0x4b4eeec1 phy_init_eee +EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6ad550 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b890e87 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x4b94be56 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x4bb78760 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x4bc1e028 pci_clear_master +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bdbd691 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x4bdf250b scsi_host_get +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bfb18ca kill_litter_super +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c10d3c7 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x4c112c13 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x4c13e8f0 slab_build_skb +EXPORT_SYMBOL vmlinux 0x4c143919 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x4c1aab2f config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x4c35ad4f bprm_change_interp +EXPORT_SYMBOL vmlinux 0x4c3eb031 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c5344a1 pv_ops +EXPORT_SYMBOL vmlinux 0x4c6aa8c6 tcf_em_register +EXPORT_SYMBOL vmlinux 0x4c78b11a dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4c9ea442 d_make_root +EXPORT_SYMBOL vmlinux 0x4cc8cdc3 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x4ccdda4f pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4cda9cd5 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x4cdd0ef4 config_item_put +EXPORT_SYMBOL vmlinux 0x4cfbebee kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x4d18aec5 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d347697 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x4d372c86 __do_once_done +EXPORT_SYMBOL vmlinux 0x4d542beb acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x4d58d6a7 make_bad_inode +EXPORT_SYMBOL vmlinux 0x4d826137 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da7bfad netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4daf96c4 input_get_keycode +EXPORT_SYMBOL vmlinux 0x4dbe2257 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dcb878d mipi_dsi_dcs_write +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 0x4e003882 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x4e0c5892 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x4e194f9f tty_port_destroy +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2add23 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e40e1c7 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e56d10f blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7de0c8 keyring_search +EXPORT_SYMBOL vmlinux 0x4e93994f vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea38d29 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x4ea78bab __x86_indirect_call_thunk_r15 +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb3b0c7 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x4eb79a1a inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x4eb86abc jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x4ec187d5 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x4ec436c0 skb_clone +EXPORT_SYMBOL vmlinux 0x4ec4a70f pnp_device_detach +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ef4100a pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x4ef43c52 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x4f06ff3c unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x4f112593 __tracepoint_dma_fence_enable_signal +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 0x4f38e4f7 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x4f504af1 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f69a3a2 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 +EXPORT_SYMBOL vmlinux 0x4f740294 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x4f81ecc6 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x4f82d229 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x4f83961d phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x4f917a9b vme_slave_request +EXPORT_SYMBOL vmlinux 0x4f91c9a0 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x4f9a2d89 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x4fc60196 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe7c27b ns_capable_setid +EXPORT_SYMBOL vmlinux 0x4fea34c2 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x4ffaa8b1 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x4ffb377b __nla_put +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500d8599 clk_get +EXPORT_SYMBOL vmlinux 0x500e1436 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x5040c559 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x5046174b config_item_set_name +EXPORT_SYMBOL vmlinux 0x504909fd fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x5050ae66 vfs_create +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506d4e7a nf_setsockopt +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50775b42 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x507a7cc2 netif_tx_wake_queue +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 0x50980887 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509cad2d tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b209c4 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50bade0b nd_btt_probe +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d64f63 dev_open +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50f0971b thread_group_exited +EXPORT_SYMBOL vmlinux 0x50f5c6b2 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x50fc12ed amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x5102679d mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x5110a0c3 seq_path +EXPORT_SYMBOL vmlinux 0x51284e32 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec +EXPORT_SYMBOL vmlinux 0x51478164 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x515df3c4 __icmp_send +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51662dea dump_emit +EXPORT_SYMBOL vmlinux 0x51a007fa mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51a7b7ce __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51ef3f8b unix_detach_fds +EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 +EXPORT_SYMBOL vmlinux 0x51f399f4 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x51f99e1e pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x5221e48e complete_request_key +EXPORT_SYMBOL vmlinux 0x5229d371 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x52378800 input_set_keycode +EXPORT_SYMBOL vmlinux 0x5244222b PageMovable +EXPORT_SYMBOL vmlinux 0x524afa19 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x52500bc7 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x5259decd vme_irq_free +EXPORT_SYMBOL vmlinux 0x5265d016 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x527c9824 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x528e1c8a audit_log +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a6c680 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x52ac02b9 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x52af6218 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x52b884fc __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0x52c703c1 param_set_copystring +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52da5b5c ip_defrag +EXPORT_SYMBOL vmlinux 0x52df1976 retire_super +EXPORT_SYMBOL vmlinux 0x52eb403f kernel_getsockname +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52fb90c0 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530f7996 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531305ab pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x53178480 folio_unlock +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x533fdd1e netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x5348b97b fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x5354de00 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x53636a2e _dev_emerg +EXPORT_SYMBOL vmlinux 0x536b1b6d inet_add_offload +EXPORT_SYMBOL vmlinux 0x536d5b1c posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x537033d3 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x537e5d15 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x538df0c8 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x53963dd1 pci_iomap +EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit +EXPORT_SYMBOL vmlinux 0x53a84850 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53d51ecf uart_add_one_port +EXPORT_SYMBOL vmlinux 0x53d6f9c4 tcf_classify +EXPORT_SYMBOL vmlinux 0x53d94b12 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x53e0ba76 eth_header_cache +EXPORT_SYMBOL vmlinux 0x54049f1d pcim_iomap +EXPORT_SYMBOL vmlinux 0x541367a2 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x54390f26 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5444d0f1 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x545b943e input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x5469d9f3 inode_update_time +EXPORT_SYMBOL vmlinux 0x546fc71a xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x5492f946 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x549b1b50 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x549f3fbf ip6_dst_check +EXPORT_SYMBOL vmlinux 0x54a81cf8 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x54aea203 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x54bb41ef sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x54ce46ce fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x54d84803 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e7584b agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508ad2b flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x5509ce87 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x550d90e7 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0x5543769d ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x5556365b pid_task +EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache +EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine +EXPORT_SYMBOL vmlinux 0x55701d1a __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x5596180f inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x55bd25d2 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x55d3b245 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x55db4cf7 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55f5cbef backlight_device_register +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x5607ebaa icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x5609aaff twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x561d5f4f dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x5631c9b4 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56427014 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568baa62 fqdir_init +EXPORT_SYMBOL vmlinux 0x5699528f pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x5699af3e con_is_bound +EXPORT_SYMBOL vmlinux 0x56a4113a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x56bb698d register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d69d95 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x56deba8b amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x56e4fa6a scsi_remove_target +EXPORT_SYMBOL vmlinux 0x5700d28c buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x5743a5ec pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x57487125 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574ef639 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x5750dfb4 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x5751b861 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x5754a05e pin_user_pages +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57bcbaea __x86_indirect_call_thunk_r14 +EXPORT_SYMBOL vmlinux 0x57d11873 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57f72f36 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x57fdce86 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x580c562f ppp_dev_name +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58282891 _dev_notice +EXPORT_SYMBOL vmlinux 0x5829a671 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58531611 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x58545a81 follow_pfn +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x58806784 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x5894457b agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x589c5bc6 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x58a475ca truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58addd56 start_tty +EXPORT_SYMBOL vmlinux 0x58b181e5 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58be035c ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x58c1f808 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x58d48b05 pci_iounmap +EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58edf5c6 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x5906fc7f eth_mac_addr +EXPORT_SYMBOL vmlinux 0x590793ec __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x590f9230 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x59107390 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x596742e2 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x5973edf9 md_write_end +EXPORT_SYMBOL vmlinux 0x59785f58 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x598eba0e passthru_features_check +EXPORT_SYMBOL vmlinux 0x5991ecc2 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b9f0d5 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x59c1fd03 d_find_alias +EXPORT_SYMBOL vmlinux 0x59d062bf dm_put_device +EXPORT_SYMBOL vmlinux 0x59d90103 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x59f56dfe genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x59fab358 make_kprojid +EXPORT_SYMBOL vmlinux 0x5a07e290 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0b7fd9 shmem_aops +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a405a02 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a4d9ba6 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5a71a6d1 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x5a8060fc security_sk_clone +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5abf4bd2 has_capability +EXPORT_SYMBOL vmlinux 0x5acbce84 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5aebe6ef __netif_napi_del +EXPORT_SYMBOL vmlinux 0x5afd76b4 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x5b03f898 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x5b0505d3 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x5b0abcec pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x5b22c50a xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b3580b2 ip_options_compile +EXPORT_SYMBOL vmlinux 0x5b3a72a9 sget_fc +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b47a319 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x5b5670a6 __brelse +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk +EXPORT_SYMBOL vmlinux 0x5baa784a skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x5bcfdd12 ppp_register_net_channel +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 0x5beac8a0 bio_copy_data +EXPORT_SYMBOL vmlinux 0x5c08b8fc max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x5c1260e7 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c27cef5 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x5c2bcb21 phy_device_register +EXPORT_SYMBOL vmlinux 0x5c3c49a8 pci_request_irq +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c3e1e5b fwnode_iomap +EXPORT_SYMBOL vmlinux 0x5c50d424 kset_register +EXPORT_SYMBOL vmlinux 0x5c62cc1a scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x5c6d8c3f pci_restore_state +EXPORT_SYMBOL vmlinux 0x5c73a476 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x5c88fc08 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x5c9fa963 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x5cb61c29 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x5cba9b4c dev_add_pack +EXPORT_SYMBOL vmlinux 0x5cd14a3a deactivate_super +EXPORT_SYMBOL vmlinux 0x5cd1d6c7 dentry_open +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d06f8b8 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x5d294dbf xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x5d2b4acb blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x5d2bb4d9 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x5d436214 current_in_userns +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d5721fc flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x5d598d0d __scm_send +EXPORT_SYMBOL vmlinux 0x5d66db9e mmc_can_erase +EXPORT_SYMBOL vmlinux 0x5d76b6b8 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x5d7aafe7 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x5d826e29 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x5d9880ab processors +EXPORT_SYMBOL vmlinux 0x5da5b3ce elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x5dbad3d0 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x5dc31e71 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x5deb4277 dst_init +EXPORT_SYMBOL vmlinux 0x5df757e9 regset_get +EXPORT_SYMBOL vmlinux 0x5e012710 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e265f83 set_cached_acl +EXPORT_SYMBOL vmlinux 0x5e2b5791 sock_create +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e367963 del_gendisk +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e37c5ba iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x5e48e243 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x5e64f675 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x5e753595 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x5e847444 iterate_fd +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e8734c5 security_path_unlink +EXPORT_SYMBOL vmlinux 0x5e92d336 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e962d86 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb36daa mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x5eb83f6c vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed85b7a input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5edce74a bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x5ee21a89 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x5eedef34 param_set_ushort +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 0x5f28d145 dm_get_device +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f56757c phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x5f5845e2 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x5f588c91 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x5f5c4ede dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f6d04f1 dump_page +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f9552e2 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5f9f91bf blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x5fbe331f jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd4e046 dev_uc_add +EXPORT_SYMBOL vmlinux 0x5fd6c42b pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5fed1512 setattr_copy +EXPORT_SYMBOL vmlinux 0x5ff6b7e3 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6001f1f8 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x60077f36 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x60085bdf pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x600c21f1 block_write_full_page +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603ee7ad textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x604b848b eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x60562c4c __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x606d77b2 dev_close +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 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60a9c461 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x60b099c0 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60c2a21d fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x60c59c4b configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e72868 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x60ec9774 phy_attached_print +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x610756b8 __x86_indirect_call_thunk_rdx +EXPORT_SYMBOL vmlinux 0x610bd20f intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x6122bc80 send_sig +EXPORT_SYMBOL vmlinux 0x61231a8f sock_wmalloc +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612fc62c cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x6130e7ef mr_table_dump +EXPORT_SYMBOL vmlinux 0x613376c4 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x614aaa11 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x614e2a04 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x6158dcd9 dquot_transfer +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x617b9907 pci_bus_add_devices +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 0x618c6d62 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x618c7b10 skb_trim +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv +EXPORT_SYMBOL vmlinux 0x61a6aa4e pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x61a82f31 unregister_console +EXPORT_SYMBOL vmlinux 0x61a88f46 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x61b29fac bio_free_pages +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b8f4e9 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x61c2d400 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x61cf6d42 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x61d017c2 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x61d72334 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x61e05684 vm_map_ram +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x62137363 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621da208 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x624c7657 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x624e6256 filp_open +EXPORT_SYMBOL vmlinux 0x625b48d1 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x62600d03 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range +EXPORT_SYMBOL vmlinux 0x62773928 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x62846e19 input_flush_device +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x62ab6e0d pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x62b11661 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x62bed888 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x62d621a1 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x63239187 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x63511318 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x63644231 is_bad_inode +EXPORT_SYMBOL vmlinux 0x636ba752 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x6375d9b0 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0x63861dcc netif_skb_features +EXPORT_SYMBOL vmlinux 0x63987c48 textsearch_register +EXPORT_SYMBOL vmlinux 0x639f18c6 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b259f9 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x63d34f77 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x63fb2d7c gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6417519d dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x6439f65c i2c_clients_command +EXPORT_SYMBOL vmlinux 0x6448403d __x86_indirect_call_thunk_rcx +EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x645ed1e9 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x648fbf8f nlmsg_notify +EXPORT_SYMBOL vmlinux 0x649f5132 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x64a3002b tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c6db88 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x64cd6b14 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x64d25df6 request_key_tag +EXPORT_SYMBOL vmlinux 0x64da7bbc jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x64e4b094 vme_dma_request +EXPORT_SYMBOL vmlinux 0x64e87769 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x64e8ee30 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x64ef7e51 blk_queue_update_dma_pad +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 0x652d267b scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x653cdf74 tty_do_resize +EXPORT_SYMBOL vmlinux 0x653dc307 input_register_handler +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6543ad3a t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x6547fb88 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x65543040 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x65577b36 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x6561ef3f scm_fp_dup +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x657357fb is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x658a2a0a __x86_indirect_call_thunk_rbx +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a8e0b2 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x65b4d0fe sock_kmalloc +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d6233a fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65da2692 jbd2_journal_lock_updates +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 0x65ee84b3 generic_permission +EXPORT_SYMBOL vmlinux 0x65f25371 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x65f545d5 generic_file_open +EXPORT_SYMBOL vmlinux 0x66054aba skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x6605c4dc serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x66119af2 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x661567af udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x6615c7e4 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x661a7b31 phy_disconnect +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x66566a23 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6679a216 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66affb8a input_allocate_device +EXPORT_SYMBOL vmlinux 0x66b076b8 file_open_root +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0x66fe2802 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x6718a9bd mdiobus_read +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x6732ae59 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x6737058f pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x673a945a blk_finish_plug +EXPORT_SYMBOL vmlinux 0x673b87bd agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67466adc mount_subtree +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x674ef75d rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x67506a29 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x6754ddfe textsearch_destroy +EXPORT_SYMBOL vmlinux 0x6778f562 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x677ffd0f mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x6792d790 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x6797d568 intel_gmch_gtt_get +EXPORT_SYMBOL vmlinux 0x67a5e738 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b5e919 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67cc9453 __x86_indirect_call_thunk_rax +EXPORT_SYMBOL vmlinux 0x67d1b872 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x67fbfc0f __getblk_gfp +EXPORT_SYMBOL vmlinux 0x67fd5da1 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x68006483 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x683a2f84 inet_release +EXPORT_SYMBOL vmlinux 0x683b4576 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x684afe41 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x68596c1b blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x68658a1b mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x686d8910 dma_find_channel +EXPORT_SYMBOL vmlinux 0x687b065c folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6893df87 netdev_warn +EXPORT_SYMBOL vmlinux 0x6894d62c gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x68adbbae register_key_type +EXPORT_SYMBOL vmlinux 0x68b1c8a0 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x68b2e319 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x68c23cfb unregister_qdisc +EXPORT_SYMBOL vmlinux 0x68c4e23d submit_bio +EXPORT_SYMBOL vmlinux 0x68d352bd pci_get_slot +EXPORT_SYMBOL vmlinux 0x68d43fd0 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x68e154f6 key_put +EXPORT_SYMBOL vmlinux 0x68f3687e netlink_broadcast +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x69198bf5 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x691e7563 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x69372f55 skb_dump +EXPORT_SYMBOL vmlinux 0x693fb3da generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x6948564c __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x6964b449 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x697dc3d0 fb_blank +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x699657bf bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x699d3065 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69b25051 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x69b4bf59 fb_class +EXPORT_SYMBOL vmlinux 0x69c9069d netdev_err +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e5559d sk_common_release +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a186ab4 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x6a1cbe29 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a48c276 update_region +EXPORT_SYMBOL vmlinux 0x6a5c7e67 skb_copy_header +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 0x6a76c17a sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x6a957ffb put_ipc_ns +EXPORT_SYMBOL vmlinux 0x6aaf19d1 agp_copy_info +EXPORT_SYMBOL vmlinux 0x6ab8264b pci_disable_msix +EXPORT_SYMBOL vmlinux 0x6ac0439b sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeaff67 register_cdrom +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af27695 serio_open +EXPORT_SYMBOL vmlinux 0x6b0e2ebf xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b222f05 flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b4b9688 __folio_put +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b695cf1 zen_untrain_ret +EXPORT_SYMBOL vmlinux 0x6b7a5b16 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bce52b4 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bdc44c4 ps2_command +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6bfb3988 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x6c0fedad uart_match_port +EXPORT_SYMBOL vmlinux 0x6c17f4bc sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c53c0a7 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x6c58a7c1 lookup_one +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6cb18c tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x6c710263 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x6c7dc6f0 xp_alloc +EXPORT_SYMBOL vmlinux 0x6c8284fd configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x6c909d0b bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x6c94dca5 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x6ca288e1 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x6cade895 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6cd6e28a pci_disable_device +EXPORT_SYMBOL vmlinux 0x6cde055c skb_tx_error +EXPORT_SYMBOL vmlinux 0x6ce47936 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d18d3d3 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x6d256cbd d_set_d_op +EXPORT_SYMBOL vmlinux 0x6d28ba49 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d3a4213 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d5fb4a5 __x86_indirect_jump_thunk_rsp +EXPORT_SYMBOL vmlinux 0x6d7b2e81 tty_name +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d8e1971 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6da04fa9 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dc03a8b mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dc9f3fc netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6df04f27 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df31390 intel_gmch_gtt_clear_range +EXPORT_SYMBOL vmlinux 0x6e06e0d7 mmc_put_card +EXPORT_SYMBOL vmlinux 0x6e0e41be mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6e3c1c14 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x6e46c858 cdev_add +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e842514 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6e8a15ee vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eb266ee kill_fasync +EXPORT_SYMBOL vmlinux 0x6eb4fccf __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x6ed5c4ef seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x6ee5966f ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6f0c7eec _dev_printk +EXPORT_SYMBOL vmlinux 0x6f0da49c __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x6f101a98 rtc_add_group +EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock +EXPORT_SYMBOL vmlinux 0x6f3db334 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f485454 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f4de72a padata_alloc +EXPORT_SYMBOL vmlinux 0x6f511eac param_ops_bool +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f673493 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x6f8e8236 set_anon_super +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f95044e pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc441e1 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fe24aea inet6_del_offload +EXPORT_SYMBOL vmlinux 0x6ff1026c udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70026898 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x700f5785 param_set_invbool +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7024b537 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x7024d037 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7038aac0 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x703b58f4 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x7042fb9b iterate_supers_type +EXPORT_SYMBOL vmlinux 0x7047009c nf_log_set +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706ba595 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x70738d82 path_is_under +EXPORT_SYMBOL vmlinux 0x7097fe25 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70ba2f3d d_drop +EXPORT_SYMBOL vmlinux 0x70bb7de2 __x86_indirect_jump_thunk_rbp +EXPORT_SYMBOL vmlinux 0x70c112ca proc_set_user +EXPORT_SYMBOL vmlinux 0x70f8bc45 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x710056ac abort +EXPORT_SYMBOL vmlinux 0x710b53cb eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7128a112 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712a68bc nf_ct_ext_add +EXPORT_SYMBOL vmlinux 0x713c3634 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7176ba07 set_nlink +EXPORT_SYMBOL vmlinux 0x717d68ce dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x7184d78d uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b7d28f key_payload_reserve +EXPORT_SYMBOL vmlinux 0x71b7e95a tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x71bf4184 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x71c50ee6 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71eb0e55 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x7205de0b tty_check_change +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x7241f0b7 alloc_pages +EXPORT_SYMBOL vmlinux 0x724b0928 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x7254e9a9 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x7263e455 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x729ca4ec dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x72ab1709 rproc_boot +EXPORT_SYMBOL vmlinux 0x72ad5a04 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bbf801 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x72d6b64f blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72fdc2cb udp_seq_start +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x73344228 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x733deefb scsi_ioctl +EXPORT_SYMBOL vmlinux 0x7343b3e1 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x734d2fe7 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73863169 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x73902e4c sock_register +EXPORT_SYMBOL vmlinux 0x739c4fc1 devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0x739d5d56 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73c8aab4 _dev_alert +EXPORT_SYMBOL vmlinux 0x73d3bf6a d_instantiate_new +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73f7163e dcb_setapp +EXPORT_SYMBOL vmlinux 0x73f969a2 folio_add_lru +EXPORT_SYMBOL vmlinux 0x73fd42e2 vif_device_init +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x740d328d pci_pme_active +EXPORT_SYMBOL vmlinux 0x740eb062 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x7413dceb bio_init_clone +EXPORT_SYMBOL vmlinux 0x742503fa xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x74315e0b dec_node_page_state +EXPORT_SYMBOL vmlinux 0x743c22b4 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x744bd12d skb_pull_data +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7454b029 agp_free_memory +EXPORT_SYMBOL vmlinux 0x746db806 locks_delete_block +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x747a48a4 d_instantiate +EXPORT_SYMBOL vmlinux 0x747ea1c2 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74a24f58 nf_log_register +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c30323 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x74d5fafd vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74eadf12 clear_nlink +EXPORT_SYMBOL vmlinux 0x74ebe5f2 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x74fca720 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x751c3b7c invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x754f3714 block_write_begin +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x757006a7 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x75710120 vm_event_states +EXPORT_SYMBOL vmlinux 0x7579dda8 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x757bf448 console_start +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75951d6a device_get_mac_address +EXPORT_SYMBOL vmlinux 0x75a30b78 read_cache_folio +EXPORT_SYMBOL vmlinux 0x75a40df4 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x75ac9452 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c05028 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d5c732 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x75db1f24 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x75f9a9c7 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x761690c6 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x761e290e jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x76366416 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7658110d netlink_net_capable +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7670e2b4 logfc +EXPORT_SYMBOL vmlinux 0x7675511d blkdev_compat_ptr_ioctl +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 0x76b2dba7 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0x76f32040 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x771ef4b5 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x772352a1 param_get_uint +EXPORT_SYMBOL vmlinux 0x77268b8e stop_tty +EXPORT_SYMBOL vmlinux 0x772ab913 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x773502b6 fscrypt_decrypt_block_inplace +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 0x77550861 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x7770b742 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x778bd156 proc_symlink +EXPORT_SYMBOL vmlinux 0x77965311 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x77aea28a agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x77b0a91f alloc_fddidev +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bd6069 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x77e58322 tcp_read_skb +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f15d34 dquot_alloc +EXPORT_SYMBOL vmlinux 0x77f89cbc cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784c4ebe vm_insert_pages +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7887068d kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x789f951b __mdiobus_read +EXPORT_SYMBOL vmlinux 0x78a1155b nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c65f43 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x78ca2a8e jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x78caaf55 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x7910f65b eisa_bus_type +EXPORT_SYMBOL vmlinux 0x79142d97 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x79188392 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x79224be9 ilookup +EXPORT_SYMBOL vmlinux 0x792a6972 write_cache_pages +EXPORT_SYMBOL vmlinux 0x79387119 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x794bbed1 load_nls +EXPORT_SYMBOL vmlinux 0x7957e08b nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x7984cf15 locks_free_lock +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x799e0706 __bh_read +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79c14193 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2feeb8 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a3aea4b mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x7a3f76a3 ip6_mtu +EXPORT_SYMBOL vmlinux 0x7a44604a inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a56e583 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x7a6dc401 param_get_byte +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a9433bf vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa2a48a pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x7ab4bd09 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x7abfcc42 sock_efree +EXPORT_SYMBOL vmlinux 0x7aca5161 task_work_add +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad89da3 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae726e5 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x7ae8c149 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x7af27bda ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x7afa8903 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x7afcdc4d user_path_at_empty +EXPORT_SYMBOL vmlinux 0x7afcef48 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7b01a0da generic_setlease +EXPORT_SYMBOL vmlinux 0x7b06b99d vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x7b0ce1bd set_posix_acl +EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b38bb74 build_skb +EXPORT_SYMBOL vmlinux 0x7b40a61c rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b4dd204 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x7b5155c8 proc_mkdir +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5fba53 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x7b71487e fs_param_is_string +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b89309a tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x7b936aee pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x7b9620e0 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x7ba7b6bc pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bd74b6d __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x7bd84d3f mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x7bffbd14 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c47cfa0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x7c4b5fe4 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x7c64acaa vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x7c66aaf1 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x7c7dce9d netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x7ca3c51b agp_enable +EXPORT_SYMBOL vmlinux 0x7cb9915e phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x7cc020a0 freeze_super +EXPORT_SYMBOL vmlinux 0x7cc28c89 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x7cc409a2 generic_writepages +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cea3110 bio_endio +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf45f89 skb_checksum_trimmed +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 0x7d3518ef netif_device_detach +EXPORT_SYMBOL vmlinux 0x7d3ba661 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x7d4333cc vfs_symlink +EXPORT_SYMBOL vmlinux 0x7d43b3ae km_policy_notify +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d56655f sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x7d5cc931 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d601419 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d65b3cb nf_log_packet +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d8ba956 empty_aops +EXPORT_SYMBOL vmlinux 0x7d93cefd phy_start_aneg +EXPORT_SYMBOL vmlinux 0x7d981fe6 netdev_info +EXPORT_SYMBOL vmlinux 0x7daa4098 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x7dad9fc4 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dba04f1 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x7dc0adfc locks_copy_conflock +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 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0x7e1efd3c param_set_uint +EXPORT_SYMBOL vmlinux 0x7e2c12e7 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x7e30a961 param_array_ops +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e35e92e mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x7e4792df skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize +EXPORT_SYMBOL vmlinux 0x7e5f9fd1 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x7e606bb6 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x7e70948e devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7e73cf60 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7e95b6de mmc_register_driver +EXPORT_SYMBOL vmlinux 0x7ebfc7d3 pci_release_regions +EXPORT_SYMBOL vmlinux 0x7ec06d82 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x7ed01442 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x7eeaacf3 sk_wait_data +EXPORT_SYMBOL vmlinux 0x7ef156fa skb_eth_push +EXPORT_SYMBOL vmlinux 0x7ef3a902 sock_no_connect +EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7f01f883 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f252555 sk_error_report +EXPORT_SYMBOL vmlinux 0x7f268a21 update_devfreq +EXPORT_SYMBOL vmlinux 0x7f493258 path_get +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free +EXPORT_SYMBOL vmlinux 0x7f669ff9 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x7f73a797 mdio_device_create +EXPORT_SYMBOL vmlinux 0x7f7c1870 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x7f7ea044 __bh_read_batch +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f868696 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x7f891e34 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x7f89d08d jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x7faa19ba try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe462e6 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x7ffe1b4d skb_dequeue +EXPORT_SYMBOL vmlinux 0x7fff83f6 seq_printf +EXPORT_SYMBOL vmlinux 0x80389ebf blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x80568c65 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x80767056 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x80849dc5 vfs_getattr +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80c10b34 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x80c25cd7 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x80c8ea6f phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e48e3f finish_open +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80e8ac0a pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x8110a287 get_agp_version +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x813ba117 genl_register_family +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x8154da71 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x819c0c59 fqdir_exit +EXPORT_SYMBOL vmlinux 0x819dbcbc fs_bio_set +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81b40da5 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev +EXPORT_SYMBOL vmlinux 0x81d511e9 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x81d8f955 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81e758ce nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x8204259b vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x82287535 filemap_fault +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x823d4d48 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8275e159 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x82799693 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x8282c764 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x829a4c8e _dev_info +EXPORT_SYMBOL vmlinux 0x829d03b9 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x82afc0c2 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82df8a7c qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x8308cdc8 proc_set_size +EXPORT_SYMBOL vmlinux 0x830c219f __devm_request_region +EXPORT_SYMBOL vmlinux 0x83336b03 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x83401d0e generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8370bf8f set_security_override +EXPORT_SYMBOL vmlinux 0x838ca9d0 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838e4192 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x839133c8 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x83b4178b __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x83cec6be blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x83d4a7ca vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x83db4189 genphy_suspend +EXPORT_SYMBOL vmlinux 0x83dfc91f __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x83e09465 generic_listxattr +EXPORT_SYMBOL vmlinux 0x83f12ab6 mmc_erase +EXPORT_SYMBOL vmlinux 0x83f8cbd1 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x83f9c4e2 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x8406c989 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x840aee85 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x84109f17 padata_free +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x843c2657 finish_no_open +EXPORT_SYMBOL vmlinux 0x84464f2c mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x844a49e0 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x844eac82 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x845f7121 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x8471abb4 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after +EXPORT_SYMBOL vmlinux 0x847d62c4 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x847e8802 param_set_ulong +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84a66a9c param_ops_short +EXPORT_SYMBOL vmlinux 0x84a7a483 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x84b57000 inode_permission +EXPORT_SYMBOL vmlinux 0x84b70671 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x84bb7f65 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x84c0e43d devfreq_add_device +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c365a6 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x84d7944e mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x84e7ad95 uart_register_driver +EXPORT_SYMBOL vmlinux 0x84e8aa8b blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x84f43c2d mntput +EXPORT_SYMBOL vmlinux 0x850e1d5d tcp_peek_len +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x85203131 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user +EXPORT_SYMBOL vmlinux 0x8523cce7 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x8546b03c jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x854e946c vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x85563288 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x855ce4cf simple_pin_fs +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856893fa _dev_crit +EXPORT_SYMBOL vmlinux 0x85748e0e fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x8579ed5b filemap_check_errors +EXPORT_SYMBOL vmlinux 0x8581b6d0 inet_select_addr +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a36a11 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x85af7893 udp_prot +EXPORT_SYMBOL vmlinux 0x85afe0d0 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85cb0864 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x85d13901 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x85d89a83 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e382ac ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x86261530 key_validate +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x8634b886 inet_ioctl +EXPORT_SYMBOL vmlinux 0x86363480 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x86394a93 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x864ca867 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x866c9764 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x86811432 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a95090 new_inode +EXPORT_SYMBOL vmlinux 0x86aa749c blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x86ab0abd napi_get_frags +EXPORT_SYMBOL vmlinux 0x86b4f719 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86c98363 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86e1b259 __put_cred +EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86f71314 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870e5e15 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x871798da sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x8718bbb7 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x871b8fdb pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x871eeb20 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x8733db35 __inet_hash +EXPORT_SYMBOL vmlinux 0x874e5e3c vfs_create_mount +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x877e73e2 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x877e9a9f ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq +EXPORT_SYMBOL vmlinux 0x8783794c gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x8796d59c input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a8a76f mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x87b83c0e i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x87cffc26 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x87f37f31 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x8800ab17 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x8804405b page_pool_create +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 0x8823ef75 intel_gmch_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x882e07a0 netdev_printk +EXPORT_SYMBOL vmlinux 0x8830a868 ip_output +EXPORT_SYMBOL vmlinux 0x88380d22 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x8841a909 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x88488d89 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x8853e1a8 ps2_end_command +EXPORT_SYMBOL vmlinux 0x88654c21 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x8868b1ab tty_port_put +EXPORT_SYMBOL vmlinux 0x886bf408 file_update_time +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x8895603e input_set_timestamp +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88aafd71 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x88c9b135 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x88cd78ce dm_kobject_release +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88dc2576 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x88dc8a5b netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88f94ce1 make_kgid +EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8955372a blk_put_queue +EXPORT_SYMBOL vmlinux 0x89567eac dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x895a8654 simple_getattr +EXPORT_SYMBOL vmlinux 0x8966a6d1 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x8967d876 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x89906a21 dev_addr_add +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x899b2c26 vm_map_pages +EXPORT_SYMBOL vmlinux 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL vmlinux 0x89b2bd4f d_add +EXPORT_SYMBOL vmlinux 0x89c14491 dqput +EXPORT_SYMBOL vmlinux 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL vmlinux 0x8a24c318 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x8a29f1b0 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x8a35622c __nla_reserve +EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a35d635 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x8a39e085 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x8a4123e2 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a54670a __x86_indirect_jump_thunk_r14 +EXPORT_SYMBOL vmlinux 0x8a62e883 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x8a6884a9 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7bb68a sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8631b5 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa78d87 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x8aab00da kobject_del +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac45c93 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x8ae71649 rproc_put +EXPORT_SYMBOL vmlinux 0x8af751e6 freeze_bdev +EXPORT_SYMBOL vmlinux 0x8afda705 iget_locked +EXPORT_SYMBOL vmlinux 0x8afe4c9b sock_set_mark +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b08e25f __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x8b0f148b twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x8b2c69df xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x8b318200 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x8b4b8e65 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8067d8 kobject_add +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b948879 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bb2d910 set_disk_ro +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be89c86 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x8bed4049 bio_split +EXPORT_SYMBOL vmlinux 0x8bfe44b4 fb_get_mode +EXPORT_SYMBOL vmlinux 0x8c0cbeef sock_wake_async +EXPORT_SYMBOL vmlinux 0x8c0f9caf agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x8c1001e3 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x8c258b0d dquot_release +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c3eb8ec sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x8c4086f8 d_add_ci +EXPORT_SYMBOL vmlinux 0x8c574e9c kernel_connect +EXPORT_SYMBOL vmlinux 0x8c76d598 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c945cfd md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x8c9cb2dc fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca3f582 fiemap_prep +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb7c803 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x8cc379ce __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ccd1f05 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cf1224c inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x8d20f3a3 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit +EXPORT_SYMBOL vmlinux 0x8d3f90e8 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x8d49dff1 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x8d5502b1 nd_device_register +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x8d62b6d0 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x8d6d5a85 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x8d7c4573 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x8d7df663 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x8d7ec919 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da68807 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8dc2e2b4 stream_open +EXPORT_SYMBOL vmlinux 0x8dd1e4c7 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de04bb8 kobject_init +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfad893 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x8e0da8e1 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e1e0475 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e2a2c24 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x8e3de232 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e49a6af rproc_alloc +EXPORT_SYMBOL vmlinux 0x8e6b7518 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x8e805d72 discard_new_inode +EXPORT_SYMBOL vmlinux 0x8e835a1d tty_vhangup +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8eb5c0d9 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x8eb9cbfb __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x8edaa97c make_kuid +EXPORT_SYMBOL vmlinux 0x8eeea2aa d_find_any_alias +EXPORT_SYMBOL vmlinux 0x8ef029ae __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f18e0d5 tty_port_open +EXPORT_SYMBOL vmlinux 0x8f2066ac __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f4020e6 sk_net_capable +EXPORT_SYMBOL vmlinux 0x8f409929 mount_bdev +EXPORT_SYMBOL vmlinux 0x8f4f88aa sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x8f4fbbb5 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x8f6209c9 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x8f676397 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x8f681ded vfs_mkdir +EXPORT_SYMBOL vmlinux 0x8f807b2f put_disk +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9aeade netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fafef2e flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x8fb1eec6 init_pseudo +EXPORT_SYMBOL vmlinux 0x8fbd150b locks_remove_posix +EXPORT_SYMBOL vmlinux 0x8fcc8f37 inet_frag_find +EXPORT_SYMBOL vmlinux 0x8fcd2158 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x8fd3aa4f revert_creds +EXPORT_SYMBOL vmlinux 0x8fec6411 do_SAK +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x901e043b config_group_find_item +EXPORT_SYMBOL vmlinux 0x9022d64b jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x9027195c devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9051398e cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x9078e118 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x90955b36 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x9095af8a devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x90a24b7a input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x90b0b1d4 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons +EXPORT_SYMBOL vmlinux 0x90bd3a3d fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x90dba869 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x90f4fadb seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x90f9aca3 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x9103005d pci_enable_device +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x911eb218 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x9138b346 ndisc_send_skb +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 0x918fcc9d tty_register_driver +EXPORT_SYMBOL vmlinux 0x919a7abd migrate_vma_setup +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 0x91afdb3f param_set_bint +EXPORT_SYMBOL vmlinux 0x91b9638a file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x91cc8e1e pnp_register_driver +EXPORT_SYMBOL vmlinux 0x91e4c707 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91f845da inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x91fa5d87 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x920c5238 phy_suspend +EXPORT_SYMBOL vmlinux 0x9217edbb fb_pan_display +EXPORT_SYMBOL vmlinux 0x9227dcb7 seq_puts +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x925e7e11 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x9271729f ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x928bdf04 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92934b79 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x92962f67 param_get_long +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c19e81 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e36ce1 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92e8d00e mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x92eaa676 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f1c15a fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9306ffa0 pci_save_state +EXPORT_SYMBOL vmlinux 0x9316d5d2 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x932b7ae7 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x93308a8f netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x933a83fc d_tmpfile +EXPORT_SYMBOL vmlinux 0x934d16c3 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x934f564b __x86_indirect_jump_thunk_r15 +EXPORT_SYMBOL vmlinux 0x935216ea tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x9354aefd ram_aops +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9378939a __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x937e0560 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93a93051 set_page_dirty +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93bf5f3d kmem_cache_size +EXPORT_SYMBOL vmlinux 0x93d2668e xp_dma_map +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93da2e0a agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x93e00d29 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x93e53aeb pci_resize_resource +EXPORT_SYMBOL vmlinux 0x93f700e4 legacy_pic +EXPORT_SYMBOL vmlinux 0x941bd03e devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x941dfbc7 netdev_change_features +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x944ee0a4 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x945c2efb xsk_tx_release +EXPORT_SYMBOL vmlinux 0x946ba611 genphy_update_link +EXPORT_SYMBOL vmlinux 0x946bff7d pci_iomap_range +EXPORT_SYMBOL vmlinux 0x9475fe8b genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a5c41d netdev_alert +EXPORT_SYMBOL vmlinux 0x94a74cea dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c1165b noop_llseek +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x95128c36 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x951f1874 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x9520a086 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x9533aedf vlan_for_each +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955bd61f vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x956d20f1 single_open_size +EXPORT_SYMBOL vmlinux 0x956e02f8 keyring_clear +EXPORT_SYMBOL vmlinux 0x9573165d scsi_scan_target +EXPORT_SYMBOL vmlinux 0x957382cb inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x95749a54 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95a725f1 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x95a8bcf2 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x95c9be38 param_set_ullong +EXPORT_SYMBOL vmlinux 0x95ce290d mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x95f7c370 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x9606d339 kernel_bind +EXPORT_SYMBOL vmlinux 0x9616755e vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0x961e8ec9 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x9629b552 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x962b0caa fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x9639d654 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x963ed3f6 md_error +EXPORT_SYMBOL vmlinux 0x9645f04b mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x965361d5 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x96706350 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x967df83e vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x96a2d63b bio_init +EXPORT_SYMBOL vmlinux 0x96a512fa iov_iter_npages +EXPORT_SYMBOL vmlinux 0x96abc627 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c4b570 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d7fa6e mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96e91aad set_create_files_as +EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x97291db9 arp_tbl +EXPORT_SYMBOL vmlinux 0x973da98a ps2_handle_response +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9744e51e cdev_device_del +EXPORT_SYMBOL vmlinux 0x974d0bd6 param_set_charp +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat +EXPORT_SYMBOL vmlinux 0x97a30368 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a78119 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b66ae4 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97d9ee79 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x97ddf039 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x97fd2006 scmd_printk +EXPORT_SYMBOL vmlinux 0x98100f3a ptp_clock_register +EXPORT_SYMBOL vmlinux 0x9812a6f0 try_module_get +EXPORT_SYMBOL vmlinux 0x98133ba7 __alloc_pages +EXPORT_SYMBOL vmlinux 0x98191483 skb_unlink +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98392d94 seq_release +EXPORT_SYMBOL vmlinux 0x984d9c39 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 +EXPORT_SYMBOL vmlinux 0x9867a8fe devm_of_iomap +EXPORT_SYMBOL vmlinux 0x98687d96 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x986e70fb jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x98906ada end_page_writeback +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c7014e mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x98c8977d dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cd9879 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f9848a try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x990b6f51 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x990c63a5 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x991e75c2 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x994c6624 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99668821 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x9966c298 generic_read_dir +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x9984634c skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x9987551c xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x998a150d iptun_encaps +EXPORT_SYMBOL vmlinux 0x99965352 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x99972e34 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99bb7e01 touch_atime +EXPORT_SYMBOL vmlinux 0x99c1b42f unregister_cdrom +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99eb10a8 blk_start_plug +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 0x9a068e20 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a1a6f84 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a2c088f irq_stat +EXPORT_SYMBOL vmlinux 0x9a2c4d43 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x9a497d5e ip6_frag_init +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a7e661b inode_to_bdi +EXPORT_SYMBOL vmlinux 0x9a8ce88f netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x9aa1f38b jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x9aad6b33 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x9aae9671 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9acd3f6f get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9ae181b4 sock_i_uid +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9ae7c8e0 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x9aee411a device_add_disk +EXPORT_SYMBOL vmlinux 0x9af57420 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x9b2023a3 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388d9d __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x9b39bab2 dst_alloc +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b4bed08 neigh_lookup +EXPORT_SYMBOL vmlinux 0x9b676f43 rio_query_mport +EXPORT_SYMBOL vmlinux 0x9b68b76d fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b8a1d2c mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x9ba14dae __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x9ba27be3 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x9ba47f63 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x9baabdcc inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bce161a register_netdevice +EXPORT_SYMBOL vmlinux 0x9bd159cf get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x9bf22593 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x9bfe4413 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1c4fb8 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x9c3ec565 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x9c598efc udp_seq_next +EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c8270b2 devm_free_irq +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c923183 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x9c98d4b2 skb_checksum +EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user +EXPORT_SYMBOL vmlinux 0x9c9b08e9 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x9ca370a3 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x9ca4bf4b input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9ccd4877 secpath_set +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x9cf944b4 seq_write +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0a8f53 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x9d0d10c1 ether_setup +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d29e805 write_inode_now +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2c3b9c phy_get_pause +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d2f781d unregister_key_type +EXPORT_SYMBOL vmlinux 0x9d322ec7 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9da0eecd vfs_mkobj +EXPORT_SYMBOL vmlinux 0x9da1189b __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x9da8a8fc vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x9dad961f sock_pfree +EXPORT_SYMBOL vmlinux 0x9dca030e __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x9dd3e733 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x9de0b6ce sock_no_linger +EXPORT_SYMBOL vmlinux 0x9deba5b3 seq_release_private +EXPORT_SYMBOL vmlinux 0x9df349cb neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x9dfb03db kernel_sendpage +EXPORT_SYMBOL vmlinux 0x9e00df24 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x9e019171 phy_stop +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e1d2f21 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e299d0a hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x9e2ae32a fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x9e37239f devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x9e4b9f83 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x9e69a846 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x9e7a9224 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e7e4ebc clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x9e900036 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea1acbd devm_memunmap +EXPORT_SYMBOL vmlinux 0x9eabe96d tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ecf74f0 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x9ed12330 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee6bef6 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x9ee8b0b9 seq_dentry +EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9ef6ce9b vfs_iter_write +EXPORT_SYMBOL vmlinux 0x9f033ad2 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x9f1b76ad unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x9f31efbc cad_pid +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4aeab1 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f5fc5c0 clear_inode +EXPORT_SYMBOL vmlinux 0x9f62ae4a __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x9f699378 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x9f76cde6 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x9f8ee195 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f99d196 __kfree_skb +EXPORT_SYMBOL vmlinux 0x9fa5fbcf skb_store_bits +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fab46e6 import_single_range +EXPORT_SYMBOL vmlinux 0x9fb1c712 super_setup_bdi_name +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 0x9ff04359 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x9ff2ee56 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03b16fb get_vm_area +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa049e4cd jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xa04eb7d1 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xa0531107 bpf_map_get +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0bd6194 param_get_invbool +EXPORT_SYMBOL vmlinux 0xa0c0e909 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xa0c47212 ps2_init +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 0xa0ee3fff free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xa0f10085 __sg_free_table +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa13006be end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xa1348bb3 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xa164090e qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xa16e2142 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xa1857830 d_alloc +EXPORT_SYMBOL vmlinux 0xa187f249 dquot_acquire +EXPORT_SYMBOL vmlinux 0xa18f5667 tcp_prot +EXPORT_SYMBOL vmlinux 0xa19e8ae2 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xa1aec8ec __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xa1b57e47 param_get_string +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1d08b35 mdiobus_write +EXPORT_SYMBOL vmlinux 0xa1fe44e9 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xa2011483 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa212f2d5 sock_no_bind +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa2447cd7 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xa24f1ea0 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa253b300 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xa2574000 inet_getname +EXPORT_SYMBOL vmlinux 0xa2578f18 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa26489a1 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xa2846604 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa29d70bf tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xa2aebec9 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xa2bc16cc inet_accept +EXPORT_SYMBOL vmlinux 0xa2de4bde zap_page_range +EXPORT_SYMBOL vmlinux 0xa30bb170 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xa34acb9a param_ops_ullong +EXPORT_SYMBOL vmlinux 0xa37e65cf __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3dd18d5 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3e581a6 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xa3ed79a7 __folio_alloc +EXPORT_SYMBOL vmlinux 0xa3eef34c cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xa3fb5c1f vfs_link +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa443be3b security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xa45f4684 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xa464860e sock_create_kern +EXPORT_SYMBOL vmlinux 0xa47fb42e module_layout +EXPORT_SYMBOL vmlinux 0xa4846972 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xa4aff69b blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xa4b3bc0e netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bfdc5b phy_detach +EXPORT_SYMBOL vmlinux 0xa4c95534 simple_setattr +EXPORT_SYMBOL vmlinux 0xa4cbccad cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4ee00b1 scsi_done +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa505d5e6 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0xa5121484 pci_bus_type +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa52da68e __skb_checksum +EXPORT_SYMBOL vmlinux 0xa54099bf dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xa5449608 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55b67e6 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xa5626d96 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xa5682762 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xa570b483 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xa5737bff sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5a4d791 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0xa5cc0e7f truncate_pagecache +EXPORT_SYMBOL vmlinux 0xa5db8899 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa5faf2d1 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xa605a3f6 skb_append +EXPORT_SYMBOL vmlinux 0xa617c263 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa63bcba4 misc_deregister +EXPORT_SYMBOL vmlinux 0xa63fbca7 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa654c2de clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xa65c4f9b tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xa65d95f7 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xa664a1d4 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xa6747aba create_empty_buffers +EXPORT_SYMBOL vmlinux 0xa678e5df skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xa67a6303 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68f2842 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xa69427fb kernel_read +EXPORT_SYMBOL vmlinux 0xa6948b7d pci_request_region +EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xa6a12f41 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xa6ae0ac6 _dev_err +EXPORT_SYMBOL vmlinux 0xa6bb6029 dev_deactivate +EXPORT_SYMBOL vmlinux 0xa6d83996 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xa6d8e9ae mdio_device_remove +EXPORT_SYMBOL vmlinux 0xa6e91183 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xa6fef005 file_path +EXPORT_SYMBOL vmlinux 0xa7078ae4 from_kgid +EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa710248d devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xa71bd96a ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa76cd607 poll_freewait +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xa79bb42a dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xa7bb1651 udp_set_csum +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f9e9ba md_write_start +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa8425ab0 flush_signals +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 0xa85ebba5 kern_unmount +EXPORT_SYMBOL vmlinux 0xa867d0ce skb_copy +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa87322c8 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xa8789e93 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xa87a59c0 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xa87e4998 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xa87f67e6 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xa88589ad tcp_init_sock +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8c31971 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e1b2e7 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f0e37b request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8f9b904 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91cf36a pcim_enable_device +EXPORT_SYMBOL vmlinux 0xa91ecd9d nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa95a1823 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa96b3af9 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xa96dbe69 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9778e57 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa9ae111a __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xa9b26fa6 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xa9be7309 param_get_ullong +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9d28a9b phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xa9fa1839 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa140074 input_register_device +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa2544e1 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xaa2cf7a3 input_register_handle +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa35be3a d_alloc_anon +EXPORT_SYMBOL vmlinux 0xaa5a5128 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xaa6b39b1 is_nd_btt +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa78475c default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xaa880ce9 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaa9dfc04 folio_end_writeback +EXPORT_SYMBOL vmlinux 0xaa9e0867 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaab6ddb0 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab0082fe sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xab089260 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xab26c96c __devm_release_region +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 0xab63700f vmap +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab6f95ac __ps2_command +EXPORT_SYMBOL vmlinux 0xab7595e2 seq_read +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7cb0f3 sk_free +EXPORT_SYMBOL vmlinux 0xab836c16 security_sb_remount +EXPORT_SYMBOL vmlinux 0xab916e83 phy_start +EXPORT_SYMBOL vmlinux 0xab925245 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xabb0e29a d_delete +EXPORT_SYMBOL vmlinux 0xabb17852 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xabb189d3 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xabb42425 set_groups +EXPORT_SYMBOL vmlinux 0xabb467e9 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0xabc6debe get_tree_single +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabfab517 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xac00feab phy_attach +EXPORT_SYMBOL vmlinux 0xac01e782 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac200fff pnp_is_active +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac34b90f neigh_app_ns +EXPORT_SYMBOL vmlinux 0xac37c698 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5f4d85 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac874cfb kthread_bind +EXPORT_SYMBOL vmlinux 0xac87e7e4 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xac89fcd8 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xaca9ee90 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb98488 noop_fsync +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace08d4b netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacf7168e jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xacf8bed6 sk_alloc +EXPORT_SYMBOL vmlinux 0xacfc74ed dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad1751d9 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xad326375 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xad48fc6e unregister_filesystem +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad53a002 __x86_indirect_call_thunk_rbp +EXPORT_SYMBOL vmlinux 0xad56b6a3 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad6be5ea xfrm_state_update +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad81d055 param_get_int +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada452cc inet_shutdown +EXPORT_SYMBOL vmlinux 0xadaabc58 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb748fd ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xadb83f30 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xadbe47e0 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd20494 netdev_features_change +EXPORT_SYMBOL vmlinux 0xadfc2cfe __break_lease +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae061352 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xae10d7e0 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xae1651f3 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled +EXPORT_SYMBOL vmlinux 0xae2c124e pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae316dbb path_put +EXPORT_SYMBOL vmlinux 0xae345302 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xae35efab dst_destroy +EXPORT_SYMBOL vmlinux 0xae4a77c5 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xae4d7a94 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae62f2ee mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xae7639be i2c_smbus_read_byte_data +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 0xaec51b7a tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xaeccca15 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xaed99d51 kobject_get +EXPORT_SYMBOL vmlinux 0xaef5ba83 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xaef6add6 unlock_page +EXPORT_SYMBOL vmlinux 0xaf0108b9 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xaf1e954b ata_print_version +EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf3a4ee4 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xaf3c8a7e __scsi_add_device +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf5d3769 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xaf70d233 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0xaf8a8a53 mpage_writepages +EXPORT_SYMBOL vmlinux 0xaf8cd367 posix_test_lock +EXPORT_SYMBOL vmlinux 0xaf8d6e11 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xaf90c3d3 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xaf95a556 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xaf95dcb8 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit +EXPORT_SYMBOL vmlinux 0xafaa8190 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xafaaa8d2 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafbcfccc vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafd21e44 proc_create_data +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xafefc938 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xb019c8c2 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb0268084 icmp6_send +EXPORT_SYMBOL vmlinux 0xb028a8ba fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc +EXPORT_SYMBOL vmlinux 0xb03c9521 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xb03fb6e4 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state +EXPORT_SYMBOL vmlinux 0xb0699ac1 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xb076a2a5 nd_btt_version +EXPORT_SYMBOL vmlinux 0xb07ed83a i2c_transfer +EXPORT_SYMBOL vmlinux 0xb08fb573 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xb0955d6c pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xb09ea0d6 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b1340d tso_build_data +EXPORT_SYMBOL vmlinux 0xb0b51522 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xb0b76945 __x86_indirect_call_thunk_rsp +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0c83fb8 vme_register_driver +EXPORT_SYMBOL vmlinux 0xb0ce18fa __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xb0d45976 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e296c3 scsi_add_device +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0e9516f dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0xb0ff997c blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xb1104dd2 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1307195 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb13d9f36 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb1425fd2 init_special_inode +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14d823c genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb15b4109 crc32c +EXPORT_SYMBOL vmlinux 0xb16fada6 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xb177900c phy_print_status +EXPORT_SYMBOL vmlinux 0xb17df8dc blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xb1931554 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e28d8d rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb2282c11 simple_transaction_read +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 0xb240ae92 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xb2463ff3 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xb252eecb mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb29b4e5c pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xb2af9b85 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c22007 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb2c8ab0f vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0xb2c96b32 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xb2d12a86 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0xb2e05dff __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb2fe5ec4 rproc_detach +EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb3096cef pci_get_device +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31c35c8 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb32ed74d kthread_create_worker +EXPORT_SYMBOL vmlinux 0xb361c533 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb369fae8 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xb37ffa33 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert +EXPORT_SYMBOL vmlinux 0xb39c65d2 datagram_poll +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d38ce7 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xb3e3106a pcibios_resource_to_bus +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 0xb3f985a8 sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb3fb1ba8 lock_rename +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb41cb95e mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb439c873 __netif_schedule +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb45db140 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xb4623fb2 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xb464256f xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xb467f741 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xb46f264f ilookup5 +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb4878fb0 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xb4bc9404 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xb4cbf5f1 agp_backend_release +EXPORT_SYMBOL vmlinux 0xb4dcca91 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xb4f13075 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xb4ff8e23 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xb52d8821 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xb52fc578 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb54be08b acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xb5594edf scsi_print_result +EXPORT_SYMBOL vmlinux 0xb584ca96 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xb58710a2 dquot_commit +EXPORT_SYMBOL vmlinux 0xb5874b52 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0xb594c147 _copy_from_iter +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined +EXPORT_SYMBOL vmlinux 0xb5ad6ac8 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5ba6a63 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xb5d727f1 f_setown +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5eaf6f6 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xb5fbc48f __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb612d328 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb6217255 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb65186a5 generic_perform_write +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb6581f9d netif_carrier_on +EXPORT_SYMBOL vmlinux 0xb658f424 dquot_disable +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 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a64683 mmc_request_done +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b2b11d pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6d117f4 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xb6d68904 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6ee8f91 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xb6f913fa tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb70bc394 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xb70e438b pci_select_bars +EXPORT_SYMBOL vmlinux 0xb70fded9 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xb713d9a0 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb7189dd7 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb7232c9c pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xb725fbcc devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xb7303226 set_binfmt +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb7429853 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xb752eb7e abort_creds +EXPORT_SYMBOL vmlinux 0xb758dbb1 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb75f3f70 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xb7714d2e blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xb789a3c6 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb78e8c83 elevator_alloc +EXPORT_SYMBOL vmlinux 0xb78f1c24 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xb7928c52 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xb79e2e5c genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xb79e5ca5 from_kuid +EXPORT_SYMBOL vmlinux 0xb7a25767 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xb7b2992a mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7da7aed i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb8314d0c __block_write_full_page +EXPORT_SYMBOL vmlinux 0xb836f787 backlight_force_update +EXPORT_SYMBOL vmlinux 0xb84bb98d rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xb85001f0 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xb8571003 bdi_register +EXPORT_SYMBOL vmlinux 0xb862f7ea __x86_indirect_jump_thunk_rbx +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89e9417 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xb89f2e0c blk_integrity_register +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b513a8 eth_type_trans +EXPORT_SYMBOL vmlinux 0xb8b75353 sock_set_priority +EXPORT_SYMBOL vmlinux 0xb8b808f0 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xb8bdfbcb dev_addr_del +EXPORT_SYMBOL vmlinux 0xb8bf5302 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xb8c263d7 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xb8ccb9c9 file_remove_privs +EXPORT_SYMBOL vmlinux 0xb8ced9ab unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xb8d479fd no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xb8def146 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xb8e58e28 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb9193a1a __breadahead +EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb94cc1c3 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb976b590 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb9884f77 skb_find_text +EXPORT_SYMBOL vmlinux 0xb98c4482 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xb9940e0d phy_attached_info +EXPORT_SYMBOL vmlinux 0xb9a09ddd __x86_indirect_jump_thunk_rcx +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9bd4c53 tty_devnum +EXPORT_SYMBOL vmlinux 0xb9bf730c fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xb9c4b2aa is_nd_pfn +EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba0b3233 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xba0ea279 cdev_device_add +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba1ded41 consume_skb +EXPORT_SYMBOL vmlinux 0xba2449b3 __x86_indirect_jump_thunk_rax +EXPORT_SYMBOL vmlinux 0xba38a148 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xba3a0e97 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba7b02ff vga_con +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xbab3d3aa inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xbaba4e93 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len +EXPORT_SYMBOL vmlinux 0xbad15ddb ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xbade6d19 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xbae5a6b8 register_md_personality +EXPORT_SYMBOL vmlinux 0xbaec0009 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb20514d dev_mc_sync +EXPORT_SYMBOL vmlinux 0xbb23d0cf md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb31db7a dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xbb37d85b crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xbb4a2fb1 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb6273ec dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xbb6a92d2 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xbb7924cd tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb93e9e2 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xbb9e8438 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba04342 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xbbabbda7 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xbbc3966e generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xbbc8fc19 xattr_full_name +EXPORT_SYMBOL vmlinux 0xbbcdf3ef generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xbbd1fde9 tso_start +EXPORT_SYMBOL vmlinux 0xbbd27e48 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xbbe100ca mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xbbec7dd5 vme_bus_type +EXPORT_SYMBOL vmlinux 0xbc00f313 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc3a194f phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xbc3bfe22 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xbc60308d fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xbc6d1dc4 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xbc73959b inetdev_by_index +EXPORT_SYMBOL vmlinux 0xbc78a930 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xbc87be6e tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xbc97db5a mdio_device_free +EXPORT_SYMBOL vmlinux 0xbc9ee1a0 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xbca8f420 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcab8800 sock_wfree +EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key +EXPORT_SYMBOL vmlinux 0xbcb682c9 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xbcc14413 d_genocide +EXPORT_SYMBOL vmlinux 0xbcc1c92e genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xbcc32dc7 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xbccd679e ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xbccfbc68 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xbccff655 param_get_ushort +EXPORT_SYMBOL vmlinux 0xbcef8b58 __x86_indirect_jump_thunk_rdx +EXPORT_SYMBOL vmlinux 0xbd1dac4c inode_io_list_del +EXPORT_SYMBOL vmlinux 0xbd313c20 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd433b85 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd4e8d49 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xbd663255 inet_frags_init +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd745bf5 vga_client_register +EXPORT_SYMBOL vmlinux 0xbd79412b pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xbd812eb8 netdev_update_features +EXPORT_SYMBOL vmlinux 0xbd8d764b skb_copy_expand +EXPORT_SYMBOL vmlinux 0xbd8f3fdb simple_get_link +EXPORT_SYMBOL vmlinux 0xbd99b9cd pps_event +EXPORT_SYMBOL vmlinux 0xbd9e6d0d dev_uc_flush +EXPORT_SYMBOL vmlinux 0xbdc47ed6 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe003148 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe06483d cdev_init +EXPORT_SYMBOL vmlinux 0xbe0c6e8d iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xbe147561 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xbe21fd88 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xbe263f36 cred_fscmp +EXPORT_SYMBOL vmlinux 0xbe26a2fe flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xbe2db53f iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xbe39e2a7 sk_stream_wait_connect +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 0xbe7af97d submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xbe81102a param_set_short +EXPORT_SYMBOL vmlinux 0xbea6eb53 ipv4_mtu +EXPORT_SYMBOL vmlinux 0xbeb4988d insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xbeb4c433 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xbeb6727c sync_filesystem +EXPORT_SYMBOL vmlinux 0xbeb6dde2 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xbec04cf5 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xbecab81f clear_user_erms +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf12505b dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xbf14dc8e devm_rproc_add +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf328269 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xbf4fbc82 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf62a0fb inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xbf66bafd jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xbf955944 inet_addr_type +EXPORT_SYMBOL vmlinux 0xbf999c7a xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xbf99a80b inode_add_bytes +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfad36a8 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd2ad4f seq_vprintf +EXPORT_SYMBOL vmlinux 0xbfe6d4c8 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xbfe9c870 init_task +EXPORT_SYMBOL vmlinux 0xbfee14d5 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xbff2838d fb_set_cmap +EXPORT_SYMBOL vmlinux 0xbff4d2b7 thaw_super +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc049c4b0 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xc04cbba0 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xc04e9d7b devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xc05f7b4c page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0853089 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xc0b2c999 security_sock_graft +EXPORT_SYMBOL vmlinux 0xc0bcbf4f nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xc0d82984 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xc0dcbce5 netif_set_real_num_tx_queues +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 0xc1010c38 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xc1081b1e scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xc1133e2d jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc12de1c2 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0xc133c57f mmc_can_discard +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc1617310 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xc1660f39 set_pages_wb +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc16f2001 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xc16f70d2 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xc18e7360 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xc190a798 noop_qdisc +EXPORT_SYMBOL vmlinux 0xc19644a2 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xc19a6e9f phy_device_create +EXPORT_SYMBOL vmlinux 0xc19d853f rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xc1a968f4 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xc1acafc1 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dd23ad xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xc1eadc19 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xc1f927a6 km_state_expired +EXPORT_SYMBOL vmlinux 0xc1fb99eb flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xc203926f max8925_reg_write +EXPORT_SYMBOL vmlinux 0xc20c824b kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xc2117f1f ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xc2276a7d serio_reconnect +EXPORT_SYMBOL vmlinux 0xc228b26d backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xc22dda2b vme_register_bridge +EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xc23b153e inet6_protos +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc29d7240 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xc2a805f5 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xc2ab537f is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xc2b5d6cb agp_bridge +EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xc2cedbee param_get_hexint +EXPORT_SYMBOL vmlinux 0xc2d0155e folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xc2d95057 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e9a45d gro_cells_receive +EXPORT_SYMBOL vmlinux 0xc2ee7706 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xc30283f6 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc315e7c0 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xc3169f7d blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xc31da254 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc321514d reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xc3248bb5 igrab +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc32d88ae dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xc3514d7c nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xc35ba6d0 kill_pgrp +EXPORT_SYMBOL vmlinux 0xc362ca84 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xc36cf783 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f6a27 rproc_add +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc39474cb i2c_register_driver +EXPORT_SYMBOL vmlinux 0xc39e723d vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xc39edd8a sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xc3a9ce61 dev_add_offload +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3bcb05b may_umount_tree +EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xc3d4542e ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xc3e2133f configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xc3ec4e0d dst_discard_out +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc419d5a5 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xc41f43e0 acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc44bfa9a ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xc44efa05 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xc4519c6d input_set_capability +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc4554f29 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc49dabf4 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4b85c10 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xc4bb7c5b __sock_create +EXPORT_SYMBOL vmlinux 0xc4bec2eb sock_no_getname +EXPORT_SYMBOL vmlinux 0xc50f0670 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xc515f1cd __x86_indirect_jump_thunk_r13 +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc529d0ac devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xc5445b86 open_exec +EXPORT_SYMBOL vmlinux 0xc546fcf8 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc57e88c1 __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0xc585c3e3 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59dd841 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xc5a6d594 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f8b87b kmalloc_caches +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc6171928 dev_change_flags +EXPORT_SYMBOL vmlinux 0xc618bd9d dquot_file_open +EXPORT_SYMBOL vmlinux 0xc61995e4 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xc61afdc5 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xc61c0e74 iommu_put_resv_regions +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 0xc63bf5bf blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xc6553023 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc6637d82 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc68fb2a4 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc698ad73 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6eb6950 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc7030a0b __invalidate_device +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc713fc53 mmc_get_card +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc721c7fd vme_lm_request +EXPORT_SYMBOL vmlinux 0xc73acd9a ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xc7651202 input_event +EXPORT_SYMBOL vmlinux 0xc766eeb0 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc788360f redraw_screen +EXPORT_SYMBOL vmlinux 0xc7911a46 simple_release_fs +EXPORT_SYMBOL vmlinux 0xc7941ac8 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xc79b1483 devfreq_update_target +EXPORT_SYMBOL vmlinux 0xc7a0d31c acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xc7a26b68 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c6a4ca mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7e58fc6 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xc7fc0869 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xc8084256 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc81ce677 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xc8358cf8 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xc8363db2 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xc83a5bdb do_clone_file_range +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84ab0a3 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xc85086f0 mpage_read_folio +EXPORT_SYMBOL vmlinux 0xc8625497 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88a2da9 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table +EXPORT_SYMBOL vmlinux 0xc8c8bec7 inode_init_once +EXPORT_SYMBOL vmlinux 0xc8c94d6b mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xc8d6e2fd dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e0cc4b padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xc8f1e7ee phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xc8fe1d79 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xc90250ab ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xc914eb9e qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc92cb59f __module_get +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc9599319 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc982ba48 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xc997bf68 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xc99a0a3c fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9ad6ac5 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e3b31e param_ops_bint +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xca030071 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca17ec32 fsync_bdev +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca358830 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xca397605 keyring_alloc +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca6052fc sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xca72d000 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xca858b7e filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcab464f3 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcaefa27b forget_cached_acl +EXPORT_SYMBOL vmlinux 0xcaf077e8 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xcaf44c72 set_page_writeback +EXPORT_SYMBOL vmlinux 0xcaf915ac ip6_frag_next +EXPORT_SYMBOL vmlinux 0xcb00756f ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb02d85f netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xcb164015 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xcb24f747 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb498287 d_lookup +EXPORT_SYMBOL vmlinux 0xcb53cf95 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb73c1a1 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xcb99455b mmc_retune_release +EXPORT_SYMBOL vmlinux 0xcba2db6c pcim_pin_device +EXPORT_SYMBOL vmlinux 0xcbb610ae page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xcbb78d33 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc590ed get_phy_device +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbfa22c6 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc113c1f to_nd_pfn +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 0xcc2b25eb call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc36b8b6 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup +EXPORT_SYMBOL vmlinux 0xcc3f88fe ip_frag_next +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc4b2940 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5c9a15 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5f16a5 input_unregister_device +EXPORT_SYMBOL vmlinux 0xcc70da49 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xcc87014d neigh_direct_output +EXPORT_SYMBOL vmlinux 0xcc9b4817 get_task_cred +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xcca80a96 ppp_input_error +EXPORT_SYMBOL vmlinux 0xccc9f754 proto_unregister +EXPORT_SYMBOL vmlinux 0xccd820ca skb_checksum_setup +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 0xcd031222 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xcd207cdc phy_modify_paged +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd378bca i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xcd56fe17 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xcd613492 mmc_command_done +EXPORT_SYMBOL vmlinux 0xcd6a239a ipv4_dst_check +EXPORT_SYMBOL vmlinux 0xcd7cfb67 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcdab7e4a skb_push +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcddccb79 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcded62b1 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xce05ccc0 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xce164df3 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xce235207 param_set_bool +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce29f9d3 nf_reinject +EXPORT_SYMBOL vmlinux 0xce338993 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xce38155d __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce4ee975 dev_get_flags +EXPORT_SYMBOL vmlinux 0xce53afee gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce644f1f pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xce6510d6 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xce668b6b netdev_crit +EXPORT_SYMBOL vmlinux 0xce720f28 mtree_destroy +EXPORT_SYMBOL vmlinux 0xce7345aa netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce7dfe3c flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xce7ede44 is_nd_dax +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce80ab1a dquot_drop +EXPORT_SYMBOL vmlinux 0xce98e18f ___pskb_trim +EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu +EXPORT_SYMBOL vmlinux 0xcea3838c netlink_set_err +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceafebee dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xced29c4b xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0xceeb399c pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xceebdfbe __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf2215ad kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf4b15ce file_modified +EXPORT_SYMBOL vmlinux 0xcf4d6b98 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf5906b0 da903x_query_status +EXPORT_SYMBOL vmlinux 0xcf5f386a skb_seq_read +EXPORT_SYMBOL vmlinux 0xcf6a9789 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xcf8face8 get_inode_acl +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa9ea42 param_get_short +EXPORT_SYMBOL vmlinux 0xcfb24178 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xcfc10683 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xcfc2dd4a dma_map_resource +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfdda481 input_release_device +EXPORT_SYMBOL vmlinux 0xcfe7b3b9 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xcfe99735 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xcff41b06 dquot_initialize +EXPORT_SYMBOL vmlinux 0xcff5e79c inode_get_bytes +EXPORT_SYMBOL vmlinux 0xcff9eef5 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xd00eff67 kern_path_create +EXPORT_SYMBOL vmlinux 0xd0104d8e register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd057e56b jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xd05cad33 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd062cd33 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06bcc0d phy_error +EXPORT_SYMBOL vmlinux 0xd06cc0f8 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd0786283 skb_pull +EXPORT_SYMBOL vmlinux 0xd07dbafe dev_get_stats +EXPORT_SYMBOL vmlinux 0xd0800e07 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd099c692 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0bb49f6 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xd0c2fa6a __pagevec_release +EXPORT_SYMBOL vmlinux 0xd0cd584f inode_insert5 +EXPORT_SYMBOL vmlinux 0xd0db06cf __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd0eb47af blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0f2a77c __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd11db1a9 devm_clk_put +EXPORT_SYMBOL vmlinux 0xd11ea346 vfs_readlink +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd139e948 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xd141d5f7 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xd15418d2 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xd1595e1e dump_skip_to +EXPORT_SYMBOL vmlinux 0xd159decc page_symlink +EXPORT_SYMBOL vmlinux 0xd17d8394 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xd17dc23a neigh_seq_start +EXPORT_SYMBOL vmlinux 0xd1911b9e rtnl_create_link +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1a20152 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xd1ad9084 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xd1aee86e fb_find_mode +EXPORT_SYMBOL vmlinux 0xd1b5230f blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd1c3196c input_close_device +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dd64f9 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xd1e11161 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xd1e6864a filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd24205b8 fb_set_var +EXPORT_SYMBOL vmlinux 0xd24dc4c7 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2634eb7 irq_set_chip +EXPORT_SYMBOL vmlinux 0xd2640918 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd2902ed1 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xd2a0524e __put_user_ns +EXPORT_SYMBOL vmlinux 0xd2ac994d inet_put_port +EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0xd2bff4da dst_dev_put +EXPORT_SYMBOL vmlinux 0xd2c2ebe4 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xd2d163c2 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e1ee5a simple_unlink +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2ed167c tty_port_close_end +EXPORT_SYMBOL vmlinux 0xd306b58d pci_release_resource +EXPORT_SYMBOL vmlinux 0xd31eafb6 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xd32adefd lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd347bd5f phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd376a8f0 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xd377236f padata_free_shell +EXPORT_SYMBOL vmlinux 0xd3777558 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xd383db43 mdiobus_free +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd38dc035 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd396fee1 udp_ioctl +EXPORT_SYMBOL vmlinux 0xd3ac34c7 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xd3b092d3 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xd3ce844c d_alloc_name +EXPORT_SYMBOL vmlinux 0xd3d92f18 request_key_rcu +EXPORT_SYMBOL vmlinux 0xd3db0512 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xd3f51ed3 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd420a67e tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xd445a9fb flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xd4594460 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd45e0494 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xd46a06f6 convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xd46b8a9d register_netdev +EXPORT_SYMBOL vmlinux 0xd46eb050 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xd4789b8f sock_kfree_s +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4e48ab2 __check_sticky +EXPORT_SYMBOL vmlinux 0xd51aa7e9 cdev_del +EXPORT_SYMBOL vmlinux 0xd51ac79d fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xd51d3eb6 netif_device_attach +EXPORT_SYMBOL vmlinux 0xd51ee005 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52de008 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xd52f4cc9 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd535f95d clk_bulk_get +EXPORT_SYMBOL vmlinux 0xd54c4bc4 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xd55b07ea inode_set_flags +EXPORT_SYMBOL vmlinux 0xd55be080 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xd567bef1 tty_kref_put +EXPORT_SYMBOL vmlinux 0xd594e8f7 to_nd_dax +EXPORT_SYMBOL vmlinux 0xd5a0dc9d t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xd5a40869 param_ops_string +EXPORT_SYMBOL vmlinux 0xd5a579c6 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5cc9119 rtnl_notify +EXPORT_SYMBOL vmlinux 0xd5da51f5 bioset_exit +EXPORT_SYMBOL vmlinux 0xd5eb95f1 netpoll_setup +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd601179f dqget +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd6077fb2 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xd61a3123 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xd61bccac d_move +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd64b43bb dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xd66014fe d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd676d650 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd698fea0 pcpu_hot +EXPORT_SYMBOL vmlinux 0xd69d5de7 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xd69e65e3 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6cc6b92 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xd6d307e3 __scm_destroy +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6eb3f21 vc_cons +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fca40e wireless_send_event +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd7002fd1 serio_bus +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd713fa4a remove_arg_zero +EXPORT_SYMBOL vmlinux 0xd71dd279 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xd7292349 iget5_locked +EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd7439276 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd7487702 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0xd752dc53 sock_edemux +EXPORT_SYMBOL vmlinux 0xd75e2789 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7bbeb54 phy_resume +EXPORT_SYMBOL vmlinux 0xd7ca15e7 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xd7cbc758 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d51733 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e4eb5e vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e86d25 __alloc_skb +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd80f1ad3 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xd8289618 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xd82f9dd1 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd8510c42 phy_init_hw +EXPORT_SYMBOL vmlinux 0xd85f51b3 module_refcount +EXPORT_SYMBOL vmlinux 0xd862a4f1 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit +EXPORT_SYMBOL vmlinux 0xd8c02984 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xd8d891d6 key_link +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8eb4cfe mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xd8efa189 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xd8f7d923 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xd8fda019 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xd90ad745 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9324172 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0xd93ee62e ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd9526a13 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xd96dc9db pci_enable_wake +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd974f853 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd993de59 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xd9a47822 param_get_bool +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9bed5a5 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e0b87e put_fs_context +EXPORT_SYMBOL vmlinux 0xd9e32bb3 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xd9e700ec seq_bprintf +EXPORT_SYMBOL vmlinux 0xd9f5cab6 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xd9f98b90 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xd9fcd004 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda2ded02 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xda3c9b46 load_nls_default +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda446a47 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xda55d4fc page_pool_destroy +EXPORT_SYMBOL vmlinux 0xda6988e2 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xda6df324 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xda6ed400 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xda75b53d devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xda7e855d blk_get_queue +EXPORT_SYMBOL vmlinux 0xda8bae3b register_shrinker +EXPORT_SYMBOL vmlinux 0xda99bc63 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xdac07931 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdaeb3197 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xdaf49b12 qdisc_put +EXPORT_SYMBOL vmlinux 0xdb0eea67 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb269554 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xdb28709f mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xdb2e06a5 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb92e137 param_ops_byte +EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size +EXPORT_SYMBOL vmlinux 0xdb963ab4 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xdb975892 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xdba32f22 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xdbb1347e dma_sync_wait +EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xdbc8f0c8 proc_remove +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdafcd3 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe5a1fe fifo_set_limit +EXPORT_SYMBOL vmlinux 0xdbe99c5b ptp_clock_index +EXPORT_SYMBOL vmlinux 0xdbed94e6 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xdc02dc24 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc0ec08c __x86_indirect_jump_thunk_r12 +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1c270a pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xdc397169 filemap_get_folios +EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0xdc43d485 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc67b5c3 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xdc7f20e5 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xdca46d67 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0xdcae9b08 dup_iter +EXPORT_SYMBOL vmlinux 0xdcb1c43a pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xdcb69e92 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xdcc6b4a3 simple_lookup +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdce0cb54 __folio_lock +EXPORT_SYMBOL vmlinux 0xdcef1af9 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xdcf17619 brioctl_set +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd1c3995 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd329afc kmem_cache_create +EXPORT_SYMBOL vmlinux 0xdd32d7ac dm_table_get_md +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd751c05 find_inode_rcu +EXPORT_SYMBOL vmlinux 0xdd75d95e unpin_user_pages +EXPORT_SYMBOL vmlinux 0xdd77d382 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xdd785af4 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8e2511 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xdd8e95dc arp_xmit +EXPORT_SYMBOL vmlinux 0xdda3d387 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xddaa2156 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddb8f23a pci_request_regions +EXPORT_SYMBOL vmlinux 0xddba59f3 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xddc06824 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddcf0b13 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xddee1a3f dcache_readdir +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde2b8fa0 input_setup_polling +EXPORT_SYMBOL vmlinux 0xde33bd35 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xde411b4c generic_write_checks +EXPORT_SYMBOL vmlinux 0xde452a36 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xde4774e2 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde56af72 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xde72b524 inet6_bind +EXPORT_SYMBOL vmlinux 0xde7c90c7 current_time +EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap +EXPORT_SYMBOL vmlinux 0xde884dd5 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xde8f6134 inet6_offloads +EXPORT_SYMBOL vmlinux 0xde92afea set_user_nice +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea92c4c bdev_end_io_acct +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 0xdf156a30 vfs_fsync +EXPORT_SYMBOL vmlinux 0xdf16284a max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xdf17bea4 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xdf1da04c cont_write_begin +EXPORT_SYMBOL vmlinux 0xdf20ac83 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xdf22c5fb ethtool_op_get_ts_info +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 0xdf3bbc13 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xdf3c21c1 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf888280 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0xdf8aa5c7 cdrom_open +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 0xdf972327 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents +EXPORT_SYMBOL vmlinux 0xdfba5776 __bforget +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfc1e7d8 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xdfc3b9b9 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfcf3ae6 inode_init_owner +EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xdff08887 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xdff2a772 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xe02a9cce unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe02e3026 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe03de887 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe057c15f blk_sync_queue +EXPORT_SYMBOL vmlinux 0xe067903b skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xe06ee8ba xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe07ef363 intel_gmch_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe083ccfc md_check_recovery +EXPORT_SYMBOL vmlinux 0xe0860ecc tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xe08f2dcb secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0a25cd4 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe0b0b9d0 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b86780 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xe0b9e3b9 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xe0ef4397 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xe0f59fef rproc_del +EXPORT_SYMBOL vmlinux 0xe0f5c33e inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xe1023779 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xe10daed3 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe15951ca iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xe15ac602 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xe16529f8 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xe17d8779 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xe18ba6a8 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xe19536fe mmc_start_request +EXPORT_SYMBOL vmlinux 0xe1a6fc62 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xe1b7d294 may_setattr +EXPORT_SYMBOL vmlinux 0xe1bcb305 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr +EXPORT_SYMBOL vmlinux 0xe1c52799 skb_condense +EXPORT_SYMBOL vmlinux 0xe1d202f9 netlink_ack +EXPORT_SYMBOL vmlinux 0xe1d38a8f ipv4_specific +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1fbc41a inet6_getname +EXPORT_SYMBOL vmlinux 0xe2006135 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xe2105081 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe21f2db5 unlock_rename +EXPORT_SYMBOL vmlinux 0xe246a04d truncate_setsize +EXPORT_SYMBOL vmlinux 0xe250b8e3 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe276c3de __sk_dst_check +EXPORT_SYMBOL vmlinux 0xe284c356 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xe28b02f3 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up +EXPORT_SYMBOL vmlinux 0xe29bbc14 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xe2bb2f25 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xe2bcbbcb dquot_get_state +EXPORT_SYMBOL vmlinux 0xe2bdd3ab mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xe2cd7ed2 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d892c5 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr +EXPORT_SYMBOL vmlinux 0xe2f79853 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xe2f7af00 page_mapping +EXPORT_SYMBOL vmlinux 0xe30d0d2d devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xe3112885 can_nice +EXPORT_SYMBOL vmlinux 0xe31b9301 intel_gmch_gtt_flush +EXPORT_SYMBOL vmlinux 0xe3246217 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xe3274a39 tcp_connect +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe3557d4e dquot_operations +EXPORT_SYMBOL vmlinux 0xe37779ef mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xe394ce01 sock_create_lite +EXPORT_SYMBOL vmlinux 0xe3997dc8 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3ab898e gro_cells_init +EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xe3bc6068 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xe3d3e458 vfs_statfs +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3fb32c3 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xe3fe3774 agp_generic_free_gatt_table +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 0xe40b953d __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe41284bb proto_register +EXPORT_SYMBOL vmlinux 0xe4145569 key_type_keyring +EXPORT_SYMBOL vmlinux 0xe4198fbf pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe4202302 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xe43234ac folio_wait_bit +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe43b469b agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe460a1f7 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xe461fecf devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xe4657608 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xe46fc77a xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xe48902bf pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xe4b2d6a5 inet_offloads +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4bd6ea3 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xe4c486ed kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe4ffb648 cpu_info +EXPORT_SYMBOL vmlinux 0xe50c82bf eth_gro_receive +EXPORT_SYMBOL vmlinux 0xe511edda generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xe51bafb4 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5460e43 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xe5531f5d jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xe56943d0 kset_unregister +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5977f40 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xe5a4a486 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xe5b49373 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xe5b5376e __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5e5573b ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xe5f372ff __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0xe60c5e33 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xe60f6607 d_exact_alias +EXPORT_SYMBOL vmlinux 0xe61391a1 file_ns_capable +EXPORT_SYMBOL vmlinux 0xe614dc4d ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xe62a533c _copy_to_iter +EXPORT_SYMBOL vmlinux 0xe62ccb16 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xe63140b2 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xe63275b0 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xe635ea5f is_subdir +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe65d75e3 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xe669e7fa netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xe67a4b5a tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe6af19a3 iterate_dir +EXPORT_SYMBOL vmlinux 0xe6c716c1 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d852ed md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xe6dfed7a fc_mount +EXPORT_SYMBOL vmlinux 0xe6e58f14 thaw_bdev +EXPORT_SYMBOL vmlinux 0xe6ea355d agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xe6f9681f bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe752e7e3 km_report +EXPORT_SYMBOL vmlinux 0xe76d58af xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xe77f9a09 udp_read_skb +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe7878a41 folio_account_redirty +EXPORT_SYMBOL vmlinux 0xe795be9d insert_inode_locked +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7b45573 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xe7c008fc flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0xe7cd2e08 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7dc1a06 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xe801bf79 prepare_creds +EXPORT_SYMBOL vmlinux 0xe8071c50 finish_swait +EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xe8331122 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xe8350076 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xe83d3058 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xe8573e93 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe862a261 inet_protos +EXPORT_SYMBOL vmlinux 0xe8829499 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xe8c2c051 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xe8c830f4 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len +EXPORT_SYMBOL vmlinux 0xe8f2f829 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xe8f5c2f3 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe8fdb111 dquot_destroy +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90b3fe7 unregister_nls +EXPORT_SYMBOL vmlinux 0xe90edf83 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xe91350ee napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe92a6ecc pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe953eaaf devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xe9595ce5 dm_register_target +EXPORT_SYMBOL vmlinux 0xe964d7b8 dev_set_alias +EXPORT_SYMBOL vmlinux 0xe98e7132 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xe9a59cfd iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9b1518e skb_put +EXPORT_SYMBOL vmlinux 0xe9b853e3 inc_nlink +EXPORT_SYMBOL vmlinux 0xe9cf74b6 seq_lseek +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f1a8a9 regset_get_alloc +EXPORT_SYMBOL vmlinux 0xe9f334a4 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea017b2c xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xea01c245 dget_parent +EXPORT_SYMBOL vmlinux 0xea0ac542 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xea1f29ce cdev_alloc +EXPORT_SYMBOL vmlinux 0xea293a00 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xea339c4f serio_close +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea46f3f6 begin_new_exec +EXPORT_SYMBOL vmlinux 0xea4965e1 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xea60a723 bmap +EXPORT_SYMBOL vmlinux 0xea635591 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea7fcf99 inet_listen +EXPORT_SYMBOL vmlinux 0xea9611ad vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xeaa8907a rproc_shutdown +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeac506c0 udplite_prot +EXPORT_SYMBOL vmlinux 0xeac81dc3 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xeadf2f0d vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae4f8ce netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xeae5c413 __netif_rx +EXPORT_SYMBOL vmlinux 0xeaef9127 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb020632 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xeb027bb3 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb410476 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4c0ffd bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xeb53a4f8 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xeb590f51 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xeb6bbafb mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb872a0c pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xeb8842f4 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebab3263 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xebb233ad input_unregister_handler +EXPORT_SYMBOL vmlinux 0xebb36c88 key_move +EXPORT_SYMBOL vmlinux 0xebb7d703 input_grab_device +EXPORT_SYMBOL vmlinux 0xebbe6ff0 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xebeafc90 dev_uc_init +EXPORT_SYMBOL vmlinux 0xebfee2aa phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xec0b5edf vfs_get_link +EXPORT_SYMBOL vmlinux 0xec182d20 md_reload_sb +EXPORT_SYMBOL vmlinux 0xec28320f mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec403f29 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4fc615 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0xec566524 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xec5da511 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xec64049d fput +EXPORT_SYMBOL vmlinux 0xec78cc1c blk_rq_init +EXPORT_SYMBOL vmlinux 0xec790dd4 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecb5c823 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xecbede2d block_write_end +EXPORT_SYMBOL vmlinux 0xecc7c868 __x86_indirect_jump_thunk_r9 +EXPORT_SYMBOL vmlinux 0xeccc3252 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xecd31811 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xecd87d67 set_capacity +EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0xece0b592 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xece0cfe3 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed028690 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xed100601 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xed2bef4b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xed3318ae tcf_action_exec +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed43ea6d input_copy_abs +EXPORT_SYMBOL vmlinux 0xed4967ee xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xed4ce6f9 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed6303d0 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed755087 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xed7d7df0 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xed9633f5 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc824db pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xedc8b799 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xedcd33a2 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0xedd0fdea blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xeddd2a48 security_path_rename +EXPORT_SYMBOL vmlinux 0xede1af1d tcf_register_action +EXPORT_SYMBOL vmlinux 0xedeae989 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xee07db76 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xee181ab4 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee38a20e __x86_indirect_jump_thunk_r10 +EXPORT_SYMBOL vmlinux 0xee3b4db5 framebuffer_release +EXPORT_SYMBOL vmlinux 0xee3fce24 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xee51e450 sk_capable +EXPORT_SYMBOL vmlinux 0xee569cea dentry_create +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee75947a __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xee7be226 follow_down_one +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee86993e xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xee872228 tcp_get_cookie_sock +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 0xee92f5a6 pnp_device_attach +EXPORT_SYMBOL vmlinux 0xee988cc2 vga_get +EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0xee9c16c7 param_ops_int +EXPORT_SYMBOL vmlinux 0xee9f8e53 neigh_destroy +EXPORT_SYMBOL vmlinux 0xeea526e9 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeac6450 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xeec3f4a6 posix_lock_file +EXPORT_SYMBOL vmlinux 0xeed95ab5 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xeedee7e9 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xeee94039 put_watch_queue +EXPORT_SYMBOL vmlinux 0xeefd1b02 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xef10ab3d copy_string_kernel +EXPORT_SYMBOL vmlinux 0xef172992 vfs_llseek +EXPORT_SYMBOL vmlinux 0xef19f594 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xef2dd645 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xef36a848 __x86_indirect_jump_thunk_rdi +EXPORT_SYMBOL vmlinux 0xef469e7e sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xef50a09e dquot_free_inode +EXPORT_SYMBOL vmlinux 0xef5a3d08 pci_find_bus +EXPORT_SYMBOL vmlinux 0xef74fed0 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xef7d91e3 tcf_block_put +EXPORT_SYMBOL vmlinux 0xef8333c2 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xef8735b6 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xef9e40a1 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xefa2b298 dma_pool_create +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb3d603 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xefca6784 kthread_stop +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd3d14c follow_up +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xeffa1559 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0045f03 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xf00e2c6a mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xf013eee4 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf033dbb3 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf0485d9b vm_insert_page +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf06ce094 d_path +EXPORT_SYMBOL vmlinux 0xf0729a37 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xf0739eea mount_nodev +EXPORT_SYMBOL vmlinux 0xf0770786 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table +EXPORT_SYMBOL vmlinux 0xf0874748 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xf08d900c alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0b1cf1c ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xf0bcfebb jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xf0bff04b pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xf0c2b475 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xf0c34e97 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf0c3d63b udp6_csum_init +EXPORT_SYMBOL vmlinux 0xf0cfb726 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xf0e52e56 clear_user_original +EXPORT_SYMBOL vmlinux 0xf0eb3965 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf162c508 param_set_hexint +EXPORT_SYMBOL vmlinux 0xf168f742 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xf172b664 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0xf186a58f bdi_alloc +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 0xf1ae4ea9 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xf1c0c1d6 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dc43f9 udp_disconnect +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f162d5 neigh_table_init +EXPORT_SYMBOL vmlinux 0xf2207f86 phy_read_paged +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf259c4b6 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xf26016f0 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xf26165ab __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf263d46e proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xf27223e6 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xf274ad24 netif_schedule_queue +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 0xf2b2886d rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2c33d72 iunique +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2db3b57 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2fadcf4 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf30ac4fc fb_show_logo +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf31e0e84 generic_write_end +EXPORT_SYMBOL vmlinux 0xf324bbd4 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xf32a6e80 xp_free +EXPORT_SYMBOL vmlinux 0xf3354270 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xf33ba540 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xf33c26f4 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf351ef18 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xf35282b0 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35f97aa i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf3a1419b blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3bb5e4a show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xf3cbd6ab scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xf3d03772 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e27e30 nla_put +EXPORT_SYMBOL vmlinux 0xf3e8ab02 mpage_readahead +EXPORT_SYMBOL vmlinux 0xf3f67269 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf40382a3 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xf4066904 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xf4110582 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xf423a576 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xf4300141 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0xf4356417 tty_lock +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf43d3c55 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xf4465d0e netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44afd5f __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xf45ed69c __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xf4619df1 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47bce88 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xf484a6cb skb_split +EXPORT_SYMBOL vmlinux 0xf48fccbb unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xf496101a ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf4a46f28 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4b58be3 pci_dev_put +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdef92 bioset_init +EXPORT_SYMBOL vmlinux 0xf4beb44a tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xf4cbe080 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xf4cf85dd xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e07bc9 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xf4ebbd46 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xf4ecc667 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5201901 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xf537962e ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf55d02ea uart_suspend_port +EXPORT_SYMBOL vmlinux 0xf56896f6 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0xf572f052 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xf577e16e aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xf57807e2 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5a73079 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xf5b00aab boot_cpu_data +EXPORT_SYMBOL vmlinux 0xf5b5ae08 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xf5ba49ad dev_printk_emit +EXPORT_SYMBOL vmlinux 0xf5dcf929 __x86_indirect_jump_thunk_r8 +EXPORT_SYMBOL vmlinux 0xf5e162ac tty_hangup +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf603f7a8 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf60cecc0 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xf60d0679 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xf61ba36e cdrom_release +EXPORT_SYMBOL vmlinux 0xf61fe368 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xf6330ed2 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xf63901ad phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf64c8957 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xf6505240 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xf65e6e88 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xf65f1dbd __x86_indirect_jump_thunk_rsi +EXPORT_SYMBOL vmlinux 0xf66451df twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf66d712f send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xf681ee6d set_bh_page +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6b56d74 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xf6c036c0 serio_interrupt +EXPORT_SYMBOL vmlinux 0xf6e83c14 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xf6eb78b6 address_space_init_once +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f3c2c9 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fabbec rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xf6fc1b0a dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7091cc0 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xf70ea815 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xf71270d6 config_item_get +EXPORT_SYMBOL vmlinux 0xf715bd03 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xf71e48a3 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf723934f __x86_indirect_jump_thunk_r11 +EXPORT_SYMBOL vmlinux 0xf7264016 inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0xf7265a59 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xf7336d1c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xf73487e5 key_invalidate +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73eab0a con_is_visible +EXPORT_SYMBOL vmlinux 0xf7584ac5 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xf758f4f8 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0xf792eb8c i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xf798722f tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf7a4fbb7 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xf7b7ade8 page_pool_release_page +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d46db4 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xf7d5c323 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e53787 rproc_free +EXPORT_SYMBOL vmlinux 0xf7ebfc83 scsi_host_put +EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +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 0xf81f8b9b netif_tx_lock +EXPORT_SYMBOL vmlinux 0xf8226e76 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf847a4b6 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf8721793 ns_capable +EXPORT_SYMBOL vmlinux 0xf875333b qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xf89c640b unregister_netdev +EXPORT_SYMBOL vmlinux 0xf8ac21b3 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8de9049 __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xf8ea4906 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8fab34a genl_notify +EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0xf91763de i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xf931db2b ip_setsockopt +EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xf93bc6b9 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xf93f7441 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9574909 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xf95ee4a2 filemap_release_folio +EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf972f6d2 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xf986936d blk_execute_rq +EXPORT_SYMBOL vmlinux 0xf9997798 sync_file_create +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b1d8e7 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9d2737a nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xf9d84167 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xf9ebe5b8 vme_irq_request +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0db868 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa40f737 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xfa485f76 mr_dump +EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse +EXPORT_SYMBOL vmlinux 0xfa4e40ce __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xfa575c43 single_open +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6950d2 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xfa7df5ea submit_bh +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfaafc35e tcp_mmap +EXPORT_SYMBOL vmlinux 0xfab878a7 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xfac14cb3 sock_no_listen +EXPORT_SYMBOL vmlinux 0xfac6333a dev_mc_flush +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfac8955c poll_initwait +EXPORT_SYMBOL vmlinux 0xfacb67bd zero_fill_bio +EXPORT_SYMBOL vmlinux 0xfacb7926 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xfad148ac node_data +EXPORT_SYMBOL vmlinux 0xfadfc586 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xfaf5ee56 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xfb05d7fd max8925_reg_read +EXPORT_SYMBOL vmlinux 0xfb06fc7f tcp_disconnect +EXPORT_SYMBOL vmlinux 0xfb0dfb0b register_fib_notifier +EXPORT_SYMBOL vmlinux 0xfb28b066 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb449994 softnet_data +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb899594 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xfb933140 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xfb961aaa build_skb_around +EXPORT_SYMBOL vmlinux 0xfb9fe723 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below +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 0xfbae480d ip6_xmit +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbc12730 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbca8da1 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xfbd1886e posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfc024aec tcf_block_get +EXPORT_SYMBOL vmlinux 0xfc11459c trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xfc1af922 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xfc1cb964 __dec_node_page_state +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 0xfc51143d agp_generic_enable +EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices +EXPORT_SYMBOL vmlinux 0xfc7c21d1 __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0xfc8211a7 generic_fillattr +EXPORT_SYMBOL vmlinux 0xfca177d1 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcd5ee2d sock_i_ino +EXPORT_SYMBOL vmlinux 0xfcdab212 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfbfbe6 ping_prot +EXPORT_SYMBOL vmlinux 0xfd028779 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xfd08976e mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xfd285e13 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xfd2fb92a tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xfd343337 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xfd380982 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xfd3bb8d3 vme_bus_num +EXPORT_SYMBOL vmlinux 0xfd692ca0 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xfd846c26 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xfd8c88b3 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xfd8c8e53 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xfd8fdd60 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfda9a3f1 intel_gmch_enable_gtt +EXPORT_SYMBOL vmlinux 0xfdaf81fc __mdiobus_write +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd26389 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfde03c40 dns_query +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe02f663 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xfe048a41 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe05deaf pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe249ab1 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xfe361d21 inet_bind +EXPORT_SYMBOL vmlinux 0xfe3e9bfb blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xfe480588 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe685099 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xfe73eb72 generic_update_time +EXPORT_SYMBOL vmlinux 0xfe797d83 sock_bind_add +EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe989cbd devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xfe9c6434 d_rehash +EXPORT_SYMBOL vmlinux 0xfe9dc960 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb161ea blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xfec888cf mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xfed39b10 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeea5e22 __skb_checksum_complete +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 0xff0e5395 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff32c403 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xff359668 udp_poll +EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff6347b7 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6ae336 input_free_device +EXPORT_SYMBOL vmlinux 0xff6bfaa0 drop_super +EXPORT_SYMBOL vmlinux 0xff726daf inode_dio_wait +EXPORT_SYMBOL vmlinux 0xff7babfe con_copy_unimap +EXPORT_SYMBOL vmlinux 0xff831972 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xff8665c2 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff8d75b5 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xff981a3c follow_down +EXPORT_SYMBOL vmlinux 0xffa48ce8 ppp_input +EXPORT_SYMBOL vmlinux 0xffa5b85c __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffb9706f uart_update_timeout +EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffc8397d tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffe3f844 validate_slab_cache +EXPORT_SYMBOL vmlinux 0xffe9bb08 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfffb0adf prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xfffea3a5 xfrm4_rcv +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 0x71c60d1b sm4_avx_cbc_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x84a9c3ca sm4_avx_ecb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xa03a853a sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xa2157339 sm4_cbc_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xa69e14f0 sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xb1b7810a sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xf73c2f72 sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x1f491d36 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x7c7bf6e0 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ec1ca2 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02102937 kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0519cbf1 hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05bec96b __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x074d0e71 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07da6aeb __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x099f2277 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b58a11d kvm_nr_uret_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b8a3365 __traceiter_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d6c9b47 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e005d9f __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f9a5c84 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11348ff0 kvm_pmu_trigger_event +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11b8f476 kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12209cac kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x137612dc __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13c2bf31 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14bb37f2 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14d2b609 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1516a16f __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15bc0451 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16983137 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x169bb518 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17386d76 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x190eccca __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b38f4f8 __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b7be022 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cd9bd6f kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cebadac kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf9713a kvm_gpc_check +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 0x1d78e274 __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1da1bd2c __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e4aa520 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ee72da7 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f8e9483 __SCT__tp_func_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x203bb7e5 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20610ad3 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21a581e7 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24834c42 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24e3e624 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25cbb9e6 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27857521 __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28fafebd gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x298d6f48 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a0504f9 kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2affb392 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b637ece __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d453093 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x303903f0 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x307a64c6 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30f8f221 kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31163258 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x313bbace kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33b7cd6c kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33e14c3e kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x346114c8 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x356b9535 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x363308b3 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x374610d9 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3811516e kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38209be8 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38c8f0fd kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x390ba33b kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3988e13a kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39a5ce6e kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b445932 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ceed42d kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d37039c gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d5586ec kvm_complete_insn_gp +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 0x403084d8 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41a6f15b kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41eb66f4 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42404dca kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4415b6e4 __tracepoint_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44538931 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4570ad32 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4692fdfb kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4707ea14 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48288c43 kvm_emulate_invd +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 0x48f1bd26 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x492b79a3 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49a5c47a vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49b98537 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4aebab88 kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cd5a696 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4db276cf kvm_find_cpuid_entry_index +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e71e480 __tracepoint_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ea798c9 kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4eecf077 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51ccfd5c kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5376c5bf kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5495f35a gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55023da8 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55067ac8 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55a0e466 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x563f1da9 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x565074bb kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57dcbcff __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b1889cb kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bb68067 kvm_mmu_free_roots +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 0x5c2e13b9 kvm_gpc_deactivate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c379032 mark_page_dirty_in_slot +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 0x5fb014c8 kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62e92cf4 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63252dbd kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x656bf7ab kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67544a0a gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x684f0158 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68df3909 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68fc89e8 __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69091c82 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69104aea kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a51ddb7 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bc792a4 kvm_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d2c9437 __SCT__tp_func_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6dad47f5 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6de3f919 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ee1be62 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x706a2fef kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x719f8794 kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72d9e2b3 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7307aadc kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73db54c1 kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74910627 __traceiter_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7510a39a __traceiter_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7605e27f __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7767fe29 __SCK__tp_func_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x789078cc __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x791d31db __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7958f8fa kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7994a033 kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79b92906 __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79ff7c2b kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3a0f8c __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b6bfc26 kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c0fefa9 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c662801 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ca6ef8e __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d5eac3e kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d98419f __SCK__tp_func_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f51547e __traceiter_kvm_inj_virq +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 0x810bd8fb __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8136dcce kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81a73b08 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81e6b1af kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81e6eabd __tracepoint_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8366c3a2 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83b3ee58 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84b9589a kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85d0ae7b __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86495254 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8752573e kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x897de98a __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89e17c7f __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a3a8ad5 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a6c9ff3 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a709959 __SCK__tp_func_kvm_pi_irte_update +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 0x8db9c842 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e21bbf3 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f3a890e __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f5c4cc2 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x908ef8e8 kvm_gpc_refresh +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90c1492c __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93014eca kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x943d8a71 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9543976b kvm_emulate_xsetbv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9611bbb0 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99f877de kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a45137d kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d24affe kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9da75cad kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ddf0444 __tracepoint_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9de88ea7 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fbc6def load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0af281b kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1d8890d kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa38cf7ab kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9490186 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab39a947 kvm_gpc_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab9057a1 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaec448b0 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0cf7329 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb15f1fac kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb332b817 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4847ec7 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6c46b29 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6df9bc4 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb71a2990 __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb73ae648 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb82c0987 enable_pmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb84d5d61 kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb934e2b3 __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb93caab0 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb963ba49 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9993c46 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9d5222c __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9d6dfc kvm_mmu_set_me_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe3ac0a3 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf8eb7c9 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0651ee7 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0908729 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc117446b __SCK__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2633c9b kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc35f8e63 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4be7602 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fc4205 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fe55ac __traceiter_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8a7df1b kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9ccb660 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9dd72a0 __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb41482a kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd3d8f4c __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcdb24575 kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce2f1122 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce5be7b0 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce6cedfd kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0d56024 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1ea1663 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd31f405e __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3f07c5c kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd43c8c18 kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd457ba6e kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd471e10a kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd475c188 kvm_pmu_cap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5310146 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd60d3801 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6ae14c3 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6eb9dea kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd725850f __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd75008c0 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd79c2519 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7d08cd7 kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd857bc99 hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb344438 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde737080 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9740e3 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe41f70fb hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4a013d0 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5081aef kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6835df4 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6b1c1fe file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7f9d63f kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe804d367 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8597652 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8a0faac kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9c27b7c kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea0080ad __SCK__tp_func_kvm_apicv_accept_irq +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 0xecb68c7f __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xede3833b kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee80d950 kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee90da9c __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef75e577 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf123af19 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1800e95 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1abfd6f kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2574737 kvm_release_page_clean +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 0xf34c2c92 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf360cb48 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf508ccd0 kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf518833c __kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6e0f1c8 kvm_vcpu_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf744e8c9 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7a65882 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8338ff6 kvm_emulate_halt_noskip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf878bec2 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf930a381 __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9379ba4 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf98e75d4 __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9af30e4 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab33e4c enable_mmio_caching +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbea6dc3 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfee36aad kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfee84c41 __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL crypto/af_alg 0x02f60b2d af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x0e7dc7bb af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x18e8fbeb af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x2379d932 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x409f4175 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x482a825e af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x587c671d af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x8168235f af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xa8620f01 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xb04e2471 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xb1aa1a22 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc5f621b4 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xd3a7b44f af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xee93c3cf af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xf07608ce af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xf47dfd01 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xff4fb7d5 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xffdd85e0 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0x5f2ff26c aria_set_key +EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xe50e4976 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3814935e async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x58a9fbf4 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x91226204 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xbd0ebfc7 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x22a1ea31 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x271b4d86 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcfe989a1 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf769b146 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x370e4011 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8c295f32 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9af4ba75 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe57c1094 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xb09f4679 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xa266b87d cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xe88bf73f 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 0x32511f80 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x3aac0c50 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x3d363259 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x450165a6 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4ef7fb36 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x6ae12632 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x89302759 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x9c2abc6f cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xa7220c45 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xaccc9591 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd8d581d0 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xe3df5265 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xf57b9f6b cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1e59573a crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x321a18fa crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x37965f80 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3f9d4520 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4520686b crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x453981fc crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x877229ec crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x93c46638 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa714c59f crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb3c61442 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbbeb443e crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc7945ff2 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd0b7110c crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdc5bc024 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdfb7209a crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x6771b823 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xb358ee44 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xcc493672 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xcfb71b07 simd_unregister_aeads +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/polyval-generic 0x1936413e polyval_mul_non4k +EXPORT_SYMBOL_GPL crypto/polyval-generic 0x49dece42 polyval_update_non4k +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd27d77ce serpent_setkey +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 0x11d90ddb twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x181e6b76 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x45eee539 __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 0x4a8f77d1 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5e9fa656 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa7a4080e acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register +EXPORT_SYMBOL_GPL drivers/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 0x14e07e06 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1cc8313a ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x221f9f05 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x276b881a ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x27c0ce18 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3add8b27 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3d4b5efb ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4793c9ef ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x49521776 ahci_shost_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x60508114 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x76957bfb ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x814ac3b1 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8653c869 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8dc1d925 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa556f192 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa797cd08 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xab9e4883 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbe82fbfe ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc044dcb1 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc1ddad47 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xca05c9d4 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcf0ede4e ahci_sdev_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe095efbe ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf9dfc0cf ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x162aece8 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x24ca6691 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2bfa6e03 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4ab41353 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4c5c44dc ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4fc26e6e ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x59444e9e ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6b6d8125 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6fa8a5f8 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8dde7467 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x96999ea6 ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa7cb7764 ahci_platform_find_clk +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaa8b1ad9 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbff7bbdc ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd2270162 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdfd3d805 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe434890b ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xea8a4bae ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeba87145 ahci_platform_enable_resources +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 0x2eb7a09c linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xd89c38a5 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xa1230e2c __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x6f829c61 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x94dc1763 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x274874ca __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xcb7a8c4b __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2d30c85b __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x87cec14f __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xcbe40c08 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe06720b6 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x92e13345 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xfcf71b6f __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0d73a501 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4148dbda __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7c98716f __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xeb337c51 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x94b88f9b __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xfb5fcc86 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x16b66738 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26e6a2ae bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x29a4dc2b bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3114b35f __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x336b822c bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3c230e36 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x43bb1b29 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4ce4490c bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52b2598d bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x61da001f bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x630b31ae bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6bfa0235 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6ce87864 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x70239f22 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ffb9779 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9099ad2c bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9786d880 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9987b9e3 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9a0aa4e3 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb50b0f76 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc5635eb7 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8c06c1e bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf0a11e0c bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfeac12b7 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x64187f40 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x700d8b2b btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x78e7411b btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa18ef6b7 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb3d5f948 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb461e30f btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb5bae7e9 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd75bb10d btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x153b687d btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1d44d85b btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b00aecb btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x463179aa btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x62578bd7 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x636506f4 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7096d804 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x95ce7e63 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa5d9b175 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc13f71d0 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc632d89f btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc6d59daf btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc7d7d9f0 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xce2261a4 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd58bc60f btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd9594ad6 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfa2bb692 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x057ae0b8 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0695ab1b btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0d2b7ec3 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3c166786 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5a04603d btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8da01d87 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x96ade187 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbfdd1cf7 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc6e03d8c btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd55c3593 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xde4cbacb btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x17b5e964 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xaecc98c3 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xc34fa4e2 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x131e117b qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4352e812 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4cafe615 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x93a72b00 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe3c2f709 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x43a91469 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x61de8620 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9144b36d btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xcea8bf53 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd530f95f btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd6b0ee92 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x34ffd4c9 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x620f2e5d hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe2987f88 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xec5cb46f hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x04a2cfc6 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x22d8dd8c mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x2ea068a3 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4c4b486c __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xaaa03d6e mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xab453fed mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xcdb6a302 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xd25314a8 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x018b040b mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x05138e1e mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0799d921 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0c24964d mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0f2a7dfc mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x11901c0b mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x160e8f4f mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x206aa388 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x26db61cd mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x29ea7ba0 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x30c8e357 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3569e8f0 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x455cc65d mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4bef0915 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4cb3e071 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4e1851ab mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x55992ff1 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x584fcdcf mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5a28a735 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7f1589ae mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x807f1e81 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x85d51fe9 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x864d0c88 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaa88f03a mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb0b0635a mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb22c5261 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbd046195 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xccb9dcb1 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd51e2d94 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe822cb4e mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf43b9e08 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x03a44967 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x03b40980 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0581735c comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x094aff78 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x20e5252a comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2a4d3e76 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e5a2ce3 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2fb2acd7 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3a133a58 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x497c9c8f __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f1bd902 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f4a3ba3 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6817c3b5 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x683e92bc comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x697a0e93 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x830513db comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8de8b7d1 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9b1ce5ab comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9ec8fa8c comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa660e0dd comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa78d8529 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb337c630 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb48dccaf 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 0xbb9cf41b comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc256adeb comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcb5bfd89 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcbcb94cc comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcc8ea8db comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcebfdacf comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdea3ba26 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe9086a4c comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe9a96927 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf04f44cf comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf47c29ae comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfb4c7852 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfd1d6db1 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0f26a2a9 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2e4d7439 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4086b6ec comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8a957559 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x900162c3 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa6b9938e comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe9925d6e comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf0e42afa comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x2fadbaf9 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x31cc5e48 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x6b2cdf3b comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x795157d9 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x94881336 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xd54abf02 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xde47bdb7 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x020343d9 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x555dede7 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6b722391 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x985d0880 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb2694f9d comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe3915dbf comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x08e2fca4 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x1f063ea3 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x8a78b042 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x94bdc558 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0b95348b comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1093632f comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x19e6970a comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1bace8fe comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x33ced7c6 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4d21a2ab comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5bdb4f0a comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5e80dad4 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7ab24991 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7cc6b57d comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe6b78f6a comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe840061b comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xeede76ff comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x642baecc subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x893f5681 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa0f7db9f subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x15df8bd8 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xb15a6358 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xd44d1fa6 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x9ff13332 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0ef6ebc0 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x101dde32 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x104364d3 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1a8c2524 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x48c1c599 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6a396c90 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6e63093e mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7749374a mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa8e77ee3 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb3111deb mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb4112db8 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc7c530a3 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcb01e1d9 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdbc96d2f mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdc1e85cd mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xff02d671 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x264a0bb6 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xd8675bc2 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x45009187 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x8ee596fb labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xe307eaaa labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xf2f1399d labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xf9873815 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x02824d58 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0c1b1a28 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1b69b247 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1fde6d0f ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x40a45402 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x61554d67 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x63a7822a ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8481cefb ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x875c7d63 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x939e4fc6 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc1acb690 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xccf3b9d5 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcdff7c8d ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcf554d57 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xebc6f2df ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfd494b8a ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x34b575ee ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x535e7d45 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5f923103 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6a3d4311 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdd3690ce ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe4dc5b00 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1ed894a0 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3290aec6 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x51c8d9fe comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x610fd30a comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb016fb6a comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd57f0feb comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe796bc14 comedi_dio_config +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 0x114237c6 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x2e6a6147 psp_copy_user_blob +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3e059f28 sev_guest_activate +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4073e924 sev_guest_deactivate +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8289ecc8 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/qat/qat_common/intel_qat 0x020b9e92 adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0c934537 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0d3adb5f adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x12287fa8 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b1635b4 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1c26e391 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1fd1ebdd adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x25d0ef74 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b1408ad adf_gen2_init_pf_pfvf_ops +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 0x3059d990 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x33669b48 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x34dfbdc9 adf_devmgr_update_class_index +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 0x3fe8425a adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x41eee73c adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x423705ef adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x44742c61 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x44e52826 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4934c178 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4954b721 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x49a91cf8 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4ca1bfbb adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x59f42ea4 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ced7c34 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60bab7ea adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6442f8dc adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6463cb74 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x69b13bc7 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6c9cdab0 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7535d810 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79e6c8a4 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7d0c748e adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7e926e58 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x81df8c14 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x838883cb adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84695176 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x88a3f4e4 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x94a8f356 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ac1bfc3 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9b19bf74 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9b35e1af adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa07d5918 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa64e6663 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb0a8bd4b adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3d49f4a adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb562517a adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb70256be adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc0da48c7 adf_gen2_get_num_accels +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 0xc947ab0b adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcbf5764f adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc9268e6 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xccced745 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcd3cee5b adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd31bd0b1 adf_dev_start +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 0xd87a8287 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe652b639 adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe79b08ca adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea029f7a adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea147d8b adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeecd243a adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xef2ba969 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xeab47c58 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x168a094d dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x456e4612 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x4afc9f16 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x534b773b dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x8f2eb175 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xbccce367 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xd6250faa register_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x2bed00b1 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x385a9e04 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x077256b2 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1dfe341f idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5f2409f3 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x63ac7c69 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x84395e72 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb05e4ed0 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb6328ca1 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb87aa70c idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc8853aba dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x663a01c5 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x7d86ade0 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 0x7e1083b1 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/fpga/altera-pr-ip-core 0xf03a6389 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x00f0f385 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0ca035d7 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x18924c4f dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x18d6d7a4 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2642206c dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2a3ca259 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x325e7017 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3ddc4119 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3f1b82df dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x44f6b52a dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x476783f6 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5ef94088 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6f8d16ec dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x774aa0f0 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x84212a8b __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8dc858aa dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9c4bf031 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xab2bc9ca dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xadc4740b dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb81f6b3d dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xde5f1513 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe1c85e36 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf65b1bf3 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x04c1a864 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0fb03cac fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1bbf5329 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x314c95f6 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5faa0273 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x60119e50 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6eb111bc fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xac873e02 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb7a20296 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x18644dea fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2e39678f fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x31972f6f fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3c812cc8 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7c71862e fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7cb92951 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8951b2b3 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa9675d03 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaa5b453b devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc435c2fe fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd5487cd3 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd74978f1 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf065684a fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1acf714b fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3f0b8469 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x66675b66 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x754167e9 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x77a0eedf fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x26d9129e gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x39f06bae gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x51318477 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8a364097 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe5423679 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x246b12c4 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x827b8f7d gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9ab0e571 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf81a2357 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xfcead062 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x5d0e4276 idio_16_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x6495f119 idio_16_get_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x68830314 idio_16_state_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x70e2b625 idio_16_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xae1139f5 idio_16_set_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x245b65f4 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x573bd110 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x186fa18a analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x25f4c705 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x58f898c0 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5cf4dbae analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9852608a analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbd75cb7f analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbf577432 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc9711781 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x503f9f3f drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x01a8e4c0 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x02f362e4 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0d201384 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x490a734e drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x641032f1 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71149658 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x74190387 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 0xb5072e95 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcdc2810a drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe2085b94 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf42b6724 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf6efbd8a accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf96134f6 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0176e19d drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x071d885b drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x28075144 drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x2d969c04 drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x3525b257 drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4ea4c22a drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5735fe90 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x81527cec drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x948fa56a drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x956a40d9 drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb07f5217 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xdb3e7617 drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0a177cd4 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1cd97de3 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x294d07b6 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4e817d99 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x61df380b drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x64a6ec49 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9495afe3 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc35b7c01 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe9275e5b drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xff38e915 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x4132d710 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb3465525 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb4fe2989 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe942173b drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe94e9ce2 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xec78ecbd drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xfcdfd01f drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xfee80423 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 0x2ed45cd6 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x56d86e30 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xb16ef71f ssd130x_remove +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x06a4865d gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x06c492ed gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0c0d3f45 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0db80014 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0e1cf0bb gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0eeccb63 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x11fb06a2 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x13f25b35 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14e42fa5 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1801e925 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x216e26a5 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x25902090 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2d189a70 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3293b4f8 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x32f6b220 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x33ad2457 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x470801f6 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ade50d8 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b7fdede gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50f55c89 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x534283fd gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5398d02d __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x54433ba3 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x571ce383 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62ed4cd7 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x65e21022 __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6a66002e __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6e84403e __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7114f343 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x73929d8d gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x79f90786 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b4dc9c4 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x88003624 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8821352c __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8ea7c528 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9b5b0de8 __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9fdba5fe gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa368776a gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa92c04ce gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa6b92f3 gb_hd_cport_reserve +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 0xb2253fd1 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb3f11bde gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb867763e gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd07653fc gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5daf863 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8427b22 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb4ddb02 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdfab36a8 __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe15ef608 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed374b38 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf85bd8c8 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf8a89a79 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfaa64552 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfbd97034 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd71b6fd __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09711fc7 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d8e6052 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ed94993 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x160120b0 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18f4eb94 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x195bc899 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1bfc24bb hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f8c61e8 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2169b3c3 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f2bf4b1 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f4e99cd hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3032f652 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x306a4707 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x326b7e4f hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3aee53c7 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43052e0f hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44b10c65 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a9537e9 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d516d9e hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x577e232c hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f5afb39 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x623286f4 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6650ad8a hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e623b06 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x775112f0 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x778ad8ee hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x80614c2b hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x83a710e4 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x84c27b35 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8770e51a hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d090319 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d68da26 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x90b85774 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2488636 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa707c02 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xadd963ab hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1ae4762 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb23400a4 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2a05b92 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb52df918 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbcd9e6d6 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbea11d0e hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbed14364 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd3bffae5 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdeb5a95a hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf82eda0 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1eeb8b0 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe345502d hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb9f21ed hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf83639b0 hid_open_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 0x436630d0 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x042e8dbc roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x220b0c0b roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x48c10cde roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8100d668 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x82e880b5 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfe1b8d88 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x048c3b95 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1903457c sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x74e1d96b sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7e43e698 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd37e57d4 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd82ae3ef hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe6570d6d sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe990a510 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf22007c6 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x3c653322 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x4e14d6c1 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x2d99efc1 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x49a08cbc i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4ffea130 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xce1e1dc0 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe3e279c7 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0xe1c7212e ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x52c7d14e surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x78211973 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xd80be77a surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x6d65dcd5 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x1fde844a hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x39eff062 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0745e4d8 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1105e709 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x20019a1e hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x35ef085c hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x55c3790b hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x618e47af hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x66bef6d6 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7cd998d0 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9c367d3f hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb21411e3 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb818f65a hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbff35239 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc476f967 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6559387 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe613bc9a hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf01d63ee hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf9b57ee4 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x10334889 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x12a0cd3b vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1596439e vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x16da2a52 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2098fa6b vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x222cf494 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x254dce63 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31d78f0a vmbus_driver_unregister +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 0x323b6858 vmbus_establish_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 0x50cdf977 __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x53b7e0ce vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5bdb4f03 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x609f7018 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7ec81d83 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7f0a97cb vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x87f77021 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9c66f37d hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9f3830c9 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa37bc0a9 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa50a87c9 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xae02afbf vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb32803c6 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb9476d5c hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd0bf9e50 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd78c20ea vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdc8fa996 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe6fc0397 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf258482e hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfe585cf4 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc5e2ec33 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/nct6775-core 0x5e770bdb nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x9bda5d12 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xc3255722 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xc6f897b2 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xec4272e1 nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xfac75ca3 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x54f9d7fe occ_setup +EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x9558a3bd occ_shutdown +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2e068e0e intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x747f382d intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x76ceefe2 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x964b8ff0 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaed649e5 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb5e7f15c intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc9753fd9 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcf6c8ba4 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfa15323e intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x3f1cf26a intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x9cdc5deb intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xc590a560 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x05e80034 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0beae029 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x10e6d282 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x29ddfa7e stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x36688927 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x591ffa3d stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x846e79d2 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd850bbf2 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe43c0127 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x0a5bfc34 amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x96693c58 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb9662745 amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xbc3e556a amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd30b6ace amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd7a14e83 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd864f882 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xbe875637 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xe17dea23 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x20b1c101 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x462fa2c2 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7b8f258c i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd4091b69 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x20101d81 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xede189b4 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x074360b8 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0e02b87d i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x17bcfd49 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x259f3658 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x30bab7fe i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x51060d64 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6555c4fc i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x688ebded i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x738dfba7 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8aafdfcf i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x94e0ca19 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa16769f9 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb3e400a2 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb70487d0 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc0c02933 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcdd9808d i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd3ac178c i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd45f8c94 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe5f8e6ed i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe736514e i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe7e68ed4 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xec04f393 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf6631e0e i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf80f8f2c i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfafa0cb5 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xffffdb70 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x0a32ca26 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1cf144af iio_channel_cb_get_channels +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 0x4ae40e2e iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3fbc605f iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4707f9f5 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x515ab3b3 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5265b794 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5a2cbcb5 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5c6fb8b8 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x81e3d6d7 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xaf54811c iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc4d1fb90 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdd85090b iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xef93fb20 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf8efd449 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xb32e63be devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x28880318 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 0x95c95e18 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 0x09b3f29c devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xe23474ff devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0dee68e6 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x10487e75 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1ae6dea2 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2cfc778f cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x49af62dc cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7e56e581 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8febeeb4 cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x96c04539 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xab86a576 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc6dbbc3d cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd4e81430 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x88f20942 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa032ef57 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xfc7736f0 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x13c94c42 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02445523 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0788b9a7 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13328215 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x137bdfe8 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13c713c0 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b30a66f fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20988380 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x251753e2 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x284cfbfa iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a9fa510 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ad140e7 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b0a68ef iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x34a81f95 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x355ba7a8 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3907d77e devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x394275af iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e337368 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ebae3b2 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42c2f7d7 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48947288 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48bf76f0 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b18ef97 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4bf80270 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x567aef7f iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x571d4bd3 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5de9ed1a iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x604a7459 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x756692e9 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7d206660 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81796380 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84a13e2b iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ab000fd iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9643ef8a iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x965d47de iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9915f908 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a793569 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b6fbad8 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1d8a080 devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa927cbba iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad285f74 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb80cdd6e iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbcb04456 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbed90201 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd1eb1c88 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd5db488c iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd65c5d5f iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc906b5c iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xddbc6de7 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe200030e devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe45bc988 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7cd0656 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7ed4920 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xedcbf1e3 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf91e1e21 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x049e6d41 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x05c7aeb9 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x385d0109 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5fb1d63c rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6dff6524 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x90dc790d rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9cf5f055 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa03f87d3 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa138c252 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbc8a6b09 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe067fd2b rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeae19914 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x77d0a101 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x0799cb90 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xa689196e 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 0x139c1ab2 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x160b887a rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x44b16089 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5055a47b __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x533970a3 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5b655a9f rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6fda1e31 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x71b0cd0a rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x98841066 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa9b3b30d rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc7bd44ee rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe76ba2fa rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf4866c05 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x06ea7dba cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1d520beb cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb2fd87c8 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x04c106d1 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xb8ec5f1c cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x4575b1a6 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xed68ae0b cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x48828ee0 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x795ee984 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc969ae06 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xded719df tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x07c21bfa wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1aeeade4 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1fdb7335 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x272e2088 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x28e1b798 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x626d57f9 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7d54911d wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x816c2824 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x81b2bd91 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xced80dd9 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe44bb706 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf9f5aa5c wm9705_codec +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x09c325ff ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2917226a ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x29465c9b ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3d018f9a ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5710bada ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5a3ff2a4 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x85968ec1 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa883af55 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd4f4c729 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x25e83e2d devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3e3721be led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4fca0068 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6f28b1c1 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x70a5aba6 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc6df4855 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd9c2f9e4 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xef99b130 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x18dad0ea led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x3c484326 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x52b597b8 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x67104398 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd623a759 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 0x021300e4 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02757bd1 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04069fe4 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07048716 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a497a56 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x12368e01 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1753c101 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1988c430 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1a2f95e5 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e3c59d2 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1ea2f6e9 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x20753cb7 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25274245 __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28866154 __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 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30adca8a __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x323e3b8d __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33de5ae5 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x34147728 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37b06442 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3943cbbb __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3b8004b7 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dd1d0de __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fff3e10 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4cc0c028 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d09ef4c __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4eb6a07f __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x553e0a7e __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5622b6b2 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x573eaa1a __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 0x608698bc __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x61454da7 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6236119e __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x62b1d194 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x657dccc4 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x671262da __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x67b65ea2 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x680faa2f __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6a0ee006 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b3f538a __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d2ec341 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d619582 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71864f47 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76a62156 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a91d764 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b0f79df __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b1630b4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cc1b500 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7e59f20c __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f33035a __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f38fd7e __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x800ec131 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x814c6c48 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x83f84f49 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x860dc733 __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x878988a9 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x89a50ce9 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90e2e8a6 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x99249b51 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x992ece5b __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9e8d6d72 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9f38c427 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xacc652e7 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xacc6e41d __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf3c2be4 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb30a9898 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5cbdea2 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9108a59 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb977ead1 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc41e309d __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4f5e84c __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a79999 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf8009ad __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcffb9120 __traceiter_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 0xd3940bc6 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6ca41bc __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd747f295 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a376b3 __SCT__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a7fbec __SCT__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda90ba77 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc81925f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xddb04575 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdee85f22 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdfb09b17 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xebf5b456 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf0b8948d __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf146519e __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf4ead642 __SCK__tp_func_bcache_writeback +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 0xf97d337b __SCK__tp_func_bcache_alloc_fail +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 0x04b707ce dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0f8ed074 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1b0ea694 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4c9c5daa dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x502dcff3 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5303b114 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x546d3ac4 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5fa5f047 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x77e8f027 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x79bb15e7 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x91ca7290 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa003423c dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc24bccd7 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xde7bfa06 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xded3d524 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeae29441 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xef370b74 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +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 0xe0aa9102 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 0x8ca2102b dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9359d929 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 0x271524d2 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x68222fef 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 0x15c79ab8 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1c25ba0c 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 0x582c6db2 dm_region_hash_create +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 0xa033f3f2 dm_rh_delay +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 0xb7085c1f 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 0xf826f032 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x27ce2135 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2bc1a8d9 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +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 0x0cfedc2e cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0fa0a4af cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x14136299 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x26bc5232 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x36bdf353 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x45373a91 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x49d5e0f2 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x658e14e9 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x728a8046 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7c30fd82 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7df9eb6f cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9c2f6519 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa7a60253 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa7cbcfba cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb506228f cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcb2e1ac5 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcd21b478 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd34c4a3b cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd728a76b cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf89a0b75 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/siano/smsmdtv 0x13e6aa47 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34670e5e smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4a7b712a sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x51bcef0b smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x59d804d3 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c11b1bf smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x70f2afd0 smscore_register_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 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9cd40e47 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9f6bd7fa smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xac8618ba smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc73260b5 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcd89820b sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcee9bd5d sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdeb4506c sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea2963b5 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf4da9e45 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc7b7ad4 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4a738cc1 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7e83543f tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x80aaf962 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xa8a3f406 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb052969d tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbc315dd tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xcaede3e2 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe2169014 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe6f04b89 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe7ee5819 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x219fdc81 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x21a2103a __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23bbd8e9 vb2_thread_stop +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 0x304d60a6 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3868f7d6 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x391a2d0b vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3d1a7c3c vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bfddc30 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c906015 __tracepoint_vb2_buf_queue +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 0x5071e061 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50b3c963 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5175f604 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x54336def __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6355b06c vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6dca4932 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e205e33 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e6a0d8d vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x725fead2 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7446577e vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x766580eb __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7d3882a3 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x86ac8af5 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x87a94112 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x88e1ae16 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x920fafa1 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa1613761 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa2e58ba5 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa7cd25ad vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa909be76 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb185e52a __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbb3efb07 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbb56ce9f vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc1df23db vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe4e3db30 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe4fca5c1 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe68cb772 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe7f3852f __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x985a58c1 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xca2f36af vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x6b719a0e vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xbf7a73d7 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0375f0ec vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x10d85c0e vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x22e18f7f vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x29830643 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3985705c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x405985fc _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40a383be vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43320fe1 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x47d73d7d vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6760b594 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6e14b99d vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6f1ab9d7 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x79cf7d85 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x88b69aea vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x914eb6b4 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x966397ba vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x991862b5 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9d133d4a vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa7df2d70 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xab0764b0 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb8ec9edd vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbc98081f vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbec4f1f2 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc0e918fc vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcb6a7898 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcd3c0e36 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcee4d10e vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd490caf5 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd497a4bb vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd634e6eb vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeb6d6d53 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf4919d24 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf7bb6499 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfdf0bbbc vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x9e0e26a0 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x51c6c09d dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7ec21939 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xcf23a5dd dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x72991554 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x21810ce4 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xc0d7bef8 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x3610e8f6 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x5300dd0b stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xeb21a955 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x04c00451 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x7a6fd4ba aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x48bf3105 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0e52aa4b max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3f5a87d5 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3fb5a728 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5842abb8 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x791c0d8f max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x878a0319 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa0396e42 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb27b161d max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb90f6fe3 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbdf704a9 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc05a4d57 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe5524791 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe901c1f3 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x04eae85f media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x084472b1 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0a48a92f media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0e8a05d5 media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x159faab2 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x21f864b6 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26b5723c media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31652346 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b1b5479 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3fb944f7 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x415a2281 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x46fbeb58 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c76fa54 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x50cb91a7 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x58c382d2 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6521034a media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67c5daba media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x684374bf media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x69194c79 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ab125ec media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c0ea050 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d849670 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x72c4b808 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x76fb5a4d __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7ec46d82 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f4d8211 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x887ed0e1 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8bcee259 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8bd8de85 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x91f2f7ad media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa0fb5510 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1fdfb15 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa4d1929e media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb328c0a4 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb334329a media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb354d599 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb7da9c77 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8148121 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc0da4837 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc1796945 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc2573a53 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc311ddbb media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc42cbc59 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xca4a346c media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xca585fdb media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdcc5350f media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd5a7231 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeb1e255c media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xebf5125b media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xef410a51 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xef7c088c media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf1a044c4 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf5ffb6e1 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7172968 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x49f321e9 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x190f8827 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x19873028 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5329166f mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5422c069 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5bcf7206 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x60264902 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x608cbf27 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x73dc7fcd mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9c05d23e mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa00c4399 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa8629eb2 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaea07d51 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xce154c7c mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd59a2505 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7ecfda7 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xec05c6a3 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xee731e01 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xef3b89a3 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf06a6dda mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04b38a33 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0542d73e saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x36bb8552 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x54d52f94 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5790958b saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x58cab8b0 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5da392c7 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x69f207b5 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x833c5373 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83d2d1c8 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x89944e84 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8ed2878c saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x911b24c3 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x939177a6 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x98de0fe2 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa837c9f3 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc4dfc1c1 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd303a88c saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf98cb1bc saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x3ac7b89d mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x8742962c mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x8c1d6a5b mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x90d152dc mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xaacde2cb mccic_resume +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc8f7446a radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xf159ac2c radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x50461a67 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8d6e24d1 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x91538ba2 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x9c695bc1 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbd75fb65 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x05df162d rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x15d2f844 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1f7c7413 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2f581950 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x39358345 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4fe424e2 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5499e9f7 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5b86d6f7 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5ba7c610 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6313dccd rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6df745c1 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7395f336 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7bf9c162 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7daea453 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8a5837b1 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d7b5113 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9e854db9 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb0842f42 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x69f1956b mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x4e32832a microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x03ba71e9 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xe4bb9e5f r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x637e022f tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xfa158721 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x24420280 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xbf651905 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x10495e0f tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x36a858c0 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6ed785ca tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4ad684b0 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xaccf9991 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xca4706b7 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04a76646 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x064b5d88 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4d1d734f is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x602dadb5 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6e3bc7db cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x75cbb4f4 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7c9c2a08 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8b44ba8a cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x907db43c cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x94fd8a69 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9abc6441 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa37646b4 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa653f8db cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xae311d91 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc09401d1 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc9a76a18 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcac1c6aa cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe21e718a cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe935bf31 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf5b1be1f cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x22c1d129 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x35c545a5 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0e60461a em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x12dc5458 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15e93e88 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x22581483 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3191139a em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x325a5b7d em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x45de0a4b em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x548f1ca9 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x580cea1a em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5ac0da8e em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x693e777c em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7ca6896a em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7e7d10a7 em28xx_uninit_usb_xfer +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 0x9b4e0796 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc3585e52 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc3665ce4 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf102a16 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd3c36847 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x088b1682 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x1c321e0d __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x36550829 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x956de04d __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xec992029 __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 0x1b4af4a6 v4l2_hdmi_rx_colorimetry +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 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 0x6ef45dc9 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8ac39034 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa6b650e8 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3a856710 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4710cc26 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5d54eb4b 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 0x8c5b51f3 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8e79ed4a v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9218cf33 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xadeb36d7 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xda13b0e5 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf37f3423 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xffa4aa8d v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05b13ade v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0741c675 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0aeddd3e v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e538c56 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a40efcc v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ae2b493 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1bfaf7c1 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24e2f06a v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a8e0a78 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2bbf3f18 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ffde21d v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32d65b03 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3944769c v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x39ef1fd2 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e88ffff v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x497802f7 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e3116c1 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58b5194b v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58ed071b v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61c25152 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61fe8271 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c4f3735 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6dbc85d8 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x73f505ca v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x74fc7fec v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b590cbc v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e8c0417 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88d5b929 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x95d22d70 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa71b4d91 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb084b779 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1b2822e v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1b72c84 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb65486d7 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcff4e7c2 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1a8d8e8 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd346f6dc v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4b98374 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe32176c3 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe437d7b7 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 0xf6af3d85 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfbf5e522 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe09edcf v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe18f14a v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0eb90440 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11a79d19 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1e3b4f95 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1ec6a52d __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f5e9392 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26365353 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4f0772a8 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50a9980c videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57635516 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e582a78 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73c57f28 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7411866e videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82069525 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8be994b4 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a4d63df videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d30d695 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa212eb0b videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xab8f7729 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb56d6a48 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc74e8564 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd0c9287d videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2714024 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2b1baac videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf02e9f0f videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3f99e5bf 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 0x6bca421b videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa43dd069 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf44c9de9 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x632586bb videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x691ad994 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc347aade videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03daec92 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04240483 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07ba58f4 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09025cf7 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x092452a1 v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10ead6aa video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x175a03cf v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ba6624e __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c29a6b2 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1cc056a8 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2020334a v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20639617 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20e0676c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25f7f81d v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a27ee96 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x332727f8 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3549f5c5 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4908c356 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d688492 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e03844e v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52b4c3b4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x544fb07d __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59084cea __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a5fb433 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f75dc5b v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x600fecbf __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6349dcc6 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x653c3c54 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cff4bac __tracepoint_vb2_v4l2_buf_done +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 0x6fa6db1a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80283237 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x832246dc v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88565e80 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8d1d5f32 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e4acdcd v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x998cc5c1 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d15b00c v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa28a9a9c v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4555ecd __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa63741bd v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7049b5e v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa71d487f v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9175548 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac33a58a v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb1d0366b v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3bf257d __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb44fa883 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb75f7ad5 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd6b00fc v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe9f911f v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc01541eb video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2f37d6b v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc60fc492 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6efce60 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc85ba9b6 v4l2_subdev_cleanup +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 0xccf9056c v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce0d59f9 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcec901f1 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1ff8892 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2bb5d55 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdbf06754 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdce979b3 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde8af359 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdede02f4 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0c685e7 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4dd6d4c v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5009f49 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe75918a2 video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9b0e2cd v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee441eab v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee9465be v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf24fe762 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 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa31c947 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcfe82cc v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff4cb211 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4b11df05 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc705e815 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe73048be pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x031f04f4 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x045da342 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x15e70b17 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4571ce54 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4765620e wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x54de01f2 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5a6c2482 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x74f51576 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8808a387 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b6aa3e cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8cb435f2 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xabc4e0c7 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb263fbbd wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xba363633 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbd2c2b68 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe237980 wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc32aba77 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc9ffb255 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcfa79e1b arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe6f4fbeb arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf90ef77f wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x76afb237 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x77339e54 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3fc97982 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5cad873a da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5efab05e da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x70890def da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa2b45fb0 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd7b4710c da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe259a2fd da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x44fc50b4 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x58361873 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x60354389 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x96ef1f89 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xd7c71372 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x5c91b063 intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x8a0f6a99 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xa238dfb2 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0fd0de64 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x21d83b0a kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x78b6518e kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbb4a74ab kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xca91d816 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe30bea89 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xebd4d4ff kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf938aa70 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1a6cd481 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4857f319 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5c59030e lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x30a388a4 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x454f83be lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x48ffa45a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5d2184ee lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x74a6ea75 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7cfe8ad4 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x878e0748 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x10999929 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x88592e98 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa139c921 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0781f83f cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x078c247f cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1aa70f0a cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1aaad34a cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1e8bbf4a cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2859d174 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2a7dc6de cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2d2614f7 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2d2bc8b7 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35d88e2e madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35f36347 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35febf07 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x44b4e533 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x44b93973 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x59921206 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x599fce46 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x640829a8 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6e1309fb cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6e1ed5bb cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x76c67e4b cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x76cba20b cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x839abd55 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e774fff cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e7a93bf cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x909d21f3 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd4252f3 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd4f8eb3 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd63b341e cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3be00167 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb54ac109 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc299064d mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc4032dda mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe7ff7f41 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf5f08a29 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1a84af40 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4956b6e0 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x65516fca pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x683e486d pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9f3db128 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbb40610c pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbe887657 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc8fe40a3 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe25b751b pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe4df1dec pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf65fe688 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf8c6b479 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x085b1dfe pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2cf56bf7 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x219d1911 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2afb7fd7 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7800ed81 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbe0d5f9c pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xde19be64 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xde8a0388 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 0x01681f5a si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x01f7202a si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02ad35c7 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x113d32c5 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14e25623 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x19c84dcc si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b1675bb si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1fa11694 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x208af6ad si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24521570 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3583391a si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3be45ebf si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4fcc3053 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59c0db6b si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6bb5c49f si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6df2eeb3 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7bbe8920 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x86e81378 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a40fc57 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa333c778 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa824893e si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb58408f6 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7a9a081 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbdbdbe4e si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc14b451d si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccae48d8 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdcebbf8c si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd56aa12 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3be1e16 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeacaa2f5 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef8b489b si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7c9c82e si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfbcdcaa8 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfef2a8db si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x02b2275d sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0aa9634d sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x43e66783 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6e3eecf7 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xfe1de5fb sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x119d147f am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x79b52fa6 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7b07d2f6 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc7da1a3b am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xd24866df ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3d0e0edf alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3fd64db2 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x487fb40e alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5e1cc6f9 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x88b84f2d alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x97b6f895 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc6b0bd35 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0862cda2 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0c22bcfd rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1409414e rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15af9d46 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2b11f24c rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x412cc841 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5225cb44 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5fc4d675 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x827032e7 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x86b85d8f rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8737a28a rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xae0c04f9 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbb571342 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbc778311 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc9353cf7 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd04e5b5f rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd279c78c rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdf0ad9bc rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe09675a9 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeaaa0660 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xed26d26d rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf4912dcd rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfab6e4db rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfc64e254 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x011663cc rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x04e8f071 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x05339689 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x109682d2 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1fcc76f9 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3d31a7ea rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5061d544 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x724f2b7e rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8e2fe777 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa2eacb32 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb74c6595 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc076ab0f rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe5a87b85 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x37f81a26 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6e525dda cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa37df383 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe261d4a4 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0f85750c enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x35defe1c enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x60314d77 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x80b23d52 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9d7162d3 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcf8c7b24 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xda03e50e enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf5644ca6 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x058ce562 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x05acca5f lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x12c51b95 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x757ea8db lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x858354fa lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9da70bfb lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc8725c34 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf06fafb6 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x043dc586 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x06473923 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x06d1df9f mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0782a2ee mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x117c4844 mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1226cb9f mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x223ff669 mei_cl_all_disconnect +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x23431c02 mei_cldev_dma_unmap +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x25e2d1ab mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2dc540fe mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3a8fc707 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3c7507a4 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3f6f5cf7 mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x44e6ca6b mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4e4bc8f4 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x51515e48 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x55a012ce mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5e6ac38b mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6651bcbf mei_cldev_dma_map +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6a7aa646 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x71166cba __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7492e212 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x76808260 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7ee03ee0 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x881c12b4 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x986c2e38 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9a456376 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa968ab38 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaaa94766 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaeec0722 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc2915bab mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc917b6a0 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd33865b4 mei_cldev_send_gsc_command +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd78e6b13 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe664db7d mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x051f202c mei_me_polling_thread +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x31261776 mei_me_dev_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x4e086a89 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 0xd780aa1a 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 0x3a8dd3bd st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9d3ddcb4 st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x0d53b752 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x51040b74 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xc57becf9 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 0x0ef16014 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x694caa9a vmci_qpair_peekv +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 0x8cdb48eb 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/sdhci 0x0164049c sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0d4c575c __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f15c75e sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x18a1e945 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x225760a5 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x24a9b428 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2cf405a9 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2e70ecd8 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x32a2c911 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x38ee7ede sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3cd8ca98 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x404e9112 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x41b3c125 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x44526755 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46fa9737 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4829dd84 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4834b283 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4bda8417 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5634b2cb sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5b6bd88b sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5db36df9 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5db58524 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a7baa53 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6d0a1858 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x745fb2af sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7a9d631e sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ed32f5a sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x813a76f6 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8dd666d3 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8df00398 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8eef9abf sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x91c650ad sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa4af4d92 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb0029940 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb44c020e sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdef746d1 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe71f610b sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe776291a sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7fcd294 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf30b6dfa sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf39c2396 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfa17c45a sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3fec1fed sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x51071d22 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x65fa7a7b sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x725ef991 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8959bae0 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc538e511 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xca7b06b4 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xce8781c6 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf4aa1ac6 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/most/most_core 0x444904a1 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x51763c0f most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x524592ed most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x75aabc17 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7b1f6ce1 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7f3631bc most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9fde5386 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbbbf98b7 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc7c2d706 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xce14b4a6 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd4ab1b21 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd804edc2 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf2095252 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf33bfde7 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2d74414e cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd06a64d8 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xef434130 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3c0739aa cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb1acbdfc cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcffef62c cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5e3990ab cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3395d17f cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x71b8d2fa cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9460fe98 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x4064a74b hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xdb291897 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1243e2c6 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14038f0a mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1578d7f5 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20f356d2 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2275fd57 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2504f0af __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25092954 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x278c2d0a mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30bacabb mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x313b96ec mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3630a6cc mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39709ca5 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fac2197 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4aea7572 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5745d350 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x597306c0 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5acfb490 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61b3b410 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64b23bb9 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x656c1db7 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67faadfb mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d5b9a74 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e50a4b5 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c6de05d mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82867871 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84afdfca deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88cee971 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f24ec7f unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b3ec830 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c59c8af mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa4d16fb7 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa62ce6f4 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf3c1a52 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf530a3d mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1e4bdcb put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2d981eb mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb96cf39f mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbcb1e3b4 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd3a5817 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbe2d7058 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5a73a69 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca519136 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd9ee501 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd1808d32 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5a7c830 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9285a5b of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9aa2021 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde8fadf2 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe03ba5c0 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xec2c43a5 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf19dd7a0 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8c4f9b4 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa12a445 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe69fae9 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x161212a0 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x985990e1 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9e897f2b add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa1551ca9 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa961b01b del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0066e0f0 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x026edfe2 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x15fbb09d mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x21aa834f nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2a4e74b4 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2f7391d8 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x32e03148 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x441aa798 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x51b4dda0 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x70128d1a nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7702e634 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x772109d6 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84ee8d9a nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8a26516e nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8a9f8b28 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x99490bce nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa988830b nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc966efe2 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc9a7b060 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xcae59edd nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xce7ce9a5 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd14069d2 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd32add0b nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe0d6b053 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfcc1d502 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x99acec6b onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xdfc29713 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x5b360d1b denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x148cf0c3 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x170fb969 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x174cdfa9 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1f677319 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2a14d528 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x30255443 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x43a08584 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x492566c7 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 0x57d5b42d nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x583e4d22 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5c072318 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6fbe2c7e nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x73915af5 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x76d0dedb nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x79862f56 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x874acfaa nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x89152d62 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8a7e2519 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8e7a5835 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xca9eaa13 nand_readid_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 0xd7edfe00 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdacc3389 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf89033a1 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfa1103e9 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x173e8aae sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x1e44747f spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x21ea081e spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2ce1cac0 ubi_leb_erase +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 0x47e1701d ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ec0ae26 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x689d0940 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7b2ea0ca ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9069560c ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb6278cd1 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb9f79fe7 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xca4643e5 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd173ab8 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcfe00407 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe0f1d2cd ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf930d0fa ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfac61211 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x090d6c76 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x11a54a22 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1494e9f0 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x511accd1 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5463540f devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x61328a42 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x654c51ca mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x717b0363 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x79dd335d mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7a180921 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7ec936d1 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8772c18c mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8a5bc8d7 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xcd7913a0 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x017b82c5 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf09c91a9 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6c47bf61 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8ece82af register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb4fcfdaa free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xddeecf49 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xed50802c c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf1b09bda c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1535d8d4 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7e9b1f2d alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8a6ef7e4 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe70c3417 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x001d055b can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x033aca71 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0a94060d register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0ad1d37f can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x116c4867 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x118111c3 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x206d8ee6 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x28c1565e alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2eec6ae8 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2fad7f83 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x30c126f7 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b4d89e6 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x50254add can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54cc3645 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x55182408 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x57cc440c safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6b03a561 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x839e6619 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8e80f38b can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9268746e unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x95c7e156 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96ce4b74 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9bf5a3b7 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa1dc7140 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xab16a22b can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb57ce1c5 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb83cbfde open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc070419a can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc41fa9bd alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe26ea107 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe8f5d38e can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1436d5b6 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x14fec118 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x195c8561 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2016754b m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5b46992f m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x753a41c2 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xeb748512 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfbf6784c m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9c2cd94b alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xba33c541 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcea451b0 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf3581da6 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x0f7c11d1 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x3a7702a2 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x738c0237 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x07acea25 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x391ce0ca rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4bc854ed rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5b9e7a3c rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5bd7ba70 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa61edffd rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa74dd542 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xaffcc669 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xbe7a5ff1 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd7525ca6 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdc4dfd9e rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe212eec6 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x01d4ce09 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x01d7c68e fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x2b80119f fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x49cac18a fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x737cb67b fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x81d0f728 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa4731819 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xaea89b26 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc9065bdf fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe2b5c638 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe3fea0dd fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x32eea07c i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xa6b43ccd i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x142ad32e ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5200feed ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xae98778f ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcaa887f8 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcf6f14d2 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07f31a1b mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08167630 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0861801f mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0937f1c3 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ce1869d mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e7d6875 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14410c5b mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x159ba7ef mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x179f7d93 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19f85505 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b712ae5 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fa1b400 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20063090 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x226f0459 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x227a3db0 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27150a7b mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ce71588 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e86e2e7 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f5a33ab mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fe19fb0 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x320104cd mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3265ff64 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3281deb2 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38abad66 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38af8b23 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39a60a46 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d73d0af mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dc37e1d mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3deb1048 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x409d2af4 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x429df683 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x496ae64b mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cc444b5 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d35f40f mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50cffd8b mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x539f87e8 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e77c866 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64249ad9 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64c85e45 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6584e0cc mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x662a15cc mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x695297a5 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cafaa59 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fcf1c2a mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd36957 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x734a9aa7 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x734e172b mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75d31a3f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77798177 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77beae53 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77c9702a mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x785d9559 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78835607 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7963e707 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x850e957e mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8710735d mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x878805ee mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d558fc7 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9195114c mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94377f3d mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99ba5ec3 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c04d394 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d3b1c52 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e31dba0 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f218278 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fbb9b82 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa30e6f6a mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4c728a6 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6095051 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab00d9e4 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba653a3 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabf6a29e mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac6a4ccc mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac7e70b4 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf544548 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf8ffe62 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3a668a7 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4562761 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb557834a __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb692f069 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6f36364 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7cc8080 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb81039a4 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9cfe091 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba38f6c4 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbba81863 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd2643c3 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeb60fc6 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf2ee771 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfdded71 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9686ede mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccc32ce2 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfbee09b mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2f8ca0c mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3b41cbb mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd47ea081 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4f5539c mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd70f135b mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7b66948 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9f0918b mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdab44a59 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdba8847f mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc34f033 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd22fb22 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde983eae mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1758ecb mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe20141df mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe38d1bda mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5db85ff mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6531cb7 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe84a88bf mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb3ff23d mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb74b05c mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb7d447d mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf06b0752 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1718699 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3c4e594 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf67953c7 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6be7d16 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc0b479d mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff160acc mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00b4a2a3 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01a8f16a mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0354f4ad mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03da3876 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x091be5b9 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x095c3756 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a6d07d7 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b24f252 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cd303bc mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ede334a mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f3c11ef mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x182e72af mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x202ffa76 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24049fbf mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b79bd12 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2df6c853 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39d1c294 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b04f319 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b4a36f1 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ddbf8da mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45cba832 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4778a0e4 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x499cd743 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cf55245 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5893fa mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54e6570f mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cb9b5db mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6298edc7 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63e43b3d mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x643c93aa mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6444b8bb mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65f764b5 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x695025af mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a59c23b mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aeb8e04 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ea59f42 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71100476 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7326022a mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x768c57da mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77177cd5 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7da5dbec 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 0x851c9ed7 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ca1fbb mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x880345a7 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c680f36 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a4e36c6 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d0d4246 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6b7ce8d mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac8a1249 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae48db9f mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3feb69b mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc5537ee mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfdce183 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc21290c3 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2314f87 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc52d1e09 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfeea2fd mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcff04e2c mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd63bfeba mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd733f7ef mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd69dcee mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9379dfb mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf189fdb9 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1ffef21 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdbf8345 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe26ab9b mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff606be8 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x0918a918 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x12ec5393 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4e6b94fa ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf6c956aa ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xc64f9b84 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 0x073cc2e9 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fab9329 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12bf4b2c ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20bd3e01 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21bd762a ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22d20d0e ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27d29270 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3502460d ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39005366 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a234d7c ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44c37180 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45dd41d6 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ad50643 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c405cd9 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e6f32f0 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x532e5303 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80bc836a ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89e6468e ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fb4d1ca ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ff2ef2b __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ac29dfb ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa02ce4a7 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8b75464 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xabf3f44f ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3a5abb5 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd63a723 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf4f921b ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc015a614 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc327aadc ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc508c3b6 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6c43792 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd95400e0 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb1baf67 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe406f6a8 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecf8bc36 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8c02f21 ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9e949af ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfee72411 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3e12051a 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 0x68a2b3cd stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6dab485f 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 0xc7134a0c stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc8bce804 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xec2b0794 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x03ae4eb1 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4bc35f30 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x76ce63d1 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8942a559 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xad5c3ede stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x09146774 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2ff094ee w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7a8ec531 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x94cf8352 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/geneve 0xe5299683 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x302f54a3 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6b2b8b44 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7b598773 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x884962fe ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xce93c46b ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x013f0c61 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x10aeaf61 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x19e96307 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc926996b macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe1548b08 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xd9be8131 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x4aceb58b net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xab6f1de5 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0x01760552 alt_tse_pcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x17a76922 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x44e16ab9 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x46273e53 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x47a38139 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6d8ffa3f xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa2f3c14 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd32a59fe xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x21602887 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27c09a42 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x280a587c __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x310dd7af __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31659153 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3d945264 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3df0b5b9 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4661a3e6 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x51172e8f bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x57a6ed01 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x58ab1982 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x58cffe5f bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5fa9c818 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b904268 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ed5ae49 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72791584 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x77ba9a53 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x85edc04e bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c87b0b5 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x957bfe36 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa82a4d1a bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa84dfd0f bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xac2e200e bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6f4e60b bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbbe693db bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2c36c30 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc5075178 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc9549cd7 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd850f9bc bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe18e5af2 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6c25868 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf29a678a bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf752e3dc bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa5ceddd bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x3b3d1469 bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x8bfdde91 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop +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 0x19310c11 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x29b20601 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3f3a174a phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x536f87ae phylink_generic_validate +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 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5fa280c2 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x64a1a5ce phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x66e8b5b0 phylink_caps_to_linkmodes +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 0x859b1ff6 phylink_validate_mask_caps +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8cd7424f phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x95ea06a1 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb300931c phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xca193274 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd2ef6a40 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd654390d phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd903f419 phylink_get_capabilities +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdda4e648 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/phy/phylink 0xf926a606 phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL drivers/net/tap 0x710eda0f tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xaec3286a tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xaff026ee tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xb8ca8ecd tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xc6067d3b tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xf4adef21 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xf6a3ca58 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xf8e909a7 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xfcfe9b59 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0774061d usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0ed8e8ae usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3e03c021 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9b7b3874 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xccad8379 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf0ef07a1 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfd6d08b3 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x16dc798d cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x22f9821f cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x412224ad cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6a6c698a cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x74d3d483 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa2c7d11d cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaf70fa64 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc8fc6f6f cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xca2d1582 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe6f21de2 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xea62a3a1 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x1f7aa4a4 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x04a086af rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5d634a73 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6e4a53c4 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x933539f0 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x999eb63a rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa7d2e27e rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x01913d7b usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09884e99 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x11ec9edc usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1845da64 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x208d95e7 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2171e18f usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3278346a usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x37b288db usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x42b46d13 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x481cc670 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b1cf072 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55222cc8 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x608cda23 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6374b600 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x65dcf3bb usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7074ff5d usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9072670a usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9557015c usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97f3dcfb usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9ec9c270 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa6b224f4 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa6b9da10 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa97ffbfa usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9b750c0 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xace3a1f7 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca2184a1 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xccccdb19 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd73578a usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce185c31 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef0c9cba usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf060c131 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf26b81d8 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfeab7ad3 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfecf18b5 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x2c371be9 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7d9bf3e8 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x9cd2c2a5 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd67d43db vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xcc063850 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10e21265 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48021040 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x784a286e il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e934cb3 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0217a69 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 0x0eca8d74 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1210a89e p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x37e34072 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x75e73d03 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7d26bec3 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd18f675d p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd7006596 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe2280434 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe98bf452 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x11c51329 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x19ca73ae __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x252306d9 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x25c7bf4b lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x39b6ba5a lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x56fecad8 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x60313e05 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x765df3cb lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x85d63169 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x90a7e353 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x95115b19 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x99da595a lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaad948bb lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc5abe633 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcf1234c8 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd60876ca lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x05178289 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1c67a24e lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x31db1f06 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x615fec5d lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x67c390a9 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6c27a184 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x72b0e587 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7a7c9e14 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x04020fb7 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x08452e79 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0b930353 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0e085c50 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0eafaa15 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1e9c3cb8 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1f57d4f1 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1f5adf95 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x24b7a810 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2d5081da mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2d95589e mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3e35a9a5 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x469a6c94 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4f254ef9 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x56be5184 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f0493db mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6a1f56f8 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x80069191 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x81ba54e6 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa16a8990 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcfff1597 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdd6c7d69 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe5b20d48 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeac2019d mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0199fba2 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x062ea358 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07ad622b __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09cb4711 __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x116ca0fb mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a480f7e mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f133261 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1fdb3359 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27278334 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a755bd2 mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2dd51567 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30ab38c7 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32b089e3 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32ea42a0 mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34e6ae9f __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35baa3c1 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38a29e58 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39933509 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3be979b2 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fc7748c __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40d43726 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41503222 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x438aff9d mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x469462a5 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e392e93 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x53c67582 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5427d5c2 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b001558 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62747f89 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68929c96 __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ac31d36 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b735fbc mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c98cf4f mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7004336f mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x709683de mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7171f9a1 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x765d35ed mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79df4868 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a196a01 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f658f59 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x819c432c mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8923c62f mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a9d7f5a mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b78aef8 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9150dab0 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9537e0cc mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99b1c27e mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99fc8b9d mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b376110 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa480f859 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xabf48037 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac336684 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb101cf7d mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1c137d4 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb3cb292f mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4d86845 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6cac8fa mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb9b6cd3 mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc239e99c mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc23cac32 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc658fa43 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc72ef08d mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc79daf86 mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9d8299a mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9f869e6 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd496f780 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd52c97e2 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd75c5781 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8164a64 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8def46f mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda05cde3 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda0f5b7b mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb783266 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde091def mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf860575 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf9e40a8 mt76_mcu_rx_event +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 0xebd17cd3 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec4c09c7 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeea5bd08 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefb019bd mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefec715b mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0659f8c mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5bb1db3 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8583af2 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa4704bf mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfaa29de5 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfbad0d3e __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff09b074 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0161cb43 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x098acfea mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c24c71a mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e86eb16 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0fb6c0b2 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16ddc14e mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18a6244c mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26c4400e mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x33cd2f51 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x340bd23c mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34b5ca69 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x36e01563 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3746a921 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3810b727 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b183939 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x415ed0ce mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x42adb4b9 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45d9b57e mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46dd7b29 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4806be2a mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b12259e mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b23d58c mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f870957 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x517b3b70 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5224754a mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55cf8ca3 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x56efbf94 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5a54e6e6 mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5cae04e6 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5dfb6f4a mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e1ca059 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60116f2f mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x656cab98 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6fd33386 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72aaf57a mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x734da2a6 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78c3f244 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87e6887d mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x88cc434d mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8ea4e8a2 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9085a06d mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x941bafa2 mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x991e6f8a mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9deca316 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ffa9bea mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa75719b6 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa1d5054 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xadb08658 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xafd7f9f5 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3b0fd33 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb63f3077 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbba40e26 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbcd7fdbe mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3f6be96 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc5372e56 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc7add4b5 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca2117f2 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc7952ea mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xceb4d2cb mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2e1217b mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd34bc552 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd498c91d mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd5f4f5d4 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd756b80d mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc30cede mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd4b0435 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe047ac1d mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe3fcf9e3 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe7da9108 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xedf5009c mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeecc1445 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf4d96177 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff3b505d mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff6b462b mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0c0eaaa2 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x478a1585 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6064f0cd mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x63893fd1 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x78f97683 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x810d4bfb mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9adcd6b3 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9b9c4141 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xabe41288 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb4cef03d mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbbad2f42 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc8f98abb mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xcfff0bec mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe21fd4a0 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xef534a45 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xfdef4d28 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3ed60bbd __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x42cdff9d ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x54da7b91 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5ef2f14b mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7dcce87e ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x832346c7 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9d8b0aa2 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb35d0902 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb6cda96b mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbee8969c mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcb811c68 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe7c47d33 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe930ce5f mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xeb0be45e mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x09abe72e mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x11d869ca mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x19ab1240 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ebadd1b mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ebc1577 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2243d9df mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x27f019ac mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2aae53fc mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x37e31686 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3983441a mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3bdbbb39 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3d13078c mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3eaefd99 mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4a72e28e mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x70091501 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7551f724 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7ee61164 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x80695b91 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa082b35a mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa3748af1 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbe7c2c51 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc4fc4729 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc606e3f5 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcadcab68 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdab28e14 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeb02b3d6 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xed041d16 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4801d8d mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x353693ca 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 0x8b151f84 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa85d5667 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa8f25346 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xcce6ef02 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x115e4cea mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2257f506 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4047779e mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x65071085 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7b328c75 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd9d66673 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xee1aa354 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00ea9acd mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x013ca531 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x034def4a mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06c3e43a mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x070bc74b mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x078e6970 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x106a2dcb mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12c74574 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17d12510 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19f20b77 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2084a2ea mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2298d435 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25e703b8 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2905a8b7 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2a2b74ec mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ae151fc mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x323395aa mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x37587f7e mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x39cea9bb mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42277456 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43bcef54 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4edaffad mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53852a22 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5546437b mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b958852 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5df557cc mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5f99f37e mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62c67234 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6793a1aa mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x697856b3 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ebdd76e mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f849b64 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79865071 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8037d111 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x85e87b55 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8ae18a44 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e918177 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9000145d mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99a41329 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a90f14e mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa22dbf6c mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4b91e85 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa5eb4026 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae9c816e mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaed0e2bb mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4cec08d mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb57fef03 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbcfb6862 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd597fae mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc576258b mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8bf6836 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xca95ebb9 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd2468711 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8b80686 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd99caf92 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd9cf3b19 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdcacdbcd mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xddb9fe54 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde02832b mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2ebf37a mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe401422f mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb8c9e7f mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef00687e mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0b29337 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf14ac4b8 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfc223377 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x00a80f9e mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x28313349 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x46e63e06 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5b0d4589 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5b2ef90b mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5b447a27 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd9e06a13 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xda67bdc1 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x085b3f27 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x08c414d3 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0ce3cf98 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x143f5701 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2c4d4702 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2fc244b9 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4e421d4a mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4f0485d1 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x50ef4439 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7a9f6803 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7c6bccb4 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8286d06e mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x86234c81 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x92ed9ec6 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaa0d7010 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbae328d6 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbeb2084c mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbfab6f9e mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xde621822 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfe476f41 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x04671c03 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0a9e94c8 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1061307b mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x164d0bc0 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1665e0ba mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x21b32af8 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x225a75b7 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3e8ea731 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x447dedc0 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6a0b9df9 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x71beb591 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7aa2fbf9 mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8c124273 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x98656056 mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9987a60a mt7921_check_offload_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbc569291 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbe27b258 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbf11e5b6 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcbdb06c0 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd1ebb7c5 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdaf5d513 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe01bdf7a mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe3b2c6bb mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe4fd97c9 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0d9b7203 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x761b8a80 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8a0c70f6 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa7efdc50 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb3a7eaa5 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc92863fb host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf03ae78e chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1013010f qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1f099bc8 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 0x33ca7a5b qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x665b3571 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9aa6b7b9 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa76f871a qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x06458ce1 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0ce51c3e rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x22437a9c rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d098bd7 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d17fa52 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2de68346 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x33b4c2ba rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x360719b8 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37d96773 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x388214d8 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3bf0d6c0 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3c0eabb6 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e3b0cfa rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x466b8855 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4e9b90c7 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x573fe5fa rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d181ce7 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f6368b1 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x609ff5b0 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x661391a6 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6851325c rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6baa1a38 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6d7eeb18 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72e13995 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7781601a rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x84e9f40d rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a18b080 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a73c68b rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x979b6d65 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5949d2d rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xace13528 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf589313 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3434f98 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7e93b8a rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb9c77982 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc12f1e7c rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc26e2101 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc3e1e592 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca1b2b84 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd1127b8e rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd1ec552c rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeb15cf69 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf21fdaf4 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7d22db4 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0329df34 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x16122413 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 0x37e38956 rt2800mmio_kick_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 0x5b2a9e1b rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5b479b52 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6490c4a5 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x767e1e66 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x906e5dbf 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 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa8b1e8c2 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xccae4360 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd254cf17 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xda4d3901 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe03595ee rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe1193989 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe479b956 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf557527d rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0401f0e3 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x06750997 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b1c0644 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b5b1793 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18b35a6e rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x19247ef3 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b290a36 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ed85470 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21c58cd9 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24ea57c6 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x284ecf99 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2f496217 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3bac9e66 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e1de6a0 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e4a92d6 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51ce47e8 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58baf257 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5cb3a0b1 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5cfe65e6 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x649735f7 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73a714ff rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78fe585a rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b69bb0b rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x85746774 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89c6f87b rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ada5266 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c610c37 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x972adf11 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa06de95f rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa52484d3 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa89c0056 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb6ec033 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe6051fe rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc1f82db5 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4c4961d rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc936dc90 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb345db0 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2f28fb8 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd4306ab1 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe8e7ec12 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec20235d rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf42fd170 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf5e43e2d rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf887e784 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa44716c rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfad78079 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xffd3128d rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x01dc4fb6 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x065e4d4e rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5ff11ee6 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbe6b9213 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd5dbd60d rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x4325ce98 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x56dbaa41 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xef118eeb rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x03021dac rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x07d6b8d1 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0d2b8a8c rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1de60a7d rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x266bbd97 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x309b75c9 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x31e0bbf3 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x59d94408 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x808ec53b rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8826e40e rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb53ca618 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbf6ea27d rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc0781e4d rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc8d90f14 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd4a9f332 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf796578b rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3de9e69b rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x782e64bf dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf31a35d dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb76d78a2 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d2d0180 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x10ceea82 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3d848f1b rtl8723_phy_path_a_fill_iqk_matrix +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 0x4366a8d6 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x54a3c68e rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6a84924b rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ea2ca19 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8101cbb0 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x844eec3d rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x86ff5fbe rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8ba68726 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 0x9018182c rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9272bd20 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x965e080d rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x96db2c57 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d7a7627 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fb5bb30 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa14c0027 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb6d08dde rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8eee961 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbb547ca5 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda3e2c1b rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeecbc8ca rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd366bb9 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd6262f0 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02aaac59 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07475cad rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a1bbf06 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15c74373 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21d8ba98 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x221263cd rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27b320e0 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ad61235 rtl_tx_mgmt_proc +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 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53b78b8c rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b00d57a rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x736d174d rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73d55dd4 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x765b13cf rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97384855 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 0xa138e5d3 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1f145f0 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab9a05fa rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1326e34 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9e3590f rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd008623d rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe047d960 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3b447d6 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe69358be rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf82d7323 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf98022d0 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0d198f02 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x46628379 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x92e2b23f rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc880f08e rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe9a64955 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x136217e6 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1d9d90f9 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x99c81b62 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xaaa36016 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4d26e04d wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5bf1a4a5 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xec3fc35a wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x025ba63e wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x141640e4 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b66a3f5 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d97213e 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 0x311706a3 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x353e8d98 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x373eeb5f wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4dbcfde5 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5151804e wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56833381 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x59c70973 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a03e31b wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a1f62a1 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b139109 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b9b853d wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x607e1113 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61f91598 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64e110f7 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x695cf9f0 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6fd03f99 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x706dfea5 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70c19dce wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71ac4ea0 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76039322 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f4d9272 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84918a29 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a6b550b wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8bafe4d9 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x901e5dfe wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90c68b5b wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b66475d wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7a27632 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8b5033c wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa94e2d5 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb426520f wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc576bdfb wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd180dbe3 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd84b30db wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2e31828 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe49bb6e7 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xecc6b7a7 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xececde70 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb6e8704 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x566a3ed0 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x6440f817 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x9c06891b mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1ce80450 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5498eb51 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6a06748c nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x816912db nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x12b368ac pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1cf1f7ce pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2f70d9ab pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2fca323e pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x95457837 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xaa907845 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdfa2d09f pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x91040612 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa797f730 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa7fa8b66 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xad0fb980 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb14f2a24 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc83b9b62 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcc6b1a66 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdab1c14c st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0df6fdde st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x2913e647 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd195e444 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc662890c ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xdae6fe99 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe835263c ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x71dfa0a9 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xd41789f8 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1b4908f3 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7498de97 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7d0a73ae nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x88d7d1a6 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9a155421 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc5f5bd6d nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd7150699 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe3aa3cff nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe50930ab nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf66d5466 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf768fd54 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d9efac5 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x21e609f7 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x081e324b nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x100d105b nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x14ff900a nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3411352f nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4cb080e4 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6e6db0f4 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x70a8bf12 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8e9219b2 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa8c2c725 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdafcdd4b nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf0679fd9 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xf285e0c7 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 0xb3bac473 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xbe2ba9ce mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xdf0d6af2 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xef76ce1d mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x60b00a8d cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xd06f438e 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 0x400f4d47 wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x75bf4d33 wilco_ec_get_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8b8ae425 wilco_ec_set_byte_property +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x06e1730c ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x11116536 __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x11622e6a ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x150883f1 ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x288dce1f ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2a60025f ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x44085e35 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x468fceed ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x48b52b8d ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x495cbb49 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4b622966 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4e1ec23e ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5528befe __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x60906978 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6216a958 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x74f14c6d ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x765b8423 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x78af968c ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8052466c ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x894a11d0 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x93c7181e ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9f374ee2 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9fdbe3c8 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa8170979 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc6319299 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc63e5b61 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcfde79aa ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe11e9022 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xea5ece8a ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf1ed9060 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf4b0a816 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfac65aa5 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x3eddb02d san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/amd/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 0x89c090a7 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xaf8b8b75 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 0x0aac09d3 dell_smbios_call_filter +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 0xb1676130 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-smbios 0xf84ccf29 dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi 0x9d4b709e dell_privacy_has_mic_mute +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0x12c024ba 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 0x7cff9e47 intel_pmt_dev_create +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x9355cb79 intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xf75bf69d intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x0246b73c isst_if_cdev_register +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 0x17120600 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 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 0x065b4695 wmi_get_acpi_device_uid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x114dd8b1 wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x17b0f8ca wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 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/platform/x86/wmi 0xf215bba8 wmidev_block_query +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf6ab3efc set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xeb36a519 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xef8535c8 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xf772601c bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x105ff9e8 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x64a419ca pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb6e5d544 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x6e552ec7 rapl_add_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x8e9f9eb7 rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xd840b4b1 rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x22c1caa4 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc8250bec mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf6e04103 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1f870307 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x34936064 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x39515718 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x793a3c9e wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7ba0d34e wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf36ed21d wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x7c1761b1 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x6c8fc95e 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 0x03440d6b cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04fcca2c cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a633710 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ea25418 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14676100 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16866416 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ed29da9 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29ff92fc cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x487ce116 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4af539b5 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f771495 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x537c2638 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55b649f7 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b209e5c cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67409a71 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70e6ff7c cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x770166db cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ebc268b cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8643e77a cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86f0fa88 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a1e6787 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e468027 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e56678c cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ebf9727 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ed002b8 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92fa89e3 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96b8069c cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x999ba1cf cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae3fcb8e cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb68e7d4c cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb74bfa04 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb85d5f49 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd72cd60 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc18f3243 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9324c5d cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5e7cb46 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdaacf933 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2e2bde7 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe434af38 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe63dd2c9 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2d540b1 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf35f6206 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9b63ace cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff185353 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x096fb3bd fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1b963297 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1bcbecc7 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3bb96358 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5182a044 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5d9617f6 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x61ddbc03 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66f0e96d fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x713e0c8e fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x87b206a1 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9098d106 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x93ec3ba5 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaa0f2bb7 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc07c84d8 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe17a2aa2 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfce95073 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x3582f142 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf46b6afb fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0225ba63 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6302507e iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x654cd497 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6be93a16 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7cf1551f iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb2732826 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb9df91fe iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x5b449075 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x048cc921 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bc732b2 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f38a8f2 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17eb675f iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18b4d0d2 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1da109e4 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1dbbc6f9 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x230afa70 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2415ca7e iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2687032f iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26aae1bf __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27789dc9 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2afddac4 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36022228 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36ff300e iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x374c8952 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37d03cb7 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4317913f iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4322782e iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43a366e4 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46710ecc iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55373b56 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55ca38d1 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x581c6f7b iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x670ed893 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6dbde79b iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70dded68 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7766199a iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d8e22b8 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91035bbe iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91b39da2 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e14d023 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5243774 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7e743f4 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8e467d5 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb64d7d81 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba51c4ec iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc659cecf iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc71b7ea1 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcab4936e iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcee1874c iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd471111c iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2ec8145 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3064d70 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe30af6ca iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7e6be21 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbc4ac17 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfde7baa4 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x031b2b09 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x05f5f211 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1688003d iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2786f9f1 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2faff6a2 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x362916d3 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3c08f94b iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3d001bb1 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6a914de4 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6d286abf iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x758222ac iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7c6cfd10 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x937912e3 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x93c609e4 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa73584c3 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb2e184b5 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd02d0618 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02d38754 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0691aa5a sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b7f9d2e smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0bcec611 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d843b2c sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ec462cc sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x132471be sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1d61c80b dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x20228590 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24e1ec98 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x26122750 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x326f645d sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32dc9df2 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x493370c7 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b844643 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e97e80c sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6d8bc125 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x840414fe sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x865a7619 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b40da05 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c38adbd sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8fe6b5f0 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9838c42b sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9fbfdc25 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa46e9338 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa7f3209b sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb11a6c47 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb1623a97 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb335097c sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3d2d683 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbcb605f1 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcce2b43e sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce0ca885 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd384ca31 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7ad0bb9 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfe5f09a4 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xb3dadd06 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x026456ba __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1353402d iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15e534fc iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1aaba961 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cbd2430 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25055df7 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25d3d284 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x265cbe67 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27d55ca4 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ccc129a iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bedeb41 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d0ff7b7 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f5b6c12 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x410a65bd iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4594a1d3 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x473603c8 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49db5212 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d2aeea9 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50a2e0c8 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50eefb2d iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5345902c iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f839964 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6009cff8 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x613da1eb iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b771cf7 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6bca1e44 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d9edf53 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f87f41d iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7578a95a __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x771351db iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77840d70 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a0ea783 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ce0a045 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81c84b1e iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81fbf496 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 0x89aed0be iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8adc0671 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f39e035 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8fd218ed __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94955da9 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c9173ce __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa24689df __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6a6598f __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7fb3497 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0fe0d03 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb14fdc43 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5d07378 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc42a5f3 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd321fe7 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd15122e1 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5a41377 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb90b491 __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbe7ea7c iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdefeafa5 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfd7be20 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3722448 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3b49947 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5ba7a47 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x271267e7 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x418d8830 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x57260f0f sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6d72b6f5 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 0xd3cf9587 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1f26585a srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x203ac920 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7bd2a11b srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa91fd543 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa9ddffd8 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xad9db9d9 srp_release_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x04a924e4 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x09fb173b siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7a7237b7 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8f32bd3a siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xab569ac8 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xec39f6e5 siox_device_synced +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x20dacad8 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2e4e9dfe slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30f36084 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3eecee40 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4193531f slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x42616314 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x462b54ff slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x47e51c16 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x488b7b4d slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x523b4ba8 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x63e2e3d1 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7914aa20 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7d0da09e of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7d4eff38 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x957dd67c slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96135ee6 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9bdf5e8e slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa61f2235 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad8decaf slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb057b542 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbfd573ea slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcb47f769 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd3d57d62 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xde672128 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xef2a4d6a slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfc8179d7 slim_read +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1d69c05e sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x5756f7ce __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xc64bf09d sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x74a6ae0d sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x738f05a6 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x39f5fff3 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x41d425ef spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4d683230 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd403cd55 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe9572fb3 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xff9b4832 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2b784c03 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x302db350 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xcb6e9244 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x04b8ae4f spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1f700917 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2e1a79a1 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2fecea4c spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x33309585 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41b16743 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x55d9eed0 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8cb49059 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8e28d0b3 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x91578708 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9d1faf01 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa2c30634 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4744d1b spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa66076bd spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb9e3d2f8 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc77f238a spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc820514c spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd62d9c3b spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdf862d67 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xd30b6c3e ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xad120469 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xde1faa7b fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe47ed99d fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf32dbe09 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x074c0377 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x107c115f gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x383cd933 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5e62b791 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x60e0e0a3 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8d86b1d3 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x908b05b4 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x990495fb gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa6825986 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaf06d1e6 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb304e6e1 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe1869bea gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xea2a5207 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x13b6d672 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x23224a7e gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2862b355 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4aec0f93 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6acade8c gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x81d4a333 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x84cfc3a6 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9172b95f gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa54e8927 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaa725d76 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc26d3bda gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc3bc189b gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd633f3a9 gb_audio_gb_get_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 0xa8b12900 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xcc99a642 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x344d3beb gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x42d295a0 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x6663eddb gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x74b01e07 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x6b5e3b31 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x12685467 release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x6d0475e0 load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x9acf104d apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x0549309e gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x1469ff8f atomisp_gmin_remove_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x4b3a577f atomisp_gmin_register_vcm_control +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x6e8566f8 atomisp_gmin_find_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x73ac053e atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xd6aef3ca atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xd924ff88 gmin_get_var_int +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1acdd83e target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x962511b8 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9e10c890 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd7509cd0 target_init_cmd +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0316a427 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x07080813 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x08eb4841 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x09fe4d7d tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0a0e3c68 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x177aea56 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1f777e31 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x261b6d82 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x384ef7df tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4077478b teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x44a1c97b tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x479153a5 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5ee3ffc8 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7241220e tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x82959499 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9e327484 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb404c4ff tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcb2822d6 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd389d7ea tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe2f5443c tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe8288f1c tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf40ce62b tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x2d221752 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x4f9f6108 int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xc48e6b94 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x47a56b00 proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x54338c38 proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x56430169 proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xad81bf5e proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xb1f88deb proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xf4a9c599 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x0c1fcb9a proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x8cfbc1a4 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 0xce211ca4 proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x50268d27 proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xb772a451 proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x61dc461b intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x85498d6c intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xba7b6401 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xc607bb1f intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x02b08d51 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x04e927c9 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0569874e tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1bd9e642 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1d9c16c1 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x335e3442 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3a85a337 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x42066fce tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x450ff663 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4c150914 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x71df5c4f tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x792610b2 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x81344aac tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8ba6d5f6 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x99b77bee tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9f80b67a tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa1c35689 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaf225afc tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaf963d46 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb0515e52 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb8e42161 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbc07fb3a tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xda50a1ef tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe46e99d5 tb_ring_poll +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/ufs/core/ufshcd-core 0x07e880ae ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x19c7b36e ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1b296219 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x23cd468e ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2ad70cb8 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x311e4202 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3f9e498e ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x432fd254 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x468b9a9d ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x52c08fbe ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5dc39bca ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x63c2d24e ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6731c430 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x75f21e35 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8944438c ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x998e59fd ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa7104ad3 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xba6c2d8c ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbac9bffa ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbc3c4ac1 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd60de210 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd6d2cf85 ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdcea246c ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xde464885 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe51aa37e ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x391c8ec4 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x5153713d 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 0x7a0460ff ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xa4be41ac ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0a09d53e uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5d046242 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6e406541 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xcb15e579 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x085df358 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x66b369a4 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x25ea89b7 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6fdc44c8 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7535f199 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x95129c0b cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xab78953b cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb8002ce6 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb9957431 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe11751e5 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf58c7fe6 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2b8ede11 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x41fbd8ef ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x79f8aebf hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xceb0f7d3 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0b838bed __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1d644db3 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7a0e40ee ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x93252122 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe20bb074 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe364b551 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x177108fa u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1dc532b1 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x23845af0 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2c9ec20f u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x489f8f91 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x50aea9f0 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7a165cf6 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x80e91995 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x98478296 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9a88d2dc u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9df2f613 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdc5a2302 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdcacde49 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdce01270 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf5898e22 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x079003b9 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1641c1a8 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x236a11b7 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x47fd61f5 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5c17d938 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7f8fdaf8 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x95aa4711 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e7354b6 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa5f924a9 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaabad14d gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc2a326f4 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc34ee3aa gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcbd7d92b gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd7331e83 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe3796982 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf41846f1 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x48aaebb8 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6a1bfd55 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb16680ac 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 0xd7bc14c8 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x838cd123 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf0b66986 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0041658d 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 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 0x3efbd8cb fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4d3e3808 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4e0f49a8 fsg_store_forced_eject +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 0x6ef1fc7c fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x82b4c4b5 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x9be220e7 fsg_common_set_cdev +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 0xa5ee6936 fsg_store_cdrom +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 0xb20aa55b 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 0xc356c938 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xccf4531a fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcda1cad5 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcf1e24ce fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd02b4769 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdc919128 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe909553d fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xea8d0296 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf5c26d97 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0f58bdc3 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2d3b18d0 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3a526603 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4c18e308 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7d29b148 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8748bee8 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f6c1127 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x98a0318b rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9c0ecad8 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xac287219 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xad702086 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xba345a17 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc07f37fe rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcd1722d3 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdf5c10e9 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0107dfec usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x054568c5 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19d3b12b usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f261c60 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x25ed904d config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ab8740c usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30c1e290 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x33fbe965 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x367c2174 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x377a59ae usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c69fe4e config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7802124b usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x982b126e usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ee73796 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9f27bbf6 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1fcfe92 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8d8e903 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb10f3fd1 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb6067c42 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb6655ebf usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb83a7881 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcee749b9 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd509d572 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd630e7d0 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe23e3196 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe44ae9ac usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe4ea42f3 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe932cf86 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeda383b6 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfad69ff0 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfee94514 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x146efc16 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2a8967a4 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 0x8bbd62c4 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8ee668d2 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9f9e5096 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa944687c empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb3ebfe58 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbdf21556 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd16dcd6f udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0bca8791 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x128637cf usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1be33124 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x373f1b2d usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4c862bde usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4caead09 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5205b41f usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5964cba7 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5af07f6d usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a68786c usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x773dfbb7 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x84633372 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8a2cea1e usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x949726c1 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95e19672 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x987ab914 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xabcb2f8b usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb245bfaa usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb963418b usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc4d882ca usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcffbde35 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd16db2a8 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd476bcb1 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd829fae6 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe9b4305b gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf245c68d usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf341b107 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf54dc1f7 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf5f6b634 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x9772b220 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x5dc24ac8 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x665067f2 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x03217a33 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x09b5deb3 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0e073a78 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2356404f usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a6d7905 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x647d0322 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x671acf7f usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe6d7cfbd usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe71001a2 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 0x1f07a8f6 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5b7e9a1b musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5cb79fd5 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8a8d8921 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8db05549 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd4ea61b8 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 0x52b0cf3f usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5603906d usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5f7ca86e usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5f926d79 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf0f86da9 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x8d975dfa isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x2a292aa3 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x002b041a usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x16165184 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1910c02d usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x225e7da6 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2c559928 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x322cb944 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3c2454de usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x530ccfd9 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x57326fe2 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x646c6598 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6536dae9 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x65cd4c6d usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b5fd07c usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7ed7e16a usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x945e60c9 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9d133989 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa5a58776 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb59a623f usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb6302882 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd07a03ec usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x2cdead0b dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x5fcdb758 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x82a9a9d6 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xd3cf1ecd tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x01ae35a7 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x029428bd __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11672b83 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x121c4313 usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x16b87194 typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x19e955dc typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1d35a72c typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1f8129fd fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x20a40f37 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x23277c47 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x267e1dbd typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x302d8baf typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x385077f5 typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3b00acbe typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d797553 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3dc2020c typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e946781 typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x41fabe5d typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x437ab127 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x43e652f4 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4719bec5 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4af5918b typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4eb1d404 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f1a8af5 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57185ad3 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59361c2e typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5940f57e typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b071e22 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6328d834 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67f15215 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x695c6468 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b273cef typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6c29b656 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d5f9eb7 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f1df0bf typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x709ce1a6 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x73727963 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x750e3c56 usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x773b514d typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e79f5a7 usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8606d20c typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86c4223e typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a9f4fee typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ac601d6 typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e75ce4a typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b46adb6 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7c6a19c typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xae44a91c typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb222b9c6 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5fcf37a typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb8375837 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9f16673 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbfa5b8b3 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc2c3248a typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xccc5e3d1 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd54c5039 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd58da283 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdabf3f4c typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdadbc366 usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb42001b typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdd5d0e93 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xddac5cec typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0b3e940 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe186756a typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe40ed672 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe93483e2 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec8eb639 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef87ba87 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfdc93f17 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe0ec5b7 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x10eda1f2 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5d286f8e ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6338314c ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x714bc00f ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x735800c4 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8856fff2 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd3c30e70 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf3271154 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf8dbc678 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x059ed387 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1c45e2a7 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1eff2f2b usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1faba13e usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2b465429 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x44c042a0 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4ea33222 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x529efb0a usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x722867cd usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb41dbcb8 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc7e1dcc0 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe63920ed usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xeca01d03 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x16546a4b _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3104c12c vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x39360807 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4da1e0dd vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x586e395a __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x61093bdb vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7f508cd8 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8eb4ce41 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa798b4dd vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc0f9839c vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc39ed5cd vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xa81e4fa4 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x152f0ed8 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2f9fc0e8 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3d0dd39c vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4ad73494 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 0x57dca9b1 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x765059ce vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7a01a250 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7d049835 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x88c3fde3 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8cd2a45c vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x93ed0950 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9bc8c877 vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xac97cadf vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xce7ffe80 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd78e843a vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xda36a080 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe6e5ac13 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf6b6dacd vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf890e452 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1e9c3949 vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1eca183f vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x361c12fe vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x42200176 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4a9a1df9 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4ac3c8af vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x536105f7 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x547cceac vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x65ba61b9 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6f658f51 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8467312b vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x89b96aab vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8e934016 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9017971b vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x972e9f64 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa3114474 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xaf4f0e60 vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdae94a33 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe281a3d3 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xeb1ddc15 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfdb666ce vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02516083 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x033f9534 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03dd03e3 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03fee970 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04c7fdaf vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07195802 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09c5e2d7 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f8274e0 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x101a6f54 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x11a1c2ce vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ad290c9 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23e0ad64 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37581d04 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e5522f8 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x42ec5114 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x569b87a5 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5cd15500 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6105d84b vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b89ff2e vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6dc23b08 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x772a2790 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a71478c vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f25caca vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a12bb6d vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b154604 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e2a71a0 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5c06029 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9ca35d1 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa87f83e vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaed5d387 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb18244b4 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb3ed9a7c vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5454fa7 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc8a1ab6 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4cf37fd vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdef1253e vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1248b66 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1ec3361 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf569dc14 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff0d2dce vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 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 0x65efee38 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6e22647f ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb6faba7e ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe6e78b1a ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe734e1b5 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xebce9b6f ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf263c651 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x71cb2a80 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x20075315 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x63ed4230 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x62877808 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x658daec8 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 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 0xcbb9d310 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcd538333 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xce990048 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x03f440ab w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1a95179a w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1c5b5e8e w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x229b3b28 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x577705f8 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x68b065ff w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x770dc2d0 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7920cef4 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9286d90e w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa266387f w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xeaf5d33c w1_read_block +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0e02abb4 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2e14189b xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x4d721e02 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc77fe9c2 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xf90cd79f xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x4a7a0c01 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x65cef342 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x431052df dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7d97b516 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b 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 0xe286d321 dlm_posix_get +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x038a3226 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x08ceecdc nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1cdf37c9 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2e3a7406 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3ef186bf nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6580e0f1 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd49250ea nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x016e34c5 nfs_client_init_is_complete +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 0x067cacdb nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x083ddf1d nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08ca200a nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b22b0d5 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b78dcb0 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b8de39a register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e15d817 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e223fe2 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1011b70d nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1100dc38 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x140d6123 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15fd0658 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1730a74b nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18ac19ea nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1980fa17 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bf991b1 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d83c5d4 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ed86966 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238f3189 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26003502 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x262d4ce2 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26bad358 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28dd0398 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b55e0d6 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b6c3b89 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d43fe0d nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f011e91 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f7aa542 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fe511d4 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30d47fa2 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33605f5b nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3378d3fe __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x341f146f nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37261742 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37d90c7c nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39a75c54 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bda406c nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fc3d86a nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x400de66e nfs_server_copy_userdata +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 0x43d837c1 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47a3efd0 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bc52481 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4be364e8 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb495a3 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4df29daf nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4df617fe nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51f957dc nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51fdd022 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52cd3220 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5365c6bc nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54af2e91 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x557fc3f2 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56385bff nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57932249 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5873132a nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5aaacf46 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5af78239 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61a609ed nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61da6815 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x641b1f5d nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x686ebe8c nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x697753da nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ab3a2dc __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d929bc4 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x705c429c nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76387946 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77911ce1 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77eda62e __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79380648 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7970836d nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79bc8aae nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79c5e2de nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c6d6fed nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81b9af46 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x822a149b get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x824b6c58 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83544770 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83a4aefb nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x849928a7 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8598a892 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x892cf146 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x893f6f09 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8961e0c6 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a7a6085 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c38f3a8 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ddff644 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e14f134 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fe9ceb7 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90c7f2b2 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93f34a08 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x973dd52e nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9812b5af nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98ea3d50 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b470cf8 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e48acb3 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f3d77d4 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f5d35f5 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa244c268 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2b2348a nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa34687b7 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa349575b nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6fae275 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa88af2b7 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8c176fd nfs_show_stats +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 0xadeb0318 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1b8439f nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb21ab9e3 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb44e05c4 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6efa889 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8dc3f88 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb97c09e7 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbed9f9e9 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbee0d310 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1a6c0af nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc34e37df __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8c877b1 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb173cf9 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdb3a010 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdcd7303 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3627f12 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd63038c0 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6d4e0bd nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7179767 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd778e347 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd92e9dd0 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde233b49 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0d90384 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe192be5d nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3bd164d nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe429d73b nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7bd21a1 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7d6f578 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeae85311 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedcc09a9 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4b5c8e4 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf618b09a nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf77a3525 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf836f98e nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf862e42d nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa13584d nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa85a19a nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfae32553 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3c0de6 __SCT__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff790eda nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa638d893 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00331474 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01db3985 __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04f5486b __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07da2650 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x083f042b __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e9b6f76 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10f70d49 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13cc8148 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20275085 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x232c934e pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23e9949c __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29b16355 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 0x2b4135fd __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b947edf nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x363bf845 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x379d0044 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37f4e691 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b5b3d35 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d7b1acf pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3dc69ced pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x417be667 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41a83857 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46377d1a __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b40ebe1 __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dbfd036 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50cbfbf9 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x529f2cc4 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56728d62 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58492291 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ad2bf6c pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b019a2d pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c676c39 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c86511d pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cf4d164 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d48242d __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x626b0609 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6767de85 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6768d68d pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68e34487 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a8e6808 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b7d04ea nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e0822d7 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e989187 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x700287f0 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78d04551 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e03dc40 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86004b4e nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8813f2a1 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a7a7bc9 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c3d1c56 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d48f510 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x923fa342 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94f11e4c nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x965b38d0 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9727cc4c nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97344eb9 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9776367c __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9aa3eb00 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bb6dd6f __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa22e892d __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa24835ca __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa51857a1 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6644b93 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab4f4362 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabb2bea3 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafe2774a nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0d818f5 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1728eb5 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7f148c1 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9dd8f57 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9eb6f2e __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba3e1506 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcd1cde8 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbeafb277 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5ad63f8 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc739c683 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9d7b37b pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb64600f pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd260a84 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0c46e86 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3500f60 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3afd415 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4210d94 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5cb0556 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6801587 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7e3e5b7 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8b86545 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8e70838 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd0af843 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1423ca1 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1611b43 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4520b32 __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe481fe9c pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8bbb7be __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe97e8d05 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9c6a6e5 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed9c9ba7 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3a6e771 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf426bf02 __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4d8ec53 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6f4330e pnfs_generic_pg_cleanup +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 0xfa4d2666 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb2992b0 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc17261c nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff5ac120 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7b8092e3 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8f53c730 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9523e816 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4108368d nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x529cfa47 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd190251e nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xddfc0323 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xbf4f8faf nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x275ff387 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3ce7eaa4 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 0x5da48a0d o2hb_register_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 0x7388a106 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa8fd921f o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbc4c677a o2hb_setup_callback +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 0xf767cc96 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 0x41f62d76 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4484022c dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x70523f5b dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xce3bc5e0 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd10e792c 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/dlm/ocfs2_dlm 0xff9e12ff dlmunlock +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 0x66cf27fc ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89733dea ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8a1df366 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 0xc24f7c02 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x39f0dea8 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xfe14135a register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x02524884 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x22df6234 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 0x14245589 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x98eaa4db notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc +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 0x3c4dda51 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8d291e90 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x0f188d66 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xb056bdb8 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xb65ad1e4 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xbf35e065 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xef4e9f1a garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xfa23fe1e garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x3ed4858d mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x5ca02734 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x6e37ef4c mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x7845a685 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xeb72eb39 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xebdba104 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0xc6d842a0 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xf7dd0b0c stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x83f937fb p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x90804ebb 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 0x0e183cfa 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 0x05b84aff bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x19199d61 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x268052d2 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x26b982b4 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x69074bba l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x758298e6 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x81a28b01 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8bcc1039 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb4df51fb l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xaeaad765 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x021e541f br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x078df9e7 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x19ec1f6c br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1d30bdd2 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x206f5cec br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f3c7e38 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x533b4d52 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x58491239 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x58fab65f br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x62d63ef7 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x671f64ba nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x79e7773c br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7a33742b br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8743e7c3 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa0369a8b br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa767bafb br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3c29791 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb8bc8378 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc56f4582 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcbd99440 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xccacce93 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd7b63bc8 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xeb332543 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf182b29b br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa5fbec3 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/core/failover 0x04ae2f41 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x3876e60e failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xdc42bf89 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05f2d0e2 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x082d62db dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a73267b dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x112f2977 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1cbe8b96 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x219d1b1b dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2283e031 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x32693491 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c401674 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x40459786 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x42769680 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47198086 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x53132420 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x53b9af5d dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x542fab2f dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57ffee62 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x58526683 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d71aee1 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x631e5069 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6385bae2 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66ef7726 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x67c38ed6 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b8c1015 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x92a8b181 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x93ae5b41 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc33ae2b5 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc788b80 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6ef4d95 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf6534a9 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xef822f90 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf568e480 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9e12455 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1ac9ca39 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x47f596ec dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5cc7a931 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd7ff79d3 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe2cb8cc1 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf5795eab dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0a5c34f4 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2ceaf1c5 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 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49b9cd1e dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49ca9f79 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c20ae39 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6194d29a dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6acc4796 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x79873a38 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7aac69fb dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ad2f716 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8249b35e dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x86a8ce13 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8f98f9e5 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93edc74e dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb7be6900 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb8d95d5c dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcb62c1d8 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcbcacb89 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd430110a dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7237dd5 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7328db5 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd8132bfc dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xda0562f3 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xda53c5f6 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdb2bbc82 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe17ad4ed dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe68c36d6 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee0203a4 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf03ef5d6 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf8747819 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x03b36e50 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x12d53ae9 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb1023846 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xda46ae5a nl802154_scan_event +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xeedf572a ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ife/ife 0x5c3fd6b9 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 0xbff65fed ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x805ee217 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa1892fe8 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe272bc05 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x20625b03 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf61534bc gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x44c4e442 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4837ecae inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4f2ba00d inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x61fb13c6 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x78545532 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9c732168 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbb4ec73b inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0cdcce9 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd895a2c4 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x5994ffae gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0ea20724 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x20a4660b ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4019d79e ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x43690608 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4acb27e3 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5bf5f9ea ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6c0611cb ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x716008a2 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x73b3ec97 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x842196d3 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8c7ea205 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbf973ced ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc28b3643 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc3fe4f69 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd60b1073 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe8ef305d ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf1a04d43 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x77c46d5d arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xb7fb9ce8 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x0963c236 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3dea87d9 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x47b3ad05 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4cd0ccf6 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5a04a6c0 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x81a56842 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xda0a78b8 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf6434831 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x61e24091 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x06211c61 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3e663bc6 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4466fe40 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x0f1768e7 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6a5db3db nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x12643c8b tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1d34635c tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7af2b61d tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8dbd0e92 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfb8ce7b1 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x02ef384c udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3e96820d udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x50615a99 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5c328f09 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8c8ff983 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9a2b9d89 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9ebb1fa7 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdf669457 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8b3be1b9 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x91a734cb esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xfecaae0b esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xda06b9e8 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xebd00a60 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf3a1c60f ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc569262d udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xffaada86 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xfa275d6a ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x17b0a9d9 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x33dde0b3 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x503b37d4 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7a242c68 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7afd90c2 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc7921076 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfa0ac32b nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfc6bbf27 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xe685e1f8 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x09dc18c1 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1df45fd1 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe7c55003 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x35101c28 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x9a67e563 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x06939075 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0c2e864c l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x10d04325 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x181c119c l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1dc7c994 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x21421d33 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2238f0f0 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x733b0505 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x74a32576 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7ba738f7 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7f72e3b1 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x930dc1fa l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x98192c0c l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa48c9b9b l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xafe953cb l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb898c85a l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8f53d31 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbba23217 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbdb355d7 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf06bbe2c l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf0ad345a l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xe02e81c5 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x35e7d437 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1602597d ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x17fb2ce0 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1bd97db9 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d3b0cc3 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21a8201d ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x28bf5b5b ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2b17ecef ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2e29e5d6 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x44782f2f ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x551aaf01 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x56fd0ded ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x64a288bb ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7313f1fc wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7f06bf61 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x91b3ceac ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb0894c7c ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb33d66e0 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5970a9a ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc6b1f51a ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xda157851 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde74500d ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe0a12eb4 ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xef433a04 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf90f12fe ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9e48a99 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4bcabff8 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4ea956bf nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x73e7a460 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xca29cf0c mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd621ed31 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x100d1eb7 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x109b5930 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 0x3409b497 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x34ac91b9 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3fd91036 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x409c20ec ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4fe2ac93 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x657b8e89 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68ded5b5 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6bbe3aac ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6ef5522a ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7f061573 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c85bcde ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb8887d91 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb8fb082f ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc67f51ac ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd430b541 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdfdfba9a ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe9fa1d50 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x101ea9fe register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x25e6aacd ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x2f645f7b ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd7f6e823 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x454dac21 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x53260723 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7c0496e3 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x860c5958 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc57bb38f nf_conncount_count +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_amanda 0xc6917908 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb51c18fc nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x779fefec nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5cd33045 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xef21d5c5 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc515619c nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0a72a905 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0915ede4 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8b3d8bd5 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb766af15 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd5514a73 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe8a64f9e ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xef2b413d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf1dbfac9 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x036720fa nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4f54f86c nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x301fb47a nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa9e48b46 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe0946b2d nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0ea26aed nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3c37ab7f nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5af91298 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7380a26e nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8d70bf4f flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8f7136f1 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9801db63 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa014dcfb flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa2eaa5bf nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc064a13e flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc9bc4a18 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xce65958e flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd096cea6 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe7593a11 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeeabb83c nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf94f6b67 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfcc17556 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x20220dd6 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2bd07c9f nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x31d1e39d nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x385433ef nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x46a4f6ef nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5d282d34 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6159c509 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x71e955ba nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x751206ff nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x94571588 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa1884efc nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb6c1540d nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xba0c5123 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc152d1ad nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc267814c nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xed4dedaa nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xed7596a2 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf0022510 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0846c1d4 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1033abc3 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x17031039 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 0x4069c99b synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5d138444 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x81e9bb96 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x84e129a7 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb2862d8f ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc91b0f6d synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcbf92feb nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdf5c5bb5 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08408bd5 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c6a5613 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d9a726e nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11dbc678 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21cb0975 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26e59b00 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ab84ceb nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x313f12f6 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e6a7dfa nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41e19a59 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43c9a752 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x486cabf5 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bb9c3f9 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4befa31e nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57372450 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57913a39 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a1d66a0 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 0x6208a68a nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66e56443 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69755891 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7f424d1c nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x861996cb nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x895f8db3 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b6b9376 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8d621cc6 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9992dde4 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad3dedeb nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb89893ed nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb82a37e nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd143af4d nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4d796ee nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd82ef57d nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd8cfceb3 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xded119a9 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe39532be nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe82024fb __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe89b64df nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xec516826 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf34c8ae0 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8d62362 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc658a59 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd67e744 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x08d7595c nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4f73b5ed nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9218ab7f nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x0ff0f61f nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x2fb706a7 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2b2a3ecf nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x44408c32 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x50cdc5a6 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xec43a506 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xfda2506f nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x181e67e3 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa1fc4a23 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc59c3481 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x17fd2dcf xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x222ef7c9 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2a84a325 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x47cc86b7 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57d2d3df xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5ea48d16 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f6153e2 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x628c0b40 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x686f7e77 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ada0050 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ec3d5f2 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f1d2c29 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fe1e2d9 xt_table_unlock +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 0x8856c490 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x90d09a83 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x990ed4ed xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x99599a6e xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a064c49 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa102817f xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7e9e657 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb287f25f xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbab0c970 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb6dce83 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x44501039 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4526458c xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x283ebb9a nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7ec7d70b nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfeb62ae0 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1e2a8df8 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xbc48c7a1 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xde04f0f6 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x3423885a nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x5209a412 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x03900cd8 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x32dfcc51 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5e1de236 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x80d10952 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe360e8d3 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe933ba32 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0xb55b8c46 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xc7c8c8f5 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xc9f293dc psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xfad4218c psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x09d0611e qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x1cadacba qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x739e865a 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 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x02445dfc rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x0850ebe3 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x0c5586da rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x1431a315 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1bdaf5a1 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2b58459f rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x2ce0b7e4 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x2fb8a06d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x360791ae rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3c7937f7 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x4485f103 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x49a5d764 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x546db784 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5e5b223b rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x7535f97f rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x7bcacfa7 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x96587e55 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x9f768669 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xa3403473 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xbcb1e6a6 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xbe51e974 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc615ceda rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xc8ec3e46 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xd2762ae4 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xda997409 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xed95d0af rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf8f249ce rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xfc6ed1a8 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xc2446d6a pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xdd495da1 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa189487c sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xbf633133 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc306f8fe sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xfa8f4dd3 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x070e0d35 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x1749ff40 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x36345f43 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x97e71dce smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x9877e953 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xa1944be3 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xad31dfda smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xafcdd99f smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc7c68a5d smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xc8cdbcc4 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x14d37935 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x17d83b1e 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 0x4831dd62 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x77c7b89b gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a6eca9 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01dd9f45 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02744f56 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03036757 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04714ecc xprt_write_space +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 0x073e02f4 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07686850 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e968119 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x121cb36a xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1374de07 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1377ddda svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13c893ca rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13e29429 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x140509f6 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14073006 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15604204 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x157029cc xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16018cc1 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a9e9944 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ceb7b34 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d12159b rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d929976 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21979668 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26559389 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27889099 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28110cb6 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x286f153e xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29f6c5b2 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a2cc23c rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6482e7 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b748b7c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b7b3848 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d05730e rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dae43d0 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e41c3ea xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e943a0e svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fec293b unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314c6fc4 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33114a25 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3642cbfb rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37684595 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x383d140f xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x384a8de7 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b29582 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3afb0d13 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d1281c1 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ebe5f53 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3efb7849 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f483757 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x403c3c0f xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40d26ab5 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4136a100 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42684d97 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x435dda13 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4371ed7f xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45fc33d4 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x473762de xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x485de249 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a08e734 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a18ca66 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a5e01a6 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a7c62f5 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a87e3a2 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4af9d0ed cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d167ff8 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e7b471c svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ed8d214 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50227707 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50915bcf xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e2041a svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51196bd7 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52acb7b7 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x534502eb rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55899936 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x565ecb26 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x589ca903 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59099d47 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x592d1ddb rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x595055ea svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59a4c108 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5affaf6f rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b6d4575 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c436a90 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e4ae86c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed265cf xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f57f1d7 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x607a812a rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60ada1b5 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60bdb5ba rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x663e2f50 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b87b47 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ff26ae svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67040ad0 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68f71396 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a254c68 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ce843ff auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d4191e6 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d70704d svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fa88e01 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fd02bce rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70b296c0 svc_xprt_put +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 0x71ff95ee xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x733b7bbe rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74211f9a rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7477ad01 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75993ea5 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75d281ec rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76fda0f8 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d5f37c7 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e71971f rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f4a5eb5 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fc96583 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8287ce80 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82db5ff3 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8365a1ad xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8400356b svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84cc6d1d rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85bfac9f rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x875e502f xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9ee281 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9102f1ab svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9186fd5c rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x920d06f9 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9223f5e8 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x925c6b58 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x931001f5 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94a42847 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9520286b rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95c61df0 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96733fea xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9700f0cf rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9713cd3b xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9759d33b rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97ce40a6 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x992140a9 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b54ddd7 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b55f3d1 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e537f07 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee5fff1 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fec3a91 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2562360 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2a3bb00 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2cd9fae put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60ba6de rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa61469ce xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa643e99f xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa652c9f7 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa70edc0d xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa713abfd svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab81d041 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabe95beb rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad7a71d1 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd4a694 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeb2a5ef rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf297db7 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0f9b729 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1fd9cbe xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3114841 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4a20919 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b06f67 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4beec05 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb76bc119 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb95ccf06 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba46fa4f cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba7dc651 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba895b7f svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba8ac8cf rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc170372 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd70f65b rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd9fc76d rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe5d6456 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec0846b rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf56591d rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +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 0xc2c13c8f xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc302e832 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4c73c1e rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc52c7aaf rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc730d58a rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc75faa83 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7ebbb51 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9116897 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca3d41e9 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcac341bf xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcad18e9f xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb091a21 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbbc65bf svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdb03ca6 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce6802ff rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee6145c cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1bc1d1c rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd224d8d1 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd25987ad rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2cb8833 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd51aeb21 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5d76aef rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5fd5528 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9c9d4b2 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbbd8a4b svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdda2a267 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeeb2b95 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe235f66b svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe25162ce sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3c794d3 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe46d9370 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6bb732b rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe73666b0 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe886bd20 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8e5e4fb rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8f4744b rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe965f3cd rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9893645 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf32c7e svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb2c481e rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb70cefa rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb84de15 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebe8c57c xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xece72d05 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed7fe753 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee26afaf sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee537538 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf37ccaf3 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf46e803a rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4700d80 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4fc2f39 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf52e30b2 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf597dc03 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6935db8 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d3f23b svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8c8aaf7 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa272028 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbece182 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe424e85 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe72afed rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff0865e8 svc_auth_register +EXPORT_SYMBOL_GPL net/tls/tls 0x9548ae27 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xbb3c4ffd tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xcd21b712 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xfbd8ab23 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 0x20934c01 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27bddb09 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ff9e66f virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a2dc2e9 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f766efd virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x448e9cab virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52a41cd7 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6746d781 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b48a499 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fcdd912 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87820f68 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x89c43007 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91352ecf virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9142cf1c virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x96705d5f virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1dde28c virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb931eacf virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb9edf62f virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xba7356df virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbd57c00d virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1d88efd virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd300cf25 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7e594f1 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0d84271 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe64be8c5 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe98be24c virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9f3f904 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb43636d virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xebbab492 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee6afe02 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7341034 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf8e8463c virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf908e69f virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb79ea8a virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x03669831 vsock_enqueue_accept +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 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x41ee6c4d vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x502bacf6 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5fe9ad0d vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x65fe14f0 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x69462e37 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d5087a4 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8295caca vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x87cb89d8 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x97ea5767 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x984a7b28 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa20a9898 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa4e9aefa vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb403e8f3 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbf504ec6 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcd99c68c vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xce95a401 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcefb0e28 vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda50f357 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe872b8e1 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec07208d vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x024c6360 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3c312419 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x43da59ac cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x55613001 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5aa30329 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5efe4081 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6a33b02f cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb26bcc5f cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb5ce7b12 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb7d7a92f cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc97e96d8 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe0aae769 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xeb658ace cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xee1ed653 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf45ff258 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf51617e3 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x39ada3f9 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x45c4a3bb ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8724c4d6 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdbec527b ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy +EXPORT_SYMBOL_GPL sound/ac97_bus 0xaf400f48 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 0x1806dcc6 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x1ad19c84 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x1b458cee snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x23eed8ec snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x2b99cb9b snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x3555a4e3 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x489f1b50 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x718fd0c4 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x8091b565 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x9314c36f snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xa5b7e9ee snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xbbc36470 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0xc7e766f1 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xccbfbd96 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0xd02a8e04 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xd90df29a snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xeb3e7355 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xef0e518a snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xf2cacdb1 snd_ctl_sync_vmaster +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 0x500d4464 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xecd8c450 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 0x1d01f951 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x20f39516 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3f12f2a1 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4665823c snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5135b43e snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5a8689ed snd_pcm_stream_lock +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 0x6a255962 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6f52b03c snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x72f58538 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 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 0xb4e5a7ab _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb9421772 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xea35b616 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf3ce0806 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfc53f341 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0c77c109 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x10cb0135 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x257bf1bf snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x480448a8 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4d21247b snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x67482f95 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x72f93203 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x83d12188 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9018a1d2 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x942cf19f snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd368239c snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe55ac6aa snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x1a465dd6 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xee4eda61 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x04930b60 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0b6faf26 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x283489d1 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x32b95a6f amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8d4a33a0 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x91cf7632 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa4d241d4 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaa2d1ad9 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xac90956e amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaed98529 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb0d9dc86 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdf40f51b amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe15a6c0f amdtp_domain_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x03678853 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0ffb4233 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x27ca676e snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2a2fe131 snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x326184c9 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3bbebe1d snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x480ca5cd snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x51f42876 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6010793f snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x61bbb5f8 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x65dfdfb4 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6d6cbdc6 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7283b219 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f70eded snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x817291bd snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8e2870bc snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8f576cec snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x94ae519c snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9b36c71e snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa8e4ad30 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xabe2d69b snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xae394a11 snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb9882752 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc4589b70 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc80da4d3 snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xce557287 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xce59ce2a snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe19ea828 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe8e6ddef snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf89fdb4b snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf91e7252 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02e84e2a snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05fde63c snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b788e99 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c1389fc snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c3df20b snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e720f9c snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f308ee8 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fe11c72 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x113723d3 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16944a32 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19917218 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b348298 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c28137b snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20eff739 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x246e04c0 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2545d08d snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x282c36b9 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cbdc775 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e6d48a1 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e9832a3 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x331413ad snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3497cafc snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b62ec95 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b9561aa snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x417f4713 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x471bc8f8 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48094e5c snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x484f49bd snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48d621f5 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a6a823e snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bec6156 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d0b50fe snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x519f182e snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54251481 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54e4fa6d snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x567553ac snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57bc777b snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e526fd5 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x631e1905 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x646e0ffe snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64d8d9bd snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x659a3ecd snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66983124 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b4702b2 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x762bf51f snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77625b81 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79418d18 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a4d0611 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cf55abf snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7def1870 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ec7067c snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7eeec07b snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86271691 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86a4534f snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ac8bb15 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ba14646 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e7ee5fc snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f6b5295 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x938a56e5 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b26f13f snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d91613a snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa52c16b6 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7a205b6 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaab0028a snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac8d090f snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf73e723 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaff09442 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4b80407 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc061ea3e snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc179da2c snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc90c5e2d snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1e10f08 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4f23ebb snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd776f649 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7dae121 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd87bb61b snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8e16632 snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9f159d6 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda09c25f snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdae19d83 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb9b7784 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdde7d174 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde693569 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe155fa5c snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4501cee 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 0xea448c9c snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb7c54e9 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0ad3fc3 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf19a2d75 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf25e8358 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2d39db5 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5a46cde snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbd06ca9 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffaab166 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x02203b86 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x11714632 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x8a3b1f66 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xb2296543 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4b059c99 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x586c0888 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5eca9ea1 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6b0c8554 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf6a3ad09 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf8054e40 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x023c3ac3 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0640b0d2 snd_hda_jack_set_gating_jack +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 0x08020014 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08473fee snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09d1337c query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0aab82c3 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0afd401c __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e673196 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ebce2ca snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ff207a0 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11cb7e1c snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1394f913 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15fa7241 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19996139 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19bd8adb snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b407d24 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d61a9b9 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x204d974d azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21521eb9 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21f77026 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2209e072 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x243fd005 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25e1a33c snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2619dde0 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x264b3329 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26b08b2a snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2846926e azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x291fbbb2 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a86ae71 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d2fbe26 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e73f1f3 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ece39ac __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32e77603 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33dada5d hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34af06d3 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c455d98 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d219732 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f530077 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41460a53 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x418e657f snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4236d5aa snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x428e85a8 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42e0389d snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43c214fd snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x444c1fea snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45598764 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x455acf1a snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47373633 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47546f99 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x488555e9 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dd289ce snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ffe07bd snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x534eb61b snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53a8f951 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x541b4b9b snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x584dd2ad snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59026639 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5992d83e snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bb3a1cb azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c9c53a8 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d93ee21 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ed1dc24 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fe6d44e snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61f26700 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66eda0c8 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b9dd091 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c746177 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d37a638 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7142dda2 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x777e3c11 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x796f16f4 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b72e95b snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d88a60e snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7debe64a azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e69d3e3 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x803173ec snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80a0a118 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x870f8f42 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88c25673 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c4199bd azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e3e4a87 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95da924f snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9847ee82 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99ddc623 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9db66589 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6f8eaaa snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa82ac8b snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaaaebbb3 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf30f8b5 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1a0e9d2 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb74ba9c5 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb78b6d8c snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb79ecd02 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7eaded6 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8b9f7fc snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba21790c snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc371bb4 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdca8bc9 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbedaf259 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc03fd0e8 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc40b7ac7 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5b9aeb2 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc77c3ad9 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9c21d06 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcca7b89a snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce16e2db snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd22c4228 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2cbdcaf snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6e6c095 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9d30406 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdda9fc2a snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdecc9d30 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf6e816a snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf976964 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe11fdaf9 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1b028a7 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe76586d8 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7fad008 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecf21235 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef31c8d8 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef421cff snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeffd0425 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2db4332 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf656537b snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf86e6d3f snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb6c546b azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfccdada9 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd2dfdc4 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdf27137 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x10a7ca7d snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x10d637f7 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x12eed7e2 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15e371f6 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x209a051d snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x21c5cd6d snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22338474 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x28014606 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x36f05506 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5bec7dda snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x60784fea snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x69d40b35 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xabfd825a snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba27870a snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbcc392ac snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc67aa5bb snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xce79d94b snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd16c948e snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd7679ccf snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xefab86c1 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf663d1b3 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x255c0b63 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x3c44c22b adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xf161342e adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x382829c7 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x489adc66 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x67a3cbe2 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7cf67ff5 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7d018de1 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x96af67ca adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xabb44b86 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb835fd03 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc474f493 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfaeb5bef adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x4f9c67d2 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x04150403 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0450d019 arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x07ab3de4 arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1253a826 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1d572f9a arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x26213af4 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3018b3cd arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x344521d2 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3a700ffc arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x423fee3f arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4419571f arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x44dc0d33 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x48e7f3d4 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x507aef0a arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5682e7fc arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x589602ef arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5cc9e348 arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x61ec4304 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6b754511 arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6bb4f0b6 arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6f29e8da 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 0x79e97061 arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7dea9dca arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7e7ee6b7 arizona_init_vol_limit +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 0x804eb6ef arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x86c66d8c arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x885ebacd arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x911f76a1 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x996eddc6 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9a0816e6 arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xac6ac7dd arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xada0c3b1 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xaee8076f arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbc625a36 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbcdd5f16 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbf56964f arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc5255c78 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc896bdb7 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c789b2 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcb56f261 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcc644e31 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdadb622f arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdd0a3ed6 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe81c3c03 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xeecce5af arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf0c81761 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf51efa1e arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfabee8fc arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfca739f6 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfda63369 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3ef6eb75 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xc864e35b cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xe8af6bc0 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 0x0ac65e76 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0afac732 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4249486a 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 0x585fbf24 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5874eba2 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa98b08fb cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xae7fb820 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdc3d2f89 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdd03fd08 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdf6f9a33 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf41c4eb5 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf55123af cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf95587c8 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xed24d46a cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf546c45f cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x28458631 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4d907a34 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9c397469 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xbb581344 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc58ef13c cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa7c97a6d cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc1b57909 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf088cf4b cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x61a6c1d2 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7de62853 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x0e4e2640 hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x2aa9f736 soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xbaacb9db snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x6853bcf3 snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x5f03feb7 hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xce71dbad hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x5155cfd5 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x818758ad lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x6bc5f4fc max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0dedaee1 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x593d5dd0 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x6de36d69 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x976c0b08 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x20f8c612 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x29ea661f mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x630a2a1e mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd311d4e1 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x25e22ec2 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x31f6acaf 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 0xee922fcc nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1884b649 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa388f338 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd353d957 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1f341a61 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd2c09c06 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x0774f2a3 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xf1dd9b8b pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x69b56307 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xa19be9ec pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb45246cb pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe16b9346 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1564973e pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x76489b52 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x76d45723 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf92a6dac pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-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 0x1230c99c rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1f6c840d rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2da4dd8f rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4134c908 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x570e9be4 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcdf47ab6 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x5c4bace7 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x81ce5b0d rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xf6fd252a rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x8f686d78 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 0x530934e9 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x5b3f602b rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x82e11593 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xabeb245b rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xa35457ad 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 0x00128dd9 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x178c140b rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2bf43a48 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59823510 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 0x6e75451f rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x786cbc02 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8faca967 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9f88bec0 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa4994f0a rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa9479fb8 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfcbbaf08 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x43e8afb6 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x088723f9 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0b4d4012 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3ee518d3 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7109628f sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb7af5ce5 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xb223e909 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x79a47465 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x43129a31 src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x4dc1ca7f src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x561526cf ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x9ad75d8e ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x86998734 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xbe8469b4 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xd7b12e70 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 0x252cc19e wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x3a5155b9 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x51d159f0 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x9b44757b wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe45c85ee wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x09f8d14e wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0b240c83 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x16ae5cc0 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2755a15f wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2b0d2d45 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x35c22357 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ab30016 wm_adsp2_set_dspclk +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 0x597ded6d wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5da7d385 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x63718baa wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x641b9e88 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x645ec7fb wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x664b0f83 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x68efff3e wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8082bf7a wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x85191eea wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8916783b wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xae154a55 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb3cfcbcb wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb89c9af9 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcd418ec0 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd0f96a2b wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd2675b42 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 0xec5733ed wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xee0e8edc wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x150c5452 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x3e4424a7 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2d472ff9 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7dd8542d wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb9710260 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe87add2b wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xa2c10b3e wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x1461af68 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x21607039 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 0x00e1d1ff asoc_simple_is_convert_required +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0e8e1334 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0f7391de asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0fa97df8 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1bc8ed5a asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x28d77759 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x460960c9 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5a9acf4b asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x63424704 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x76d849f2 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x885908cf asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9935ec60 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa262a000 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcc7c97bb asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd5fe3b71 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe18c3721 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe2ae67c8 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe490c889 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe4c30f57 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeade55a1 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeb63cad5 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xec072891 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfde6ab49 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x3b4a8752 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xa312021c sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x4dcd048a intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x60231b6c 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 0x8a9e2591 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x9fccd8f6 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xf692eb41 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 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 0x39069f30 snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x3de1ba3b snd_soc_acpi_intel_cnl_sdw_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 0x4a86b49d snd_soc_acpi_intel_icl_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 0x70949de6 snd_soc_acpi_intel_ehl_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 0x8431430a snd_soc_acpi_intel_cnl_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 0xbd17d594 snd_soc_acpi_intel_jsl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xbf57de0a snd_soc_acpi_intel_icl_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 0xc503df5c 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 0xe9390761 snd_soc_acpi_intel_skl_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 0x26296b72 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3f39e918 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x63c8db8d sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x67aba2f6 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6b26f0e7 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 0xb800ef81 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb99886fe sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc3e76693 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd72a34c2 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdf84a105 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe1faa0bf sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe4fbffa2 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe946d315 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 0xfd52e5e3 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xff7b5230 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x13ea4658 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x48f955ee sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5c15b02d sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x98612d80 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc1e0efc4 sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd3fe1df9 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd585c655 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x040df04d bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x076b0eff skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x10be634b skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x208423a8 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x269891a7 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x30dc6301 cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x316f32a9 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x42637157 skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4acecd33 bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4b083943 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4ffe09db cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x50324722 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x579f8215 skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x57ad5445 skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x596a1939 skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5d1bef3c cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6242fc8e skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6a1e6541 skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x70bc70d1 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x73d25247 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x783ecb70 skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x83beeffa skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa05edf8c skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa77ad106 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xaba6a57a skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc8db55da skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xca08fcb0 bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xcbab67f9 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd2891457 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe0496987 cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xec43977e skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xed23193a skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf4092f0f is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfd65eab5 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfe79c197 skl_ipc_bind_unbind +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 0x0090d045 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x011190a0 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x011fad5a snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03294980 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x056e786f snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x059aad63 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06022e80 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0627174c snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x066aa44c snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x077bf501 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e8b16f snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0aa9af13 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0af2e745 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b102611 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0beea26e snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c5b6ec5 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f3576b2 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f490b55 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f5fd3e5 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f6e6971 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x120307ef snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13684749 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13a5427a snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x141ecb10 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1582e70d snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19745fe5 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a6a1f86 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c670953 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e4fabaa snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f023cbb snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fa06e6e snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ff8fbf0 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2016c5b1 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20263050 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x205eeccf snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2066616a snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x211a0d8d snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x224237ce snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2284ba91 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x229bab21 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x291c82d1 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cfb46a8 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30f01346 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31cf1f84 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31f22f17 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x337e49f7 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33eabd1d snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x345eeeb1 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3467b463 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36666516 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37a99346 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39431a68 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a261adf snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3adbd93e snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bb782bf snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4135826c snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41bb260d snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44b536eb snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x452dc584 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a5bade8 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bf6ae6f snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c6cc647 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eada09f snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51496c5e snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51b2bd0a snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53530d79 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x540f3711 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x547032f7 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54f56088 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55168efc snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x559240f1 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5699ea21 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x577b0e24 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5782a52d snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5980bf2c snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c7151f9 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cdd0a03 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d13aa62 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d2eb608 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d99db93 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eb4d3a4 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eecb151 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f5b3ba7 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fd814c8 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x608661b8 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6167b826 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x619b3dd9 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62e044c9 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6885eaae snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a1f35aa snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cd183b1 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cfd44a9 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e29a52d snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e5d67b7 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6eb156d8 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x712aeb3d snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x742ab161 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7575ac3d snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x798b1e17 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ad28ce1 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7beeb19d snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d10cd89 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7de5db52 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e28b3f9 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f1dd0be snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8050550d snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x813809f9 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83a08545 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x847b04c5 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85011c76 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85368980 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85b234a9 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85ca6d68 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85d712de snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85ecac2b snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x883d53d7 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a286571 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8af5595e snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d92e6c1 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e632cf8 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8eb7d9f4 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f4f435b snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f8d6f02 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91cead81 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9276a68e snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92e61564 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9320e77e snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x933c0530 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97bc002b dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9884d713 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x991f075c snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99bb783f snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b723c7d snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bc473b4 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c53cc23 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c83aea5 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dd13e25 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e31fd7b snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eb57b61 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0cdfb48 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0e52ad7 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa14175db snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2069f42 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa72ab3c0 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa757423b snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7f17fbd snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaae6b59c snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacd0859d snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xada3e45c snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf0d68af snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb65e4fba dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6914bb7 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7c4d97c snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7d6a0c3 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb80d1640 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9702498 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9c5c617 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb997519 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbd89a97 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbce58d73 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdd1a7cc snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbeffb5dd snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc474b0da snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc542f32d snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6c635a0 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6f72308 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc807789d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8cedd29 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9d1ef24 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9f7fe2c snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcaa55603 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc2fdc42 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce0c94db snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce53fafe snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce6f3864 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1fbac78 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd274a645 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd36cc30b snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3cac70b snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3e7bc04 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd48fffbd snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd54d4f93 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd57e5b01 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5efcda3 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6093741 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd71cbe1c snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd88db9a9 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdab20fdf snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb665b36 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddb4e35a snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde53b02e snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdeeff288 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdef8f1eb snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf78384d snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe11b37ca snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe59fef77 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7666760 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8c4fda4 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9ac385d snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaa0bf3a soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebfa9bc6 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed58bc5e snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedf02672 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee718389 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf01d349c snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0878412 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1113a3d snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4563dc7 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4a0b5f1 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf56de112 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf57c1860 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf71d5fcd snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc7a1136 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1fa9e245 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5532b2a7 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x8d5b1561 snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc50982a5 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf3b3e605 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x24343720 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x40572308 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x41217a9d line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4e3538a5 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x614662dc line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x705d634e line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x74c914bf line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8036680e line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8bcad683 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9477b953 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x97009ccd line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9bb0b7ea line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb42c7309 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc6d35c36 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe22fe632 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf3f097b8 line6_resume +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 0x0003cab5 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x001702ec vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x002f28e9 ip6_sk_update_pmtu +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 0x0063fba0 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x008429b2 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0087daec gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x00918c31 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x009bd97e fpu_alloc_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x00a262a1 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x00a2be33 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00af4f5b skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x00af7cf7 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x00c6b67c acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00ea6a47 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x00ead0c9 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x00f21e12 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x00f59c1d blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x00fca035 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x01078148 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x01134660 tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x012bee21 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x0133a4a4 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x013aaffe da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x01434660 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x014cdb8b user_update +EXPORT_SYMBOL_GPL vmlinux 0x0153767a dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01544a5d dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x01609d24 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0174eefb __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x017640fd nf_nat_helper_register +EXPORT_SYMBOL_GPL vmlinux 0x017c6f5b sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01850555 nvme_auth_generate_key +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01885b99 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x018997ae led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x01989f57 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01afaede sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x01b39bf6 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x01b8ad58 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01c35a15 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x01ca357e __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x01dcc18e register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e229e2 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x01fc61bb acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x0204713f uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x02228e06 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x022b2fb8 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x022f94a4 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023dbbc2 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x02400614 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0x024c8563 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x025ddc53 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x0263cfbf __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x026e2c3a __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x02736c61 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x0284bb7c pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x02b3b91b virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02cabfaf xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x02e58db3 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x02e7c73d devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0338628b ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03468480 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x0357f39c xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x036b0769 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03736686 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x03904edd nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a34030 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x03b1b1b8 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x03b43ed3 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x03bfc060 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03c98dd0 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03f357f3 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0408c251 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x0409d1b2 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x04186894 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x042c9325 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x0447b0fa md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0453126f __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x0454fe4c dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x048474c5 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048b81a8 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x048cc51f __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x04930818 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04a18e60 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x04a6efb7 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x04af674c mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x04b4721e acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x04bef00f simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c429e0 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04cc27da crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x04d650b9 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e3d321 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x04e85e1d md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x04eb77e8 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x04f26ae9 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x04fad9fd icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x04fcaf18 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x04fd6af6 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x050b8c76 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x0510f69b devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x0514c146 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x051addf6 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x052e8820 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x053503c4 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x05427bc1 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0557bedb pwm_lpss_bxt_info +EXPORT_SYMBOL_GPL vmlinux 0x055bfafa kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x056b7136 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x05729375 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x05869aee usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058de5b6 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x058fd253 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x05982645 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0599d079 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05d28cae fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x05d430fc dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x05d9bde5 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x05e89dba __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x05f3d1ad devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x05fd0f55 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x060a0459 __SCK__tp_func_tcp_bad_csum +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 0x0628825c inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain +EXPORT_SYMBOL_GPL vmlinux 0x0638e04f regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065019a7 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x065e1ec4 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0671e158 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x0675c8cc __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x06870090 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x0687452c bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x0697ecfc nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x0699785a usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x06aa6752 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x06afc0fe pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x06b1981a bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x06f8a6f2 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x070ed34c pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x071bb311 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x071d72d2 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x07250026 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x072b36dd rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x07475a3d gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x074fa774 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x075b4259 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x0763f4dd pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x0771c65c securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x07745108 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x078a8b8c device_remove_file +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 0x07c8e338 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x07c927ce __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x07ef5a56 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x07f665a6 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x08018830 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081b0cc9 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x082077f1 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x08323ee3 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x0832d425 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x08402ede acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x084ee192 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0853b252 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x08691375 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x086fbe0e kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0x08754168 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x088c2101 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x08940b88 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x08a32d46 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x08af0f97 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x08b2ddb8 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x08b66c44 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x08c69d4f devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08ddfde2 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x08f7a8be subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x090d2467 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x091d192a crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0922066c vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0x0922161c crypto_type_has_alg +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 0x0949c791 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x095dc58e dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x0964407a blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x096f0977 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x0994bdd5 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09f0d896 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x09f651f5 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x09f85b17 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x09f8809e component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x09fcd7d4 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x0a10e0a9 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0a1a7d26 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x0a1c2f21 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x0a468e6c put_device +EXPORT_SYMBOL_GPL vmlinux 0x0a47553f tdx_kvm_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x0a47b810 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0a4a3a3f serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a531aac hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x0a5b2260 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x0a743840 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0a753f8b do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x0a78a949 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x0a89088e wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x0abbf3fb nfnetlink_unicast +EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x0ac6078a pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x0ac86cb9 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x0acfb421 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0ad6491a xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x0adc725a dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0b03c969 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b04d53d dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1d86b3 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x0b282a59 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3557c8 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x0b35f15d dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0x0b395d0c sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x0b4cc43e devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0b521adb __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b582c18 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x0b63bd30 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b6c96de pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x0b6ec3a7 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x0b705a41 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b769c0e bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x0b88c3da __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x0b8be7de nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled +EXPORT_SYMBOL_GPL vmlinux 0x0b9492a1 nvme_start_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0ba6d4f6 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbea5e3 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports +EXPORT_SYMBOL_GPL vmlinux 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL vmlinux 0x0bc184ce pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x0bca5a25 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x0bca7c43 nf_ct_untimeout +EXPORT_SYMBOL_GPL vmlinux 0x0bd04017 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x0bdb679e nf_ct_delete +EXPORT_SYMBOL_GPL vmlinux 0x0bf3b09a crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x0bfaf3a9 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x0c262406 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c31c35c fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3b2193 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0c419eb3 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x0c5a8c74 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x0c650823 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x0c70ca17 dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x0c71341d sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x0c754507 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c85c9fd devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0c87b885 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0ca24c49 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x0ca2932e scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x0cb867da dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0cb9cee3 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ce3261d dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x0cebe752 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x0cec1138 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x0d06c572 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d085b00 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0d09285a clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d0a7d57 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x0d0ee372 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x0d1a2e5d scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x0d29ab7a nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL vmlinux 0x0d3987b7 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +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 0x0d57b3fa inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x0d58daae register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d66ccda regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d771a53 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x0d77760a pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x0d89de55 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0d8a0b5d hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x0da7b213 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x0daa2dab __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x0db3276b sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x0dc20caa ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0df12ab6 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x0df3f32e nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e07b05d usb_ep0_reinit +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 0x0e143303 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0e260158 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x0e353da4 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x0e389100 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x0e3b21a9 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0e4cfee5 __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x0e55b027 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6a21cd usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e71b0c6 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x0e8c9016 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0e8fb468 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x0e911cb0 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0e95b0af pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0x0ea07a4c __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x0ea52301 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0eb0b24a device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ebf6625 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec26abd xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x0eccdb93 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0ed7fb13 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0eee0b9a devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x0eeedf15 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0f08521e PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f0b8ce9 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1bfdb2 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f46e1c8 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0f4c997a spi_async +EXPORT_SYMBOL_GPL vmlinux 0x0f4cd3aa tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x0f576698 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x0f602fbb nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca401 nf_ct_seq_offset +EXPORT_SYMBOL_GPL vmlinux 0x0f8dcbb8 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x0f8e1cd6 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x0f94f87b ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype +EXPORT_SYMBOL_GPL vmlinux 0x0fb53718 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x0fb89e0a kernel_kobj +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 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd71099 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x0fdd2381 nvme_wait_reset +EXPORT_SYMBOL_GPL vmlinux 0x0fe378a2 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x0fe58987 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0fee0fb7 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x0ff21751 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x100ea9b7 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10205225 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x102175eb pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x10328669 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x1044d55c folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x104aa10d fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x104c76a6 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x105c5d59 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x10727ef7 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x1084a78e elv_register +EXPORT_SYMBOL_GPL vmlinux 0x1085b77b power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x108b45a6 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x1094ea31 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x109d20ac crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x10a850b9 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10ca017e crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x10d90f2a handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10ddd0cb __SCT__perf_lopwr_cb +EXPORT_SYMBOL_GPL vmlinux 0x10de806a cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x10e0a040 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1102c487 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x110db89e nf_ct_helper_init +EXPORT_SYMBOL_GPL vmlinux 0x111da821 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1130eed2 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x113c589d nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x114d894c wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x11522f6f rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x119c73c1 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x11cbcd55 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x11d87a5e sdio_enable_func +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 0x11ec6e87 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL vmlinux 0x11f16bce __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x11fed10e crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x12027081 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp +EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x121af74b nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122ca3d4 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x1233b6e4 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x12355a0e pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x1238786c filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x1241e21d pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x12529436 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x12565e38 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x125f6b33 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x1266bc71 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x127f1a29 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x12b78472 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x12b852aa tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x12c39146 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x12d88ef1 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock +EXPORT_SYMBOL_GPL vmlinux 0x12ddd1bb blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x12df8e5e ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system +EXPORT_SYMBOL_GPL vmlinux 0x12e41353 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x130bc394 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x130cf5a6 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x1318485c devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1326787f nf_ct_netns_get +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x134a68ec irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x134c1e44 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x134c62f3 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x134f7b03 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x13535273 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x1358c856 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x137c0bf5 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x1380d09a devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x1385dafe __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy +EXPORT_SYMBOL_GPL vmlinux 0x13a753dc dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x13a8f6a5 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x13ad017c fpu_swap_kvm_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x13aedf9f switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x13b31ae2 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x13b7c6ab pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x13c2b053 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x1407110f __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x14237b49 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x14343104 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x1440958c sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x144aa5a8 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x14612b2c nf_conntrack_helper_put +EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1475d603 xstate_get_guest_group_perm +EXPORT_SYMBOL_GPL vmlinux 0x1478e52f dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x147ce440 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x1482e7a3 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x14b215d4 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x14dd4833 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14f18320 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x15050870 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x150e846a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x150ff00a devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x151fde27 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x1531bb1f gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15493031 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155516d1 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x1555d8c5 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x1558b22e regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x157b7319 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15a126ab phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x15a136a9 vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0x15a6578c dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave +EXPORT_SYMBOL_GPL vmlinux 0x15c4a8fe nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x15e5ab9d irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15f404bb set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x15f5175b device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x15fb9cba netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x1606c23a ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x160a2b2b devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x161cc4bd fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16255150 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x1632beef cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x163cd55d __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x16407f14 nf_conntrack_free +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x1645f2a7 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x16494eae regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x1650f8a7 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165acf4d perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x16674eb7 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x1672546a dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1686c5f3 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169461cc usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x1694c1ce pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x16962a77 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x169c2051 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x16a409b2 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x16abbc92 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x16b6e95d tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x16bbab56 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e15807 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16fe99c1 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x170a9384 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1729ce88 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x172b89b0 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x172cdbfd devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x1735d623 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x173a7d8b regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x17452526 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x175c9a42 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x175e11e4 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176307ff __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x17730a32 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x179a173a usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17b0bbe3 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x17b5b429 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL vmlinux 0x17c10b0f gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x17ca2abb platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x17d7c6f0 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x17de2811 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e8d2b1 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18210aea crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x182c97c9 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x183999ec cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x18579b99 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x187854ec xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x187dbc79 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x18857d28 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x18998652 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL vmlinux 0x189b0176 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x18bb0995 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x18c9abdc rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e7132b pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fe6bb8 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x190a9c3c task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x19227afc battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x1927f7fa tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x192df278 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x19389855 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x193cd13f blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x19535b6b __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1967ea2e iov_iter_get_pages_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19683483 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x196ed759 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x1977334d platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x197d9ab1 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x197f8514 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL vmlinux 0x199c4833 __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19be7008 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x19c8f9b3 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x19caff77 nf_connlabels_put +EXPORT_SYMBOL_GPL vmlinux 0x19ce3e6c platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x19db5a9c virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x19dc9fd7 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ea4861 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x19ea9866 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x1a0064e3 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x1a01a8ab __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a172a9d nf_ct_seq_adjust +EXPORT_SYMBOL_GPL vmlinux 0x1a20165a rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x1a28db53 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a6ca10d iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc +EXPORT_SYMBOL_GPL vmlinux 0x1a90e399 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x1aac8d98 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1aadc4b1 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x1ab53c9e phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x1ab9a74c md_stop +EXPORT_SYMBOL_GPL vmlinux 0x1abadf65 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x1ac018d2 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x1ac3a3d9 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x1ac88c43 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x1acc4478 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad465b4 nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL vmlinux 0x1ad9cd5e acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x1af16cdb acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1afba113 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1afcaaf8 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b05d457 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x1b06901a nvme_get_features +EXPORT_SYMBOL_GPL vmlinux 0x1b06b35c dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x1b09b6c0 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x1b343ce3 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b408d8f wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b45fda0 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x1b572b5c dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b6a9873 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x1b7d6880 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x1b82777c badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b92f74e i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x1b9493d1 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1ba53b0c fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x1ba5dfcc device_register +EXPORT_SYMBOL_GPL vmlinux 0x1bb222dd blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x1be508bd vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x1beb54ad dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x1c12b1a8 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x1c12dfb9 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1c16102d cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x1c1c242d irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x1c206a67 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c28a72d bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x1c2f9a5c crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5dfc23 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c674a9a fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x1c70ad51 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend +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 0x1c88347f of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x1c977da1 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1cae0bb2 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL vmlinux 0x1cb2bf1e debugfs_create_symlink +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 0x1cdd0605 xhci_port_state_to_neutral +EXPORT_SYMBOL_GPL vmlinux 0x1ce64428 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d0958d5 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL vmlinux 0x1d12a9a9 nfnetlink_broadcast +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2546aa switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x1d2fb5c4 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x1d31a3a2 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x1d3b270f nvme_auth_transform_key +EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1d412b31 intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1d4194db devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x1d475404 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1d5d250f device_create +EXPORT_SYMBOL_GPL vmlinux 0x1d614dda public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x1d642a25 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1d708adf pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1d78773a usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x1d86824d uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1da935c5 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1db061bc acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x1db95dce __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfa7522 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0acff6 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1e175c2d serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1e18a304 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id +EXPORT_SYMBOL_GPL vmlinux 0x1e2ceb85 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x1e34a52d mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e3e2f0a usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e4a5416 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e4ef35f skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e620553 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x1e781792 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7e92d9 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x1e8c329e fscrypt_drop_inode +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 0x1e9bfb61 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1eb8f458 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec10bb4 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1eeb0254 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1f0c7e5a nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL vmlinux 0x1f1e1c25 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1f2084c3 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f38a8db irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1f3fe38b ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4bfa08 __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1f518b5b dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 +EXPORT_SYMBOL_GPL vmlinux 0x1f61bb16 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x1f6574d2 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x1f7e9394 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f856da7 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb177ca wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x1fd5475e bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x1fd6fba3 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x1fd90985 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x1fd9e572 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe90223 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x2007282d __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200b9463 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x200fad41 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x2011fb0d cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x202d91a6 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x202d91a6 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x205d1ab2 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x206221d3 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x208eea6b badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x20940fed __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x209d85cd tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x20a0520b mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x20a3bb4f fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp +EXPORT_SYMBOL_GPL vmlinux 0x20be508f devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x20c392be device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x20d6659f irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x20d922c9 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x20eec2a4 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x20f55a7b tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x210ac30e dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy +EXPORT_SYMBOL_GPL vmlinux 0x2141a3d0 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x215948d4 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x215b0f3a devm_pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x2160c673 acpi_quirk_skip_i2c_client_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x216ae063 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x217b0c85 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x2197d9e2 nvme_stop_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x219da513 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x21a4ab45 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21abc083 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21acb0a7 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x21baf70f blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x21bcb067 acpi_device_fix_up_power_extended +EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21caaec7 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce6a06 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x21d19319 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x21ecfd6a dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x21f89b25 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x21fe2e9e pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x2207d311 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x220c4139 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x221e9214 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x22457fc4 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x224a6f6e __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x226e1245 user_read +EXPORT_SYMBOL_GPL vmlinux 0x22726bfc __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x2288dc0f devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x22895158 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x2291ebf0 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x229781ca dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22ad89bb ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x22b032e0 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x22c5afbe usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x22c7fc26 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d79203 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e0fdb5 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x22e5d1de nvme_auth_augmented_challenge +EXPORT_SYMBOL_GPL vmlinux 0x22e7a9a5 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22ec6d26 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x230bbb19 acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0x230f69b8 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x231a7528 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x233a2bd4 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x237dfdce dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23c3c54d kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x23c4a5cd ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x23ca1e6f devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x23d3fcaf acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x23dfd6ca fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x23e87cb6 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x23ed9968 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x23f100bb pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x23f58621 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x23fee4ee sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x240ad150 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x240b2b1f ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x2412568b devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x24168e3b __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x2439d288 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x244dc3f3 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x245472df kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x2462ec2c gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x24697a13 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2473655f led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x2478d63a virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x24795d30 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x247e1221 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x248376c4 mmc_send_tuning +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 0x24a0568a usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24c17b80 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x24c8bf64 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e13b44 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x24e7b981 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x24e9aae1 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f06f12 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f538bf __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2508ec33 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x25090ddd sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x2511231d rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x2519767d ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25471987 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x255ab3a4 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x25608a4c blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x257272a9 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x2578ca30 nf_conntrack_in +EXPORT_SYMBOL_GPL vmlinux 0x257e82d1 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25a63fcc blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x25a69847 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x25a76b34 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x25b20e6b devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x25b57f95 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25be6f06 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25fea537 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x261b8dba umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x261cfd98 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x262229f0 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x262a9976 hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0x2648991a devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x2651ad69 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26553893 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26800edb uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x26827a02 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x2691a004 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x2692af39 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x26940cc8 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x26a7d2c7 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c6cfd1 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x26d32503 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x26d5ffc4 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x26d9b86c pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26eea0bc driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x26efc4f6 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x26f9d188 mnt_idmap_owner +EXPORT_SYMBOL_GPL vmlinux 0x26faa5ae rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x26ff47fb sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x27066ff4 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x2736867a to_nd_region +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 0x27442623 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x274affa4 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x276f09f7 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x277a67f2 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x279a73d7 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x27b20494 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x27b68984 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x27bc442b __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x27c701a3 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x281e39bd tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x28264ee5 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282d529c __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2845c179 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x28490160 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x2853f43f crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x285cc066 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x285f2878 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x287647fe devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x287f72a2 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28914bb2 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x28be7284 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28e8670d fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29187923 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x29235829 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x2961fd22 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x296b80f2 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x296b8c86 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x29736c75 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x297772e0 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x298bb8e0 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x29a53a29 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x29b3c6d5 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x29b5a8ea ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x29b6d041 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x29c05e1e iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x29c9f4b8 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x29e5ba72 __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x29e82e84 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f153f6 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x29fe2628 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x2a00430a pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x2a039b93 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms +EXPORT_SYMBOL_GPL vmlinux 0x2a4b4453 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x2a547d8c debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2a5ba0c6 __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a703406 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x2a7240ca ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x2a8cdcb7 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2aa45b36 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x2aad35a9 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ab35ebb devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x2ac09086 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x2ac21593 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL vmlinux 0x2ac98a3c devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x2adfa8ce od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x2ae3f195 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x2b0077a5 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x2b08fbb0 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b1c6d4b pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2b3beb12 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b522ee1 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2b5e6948 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b7028f4 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x2b726679 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x2b762dd9 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b7fd78e ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x2b81db19 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x2b8f4bdf ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2ba3a209 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x2bd10e13 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x2bd652ae __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bdd7a66 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2bf8b38e wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x2bfae472 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x2c06bb2d ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x2c1b0e46 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c23f7ed pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4184a2 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x2c4ffb61 PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x2c50ee0f xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2c5c279b devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x2c5ca327 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c818dd3 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x2c858369 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x2c85b0e9 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x2c8d58ad device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x2c8d5d75 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2ca3a534 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2ca89fe7 snp_issue_guest_request +EXPORT_SYMBOL_GPL vmlinux 0x2cbd8679 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x2cc79ebc regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2cfb2ed7 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d1740f6 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d4dc483 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d5abbe3 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d65e375 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x2d6a66ba fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2da331d0 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2daa5940 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x2dbcf545 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2de9dd7e nvme_auth_stop +EXPORT_SYMBOL_GPL vmlinux 0x2dffb06e dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e128c85 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x2e1dc6b2 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e318f51 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x2e37e1a0 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x2e4b7ac3 devm_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x2e4f6618 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x2e5c3221 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e6717c8 irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x2e681180 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2e85e2ef debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2eb3c266 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x2eb5eb35 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x2eb9afff blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe140c regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec9f351 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2ee9f575 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x2eec763a tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x2eef8be8 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1e5682 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x2f218c68 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f227190 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f376b64 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x2f46f412 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f50de85 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f6bdaed kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x2f733592 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x2f91a07f sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2fa4e328 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2fa66f32 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc97d5d fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x2fd782b3 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x2fef6370 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x2ff14710 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x3006fc24 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x3010ff82 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x301713b4 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x302c5740 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x303aafa9 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x303bde84 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x3055a0ac crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3075a7e1 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3079bcaf devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x3084f23d percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x308bd04e ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x3096a82d tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x3099fab6 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0x309d9d12 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x30ac7cbf crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x30b3eee4 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x30c1051a led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30d966f5 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30f95417 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x3100d237 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x31012f1a nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310a608c bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31142267 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x3115f99e nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x3116aad3 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x312368e8 __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x3124c574 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3135e9fa fpu_copy_guest_fpstate_to_uabi +EXPORT_SYMBOL_GPL vmlinux 0x3139012d tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x3139c4d6 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x31557eb5 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x315e29f8 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x319ac570 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x31a25d17 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31c57ee9 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31d47e58 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e19fdf bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x31f8b91b fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x320f4618 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x32111eb4 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x3218b2cb i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x321c8724 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x3223c47e iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config +EXPORT_SYMBOL_GPL vmlinux 0x3231e93b set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3253bd4a nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x32731867 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x327c8248 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x328e532e devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x329b1d06 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x329f120b nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL vmlinux 0x32a8f4f9 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x32a92acf gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32adc732 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x32b6e145 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c38760 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c7745b lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x32c9b798 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x32cca846 dev_pm_clear_wake_irq +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 0x32e91ff4 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x32f9fab4 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x330219f0 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x331f7a87 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x3325e081 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x33274614 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33645285 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x336636bb clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x33696f94 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x336c740a clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3372d640 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x337cd942 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x337eaec3 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x33b42b2d rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x33bf4443 acpi_quirk_skip_acpi_ac_and_battery +EXPORT_SYMBOL_GPL vmlinux 0x33c45608 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x33cadc45 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33caf554 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x33d88894 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x33de9c6a __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x33e19045 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x33e28552 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL vmlinux 0x33e98c87 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x33fc3bdf devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3401ab31 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x340584eb srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x340da571 devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x34108f81 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x341a9925 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3421ddba __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x342416e9 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x342ccc9f pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3437d61e dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x3438f860 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x34424c2d dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x344ab563 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x34527d04 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x3454e410 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x345ca02f __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x3481f241 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x34a22df5 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x34c8afff regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x34d15b2d vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x34d8155a usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x34e7be91 balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34ec564f trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x34fbde0d fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x351406e1 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x3519e629 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x351e5c59 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x3526589c fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352d0f41 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35390797 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x354b0411 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x354e3719 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x355ea0f9 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x35666f1e ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3578ae5a __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x357b71e3 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x35838c92 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x359a4176 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x359cb77f nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL vmlinux 0x35a7a202 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x35b1c4b0 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x35b41812 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x35b9167c devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35e0b8f0 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x360ac1ad devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node +EXPORT_SYMBOL_GPL vmlinux 0x361740b5 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362d191f handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x363074f2 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x363c8519 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x3648c0e6 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL vmlinux 0x365a46e6 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL vmlinux 0x36648b7d gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x366f3bdf pwm_lpss_tng_info +EXPORT_SYMBOL_GPL vmlinux 0x367a21c2 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a7f67b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36a85b48 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36afa897 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36c7d19f rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x36db5ecc acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x3704bdee rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3708d1bd __nf_ct_expect_find +EXPORT_SYMBOL_GPL vmlinux 0x3711f00c crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x37136b2c nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x375bce6c crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0x376bacef __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x37743c20 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x378ea550 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37bace91 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c61dbd unregister_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x37df81f3 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x37f28b39 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3807d8d0 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x38129508 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x38150ff0 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x381ee553 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3834ef4c __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x38381a5e led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x384687f1 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x3849b18a nf_conntrack_alloc +EXPORT_SYMBOL_GPL vmlinux 0x384f32fa pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x386b8187 dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x387a65f8 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x38943eb6 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a2fbcd gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b4d5ea dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c64c0e dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x38cf842c sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ea9765 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0x3910bf25 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x391e55bf sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x39306f17 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x3930bd92 nf_ct_helper_log +EXPORT_SYMBOL_GPL vmlinux 0x39334da8 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x3952fbd2 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x3970abb8 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x3982c506 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x3984072b regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x39970fdc devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x399a5393 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x399d9ac8 nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39a92c9b platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39b507d7 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x39bf59a9 init_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x39e64ac1 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x39eca82d pci_p2pmem_find_many +EXPORT_SYMBOL_GPL vmlinux 0x39ee25d0 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x39f48801 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x39faa082 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x39fd7da1 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x3a05b8ec kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x3a12ecb6 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x3a191eeb pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x3a1b1a35 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a28a48b fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3a3f7996 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x3a41108b __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x3a4d97d1 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a666c98 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x3a719805 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x3a760e4f exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a85a297 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9d7d5f ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x3aa2b032 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3aac5545 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x3ab27c4d kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3abaae82 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3abafffe led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acc2981 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad4c0d9 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3adc30ee ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b090bbb tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x3b1e17f5 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3b1f675d espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x3b24e509 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x3b38da5e sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x3b3a3d97 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x3b3a5312 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b71107b led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x3b717098 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x3b794b63 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 +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 0x3bb33501 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x3bbb174a ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x3bc3aeda regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x3bc883c5 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x3bcb74ea lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf2393a __SCT__tp_func_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x3c05359c nf_ct_expect_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3c0d0deb pci_doe_submit_task +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c0f54c0 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3c13beaa fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x3c141cb4 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x3c14aa30 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3c196adf set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c22a1ca simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x3c246a57 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x3c2fdec1 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x3c43b013 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x3c46e5c7 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x3c471826 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c55c1a8 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x3c5c19f7 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c623093 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c624d89 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c7b5854 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x3c95f83f iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x3caa1f26 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x3caa8e9f tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cad7b9c devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x3cc25c74 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x3cc809e5 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3ce3973e is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x3cec71f6 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x3cf5de10 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x3d041bca devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3d0691f1 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x3d10ce39 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x3d13a72d debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3d1e0cdc __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5ae6b0 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x3d79c212 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x3d8a361e nvme_start_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d8c0ffc nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3d9effbf blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x3da50b2e pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dc3415f scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3ddaa0aa virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x3de37237 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x3de437b0 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log +EXPORT_SYMBOL_GPL vmlinux 0x3dfa434f nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3e06db26 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e075b41 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x3e0ad828 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3e0dbbd8 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x3e17d43f call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x3e2fffc6 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x3e49fb86 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x3e557d8a __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x3e606136 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x3e60bbe4 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x3e63fbcc pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x3e6a75c1 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e75c33d pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule +EXPORT_SYMBOL_GPL vmlinux 0x3e7afc9a device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x3e7edf35 nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL vmlinux 0x3e8c0228 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eab770b crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x3ebcf5f4 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type +EXPORT_SYMBOL_GPL vmlinux 0x3ecff330 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x3ed2f70d da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put +EXPORT_SYMBOL_GPL vmlinux 0x3edf3d7c event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x3eeeb890 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x3ef016ec dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3f07ce5f zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x3f0c42d9 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x3f1fa9d6 events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x3f31f06c devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4b4fba hsu_dma_probe +EXPORT_SYMBOL_GPL vmlinux 0x3f6171ce spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f6df840 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x3f7356ae tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3f79f373 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f95185f phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x3faa611d regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb87812 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x3fbdd413 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3fcba62f receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x3fe3e80f device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fed0737 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x3fed0ded regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400662f9 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4009b9df uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402f9df5 bus_unregister +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 0x405867fe iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x406304f4 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406713e2 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406ddb53 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x406e9481 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4079f519 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4089cb68 split_page +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all +EXPORT_SYMBOL_GPL vmlinux 0x40a303d7 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x40b9ac9b __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x40c01b09 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x40cab158 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x40ccb4a8 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x40d1e2d7 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x40d61714 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x40e23c39 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x40e5f1fb genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f6386e gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40fd174c ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x4104d381 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x4108ea6c ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x411ce031 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x413aca17 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x4140a61f xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x4149707a __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x4159b5e3 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x415cb3b8 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x4174c986 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x41762eb4 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x417f7474 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x419ad72b crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41ad643d debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x41afbd77 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x41b5acd2 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41c597cb nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x41c6e04f ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x41d5928f to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x41d65f10 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41ee5a32 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x41f82a42 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x41f9911a serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x41fcc3ce device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420c319e blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x422bf7b5 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x4239118e start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x423e93c7 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x4242e007 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x42486f12 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x424caca6 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42637d97 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x42675c82 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x427b05b8 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42912a0d dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x42954f74 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42a1d4c5 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x42b42ce0 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x42bd63fc user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x42bde365 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42dde227 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x42e7a33e device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x42e7e900 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x42ea6549 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x42f20993 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x430dc837 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x430feca3 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x431c62a2 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x431da027 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x43219ffb dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x432a0975 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component +EXPORT_SYMBOL_GPL vmlinux 0x43590508 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x4366f5de nvme_init_request +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 0x4396dc09 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x439fd8c5 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43b90566 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear +EXPORT_SYMBOL_GPL vmlinux 0x43d3941b crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x43e3c550 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x43e8444c devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x43ea4e80 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fd0b67 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x4417e8f3 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x441b7bce __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x44204473 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x442fd350 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x44427fd0 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x444ba8b9 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x445c577f inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4484d9a6 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x4497b3ec nf_ct_unexpect_related +EXPORT_SYMBOL_GPL vmlinux 0x44a33c40 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x44a7a650 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cbdff5 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44dffaa1 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44f87523 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x45081c66 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x45126189 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x451dadf4 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x45208976 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x4522a454 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x453e7e4b device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4542cad7 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x45460fe0 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x459df8bb irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x459e5d55 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45a9d4c4 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x45bea102 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x45cf2119 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x45d0f3db led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d4864c genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x45e3eaaf scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x45e99049 device_del +EXPORT_SYMBOL_GPL vmlinux 0x45fa966a power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x4603d08d pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x46047827 __SCT__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x460a0c13 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x461d7406 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x46227a4c xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries +EXPORT_SYMBOL_GPL vmlinux 0x462814ea crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x4638e3ca nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x463cd098 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x4656f6f0 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x465d7171 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x4663eb0b regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x4687e8fa device_set_of_node_from_dev +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 0x46aaab78 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x46ddd07d pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x46e93a11 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x470ee495 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x470f6098 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x472090fc kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472da3f2 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476b2bbb sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x4777cf2b xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x4777d85d md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x477a90c7 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x477bba81 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478adb71 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x479269c2 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a8f110 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47cc33a4 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d4706a get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x47d81026 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x47d99dd6 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47debdaf nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480b39db iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x480b4fe1 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x48105bba __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x481b1f45 nf_ct_helper_expectfn_register +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 0x482dfad8 pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x482fad89 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x484ae398 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x486bbfda ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x487f5eda dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x488eb754 component_del +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a89920 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x48ce431b __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x48d3add1 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x48d56b2b modify_ftrace_direct_multi_nolock +EXPORT_SYMBOL_GPL vmlinux 0x48dd88b9 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x48e080b1 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x48f1af9e i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0x48fce3a9 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x490503e1 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x49055bf2 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL vmlinux 0x4923c4e7 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x492e026c pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x492f47ec platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x4932af5f pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x493398c2 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x49562b4c init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4957b9bd input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x49679193 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49698c23 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x497dd1ef rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x498b3be6 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x498d0e86 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49a5238b ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x49ac80cb nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x49cac4d3 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49db2076 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x49db5919 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ee4eac usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x49eeef7e clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x49effba2 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x49fd41d1 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4a0bda28 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x4a0d29f7 fpu_free_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a183ff1 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x4a1dcc7c devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x4a207c60 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x4a2e6bac pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x4a34ea93 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a5e69b4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x4a667bf2 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x4a66de6e gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x4a73a5cc hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x4a8a5c8b regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x4a92580a sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x4aa0d870 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x4abd6622 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x4af4a4ac crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x4af6f4cd ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x4afb35e9 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x4b0226b5 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x4b0a5f80 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4b2498af dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x4b332df8 hv_get_tsc_pfn +EXPORT_SYMBOL_GPL vmlinux 0x4b3b0754 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x4b3f590b __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x4b4b67b5 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4b4cb718 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4bacee66 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x4bbc4fd6 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x4bc1eeec i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x4bc2c63f ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x4bc73963 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bcc3b96 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x4bcd9245 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x4bcff457 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x4bd19da2 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x4bd3402e nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be5b819 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c03d770 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4c060078 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x4c0aa1c0 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x4c249f47 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c53a363 shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c564539 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c7fca03 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x4c8298ff balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c9c5abe cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4cab2916 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cc88f0c disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4cd18b0e __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x4cdca403 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x4cddf46b tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x4ce2cb20 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4ce61e4b pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4cec9d4b blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x4cf43615 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x4cf8f009 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d023f3c usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x4d0cfaf0 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x4d11d4ed wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4d20433e ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x4d26bd22 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x4d2f8f51 nf_connlabels_replace +EXPORT_SYMBOL_GPL vmlinux 0x4d42f070 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4d479102 usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0x4d51942c gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x4d606c6b udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4da0dcb5 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x4da34644 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x4daa6e3d devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4dac3f2b usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db18657 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x4dba4a3a __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x4dd9f85e tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x4de060ea led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4deea626 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x4deeafb3 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x4dfb5c06 vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x4dfbec7e scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e058569 print_tuple +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 0x4e431997 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e4fcad9 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e5721ae __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x4e5a6aea blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x4e621744 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e6611bb attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x4e68b768 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4e6c20f1 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x4e707249 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x4e7d1741 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4ebc7958 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ecf23ca __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x4eddc80c ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x4ef564cb led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efb3346 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f0a2cc5 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x4f0f145f __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x4f0f2521 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x4f24809f sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c18e8 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f2f460b power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x4f3f265a crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4f49dd25 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4f4d8be0 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4f4e939b nvme_reset_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4f4f6003 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4f5d65e9 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4f6311c6 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4f674f03 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4f68685a irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6d896b gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4f8e5982 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x4f9f5ecb __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x4fa5aeb0 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax +EXPORT_SYMBOL_GPL vmlinux 0x4fd98a89 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4feb95e1 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x500312d9 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x5005f127 __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x500fd82f pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x501e24bc sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x50235552 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x503740da debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x503ef723 __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5061e33f __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x506d6f07 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x50790ee1 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x507cacba kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x508b3459 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50924296 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x50993d25 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x50a0d019 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x50aa9cfa pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e3c614 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x50e5f580 nf_confirm +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510e2e97 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x5115a2ee lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x511cae5a __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x51305fa7 intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5142814a irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x514f7cae ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x515d349e efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x517fb0d1 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x518c72c8 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x518f0f4c transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x51917468 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x519197a2 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0x5194ad0e iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51afa0f6 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x51ce0a6e tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51d795a5 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x51e381f8 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x521343b6 pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x52239175 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5237cd39 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x52395c33 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x52462557 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x524f3e01 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x526e6853 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x52778e68 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x527ceadd ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x52887094 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b74cfb nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL vmlinux 0x52c0b14c platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x52c0e9b5 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x52c1917a __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52ca4407 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x52cd690f __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x52d1b49b pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x52d3f8cd ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x52d53791 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52da3b25 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x52fbe612 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x53066f42 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x5324417d regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5327dc33 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x532f1e52 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x53303633 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x53312dd1 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x533de20e get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x53410fca class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x534bd185 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x534d6454 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x53652392 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5373a003 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x5382062a __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x538542bd shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x5389c314 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53b282f4 generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x53b946b0 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53d5852c md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53dd1151 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x53de405c uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x53e23f82 __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x53e9c72a regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x53fe854f spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5407a747 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54388a32 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x543ebf92 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x543fa063 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x54462fcd vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x545ddb1b rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x54702768 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54b7a1cb mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x54bc0558 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x54ca9a13 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x54d254d1 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x54e29c84 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x54edeb7b dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x550a2fe1 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x5510f382 inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x5512825d gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x5522a214 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x552d7c24 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x5535c27d follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x5540113c __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55462474 fpu_copy_uabi_to_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x5562defd __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x556a8f52 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x556ad716 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5570bf5a __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55a0f07d tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x55afdeb9 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x55b2b413 dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0x55c5bcb8 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c797f4 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x55cbf23d dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x55d24b80 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x55d39a07 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x55da5a7a i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x55ec2c66 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f49e5f scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x55fa5b49 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x5612cab2 register_fprobe_syms +EXPORT_SYMBOL_GPL vmlinux 0x5613136c phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56174dc0 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x561a5691 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56294b89 phy_resolve_aneg_pause +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 0x5649f760 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x566bbe00 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x566f49a0 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x5679aa37 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x567bbd10 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x569f76f2 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x56a1f1fa phy_create +EXPORT_SYMBOL_GPL vmlinux 0x56aefae1 acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x56b4c8e7 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x56ca2cd3 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x56ca583f led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x56e390f6 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x56ea37c5 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5703544f devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x570e721a __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5714e110 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x571e487e bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x571e8bda vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0x571f8848 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x572d782a pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x572d8abc __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x57326ab9 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x57650f4a device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x577145dd clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x577e3334 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5798babd acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a4b45e virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x57bc9459 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x57c18678 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x57c23231 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x57cbf387 __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57dbe65f ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase +EXPORT_SYMBOL_GPL vmlinux 0x57eba810 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57faca51 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x5803e3b1 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x581e8cff mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x582876f3 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583839f5 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x584fd8a6 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x5856ad37 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x585a68b7 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x5867bae5 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x586bd76b blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x586daf75 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587be8ed __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x5885ae3f platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x589b2e67 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x58b28daf blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x58c1cad5 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x58d57fb9 __rio_local_write_config_32 +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 0x58e1c1fb phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x58ea6f02 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x58eb1b36 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x58efc3f4 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x58f4962e irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x58fa45ed __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x5921802d dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x5924b399 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x592e7523 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x5948d311 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0x5949bc4b alloc_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index +EXPORT_SYMBOL_GPL vmlinux 0x596eb950 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x598405cd devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c4b01e crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x59c5bdb1 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x59d3b4b5 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x59d60e54 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x59faddfa vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x59fc6442 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x5a320ac6 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x5a3a441b ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5a3fbdab task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4f90a2 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a55bdae __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a5e4105 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x5a647dcf crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a731882 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x5a78f02f __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7c31d3 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x5a81fe79 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x5a8b5dae acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aaf90c5 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x5ab01be9 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab9dab4 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x5acecc02 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x5adcf8e8 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x5ae2a9a9 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5ae64bf7 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5af26444 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x5b053619 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5b053e7c tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5b171f49 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b3051d1 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x5b530ac0 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x5b666c02 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b6b158b skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x5b71c118 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x5b762809 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x5b775373 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x5b84f166 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bb31427 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x5bc25dd2 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bcfc92f xfrm_audit_state_add +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 0x5bdfdec4 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x5be0d621 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x5bf02972 blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x5bf3ff96 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x5c068ba4 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str +EXPORT_SYMBOL_GPL vmlinux 0x5c07b10c usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x5c082a82 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5c0b5170 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c195aee phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x5c295905 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c426092 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x5c4a3d88 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x5c4e6b31 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x5c59a8b4 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5dc759 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x5c6d364a sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5c6f9dd6 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x5c73c172 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x5c75c68d edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x5c7eb668 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x5c82e269 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x5ca73e1e regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x5ce0e01d spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL vmlinux 0x5cebd0ac led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf2c412 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x5cf6a31c power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x5cf95452 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d5232d2 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x5d6ca4cb mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x5d82b5a1 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db250b1 xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dc16c41 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5dc1d2e8 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5dde8f3e extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5df1280b tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x5e0d7326 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1ca7c9 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x5e506cff nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5e3024 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x5e5fa993 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x5e600393 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x5e70cd4d dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x5e7876b4 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7d249d tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e9bff19 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5ea31e3a iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5eadd717 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5ed8480d __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x5ed8780f dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5ed89e9d filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x5ee22ed8 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5ee56989 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x5eecb22f register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x5eefec95 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x5ef7147c usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x5f0dd246 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f1d828b cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2e9e13 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f3b1a5c lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x5f47842a sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5f4e1380 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5f53edca device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x5f5d39f7 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x5f5d4573 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f73e6ba iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x5f78f302 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x5f794b70 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x5f8902ca hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f915353 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x5f994247 xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x5fa242bf inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x5fa25b3a bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x5fa61d48 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fae28c3 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x5fbe8926 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x5fc274ba led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x5fdf7b32 smca_get_bank_type +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe1d985 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60113f4d iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x601171df folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x601871d3 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x60196b41 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x6027f74b __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x602dcabb dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x603044fb serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604ce5f8 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x6054b294 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x60605856 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x606fbbac ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608c7432 intel_cpu_collect_info +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60963967 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a44ac7 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x60a7fbeb ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60b4a99b usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x60b6c82d mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x60c5fd5c virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x60cb7a80 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x60cffca7 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x60d2e7d1 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x60d3ee4d xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x60e7f9c0 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60f9ff8c xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0x6101c4a1 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x61110e36 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x611cd40d ata_ehi_clear_desc +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 0x61390daa blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x61536f26 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x615f3485 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL vmlinux 0x61648b8c nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x617730bf srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x617dfa80 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x617e4790 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618a3af6 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x618b8c77 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x618cdc64 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x6195ca4e fat_setattr +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 0x61a270e5 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x61a3de85 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x61a7b512 pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x61a7cc7f pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x61ac19c7 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61b559a6 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61c34624 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x61c79326 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x61ca5b2c fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x61e4cbcc mmput +EXPORT_SYMBOL_GPL vmlinux 0x61eb5af0 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x62028d43 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0x6210c533 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x62279166 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6230aaa8 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x6235b165 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623e284f dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x62479a4b cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x62595dd7 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x626da4d2 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x62789cea unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x627f9c86 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x6289c1da regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x629a02b9 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x62ab226b spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0x62acc90e badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bc26f3 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x62bf79df pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x62d38fdc regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x62db259e virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x62ea501c node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0x62f6408d dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x62f7bca4 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x62f86e0c int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x62f8740b clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6307b6e5 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x632c34c0 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x6330146f devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x63422b94 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x63745bad pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x63745e77 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x637bcadd ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x637ca0a9 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x639fa238 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x63b3f971 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x63b5d993 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x63bdea59 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63d76ec8 vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0x63daa879 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x63deb5d7 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63eca9ae dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x63ed6190 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x63f1b40b sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6403fa76 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x64177460 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x641a1d02 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x641cf424 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x642f26d7 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x64372ed0 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x64469982 vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x644dee32 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x64540eb8 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x647fc1d9 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x64887f9b ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x648c6331 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a5d6f2 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64a9c9e2 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x64b005b0 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x64b0be17 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x64b2d705 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL vmlinux 0x64b9605f spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x64bdbe54 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x64d03231 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64ea2349 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64fc0fe3 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6501b467 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x650be973 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x651061e7 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x651873df tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x651d04b0 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x651df507 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0x65273ef3 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x652dec1e debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x653d7e05 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x65414b0e clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x654f15a5 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain +EXPORT_SYMBOL_GPL vmlinux 0x65537c50 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x65572e7c usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x65597d1c acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x655e7c89 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x65652c07 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x656c1d8e mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x659345b4 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x65a33b0f ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x65a88aa6 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65acede2 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65de440e __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x65e3bee6 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x65e93f18 devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0x65efb8d6 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x6609c6b8 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x660c4262 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66180997 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x661bcd5c pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x66506171 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x665503f2 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x665d3fdb iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668735a7 nf_conntrack_find_get +EXPORT_SYMBOL_GPL vmlinux 0x6688579a trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bd97bd device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66eb9bf3 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x66fe6417 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices +EXPORT_SYMBOL_GPL vmlinux 0x670e0a8b dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x670efda4 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x6720b21d device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6730e1cd list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673f0d6c gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6748c487 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x674c5bc1 nvme_auth_hmac_name +EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x6762fa1a xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x676941e5 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x676ae3d7 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x677d4ccd dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add +EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679fe4e5 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x67a440cc device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x67ac8af7 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x67bac80f __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x67bb276e rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x67c14eec xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x67d59d53 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67e5d1f1 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x67e9ee0a __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x67ed2b03 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x67f7b2a7 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x6814b166 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x681cb299 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x681cd8fb spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x681dbe56 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x6822de1a firmware_upload_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6822f40b __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68330b70 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x68377973 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x683e1293 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x683e7cf0 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x68529f1d cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x686e40ba regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689c597a of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68a04bdc pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x68b28ea3 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x68b4ee05 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x68c7e6ec ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x68ce5809 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x68d1d917 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x68d256bd tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x68df7359 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x68f667d3 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x68fe323e devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x691f6868 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x6928651d pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x693741e2 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x69396b04 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL vmlinux 0x6943792b gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x69459cf1 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x694bd654 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6950cf59 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x695f70cc synth_event_create +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 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697f3cce pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x6988b10b pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x698e7935 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x699405cc gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x699e5ad4 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x69b4e9be skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x69bd5ebb nvme_dev_attrs_group +EXPORT_SYMBOL_GPL vmlinux 0x69c03194 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x69c13e63 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x69c39ade gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x69cbcbcd list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d5b810 pwm_lpss_bsw_info +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 0x69f04b5b nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x69f329c8 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x69f36c7b create_signature +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1a3ead blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a3f3417 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x6a41fcf5 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a42483a edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x6a42b69a tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a589b99 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6aadb4b6 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6ac4e02b dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x6ad4cea3 acpi_dev_gpio_irq_wake_get_by +EXPORT_SYMBOL_GPL vmlinux 0x6ad96a9c intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0x6adadbb4 nvme_auth_free_key +EXPORT_SYMBOL_GPL vmlinux 0x6add99b2 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x6af811bc iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x6afcd375 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x6b0c2255 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read +EXPORT_SYMBOL_GPL vmlinux 0x6b1923d6 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x6b20e4fd gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b2c7954 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b38e3f2 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b42b69a edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6b5317ba ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x6b5ab395 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x6b649c43 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b7d9379 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b869941 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x6b96c471 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x6ba25237 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bceb606 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x6bd164e8 bpf_sk_storage_diag_put +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 0x6be970d6 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6bfb6314 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x6c035d69 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x6c0c781a vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x6c0ecad3 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c24aba7 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3b73d0 nvme_auth_free +EXPORT_SYMBOL_GPL vmlinux 0x6c3d3aaa skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c6a4e2c iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c8ae54b regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x6c921d48 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x6c9a5014 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x6c9b8247 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6c9e1e2f serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca53f04 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL vmlinux 0x6cafb63b skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x6cb057d5 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x6cb156fd rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x6cbd0973 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6cbea8b4 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x6cc8de6e regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x6cd07d80 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x6cd9e957 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x6cd9f6f4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x6ce8a524 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x6ceaefef pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x6d006065 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6d019046 __SCK__tp_func_fdb_delete +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 0x6d105ea4 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x6d237ae2 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6d27138f inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x6d29c79b ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d4db1d6 vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x6d58f965 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6e60eb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d7f96c6 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d8277b8 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6d94f0bf __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6d974689 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x6db8a8e5 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc08fad nf_ct_bridge_register +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6df0eb72 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x6dfa2583 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e115511 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e19ba1d class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x6e286290 __traceiter_devlink_trap_report +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 0x6e4d2307 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x6e6ed4df fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x6e91ee1b nvme_auth_digest_name +EXPORT_SYMBOL_GPL vmlinux 0x6ea6afdc usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x6eac696c __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6eae4210 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ecc0f0c irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x6ed34765 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x6edad165 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x6ef42744 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efdca9b devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x6efef166 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x6f08e82a nvme_setup_cmd +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f3b5b00 nvme_host_path_error +EXPORT_SYMBOL_GPL vmlinux 0x6f5e1428 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f6c63dd gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x6f6fc1fa simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x6f77abb5 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f7edb9f xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x6f837ae6 firmware_upload_register +EXPORT_SYMBOL_GPL vmlinux 0x6f850096 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x6f944b8a virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x6f9708a0 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x6f98dd90 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fba1ae8 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x6fc38605 __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd3a6eb p2sb_bar +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff6a154 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x6ff94e59 regmap_get_reg_stride +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 0x700fdcd9 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x7011aa06 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x702dee31 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x703596d8 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x7041bede devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7044f2f1 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x704e4c2b dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x7059ae3d usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x707648a3 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x707d9631 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x709490b7 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x709f93b3 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x70aba48c inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x70bb238a usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c5ef43 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70f7eea9 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x70ffa89b serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x71073933 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x710b7459 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7119a81c iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +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 0x71747ebc icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71850e04 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a16f97 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x71b4bf93 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71b9648a pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x71ba03c4 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71c73ec9 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x71ef66c3 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x71f31067 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x721073be spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x7240d51e get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x72463669 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x7246aea7 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x724ed241 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7274d140 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727c31f8 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x729086d4 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x729d1f2d kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x729f9f70 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x72a27960 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72bfc4ef edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x72ccbd95 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x72d1cf07 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d72011 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x72e613a2 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x72e8450b acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x72ee65e1 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x72ee7633 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x72ef1cd9 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x72f4765d i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7302e2da __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x73088862 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x7314a148 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x732706cb xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x733c82c8 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7346b5aa kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x73479fec device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x73692edc alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x73807e83 ata_sff_data_xfer32 +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 0x73aa1fe0 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73dc4fa4 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x73edaaab vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x73fb58ab i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x74018592 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x74023089 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x740299c9 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x740ed589 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x7414aaeb proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x74155867 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x74326a54 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x743db2e5 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x743f3916 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x7444e1a3 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x74596c9c spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x745e4b9b posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x746b15a6 virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x7497610d bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b6cedd badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x74b8cd4e regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c5a8c4 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74ce14c7 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area +EXPORT_SYMBOL_GPL vmlinux 0x74dff6c4 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x7509f205 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7537c2dc crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x753b41cf __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x753bf8ba gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x753f7c68 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75447e35 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x7547a249 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x7560d707 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75abaf39 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x75b2796d usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x75c46351 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x75d58128 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x75e0d887 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ee3240 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x75f8a639 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x7604881e rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x76190acd sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x761ab0c6 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x76313815 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x76373fb9 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x7647ba5f __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub +EXPORT_SYMBOL_GPL vmlinux 0x765aabfb xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x765c6817 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x767c5b15 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x767ff504 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76873367 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769008e2 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x76930895 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a3808a device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x76a493ae power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x76abbde3 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x76ad83f1 __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0x76b05b6d __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x76b330c0 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x76c6d4a5 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x76cc9657 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76dc031e asm_exc_nmi_noist +EXPORT_SYMBOL_GPL vmlinux 0x76e21324 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x76e358b5 devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76ead277 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f1829e xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x77239b85 iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x773255bb xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x774905de devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x774a5ca3 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x776551dc perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0x776ae2e2 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x776cec6b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x777a43c9 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x7789b05b genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x778b16d0 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x778b4127 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x778b9249 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x779afac4 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x77ac2341 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b2fd85 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x77c9ce39 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x77d73330 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x77e4bc67 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77ed7b54 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x77ff03e2 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x77ff886a pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL vmlinux 0x78175771 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7817c5a7 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7835365d ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x78556999 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x7873c6fc edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x787f36b3 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x788b18fa bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78916fab __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x7897ac89 xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0x789a1a0b ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x789a5331 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a072c5 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x78b0ae8b rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x78c22417 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e6eb39 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x78e9a1b5 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78efcec1 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x78f146ef extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x78f93793 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x7920f133 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x7927fd0d get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7935d862 spi_add_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 0x794eebc4 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x79578941 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x795fda8d blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7977d576 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79ab1859 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x79b18dd9 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x79b430e3 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x79b89154 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c1e81d pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x79cbcde5 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x79d50be3 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x79ddde45 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a11e948 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x7a212359 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x7a2a33b9 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x7a344512 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x7a35301c gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x7a3860e1 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a3f5730 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x7a479c84 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x7a53fd37 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x7a5df6ec scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x7a63cd12 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a77edc7 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a84f66a trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x7a8afb90 nvme_try_sched_reset +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aa5cf6b vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x7ac5990c usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad0f2b3 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ae111b4 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x7aeef7b7 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b12ef1a find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b21c38a tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x7b504ccd rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5b1794 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x7b67ad4b ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b77318f nf_ct_expect_put +EXPORT_SYMBOL_GPL vmlinux 0x7b78bc15 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x7b7c23de of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7b863540 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b8ec35b task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b952834 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba0be85 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7ba521f2 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bc62dfd fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x7bca4914 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x7be132f1 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x7bf93b2c mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x7c02faff usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x7c045424 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x7c1e3198 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x7c1ea267 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c233d54 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2fc4d9 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x7c354cd3 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x7c37886b led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c4dcac4 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL vmlinux 0x7c4f4a4e fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c704c22 __devm_irq_alloc_descs +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 0x7cc6d9ce xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7ce444db dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceebcd3 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x7cf2136a find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0178f4 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d108c2f security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d20e2fb fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7d35cca6 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d61364c wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7d712a86 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x7d72f2c8 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7d7ffc57 component_add +EXPORT_SYMBOL_GPL vmlinux 0x7d8af28d gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x7d8d6cc7 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x7d9bd857 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x7dd780e8 acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddddbb0 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de539e8 dax_recovery_write +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 0x7de775e6 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x7e10dc9d elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e1f5613 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e2d3b5a driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7e374988 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e3fe5de tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x7e484fde usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x7e49aa60 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7e5a7760 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e601dc2 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6e1bba blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x7e6e2c1e kthread_data +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 0x7e9b9982 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eabe017 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec28a8a spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ecbf520 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7ef85152 nf_conntrack_count +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f1fc49e dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7f27b852 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x7f650f76 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x7f68a519 nfnl_ct_hook +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 0x7f93e047 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x7f96822d net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7fa8793e fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fac9f3c apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fd27cb9 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x7fecb3db devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7fee2358 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x7ff2ef0a pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x800bead5 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x800c6167 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x800ee2ce cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x802b0a6c pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x803a5354 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x803e2fdb disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x8046099e gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x8046712e divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807aa385 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80899702 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x8092f8e8 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x80959be3 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8095fc8b genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x80a0d158 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x80a558f4 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x80ac623a fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dc5e60 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x80de83d3 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8102cc0b regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x81117259 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x8115684a nf_ct_remove_expectations +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x81261c49 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x814fa485 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x8150ed3d __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815c9bfb sock_diag_register_inet_compat +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 0x81890be9 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a54c2b dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81ab3f66 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x81ab772c i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x81b66731 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x81cd8c25 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81de4650 register_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x81df2e21 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f82f4e regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x81fc66b3 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x821bfc37 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x82323795 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x82329298 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x8236faea __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8241ea39 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x826d2b3a tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x8276336a iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x8288e51b nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x8290b176 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x82b76432 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x82c4d7ef regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82f7be43 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x8307da47 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x8318bde7 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x83235c0c da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x8323ef50 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x832ba571 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8337e92e sfp_bus_add_upstream +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 0x835519d4 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x8375314e debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x837ceb1a dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x83a53747 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x83b85734 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x83b90a68 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x83bf5a46 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x83cc8068 __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x83ccd14e hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x83d2a0aa devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x83d447b9 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x83e1030b __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x83e1e513 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x83ec97cd xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x83f4b4f0 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x8405ad1d dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841d1f87 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x841e2279 md_rdev_init +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 0x84315bb5 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x843753f3 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8448b21c __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x844c6247 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845b3ade pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84763d44 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x848735d9 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x8487d77f phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8490d01d mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x84adbcc3 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id +EXPORT_SYMBOL_GPL vmlinux 0x84b44d93 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84b80cd4 nvme_init_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x84b912b5 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x84b93899 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x84c2da47 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x84dd9ede devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x84ea1dd0 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f98b55 destroy_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x85111806 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x85230aec led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x852ce7e1 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x853538e8 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x85382fef dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x85563733 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x855a5234 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL vmlinux 0x855fa0ed fpu_update_guest_xfd +EXPORT_SYMBOL_GPL vmlinux 0x8566c85f usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x856ffa63 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x858f57b4 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x85a468c5 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x85a70b7c bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x85acd7bd rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio +EXPORT_SYMBOL_GPL vmlinux 0x85b4482b ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85d33bbb tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85da97b5 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x8601250f gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x861b055c powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x8627c5b1 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x8636b7e8 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x863e81f2 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x863f1fd2 input_class +EXPORT_SYMBOL_GPL vmlinux 0x86431e30 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x864dbf69 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x8654fd6d fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8668c9f9 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x86697eae skb_mpls_update_lse +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 0x86871b40 devlink_info_version_stored_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868e2f18 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8695d49e __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x86ab473f uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x86ab6bb7 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86c34561 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86e2b0aa ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f6cfa9 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871037ee pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x871c1587 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store +EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x87308b65 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x8735d876 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x873f0312 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x8748cb77 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x8797529b mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x8798306c pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x8798b63f init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x87c17df7 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x87d223f1 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87ea6b4f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x87f011e4 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x88066bec pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x8813461c md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x8813fd1b nf_ct_expect_init +EXPORT_SYMBOL_GPL vmlinux 0x881766c5 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x881a9620 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x88204a52 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x88419a35 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x8846a21d rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x8864f253 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x8878f885 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x8882398c __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x889d84ce pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x88aa6e8e regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b7e01e bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88d0b67f fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x88d3d93e gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x88eb7783 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x88f498b1 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x88fc1cc0 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x88fcd3ed do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x89135d3f __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8929afe1 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x8939afc9 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x893eea01 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89453c83 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89522dd4 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x89773ddc intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b448cb pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d34e63 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e442b8 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x8a0aa214 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x8a12ccde tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x8a19047a spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x8a1b1dc5 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x8a39a9ee blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x8a5f6602 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a798b73 ata_bmdma_irq_clear +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 0x8a84777d device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x8a89c245 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot +EXPORT_SYMBOL_GPL vmlinux 0x8a9a3b60 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x8a9a7f8e regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8aa7da64 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x8aab94a2 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abb50c4 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x8ac2f7eb blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x8ace60f6 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x8ad5a0c0 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list +EXPORT_SYMBOL_GPL vmlinux 0x8ad62a53 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x8adb3668 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8af063fb relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x8af968c8 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x8b0ae20c gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b15e6e9 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8b296ff5 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x8b323c88 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x8b35ece1 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8b390ed9 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8b391c9a nf_conntrack_helper_register +EXPORT_SYMBOL_GPL vmlinux 0x8b412554 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc +EXPORT_SYMBOL_GPL vmlinux 0x8b46e6ad xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8b4a1768 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x8b5340fc ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x8b592c38 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x8b5ef5ad usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x8b7251c8 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b909a55 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8b9a1228 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x8b9ba8fc mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x8b9e489a devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x8bccde3a dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x8bd4e7a4 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x8be0fc7d register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03c9d3 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0666bb vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x8c0b7427 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c0ef24c nvme_mpath_start_request +EXPORT_SYMBOL_GPL vmlinux 0x8c138094 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8c191cb0 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8c193c31 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x8c20d14c fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x8c2140eb devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x8c2ec113 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c3ea070 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x8c41952b nvme_sync_io_queues +EXPORT_SYMBOL_GPL vmlinux 0x8c4232b6 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4a3c1e watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev +EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c76f1b7 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x8c7b0e22 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8c80bca3 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8dbcf5 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8c98ac7c rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9cfad3 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x8cacd7a1 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8cb51b5b tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x8cd29fa2 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x8ce3041a __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x8ce98709 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x8d029d92 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d185a60 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d62a300 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x8d721c4c devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d839389 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x8d8431f9 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x8d8d1e35 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8dac2f98 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x8dadcbbe vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8de302eb crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8e01bc72 ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x8e1500d7 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x8e2619b2 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8e326092 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x8e39754c tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e54afbf vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6cc6a4 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7276e5 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8e73eb04 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8e7bf1a6 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x8e8ffe97 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8e90b295 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x8e96d193 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8ed1b786 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x8ed52099 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x8ed76fb0 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x8eea1109 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef278d4 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x8efe2ab4 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x8f045a7d sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f1823d4 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x8f2da423 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f334374 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x8f36a264 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x8f395869 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x8f3e0c75 pcie_port_find_device +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 0x8f8eab2d pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x8f910fde bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8fa79353 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fb24dd6 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fcef02d devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8fcf9b68 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8fd357e8 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8fddae2e __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8fe0af11 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8febcefb mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ff847c3 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x8ffd8c28 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL vmlinux 0x90186090 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x9019674a virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x9029afb4 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9042bda1 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x905205fe fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x90532212 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x906fe163 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x9070925e nvme_auth_extract_key +EXPORT_SYMBOL_GPL vmlinux 0x907a6aaa subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x9098677e power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90b72e4a scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x90c5c7b8 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90ebfedb serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x910c1fde blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x911a2f13 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x91266000 nvme_complete_rq +EXPORT_SYMBOL_GPL vmlinux 0x912ee69c mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x9142ed52 platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x9151c355 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x9159dade mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x915a32ae regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x9192154e nfnetlink_set_err +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91a36e0c synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x91ab8b48 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x91aca439 spi_mem_supports_op +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 0x91c85596 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91ca5d30 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x91d4bc1b page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x91d859a1 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91f4f79b vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0x920b6c36 pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0x920b9d5d dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x921ca274 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x922b367c nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x9236eb89 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x92384854 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x923cc4f6 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x9241f8b2 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924cbfe9 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x924f948d pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x9254ff7d udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x92640583 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x9289e53b ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter +EXPORT_SYMBOL_GPL vmlinux 0x92b659e2 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92b91ffb bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x92badb9d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x92cc3b56 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92dfc30a vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92fec977 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x9304ff58 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x930cdc52 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x930dd02b dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x9316e318 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x93288fa1 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x932a7299 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x932df843 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x933a73dd vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9345a2d8 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x934c4f40 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x93620545 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x9364c216 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x9377470c vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x93896844 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x938c6a91 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x93925645 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x9394fa8b pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d3dc50 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93e6405e skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next +EXPORT_SYMBOL_GPL vmlinux 0x93ec3d4a ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x9403be24 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x940a7a7b __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x9410f59d __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9429b382 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x942cbbb0 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x943229e1 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943e4209 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x944f018d bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x945060ee hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x9453d4c8 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x945ae378 device_release_driver +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 0x946ecf95 acpi_quirk_skip_serdev_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x947784c0 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x94888f4b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949e2101 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94b54a3b spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x94bfc3a1 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x94c50176 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x94d2c56f thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x94e5e89d pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x94e69123 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x94ecf9a4 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f39268 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x94f85df7 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950ae429 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x950c56e3 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x9510f6c5 power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x951686e1 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x9517a7bb pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951b342e __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x95226cda usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x9525f106 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x952d3097 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x953bfdd6 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9548c52f bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x954d8862 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x95540c1c __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955b3fca sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x95636de9 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x95669cfe wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x957202b7 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959389ac devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x9594ae5e rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x959e74bc nf_nat_helper_put +EXPORT_SYMBOL_GPL vmlinux 0x95a1ce7e irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x95b07423 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x95b5aef0 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95ca6b4a irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x95e8e809 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x95ed239e tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x9604aa5e __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x9621433d dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9652ab2c rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x96532fd9 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x966878ef devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x96699020 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x9692fddb acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0x9698b782 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96a66a15 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x96ac0ba5 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset +EXPORT_SYMBOL_GPL vmlinux 0x96c738e4 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96d04729 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x96d1492e uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x96d93b11 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971a0f5f __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x971c6576 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x971d0f36 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x972317e9 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x9724c993 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x972b5f81 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x972c8d76 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x9731fafa dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x974380e0 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x97478b8c sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9748f6b7 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x974b53d9 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x975007df sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9761cc31 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9769d810 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x976a7e81 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9783c599 nf_ct_remove_expect +EXPORT_SYMBOL_GPL vmlinux 0x9784716e crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x97869f21 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x978873c8 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x979b1679 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x97a63b90 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x97a853e6 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x97bf2527 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0x981d1a8a usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x982e84ad fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9835498a perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x98378a1d cc_mkdec +EXPORT_SYMBOL_GPL vmlinux 0x983c8ca0 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x9840fa1b rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x984836ab spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x984c264b kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x985f7e65 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x985ffb5f clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x98720490 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987bfb0e __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x988d6ed5 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98959b6a noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x98a63be6 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x98adcc49 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x98b9a3e9 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x98bf8c50 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x98d17467 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x98d9b739 nvme_set_queue_count +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98ef979c __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x99069e7b usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x99168dbe fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x991e701c devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x991ead15 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x992a68be acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x9939eaec __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x995b1c6b device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x996ba54b bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x99712aea access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x9987024f usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x999b3fcb relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x999f483b xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure +EXPORT_SYMBOL_GPL vmlinux 0x99a2b724 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x99a4d33b gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x99b160f7 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x99bf569d iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x99bf952f acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x99c855dc device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x99cee2f6 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x99e42072 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x99e8f6a0 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x99ef6fb9 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f78320 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x99f97e10 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x9a054eb6 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1ea309 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x9a1eede1 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a2851ef __SCT__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x9a328185 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x9a353caf __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5a03de vcap_chain_id_to_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a65eaf6 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL vmlinux 0x9a681254 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x9a77773e adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9a84a802 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9a88c363 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9a9cf4da da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9aa3be45 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9ac09a06 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac99303 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find +EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule +EXPORT_SYMBOL_GPL vmlinux 0x9ad1495a dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9ad55b99 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL vmlinux 0x9addfa21 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x9ae96f25 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9b042ee2 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b1657d7 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9b2a89ce kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9b3b1537 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x9b3bb859 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x9b472da0 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring +EXPORT_SYMBOL_GPL vmlinux 0x9b65ca3a pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b768201 modify_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x9b8811bb sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9aebed usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x9b9d6ba5 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba0b128 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bc847c2 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x9bd43697 __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc +EXPORT_SYMBOL_GPL vmlinux 0x9be13af7 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf45023 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x9bf7f350 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x9bf9099e fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x9c0262a4 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x9c0ddf2a nf_ct_kill_acct +EXPORT_SYMBOL_GPL vmlinux 0x9c109269 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x9c1a12bd nf_nat_helper_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c20e5c4 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x9c2a0811 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x9c3142ce sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9c4f9072 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x9c55ea7e sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x9c5feb96 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x9c6d81ec platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7d7d29 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid +EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location +EXPORT_SYMBOL_GPL vmlinux 0x9cb1a0e3 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x9cbc30cc device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc9b4fe tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9cce1079 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x9cd3fa59 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdae7e9 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9ce05629 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ce2140b regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ce5b3d9 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x9cf0bd0f nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf921a9 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x9d0543a5 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow +EXPORT_SYMBOL_GPL vmlinux 0x9d2d22ff xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x9d3930e7 dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode +EXPORT_SYMBOL_GPL vmlinux 0x9d5e5550 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x9d6539aa lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x9d66a35b dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x9d715b00 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x9d72f143 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x9d73d12a usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x9d776cd7 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x9d7a4ca8 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9d9d9d42 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9db3c175 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9dba0158 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x9dc62872 amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0x9dc9d7b8 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9dd28a27 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x9dea031a __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9e27605a report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x9e2d47c8 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x9e2fd8ee iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x9e3118fd nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x9e453576 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4b8b70 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x9e602b42 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x9e647cf8 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x9e7928c6 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9e7d375e fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x9e908a2e dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x9e93acc7 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9e975352 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x9e991278 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9e9c009e mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9eb252e3 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x9ecf6b8b device_move +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed63373 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x9ee50603 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9eee01c2 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x9f01c3a1 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x9f45901b regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9f4ebfe5 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f66cae6 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x9f890f1c irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x9f90d1a5 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x9fa05850 nvme_auth_negotiate +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9faa2737 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x9fb0688c ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x9fb1c088 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd3d4d0 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9fd71f07 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x9fdfe781 phy_configure +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 0x9ff1afa7 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x9ff1cf5c regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9ff386de crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa0041fd1 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xa00c4457 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xa01276cd pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xa01361b1 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa0240085 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xa0390634 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa05f9eed clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xa068e5f4 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xa07462af pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xa07f0a0c acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa07fe46f bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa088fd1e regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0xa0a1a3a8 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xa0a78ab9 rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0xa0aa035c wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0c9a754 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xa0cbb4f9 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa0d90fe5 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xa0dc2716 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa0e1d4cc raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xa0e31fb2 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa0ee2b9e pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xa0fe39cb sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1183b10 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xa118684c tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa11921a8 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa1416ac1 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15b8de5 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xa181ab53 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0xa182ae94 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1853e4c gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xa1b0c991 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xa1c3f8a8 __SCT__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xa1c586d6 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xa1d51f40 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1e429a8 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xa1fa66a5 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa201f953 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa223dccc regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xa2498b54 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa24e8685 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xa24e89c5 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xa265d29b perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa26da899 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa27cf1b9 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa28999fe devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xa28c5ff8 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xa2922aad irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xa2940432 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xa2a879c5 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa2ad7bd1 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2b31509 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xa2b3f53a edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e4e56d clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xa2f10106 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xa2f5e3eb inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa2f7023b static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa300dbe4 nvme_cancel_tagset +EXPORT_SYMBOL_GPL vmlinux 0xa30b669c kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xa326a742 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xa336ef51 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa34dfee1 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xa36327a4 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa372ae7a __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa379e963 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xa37b4cb9 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xa37b7483 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa3920403 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3aceeb8 pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0xa3b3dfd8 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3e48380 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3ee127b devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f31565 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xa3f95ed8 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41281e3 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xa41371e0 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xa419935b __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xa43dc77f usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xa447a82f __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44e5609 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4568b16 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45fdfcf da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa4617d9b ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xa469e4ad xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xa46ba57c balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xa46e7a85 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xa46f734f pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xa47c02ae edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4875935 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xa48a5e9e pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xa49e7963 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b61eab usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4d681d9 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xa4d8cb61 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xa4e38332 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa4e7f4b5 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xa4ee6130 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xa50ac712 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xa52511f9 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xa5292c71 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xa5312494 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa53d4fec da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xa549dbce fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa55f141f regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xa564756e samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xa5660194 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa56be546 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa56c6753 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xa57345b1 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa574efa4 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa5751ad9 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev +EXPORT_SYMBOL_GPL vmlinux 0xa5a7163c __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xa5b3cf5c dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5c5cbec __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d996eb irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xa5e7ae0e kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xa5ea22cb tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f2ed59 nf_ct_netns_put +EXPORT_SYMBOL_GPL vmlinux 0xa5f9ff57 nvme_enable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xa5fe975e pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xa60c2688 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xa617a76a udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0xa657c50e tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xa6594f4b vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xa66cf7f4 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xa68023dc fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa683b18e acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xa68c939a fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa68d1800 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0xa69f2c52 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a44c54 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk +EXPORT_SYMBOL_GPL vmlinux 0xa6b06e27 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b89e6c gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xa6baa3e6 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xa6d40efd sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xa6e0996d pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6f43494 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xa6f46cc9 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa6f89ec4 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xa6ffeff9 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa716283a irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xa71c10fa ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa72f36b3 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa741bcf8 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa754c6b8 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xa7569074 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xa75e7b3e netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xa77853fb bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xa787ac11 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa79db4fd udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xa7c5b59e vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0xa7cf6997 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xa7d14376 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xa7d49225 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa7d91248 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xa7e429f7 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xa7e89d39 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xa7f22fb4 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xa7fdfbca dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xa8111821 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xa8239258 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xa8239868 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xa8256753 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa8298ece kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xa82dc19b blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xa82e2b39 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xa83c9940 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xa84320d9 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa866ec46 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xa87f0726 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xa880d413 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8b5abdf pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xa8b7f673 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xa8be3ba8 apic +EXPORT_SYMBOL_GPL vmlinux 0xa8ce029c tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xa8d25c48 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa8d7a886 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xa8dad776 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xa8e1f540 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xa8e226f5 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa9017069 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xa9092f6e dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xa90a8cf9 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9230518 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xa926b80b ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xa92836a2 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xa9306486 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93c6271 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa9419d74 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xa94c6d81 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa9555ee7 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa95ccb1f usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xa95d8872 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa96330da irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xa967d4cc ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa97031b7 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xa9754247 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xa991ec49 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a7de2b ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xa9c231de ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xa9c47056 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa9ce81ef dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xa9d750d3 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa9dc1d6a clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xa9e8ac46 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xa9e9673f sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xa9ec98ff i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xa9f4fe9d regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xaa0106b1 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xaa01c50e sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xaa10de17 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xaa343aa4 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa6a8e0b xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xaa72b882 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xaa819f7c skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaaa4c4d8 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0xaaca1d79 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xaad40160 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xaad8f448 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xaae44d51 nvme_wait_freeze +EXPORT_SYMBOL_GPL vmlinux 0xaaf2596d vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0xab060795 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xab1566c8 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab21a7c5 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xab2e03d0 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xab41db31 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xab43d63d invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xab6014ab devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xab64d319 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xab68a6e7 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xab6b42e7 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xab79516c devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xab89ccb3 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL vmlinux 0xab8aa243 cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0xab8b3411 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0xaba51616 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xabbf6876 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcbe9c0 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabd21cf5 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xabd7b7fa __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xabd97cbf handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xabea68c7 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xabef6964 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xac069a20 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xac36b561 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xac525c0d wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac527505 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xac635ef9 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xac812d02 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xac87d01c power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xac88a8ac mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xac954d68 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xaca0e51d devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xacab681e fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0xacacbd44 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacca5e41 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xacde507d alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xace8f2b0 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xacf71cbc blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xad00cc34 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xad0adf06 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad4ea895 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xad4fcf7c srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xad54be33 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad6077c9 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad65d0de xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xad71f604 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xad7ad854 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad84d6f5 nvme_complete_batch_req +EXPORT_SYMBOL_GPL vmlinux 0xad8d50db perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada921ab __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xadbe4883 __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadef3694 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xadefaf35 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0xadf36f8d netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xae0c9c99 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 0xae1feb86 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xae230250 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xae238c58 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xae2c66fc class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3aab82 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xae53281a pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xae53b9dd wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xae572714 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xae60893c pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae9852a0 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeacace9 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xaeae4d79 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xaeb3ff1a disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xaecb77a1 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xaed07e63 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xaed36e0d skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xaed9c477 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xaeeb339c dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xaef0b7f6 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL vmlinux 0xaf09018d da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xaf0a7dae devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf0fdc8e sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xaf2f7162 nvme_cancel_request +EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf4adb63 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xaf6777db crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf81ea0a usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xaf848ae2 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf8c65e6 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xaf908b7c nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL vmlinux 0xaf9413fc nvme_disable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xafb07499 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xafb5ffdb udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL vmlinux 0xafc3c4e9 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xafc5a4a5 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafde4d67 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xaff2559d noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb03c0841 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xb042897b event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xb04695f8 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xb05a5772 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb078155f irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xb08234b6 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xb0917518 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xb0951de2 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xb09fcb00 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0f44dda bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xb1021823 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xb10b13d6 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb116aa79 ip6_redirect +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 0xb125d4d9 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xb134e3ea find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xb13d23cc ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xb16284b6 led_put +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb174fe17 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xb17b9167 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xb1888083 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb18cb4e7 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xb19fed0b pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xb1a950c1 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb1aa99e2 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1bf4bc0 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0xb1cc278f usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb1cf12eb usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xb1dbb554 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e551a3 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xb1ee8a94 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb1efea23 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xb1f5bd2b devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xb1f965af wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb1fd810b tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb2046523 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb225a37c misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24f5d20 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb271a8fb pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0xb2787ad5 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb2865bbb usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb28be2e8 blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0xb28e1df6 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2981151 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb2b29adb blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb2b516d0 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xb2bcefe4 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb2bedce8 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb31b06f0 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xb320410a devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb3637aef uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xb37434f5 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xb37b4b69 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0xb38c0960 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xb39235b2 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb39356f5 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL vmlinux 0xb39c8112 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xb3a1dda2 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xb3b89d5e ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb3d30eda rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xb3ddb43f kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xb3f00046 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb4054e16 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xb4306455 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xb434061d trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xb439afc0 tps6586x_reads +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 0xb45222b6 devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0xb488f958 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xb48e35bd __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb49342ac crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4b997c7 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xb4c548cd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xb4d50d98 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xb4d8fb38 devm_remove_action +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 0xb5093dd3 console_list +EXPORT_SYMBOL_GPL vmlinux 0xb5149a43 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb52158c9 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xb52d2b64 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xb52e061e posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb5386fe6 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb53b2a52 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb53ea3e6 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xb53f47d7 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xb54f1b79 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0xb555fea4 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xb55b25b3 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xb55d5d6d spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul +EXPORT_SYMBOL_GPL vmlinux 0xb56dc6a6 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xb5701801 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb58b9046 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xb5a0c466 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5b0ab98 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xb5c54281 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xb5c8003d nvme_sync_queues +EXPORT_SYMBOL_GPL vmlinux 0xb5db08a5 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xb5e1d35a __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xb5f8f127 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL vmlinux 0xb5fc1525 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xb61a1021 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xb61ffe9a dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb6202794 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62e0dff scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63587cb __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xb63b8487 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb6415ce7 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xb652f3fe crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb6591330 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xb65d5b16 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xb66936c3 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xb66f9c30 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb686f856 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0xb6881448 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb68c6601 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb6b5888a rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst +EXPORT_SYMBOL_GPL vmlinux 0xb6d6e394 hsu_dma_remove +EXPORT_SYMBOL_GPL vmlinux 0xb6d8a817 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xb6da6c55 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xb6dfc0ea iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xb6e2f1f9 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e7b062 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb6f13a14 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xb7060d5a mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xb712e930 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xb71d7c7b fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb7391fbb __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xb7470577 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb74c53d9 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb74d91a2 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb7591656 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xb7638304 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xb7793473 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xb7796a53 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xb7839a40 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xb7a2cb30 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7c1d77d ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c7094e devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e39358 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xb7e97b33 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb7f49f73 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xb7f8dad5 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb7fdbf2f __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xb7fddc5c acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xb80f88a9 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xb8101456 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb8311338 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb8364d1f __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb83ce47d genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb8529bf9 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xb8748c7b regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb878516f generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8908ae1 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a4d9da shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xb8ab68df intel_microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8c3a806 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xb8c76422 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xb8caa33f usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e7c161 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f3b5b2 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xb8fb7c98 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xb90db283 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb932f646 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xb9345f47 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xb935283e sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb972c76c trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98b0601 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xb9996bdd register_fprobe +EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0xb9a5df71 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xb9a7c1ae tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xb9abeaba rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xb9b67dab edac_mc_find_csrow_by_page +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 0xb9cd89d9 bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e4efb2 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb9f6d9c2 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xba0196d4 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba120844 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xba1212fe cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xba1adfb0 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2286cc nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba34d675 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xba3aeaa6 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xba3c82a0 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xba533c95 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xba568fca irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0xba6f9e04 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xba77de94 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap +EXPORT_SYMBOL_GPL vmlinux 0xba858fd6 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xba913a40 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xba941e58 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xba97763c tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xbaa397fc crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xbaaae723 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaca34e7 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf90873 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid +EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb05daf7 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbb07bf91 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbb44ba80 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xbb5006e9 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xbb551c38 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb690fc7 bpf_prog_select_runtime +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 0xbb78795a wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xbb7eb789 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbb80c54c relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xbb8763ed dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb9b6c6a call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xbb9ed13a crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xbbb11035 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbdb78cc dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xbbe279e7 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbe6d7dc do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xbbe99cc1 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xbbf12b12 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xbbfafed4 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbc149457 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xbc15b1f5 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xbc197de9 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0xbc1e8289 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xbc2b9d01 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap +EXPORT_SYMBOL_GPL vmlinux 0xbc35b3ba usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4768b3 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc635472 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc791b7b pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xbc7c277d fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xbc92596d intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcaad4d0 devm_led_trigger_register +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 0xbcd25f52 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xbcd84267 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce12556 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xbceaeeab _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xbceb4745 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf23196 icc_get +EXPORT_SYMBOL_GPL vmlinux 0xbcf905fe fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xbcfac756 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xbd01193e sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd2a8be7 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xbd34f55e dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd42897b dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xbd4a4536 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbd4f91db usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xbd699674 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xbd6f30c6 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd7ac86f anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xbd7d4cf9 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xbd88fff3 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbd9db25d clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbdab643e vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdb85ff6 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xbdbc439e unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xbdc55c63 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbddb402a hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xbe11ded7 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xbe2c0ea7 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe4f0914 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe562237 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xbe59aabe cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries +EXPORT_SYMBOL_GPL vmlinux 0xbe67436e firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xbe677295 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe70a148 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw +EXPORT_SYMBOL_GPL vmlinux 0xbe748b1f intel_find_matching_signature +EXPORT_SYMBOL_GPL vmlinux 0xbe76bd31 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xbe7d1f53 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeaa2521 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xbeb1bc61 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbebf0bf4 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL vmlinux 0xbebfd4df crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xbec0c798 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xbec35e47 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbed7568d serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xbeeee3d2 __nf_ct_change_status +EXPORT_SYMBOL_GPL vmlinux 0xbef1a646 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xbef2a87b md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xbef9588f device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0910ef __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf0db585 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf1d4376 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xbf1f5674 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf2ed646 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xbf41414b sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf5a15a6 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xbf5d5ae4 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xbf6017b5 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0xbf612230 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xbf6ee6b6 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xbf6f5c53 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xbf779b24 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xbf7978e7 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xbf933ce3 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xbf9d476f iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xbfa2d405 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbfb44e42 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xbfb4b139 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd11be6 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbff161d5 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xbff8cd76 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xbfff9fc9 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xc0064050 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc0070278 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc00e0460 nf_connlabels_get +EXPORT_SYMBOL_GPL vmlinux 0xc02f994d max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xc02f9cfb mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xc039703d pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc039e34b irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xc03aaeb9 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xc03c3ac8 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc06206f5 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xc06951bf kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc06bd056 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xc06c844c srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xc0855927 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xc088ff23 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0aa63b4 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0c33b7c crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xc0c36090 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc0c7f366 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e09ecf of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc0ead2fb tcp_unregister_ulp +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 0xc111162f gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc13c6974 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xc1530ef8 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc154bb0f vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xc16f285e mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17c9e03 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc181c869 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xc18498af __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL vmlinux 0xc1a5c644 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xc1b7975e irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0xc1c05ad5 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xc1f989cf usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xc1fbf25b debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf +EXPORT_SYMBOL_GPL vmlinux 0xc2147534 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc21f9fc2 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xc22297a9 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0xc2250f92 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22d499d xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0xc23a7b6b pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc25c1f4e __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc2606ee7 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xc264a175 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc273ee31 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xc2837e0b power_supply_property_is_writeable +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 0xc2950bbf misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2acc986 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc2ad8d0b devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc2b8a93e rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xc2c11dc8 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c1deb4 __nvme_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e5b5d5 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xc2f55645 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xc30f212a addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xc328fb0c hsu_dma_get_status +EXPORT_SYMBOL_GPL vmlinux 0xc334fb29 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3424e07 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xc342d689 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xc3434070 iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc34c9a7e devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc34cc929 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xc34f8a30 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc384ba29 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc38f6dfa pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc3948481 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xc3bda8cf debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xc3be773d dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cc4300 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cd6929 dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e1021c __SCT__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc3ea0f31 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f1b6d3 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xc4008d55 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42bb9f3 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc437c1b6 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config +EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister +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 0xc466a3a4 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xc46fb354 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc486709b irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc49c415a __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xc49d2460 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xc49dc6e0 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc4a229ff is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4ad273e serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xc4bb5da9 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xc4bbc7a4 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xc4c235c6 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xc4c8ba1d crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc50226ab sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc51475e4 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xc530f040 __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0xc53405dc ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xc537d8d2 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc54b3f9f fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56e598d power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc577419f devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc57dc598 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5b7a7de regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xc5bd085f devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xc5bdc78c bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xc5e6da9a irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc5fa2a87 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xc601908d i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc605f3bd inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc60b4ecd sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xc60ce586 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61aae72 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError +EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xc62bef31 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xc63ac3d1 nf_ct_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc63ef646 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xc64ecd27 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xc6522143 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xc6569014 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc658958d pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xc65bb7d9 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc680821c serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc68b2cc7 pci_cfg_access_unlock +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 0xc6ad0400 devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xc6b29ac2 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xc6ce28d7 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xc6ce9c46 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xc6dbcb3c device_attach +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6f1148b fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xc6f88e10 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc707a7e5 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xc7112913 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc71d40b0 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc753da51 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xc76585cd power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc790e130 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7b1f9ae dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7cdac03 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xc7d324b8 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xc7d743b5 nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7f1e3c6 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7f4252c blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xc7f6031f ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fa5fb0 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xc80b3bc1 usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8126340 clear_mce_nospec +EXPORT_SYMBOL_GPL vmlinux 0xc8173f5a spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc8302622 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc83da129 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc854a615 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85b2a56 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xc8652900 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87e4e9e regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xc88f55f6 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets +EXPORT_SYMBOL_GPL vmlinux 0xc8a1fadd ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xc8a5b06f __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xc8a83cb3 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xc8acdeaa check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0xc8b8fdf0 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e2e303 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc8ee3c84 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xc8eed202 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xc9027ef6 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9297067 xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc94d5aed xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xc953676f page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc98a5e76 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xc99668d8 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc996fe20 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9b687b1 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xc9bb48ac nvme_auth_dhgroup_name +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9dec089 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xc9e47209 klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0xc9e8651a devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xc9fdbe45 pwm_lpss_byt_info +EXPORT_SYMBOL_GPL vmlinux 0xca0086f9 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xca0ea3dc xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xca11ae03 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca473368 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca82d150 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xca8e79fc verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xca9a48fd inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xca9a9293 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcaa8f5c6 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabff803 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xcac3423d regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xcad895e9 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xcaef5df6 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcaf7bee0 unregister_fprobe +EXPORT_SYMBOL_GPL vmlinux 0xcafc3674 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb1bfc0f serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb349fa4 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xcb39603c nvme_auth_hmac_id +EXPORT_SYMBOL_GPL vmlinux 0xcb470aaf dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xcb51f56c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb5caa7b vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xcb6da414 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xcb723e63 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xcb7c82cb iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xcb7efa9d rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xcb82b6f4 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xcb85ce90 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcbb10d6e devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbcb2985 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xcbd2a680 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xcbd351ff ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf96b12 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xcbfd43fd pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xcc171eea dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc4364a9 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xcc50f90e fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xcc7607c7 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc79f152 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xcc7bb7cd firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcc7ef54c __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xcc8a6cf6 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc986e91 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccad8d1c perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xccc190c5 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xccc45411 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xccc9fe31 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xcccbc2d6 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce58c8e lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xccedec47 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccff8414 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL vmlinux 0xcd1e7762 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0xcd214e84 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd267daf gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xcd2a3ecb driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule +EXPORT_SYMBOL_GPL vmlinux 0xcd399aef events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xcd401939 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xcd4aa629 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd7c1fdc clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd87576e led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xcd8e35a9 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9487df vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc76021 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd3d587 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xcdde844d cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xcde02c14 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde701c4 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xcdeeabb3 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcdf4c4fd get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xce058d30 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce0b9299 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xce0bf357 scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0xce204c32 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xce25a471 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xce298d51 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xce2d0a50 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xce33bdd6 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xce37c61c wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xce4e320a acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xce543415 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xce57f131 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce776d98 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xce7cfa8c acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xce7ed0fa msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0xce85f269 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xce868d9b sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0xce9c8aa3 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xce9dbaee request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xce9eddc2 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0xceae38b3 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xced49c57 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcf01d5a4 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xcf1587c5 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xcf2467a2 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xcf2b93c8 __SCT__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xcf4ba593 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xcf4db5f0 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xcf508248 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xcf743f83 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xcf87dba6 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xcf8b9b51 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xcf933f9c genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xcfa46eac irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xcfa73708 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xcfa9a30a dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc5c7e3 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfcac39a get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xcfd1ec9c wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfeb0745 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xcfedc716 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xcff65009 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0xcffbde04 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xcffe4ff6 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xd013702d iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd017d08b driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd01d8ea2 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xd026ba1c pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xd030a233 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0439efa nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd0532b3c pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd0651513 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0702380 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xd07031ad init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xd07f29d7 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xd082df3b mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0aef3b1 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd0af245d do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xd0b5bdff crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xd0baf6f8 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0ce7db8 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xd0e820a2 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0fe15d0 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xd101fa9c nf_ct_add_helper +EXPORT_SYMBOL_GPL vmlinux 0xd107fe85 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xd10e2e08 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xd1138570 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xd1347ba2 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd137d526 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd13e4af8 dma_fence_unwrap_next +EXPORT_SYMBOL_GPL vmlinux 0xd14572ad usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd163779a crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xd1863c22 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd1882856 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xd1883342 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xd19b3c98 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xd19df825 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xd1aae3df blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd1c2a0f3 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d44656 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd1d64b33 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xd1e846ec dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f3cef5 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xd2011f56 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xd2046140 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd209f0b5 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xd20abc6b devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd20fe97e ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd2225253 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xd222873e regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xd23fef30 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd243431e sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd244c5bf __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xd246fb5b __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xd248ccf2 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd256fba4 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd263ac97 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2780326 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xd27e79e2 ip_local_out +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 0xd2a8013f usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2bb4fac crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd2bc0a11 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xd2d0d902 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xd2d1a0dd compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2e7192c vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xd2f2de58 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xd302621b divider_determine_rate +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 0xd33abca6 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xd33ffee6 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xd34af77a genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xd3613eba regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xd3644026 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd36906d2 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xd3741fb3 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd37463a1 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd37a84fb usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd3821476 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd389d7a3 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xd38a7b0f fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd395d151 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b0eb10 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd3b32233 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xd3d5f32c nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL vmlinux 0xd3ddc351 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd4005dd3 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd416cfec perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0xd41f5c66 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42862ce fwnode_usb_role_switch_get +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 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd457b4af fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xd4594a8b agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd4670eb8 acpi_unregister_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd476e7a2 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xd47f5f59 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xd48a89a7 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd49557a5 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xd4a32bdf devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0xd4a47704 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xd4a9aaf4 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL vmlinux 0xd4aecac5 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd4afaa93 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xd4b05d39 wbt_disable_default +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 0xd4c75d11 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xd4d15e94 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xd4e1870d xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f0335c of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xd4f474f4 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL vmlinux 0xd51b8813 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd51d6041 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd530f633 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd57257fa pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xd572b6e2 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd58a4435 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL vmlinux 0xd58cff2e nvme_auth_wait +EXPORT_SYMBOL_GPL vmlinux 0xd58db576 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xd5978e99 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xd5980f11 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a0c077 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xd5a2b792 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xd5b6dc8b sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd5d5965f devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xd5e252d5 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xd5e283fe sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd5ea6042 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd5f77448 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd606ea1e irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xd60729fb espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xd61e00de rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xd62b4d8b wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xd62da201 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xd637b959 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd658d486 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd6592a45 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd65be21d nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xd663c21d extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xd66ff92a smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6769d48 md_run +EXPORT_SYMBOL_GPL vmlinux 0xd6771178 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd678a24f ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6858c7f ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xd68d3b74 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xd69a7544 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6aca262 nf_ct_acct_add +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6b3cac2 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xd6b4b910 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xd6d18cc7 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd6d76329 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xd6d7f506 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd6da6c67 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd6ddaf11 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xd6df01f7 perf_get_hw_event_config +EXPORT_SYMBOL_GPL vmlinux 0xd6df75dd __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xd6e0decf vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xd6e404b1 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xd6ed25f0 acpi_register_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0xd6f5e720 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xd6fac579 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xd6fac771 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xd6fcdafc uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7135406 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0xd7187186 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xd72004ba power_supply_powers +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 0xd7327e70 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xd7474ba0 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd75510f8 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd76476dc of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd79e7f75 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xd79fc71a mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xd7a0ed5d dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xd7a61914 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xd7b6f08d srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xd7c3b34d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7e0f116 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xd7e1f5eb usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xd7ea97e1 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xd7f05e77 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xd7fd7955 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd7fda3c2 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd814816f device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xd81ec073 vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd833a948 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xd8381e1f __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xd84262d3 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xd847f065 io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0xd849098a phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8736674 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd87bb41d scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd87fa90a acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88defca __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0xd895487c iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xd8a445b4 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xd8ada48e invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8d959a1 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xd8f606a0 pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8f77eec nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd90aa554 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xd90eda18 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xd91c697c dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd922fc95 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd92d6be3 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd937263b pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xd93728b1 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xd93a32b0 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xd95f9e4a sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xd966ff29 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97b3999 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd98b7b20 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xd98c674f ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo +EXPORT_SYMBOL_GPL vmlinux 0xd99bceda blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd9a5aec0 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd9adbf5c gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xd9afdc7a debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xd9b3ac52 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xd9b8a11a phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xd9cc9ca8 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9d31a73 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xd9da0785 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9ef16ca input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xd9f84fa5 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0d1713 vcap_rule_get_counter +EXPORT_SYMBOL_GPL vmlinux 0xda1a2fc6 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda2034be fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda36505a fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xda3924fd mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xda4cf57f zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0xda597cc3 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda94cd1a usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xda996678 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xda9dc7b3 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa2272e usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdac27a03 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xdad108c2 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xdad56339 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdad6e9c4 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xdaed42a5 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdb0d08c7 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xdb157b80 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xdb1aaf9b arch_is_platform_page +EXPORT_SYMBOL_GPL vmlinux 0xdb21e321 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb67e466 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xdb6eaab6 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb990b95 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL vmlinux 0xdbbc3b9c dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbdda5a0 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xdbde5414 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL vmlinux 0xdbee7425 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf7fbd4 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbff6666 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc0266f0 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc068483 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc15607b crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xdc238ad0 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xdc422d26 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc4da135 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL vmlinux 0xdc560621 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xdc58272c l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc666955 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc8816fd gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xdc8bda66 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca61652 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0xdca8fbe5 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xdcd5b0a4 nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xdcd95132 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xdcddc3bc devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd1a26dd sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xdd2e2c6f devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xdd343994 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xdd42a1a7 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd469258 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xdd54eb2e unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd7661b4 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xdd7ba752 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xdd8489e9 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xdd94de79 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xdd9cd185 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh +EXPORT_SYMBOL_GPL vmlinux 0xddae7e15 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc78c37 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xddcaf354 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xdde3822c __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdde58102 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde19d9b4 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xde20744d icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xde2a152f vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde39c6b8 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0xde4a629e lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xde4d6abf phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xde4e62dd tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xde6c5bc8 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde8436fc tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xde95aa0e icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdeba4323 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdebfa5ce regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xdec63cce nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xded442b4 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xded89fcb gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xded912c6 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xdeddf397 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf028052 iomap_file_buffered_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 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf280993 nvme_unfreeze +EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack +EXPORT_SYMBOL_GPL vmlinux 0xdf382ed4 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xdf38d4f0 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf4d687b __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xdf52cd08 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf5bca18 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xdf6703e7 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free +EXPORT_SYMBOL_GPL vmlinux 0xdf936ceb ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xdf9563a7 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf95b394 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xdf9ee163 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xdfa85862 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfbe7650 vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0xdfc59999 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd2167a gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xdfeb8fda cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xdff96671 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xdff9ae10 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe00258b0 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xe00f1396 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xe014d926 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xe018fa29 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe01adbd4 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe01fdaa6 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe036f307 fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe0565138 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe05e04a9 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0604bdd iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe0802603 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xe0809212 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xe0809805 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xe081bcd9 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0a45e7e fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xe0a8abe6 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xe0ae87e1 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xe0b0d9dc dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b3d253 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0cc29aa tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute +EXPORT_SYMBOL_GPL vmlinux 0xe0de061f devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xe0e6ef02 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xe0eb48e4 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe0efb080 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xe0f1b704 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xe1055c71 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xe1084ce9 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe11085b7 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xe11c35b9 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xe13e3110 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xe144262b register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe1467560 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe14e9b46 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xe1536971 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe15da5af devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xe167fefd fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17cc532 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe18271d8 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xe186ae6f xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1aef618 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1c8d7a8 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xe1ce6455 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xe1defd76 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xe1e1aae2 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xe1e1f61f pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe1eea27b iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xe1f0eea8 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe1f30273 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe208c5cb crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xe2116661 pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0xe2177199 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe2272dde devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe22a57f2 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xe22b78bd spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xe2324d24 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe236a17e apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xe2418c26 lp8788_read_multi_bytes +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 0xe2753a89 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xe2897c56 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2a5b7b1 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2c7dd38 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d7ac00 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xe2e09003 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xe2e4506c pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xe31909e1 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xe32bd7b9 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xe3326bd7 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe34352b7 get_device +EXPORT_SYMBOL_GPL vmlinux 0xe348378c br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xe34e6ac8 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xe34f8802 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xe3638538 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0xe36848ba crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe36f4052 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe378b7ff thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe3895d97 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe391918a blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xe3940678 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe39d2ce3 pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3cdf1ce kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xe3da43ab component_release_of +EXPORT_SYMBOL_GPL vmlinux 0xe3de6e97 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast +EXPORT_SYMBOL_GPL vmlinux 0xe3e8e19b sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe411edad ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xe41893bb ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xe41bb192 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xe41d868a regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe428a0f2 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe434ab46 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xe44ec428 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xe46d73fb register_fprobe_ips +EXPORT_SYMBOL_GPL vmlinux 0xe46ec8c7 buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0xe473df94 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe47860e9 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xe4798d7b __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe4889d1a iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xe48a05c7 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xe49027d9 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4984a37 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xe4a13dad cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xe4a76648 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xe4ad1456 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b7b77a nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c94bde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xe4cd82ca vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f36e6b vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xe506c48f pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xe50af769 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xe5175704 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xe51e680f get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xe533c6a5 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe538ca8e __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xe53f60fc acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xe546786c led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xe5618604 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0xe593951d fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xe59ad475 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xe59fd932 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5b4ce4f screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d076fc pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5da1a34 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xe5ddee56 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xe5e7e75e scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe60e9555 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xe6132a09 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe66157d0 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xe66d65b7 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe674aa8f __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xe683841e crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xe69e9b2d sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xe6a20090 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xe6a39a70 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xe6aec2e4 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log +EXPORT_SYMBOL_GPL vmlinux 0xe6bf3fb4 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xe6e128a1 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6edf7eb regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xe6f057c0 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe6f3faae of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f7e593 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe70333c1 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7256a42 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xe727063a raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xe7336463 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xe733f68c ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe7383c82 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0xe742df5a class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe768901c pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76dab64 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0xe7824272 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe793f8b5 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xe7993f81 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7ae6d53 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL vmlinux 0xe7b4a3d2 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xe7b96be0 tdx_mcall_get_report0 +EXPORT_SYMBOL_GPL vmlinux 0xe7ccabb8 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xe7cd5e54 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e8c19c find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xe7eec3a2 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xe8012e87 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe8142abe sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8224165 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xe829af54 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xe82b2fdc pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xe8376b2f usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe8466457 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8539421 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe8560c43 nf_ct_change_status_common +EXPORT_SYMBOL_GPL vmlinux 0xe85befd3 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xe85f90f9 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xe8607819 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8710850 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xe87e1b4b sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xe899aca5 nvme_delete_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xe89ed387 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe8ae9a04 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xe8b5e85e powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c37a1b ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe8cfd8b1 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform +EXPORT_SYMBOL_GPL vmlinux 0xe8ea794a i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xe90c8bc1 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe913dbe7 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0xe91a6712 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xe921d647 clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0xe92470f2 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0xe92a1e26 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xe9365400 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xe9377c5a crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9416049 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xe963ecdd relay_close +EXPORT_SYMBOL_GPL vmlinux 0xe96ec5ac blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xe9851db2 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xe9947dff crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe997dd48 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xe99e39ba class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xe9b283c3 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xe9cc0f0e max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dbd422 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe9eddd1e gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xe9f0ec63 __tracepoint_neigh_event_send_done +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 0xea076e01 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xea08d7c7 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea22534e serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xea325f75 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3d0630 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xea3e8d8a __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0xea4621fe subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xea5bc66f debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xea5c56da gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xea8bbe33 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xeab46e2e iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xeac805ef ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xeacdb2f0 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeafa4b40 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xeb06c05c register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0xeb0e43e7 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0xeb149fdc pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xeb1b0511 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xeb23d462 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xeb25aea6 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xeb3963e0 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xeb3b8ee1 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xeb423167 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xeb4c6bdd device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xeb5b8e76 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xeb67518a crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xeb78512b __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xeb7a029a ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xeb7d2739 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb840847 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xebb63b9e ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xebb7a150 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xebbb2af4 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xebcc8184 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd5d0bc crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xebd9a432 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xebdb3ab4 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xebff1cba xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xec08fa11 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xec28584e n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xec32207d device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xec33d48d clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xec3c4fef tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xec3f6d73 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xec42a492 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xec47f813 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xec4d87b1 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL vmlinux 0xec9c3756 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xec9c9e70 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecc38dbf device_add +EXPORT_SYMBOL_GPL vmlinux 0xecccd7c2 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xeccd340b iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0xecd063cd iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecfded30 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xed0d0be8 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xed252222 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xed2c0c75 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed2f31bb device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xed32093c perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed408956 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xed46135c dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xed511b35 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xed6b0c79 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xed6d7b0f nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xed72c102 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xed7a2b96 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xed7e14f1 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xed812fb5 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xed815a4a fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed9e1c42 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xed9e44a9 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xeda4de96 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xeda52c51 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xedacf682 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xedaf685d gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xedafec02 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xedb34547 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0xedbd62ac bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd28ad5 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xedda9830 nvme_complete_async_event +EXPORT_SYMBOL_GPL vmlinux 0xeddc3f1a gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xede3d706 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedef8f47 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xedf04ae9 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xee014552 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xee0e6408 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xee0fc537 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee395217 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xee48783f phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xee504839 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xee7d540a ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xee847388 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xee91a0e5 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xeea49f4b led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xeea76283 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xeeae95a3 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xeeb08fb5 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xeeb15ce6 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xeec528bd __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xeec5ce28 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xeeccb87e irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xeed24c98 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xeedc1c39 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee3bb46 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xeee3d204 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xef0eaa94 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xef184372 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef24f865 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef390a64 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef474c71 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xef4f65b7 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef60055a input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef750a53 __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xef790201 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xefa29c03 __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb2e6ce devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xefe925f9 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xf025112f __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xf03897c2 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xf03e6347 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf0451ea8 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xf04e022f bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xf052e1cd nf_ct_expect_find_get +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 0xf06c2c5e md_start +EXPORT_SYMBOL_GPL vmlinux 0xf07a09a9 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xf07cfff3 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf096f823 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf09a5216 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xf09aefd8 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0a91e52 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xf0c238d9 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xf0ccf2d4 nvme_auth_dhgroup_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf0d1d3d8 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf0d27d6c phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xf0d4d340 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf0ddf42e nvme_remove_namespaces +EXPORT_SYMBOL_GPL vmlinux 0xf0f78800 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xf0fd0b61 x86_perf_get_lbr +EXPORT_SYMBOL_GPL vmlinux 0xf100887b devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf108235a crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf108745d led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf10dcb91 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xf125d3bf skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xf131e5ce sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf149a491 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xf14fca8c exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xf1553ef4 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xf156c9d9 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xf167d13d pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xf171fb0a devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xf1824c36 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf1a06b73 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xf1c67ca5 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags +EXPORT_SYMBOL_GPL vmlinux 0xf1d02798 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf1f245ed divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xf1f425c0 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xf207c21f fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xf208e3f8 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xf214b4d6 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xf21b441e raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf21f90c6 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xf2309918 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf2319326 tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0xf24f3880 nf_ct_helper +EXPORT_SYMBOL_GPL vmlinux 0xf25bbe05 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xf262c6f2 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2a235c8 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf2aa8ee2 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xf2e73dd6 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xf2e99a72 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported +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 0xf319cd4d usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf330bd0c sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf335537d iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xf33c2f36 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf35a459f put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf35b2298 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xf35f46f8 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf3684071 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL vmlinux 0xf38bf5cd crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xf39de1ec xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3a193fb wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf3a56bd3 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xf3b1f180 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b4f465 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3bda514 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xf3c79938 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xf3cb246c device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3ccc182 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xf3d140f1 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xf3e5c18f skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xf3eb8a0c __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xf4093094 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xf41134df dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xf4113f97 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xf426e0b5 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf431b0ec nf_route +EXPORT_SYMBOL_GPL vmlinux 0xf4485e88 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf45910d7 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xf4593a60 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xf45b0450 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf471b779 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47ce240 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xf47cea59 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4810701 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xf48f7b89 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xf49508df cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xf4aece86 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4bcc9df regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xf4c5c2c0 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xf4c89967 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d8cbb8 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf4ec39d3 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xf4f0c5dd __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xf50c0725 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xf5371b8b crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0xf547dbaa pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54e946f gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf558b57e rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf55f437e sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xf59f5afa irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a48f20 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xf5a5b098 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xf5a652b8 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a78291 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xf5b6195e pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xf5c586b9 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xf5d5213e blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5db55fc dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf5e32a3a gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xf5ea1ab9 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf5f214b9 thermal_clear_package_intr_status +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f6b4f6 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xf5ff2d1b dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xf61d244e devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xf63c0d23 fpu_enable_guest_xfd_features +EXPORT_SYMBOL_GPL vmlinux 0xf6403416 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xf649cca8 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf64f41de tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf6512dca dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf6526908 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xf662aeb9 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf66388bd gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf673b8b8 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xf6799cb3 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xf686f170 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL vmlinux 0xf69c734b ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xf69cf663 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6be1bd7 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf6c31806 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c86dce __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6ca3f8b serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xf6cabfd8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6fb9adc __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xf707a3fd x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xf708069d dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xf7113098 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf71c549f devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72f4d21 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xf73d5007 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf7494dd8 acpi_storage_d3 +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 0xf7559e36 of_css +EXPORT_SYMBOL_GPL vmlinux 0xf76217d4 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xf765be3e dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf772ec71 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xf7735777 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf77db297 tty_register_device_attr +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 0xf78de709 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xf7a76ae3 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b1e61c extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7ec58ce blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xf7f8893f usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xf7fbdf32 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf832bafb extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xf8437d9a fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf87bf03c rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xf87c5900 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf884cd26 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xf887671f vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xf88d609b metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf8942c06 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xf8a0571e kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0xf8ba94cd __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xf8bb9fab sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xf8bc0beb clear_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0xf8df7bce gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xf8e329e5 nvme_set_features +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf9048729 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf92a7782 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xf93de774 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xf94b0aec serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf967a17d netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0xf97326e1 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0xf9998f5b bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9b53a8f fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xf9b5cc8c generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xf9cc4298 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xf9dc1953 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9fc622b __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xfa0d1d53 nf_ct_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfa13fe98 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xfa146301 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option +EXPORT_SYMBOL_GPL vmlinux 0xfa266bd7 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule +EXPORT_SYMBOL_GPL vmlinux 0xfa3fbfd0 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa6a2c54 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xfa713873 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xfa79a274 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xfa840577 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xfa8ea827 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xfa991309 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xfaabaf77 inet_hash_connect +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 0xfacb1866 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfad9976e pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfaec8b61 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xfb095d3a inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xfb1939f1 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xfb1a5705 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xfb200735 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb34ae1c device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xfb3f07ca devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xfb42b55c acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xfb4842b3 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xfb5084f0 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xfb5d3bed usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone +EXPORT_SYMBOL_GPL vmlinux 0xfb615193 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb712ebc xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xfb764e57 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xfb8e2af3 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfbae1afe sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xfbbbd836 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbf85add phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc00e022 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc131423 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +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 0xfc412055 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xfc42903b nfnetlink_send +EXPORT_SYMBOL_GPL vmlinux 0xfc6863bf rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xfc82994c acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfc892240 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xfc8bcae2 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xfc98c8dc xen_percpu_upcall +EXPORT_SYMBOL_GPL vmlinux 0xfcaed33b nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xfcb40219 __get_task_ioprio +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 0xfcde5907 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xfce4daa5 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xfceebf9d ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd014e7b devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xfd12afa0 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xfd1cc37c vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd3f999d devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xfd4d7fc0 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xfd629222 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xfd69eb2c transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd73a908 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xfd741ac5 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd8a1d43 __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xfd9e9067 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xfda05c30 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc21065 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xfdcbcf26 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xfdcee763 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xfdd42ae1 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xfdd68b36 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xfde093ec pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xfde208ce wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe08bce5 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe1780d8 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xfe1ed648 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xfe202707 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3df53c debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe5b341b ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfe618642 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xfe67307b phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xfe6a85c9 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xfe71e205 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL vmlinux 0xfe7355ef cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xfe869a4a devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea416b8 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xfeae9c74 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xfebbd2e1 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xfec8b8d1 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xfecbd0b1 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed41ef4 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xfedbeaab irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xfee61160 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0bfef9 acpi_device_fwnode_ops +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 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff4ecbaa nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xff5dba7d ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xff626853 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xff666e63 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xff6caf22 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xff6fc73b sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xff795490 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order +EXPORT_SYMBOL_GPL vmlinux 0xff8874e6 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xff8b8adc devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable +EXPORT_SYMBOL_GPL vmlinux 0xff8eaaed usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xff9ab5fc usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb3adf1 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffddb157 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xffe1e36d __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xfff70e56 cpufreq_disable_fast_switch +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 +FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1deabad4 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x21a93546 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x27670512 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x30a1c442 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3165fc97 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x346f277b cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3c645165 cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3e0c9924 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4beddbcc cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4d6c1600 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x59f3edaa cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5f61698c cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7af2a5ba cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x80c1b5c2 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x99208ea9 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa66009b7 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xaba1e0cb cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xbae0a717 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xc8709a8f cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xd210f8b1 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xdaf76860 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xdb84363a cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xde5f1080 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xfde4aeb5 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x5e486199 hwmon_device_register_for_thermal vmlinux +I8255 EXPORT_SYMBOL_GPL 0x1ef35449 i8255_mode0_output drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0x77c830ef i8255_state_init drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0x7fe2aa71 i8255_direction_input drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xa62b7b4d i8255_set drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xb7712fc5 i8255_direction_output drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xd0600412 i8255_get_direction drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xd5e79ff5 i8255_get drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xf2519b77 i8255_set_multiple drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xffed47ff i8255_get_multiple drivers/gpio/gpio-i8255 +I915_GVT EXPORT_SYMBOL_GPL 0x03956f43 intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0d60e6e7 i915_gem_object_alloc drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0f0aafe7 i915_request_add drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1370f7e2 i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x16d532f3 intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1d76111c i915_fence_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x20ead6a6 i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x252298e5 i915_gem_gtt_insert drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x3860a016 intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x483bfcb6 _i915_vma_move_to_active drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x58b9f383 i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x5bc6a17b i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x67a73751 i915_ppgtt_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x687e57c8 __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x6ae6f5d3 i915_request_wait drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x78fc9189 i915_gem_prime_export drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7ca069be i915_request_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 0x8e55d311 i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x93d0961a intel_context_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x9599665f __px_dma drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x9935536a intel_ring_begin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xa26db7da __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xae43e2e3 intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xb32daf21 shmem_unpin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xb3b33cf4 __intel_context_do_pin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xb62cf0b2 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xba23ca81 intel_gvt_clear_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xbe55289d i915_unreserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xd0113327 __intel_context_do_unpin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xdeb59686 i915_gem_object_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe3126e4d intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xec169760 i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xf2f88e4d shmem_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xf95f90ce i915_reserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xf9f76701 intel_runtime_pm_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xfe14b64f intel_gvt_set_ops drivers/gpu/drm/i915/i915 +IDXD EXPORT_SYMBOL_GPL 0x5d9a6993 dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x77a38315 idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xb617e896 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xbd2e521d idxd_driver_unregister drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xd6b6a00a idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xe22f6696 __idxd_driver_register drivers/dma/idxd/idxd_bus +IIO_AD5592R EXPORT_SYMBOL_GPL 0x5144873a ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x71ab0de5 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x6cd297c6 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xac2cfc17 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x20e12b80 ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x78abe136 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x2dbb1972 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xb9897aa2 ad7606_probe drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x70bf4016 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x8c9180ac __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x41a8e9dc __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5292152b adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8aed65ad __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8c7120c3 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xa2af517c __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xadbf6a10 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbad12640 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc0f313be devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc1a727ab adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd57a0948 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xc5958760 __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x63d2b1f5 adxl31x_chip_info 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 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xb70c47c3 adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1d8d09c adxl314_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_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 0x02d6d6db adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4d2f5e0f adxl35x_chip_info 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 0xccdf7054 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x5f5004f3 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xe8e88300 adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x01a1a018 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1ace4069 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x352dbe6b ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x68375f91 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6feb1d58 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xaa7aa540 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xbd8f2692 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xbef4e196 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xdd7606fb ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xeba6b822 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x76909d7f bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xd0506653 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x1145f5dd bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x3bfb923d bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xdf1ccca2 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xed8365c0 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x584f47bd bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x787d5679 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xbe354c8f bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xcd917364 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x673190de bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x7af065ee bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x2688bb0f bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x94455dcc bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xbd4032ea bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xee1b2d22 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x83ba80f6 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0x3150f02a bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x1a58064b bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xf0dedb29 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xf1573bf5 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xf50ab0aa bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x77f2a230 bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xe0f5bfac bno055_probe drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x28d33968 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xc8168d6c fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xef6a9fdc fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x056e5588 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x05b9ab1b fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x1e53360d fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xa7b0c14d fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x2f14d3a9 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x3c0d0341 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3ccf6a9a hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4c40a4f1 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6260dc45 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x62e56c22 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x8ad03a8d hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x8ed6d0b8 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x90774fcf hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa570d4fa hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xd3dcb7fe hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd45d57a3 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7611c284 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x97e29adb hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xc487fc8e hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe829caa4 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x2f3fe7fa hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x650c9ca1 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x83688c90 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x1a1d8723 hts221_probe drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0x5bc64f9a hts221_pm_ops drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x20da37cb inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x5febe36e inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xee2b9c73 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x9af67a43 kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0xc0c2da69 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x61b4970b kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x655e6626 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xdab684e1 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x466a0691 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xed7efb62 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x01bbe271 ms_sensors_show_heater 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 0x2b0e5418 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 0x39971fa1 ms_sensors_write_resolution 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 0x453f67de ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x49205528 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x72d7940b ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x9c2e93d5 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xcd22db33 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xeaf34724 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x4328cbdd mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x9e37400d mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xd8de8c7d mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x11f3ea36 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2811b18d mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x3d447720 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 0x45cb0343 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4904a14c mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x6030c058 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x69277576 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7324d091 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7882236e mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7e8e5d51 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x97e30689 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb230f15e mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb669c715 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbc98f716 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xdc797706 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xe23b3224 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0x79f45107 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0xb437578a mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x402efb76 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x6d531729 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0xc69aee82 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0xebb1dca9 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0xc9333391 rescale_process_offset drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0xe9f5b7e2 rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x413cd6cf 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 0xabc98bb5 scd30_probe drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xdc1f367d scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0xb46b6140 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x3b1c12cb ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x433a3d48 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x5a81bb30 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7d95ea85 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x9d8f109d ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xabc51d02 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xc316277c ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xda4b4245 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_ST_SENSORS EXPORT_SYMBOL 0x03f1c89c st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x05c52807 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 0x27853b33 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x278b0dcc st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x39ea9037 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x575b3292 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x64cbeb79 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6a2265bf st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6c26acb6 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x76a5baec st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7a016d3c st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x7e40ff84 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x8d6b8b0e st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x95098366 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9b6c6de3 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9db2729b st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xa86adbad st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xaf747e2a st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb2850ccd st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xb2e81e9e st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb4e12683 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xbe581acf st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc65b4e4f st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd4902294 st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xf7abeced st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xfdd26717 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x84881e2e st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x3e86c1e3 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x64b0b988 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x319a92f7 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x39844675 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x5192d6c9 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x57e1f6eb zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x6c9489e5 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x9a110edf zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x5ca90405 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x8b432632 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x21329bc0 uncore_freq_remove_die_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x8c6c49f2 uncore_freq_add_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 0xf97b412b uncore_freq_common_init drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +IOMMUFD EXPORT_SYMBOL_GPL 0x00cbdbbe iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x066a53f3 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x06a22a6c iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x44188f45 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x53be2087 iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x6c5017c1 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x835c239a iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xd7509fae iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xf81730b9 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x54eb60ac iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x007f9f06 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x00fbf6f5 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0296862c iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x03b475d9 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x05a2c0c0 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x094b445a iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0cd2b18f iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x12b5e2b4 iwl_cmd_groups_verify_sorted 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 0x1971fb8c iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x23e5954c iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2527e0a8 iwl_sar_geo_init 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 0x2d0f8884 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x32234cb1 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x345ea4ff iwl_read_direct32 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 0x3a1a625b iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3facb747 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x46cd5332 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x487959fc iwl_sar_select_profile 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 0x4acbe25f iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4d946ad5 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4f9f317b iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x53ec920f iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x560bf095 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x56e0a512 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x575e4e48 __iwl_dbg 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 0x5a93853d iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5b092637 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 0x62f93688 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x635c3f22 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6712ddd2 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6a31a4e5 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e0b4eee iwl_configure_rxq 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 0x7ba6e9d7 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7e4de5f4 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7e7b46f8 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7ec9f1cf 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 0x85ff35b2 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x86686ea2 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 0x88312f17 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8e8cdaad iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8fa76d71 iwl_read_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 0x90576afb iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x92381932 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x981a0946 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x990d9d9a iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x99676c3d iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9e0799fd iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa3785dc2 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa5479a39 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa559c4da iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa6e4d00f iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb1ccef31 iwl_fw_dbg_read_d3_debug_data 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 0xb548d8a8 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb6d2dae2 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7a15714 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb900b88d iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb99897de iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xba09183b iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbee78f1b iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc65669c9 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcb4d8f56 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 0xcf905120 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd002e923 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd1fbd160 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd604e75e iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd6c66868 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd6c89868 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd933db32 iwl_acpi_get_object 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 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 0xee46086a iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf0ef0b69 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf1e99589 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf31c24b4 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf5ded71c iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf8776f47 iwl_sar_get_ewrd_table 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 0xfff27129 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x842ed430 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xc47953ca ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0c539f6b chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x21ef5421 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x278bcbe5 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x39e6fcf4 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x63267ec0 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6a4871e5 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x77e1aab4 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa0ede562 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb7bf1fb2 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbb986c4c mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc4d56040 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd0926bc5 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd980efef mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe986ce3f mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x071a1942 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x776a2969 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0xead996e5 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NET_MANA EXPORT_SYMBOL 0x057c988f mana_create_wq_obj drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x2e2dceb8 mana_gd_destroy_dma_region drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x7459e26c mana_gd_send_request drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x970d2c01 mana_uncfg_vport drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0xa9369701 mana_cfg_vport drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0xcf5422ad mana_destroy_wq_obj drivers/net/ethernet/microsoft/mana/mana +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x036f1f97 nvme_put_ns vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x40d9336b nvme_command_effects vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7448c484 nvme_passthru_end vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8607bdc0 nvme_ctrl_from_file vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9e71f1e7 nvme_execute_passthru_rq vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xcfdfb82d nvme_find_get_ns vmlinux +PECI EXPORT_SYMBOL_GPL 0x1ec549dd peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2879a780 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2f6447af peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x381b873a peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3d2bce79 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x47a73c38 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4e438815 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x53931c92 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5dc40a80 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5f6a5269 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5f98f413 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5facecd9 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6f4ca53b peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x707c749c peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7104297d peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8615609d peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8b73fd41 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa7c20719 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xaef81e8c peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb6903e81 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xba5ada76 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc04123cd peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc448f4dd peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc942b428 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd198c76d devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdba587d5 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdeecf780 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe8c916fb peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xedf95dd1 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x1977da15 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x52ce0529 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x71060bac peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x8dce170a peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x96a23588 peci_ep_pci_local_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x1c54e887 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2c20250b pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2ef7f25b pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3986fe54 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4c2f3cea pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5358c9cb pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7c289b71 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7ced6a9f pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8454f226 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x92e66284 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x98dce9c1 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9d8c7ff2 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa7085ff5 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xaa1c0721 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xaec8abf5 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc207bbd0 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc33436ce pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc61181a4 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xfee47678 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x32e8d4dd sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x66796cfb sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x6aca34d2 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xb85e3fc3 sx_common_write_event_config drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x0014ec9d hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x18069430 hda_cs_dsp_add_controls 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 0x8bbaee8f hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xd53cfe43 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x24fb1980 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x6547aabc cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x6d9743e8 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 0x02c7d277 acp_platform_register sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x61712d77 acp_machine_select sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x6bcf87fa acp_platform_unregister sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x778947d7 asoc_acp_i2s_probe sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x9eadfbda asoc_acp_cpu_dai_ops sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xd62fb6e5 acp_dmic_dai_ops sound/soc/amd/acp/snd-acp-pdm +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0xcf679b0b acp_legacy_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0xebe3ac81 acp_sofdsp_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x78fca6ae cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xa8029b03 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xdf34b99d 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 0xac70c448 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xe736aed5 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xef480504 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x45dd833f cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x48c1faff cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x497af2e0 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4a60cd95 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x905d4096 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb05e05a0 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb392615f cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc820347b cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd3db241b cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd3dee6f6 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf116a338 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x105590b3 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x0230f497 cs35l41_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x2c4c087a cs35l41_set_dai_link sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x000026ff max_98390_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x04617984 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x1908303c max_98390_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x597eda54 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x69652913 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x69cf8a19 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x771b604a max_98390_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xa17953c9 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xb76ba7f9 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xc7d9cfa5 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xd3cbe4dd max_98390_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe56e2d9e max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xf464c39e max_98390_4spk_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x489b8c5d sof_rt1015_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x4c05b6b1 sof_rt1015p_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x583fed93 sof_rt1015_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x6cf88c5f sof_rt1015p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x6eb828d4 sof_rt1308_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xaaf8190a sof_rt1019p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xaf5e1668 sof_rt1011_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xead4b2ba sof_rt1011_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x24cb3c0b sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x6ce3acb5 sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xb0274876 sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x07bd328d acp_set_stream_data_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x109159b7 acp_pcm_close sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x1af6da08 acp_sof_ipc_send_msg sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x2099d456 acp_mailbox_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x261ce88a acp_dsp_stream_init 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 0x37f0d089 sof_renoir_ops sound/soc/sof/amd/snd-sof-amd-renoir +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x465cf2f9 acp_dsp_block_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x4801c7b0 sof_acp_common_ops sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x5051436f acp_dsp_pre_fw_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x666c58d0 amd_sof_acp_suspend sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x78adb241 acp_sof_ipc_msg_data sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7a2f88f1 acp_dsp_stream_get sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7da6256a acp_sof_trace_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x968bf88a amd_sof_acp_probe sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x96c2de7d acp_mailbox_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xa624d500 acp_pcm_hw_params sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xa713f8b9 sof_rembrandt_ops sound/soc/sof/amd/snd-sof-amd-rembrandt +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb724ee53 acp_get_bar_index sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb7dd1483 acp_pcm_open sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb9264630 acp_sof_ipc_get_mailbox_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb9ae453b acp_sof_ipc_get_window_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xbf3dec63 acp_dai_probe sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xbf606ed0 acp_sof_dsp_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc92da26f amd_sof_acp_remove sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xda7115cd amd_sof_acp_resume sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xde4e8a4c acp_dsp_block_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xe41b14b6 acp_sof_trace_release sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xfd2d8b1f acp_dsp_stream_put sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x0f3da3da sof_client_register_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x2e2ee2fe sof_client_ipc_tx_message sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x325efdd8 sof_suspend_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x36167fc9 sof_client_ipc4_find_module sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4a5b37fa sof_client_get_fw_version sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x705fa588 sof_resume_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x96c90527 sof_client_core_module_put sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xa42aee62 sof_client_get_ipc_max_payload_size sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xb8ae1008 sof_client_get_dma_dev sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xb8f0e160 sof_client_core_module_get sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xbcada6a1 sof_client_dev_unregister sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xcdeb8890 sof_client_register_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xd2c43e2e sof_client_unregister_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xd3bc377e sof_client_dev_register sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xeee09835 sof_client_get_fw_state sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf3c40b3a sof_client_get_debugfs_root sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf64130a9 sof_client_unregister_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf8cb3326 sof_client_ipc_set_get_data sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xfcc7316b sof_client_get_ipc_type sound/soc/sof/snd-sof +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x211255c3 hda_codec_stop_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x330c1986 hda_codec_rirb_status_clear sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x3c8d2226 hda_codec_resume_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x48947ac2 hda_codec_check_rirb_status sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x55e3fa36 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x57c311b9 hda_codec_suspend_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x6e6c119c hda_codec_device_remove sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x70a35573 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x71d2beee hda_codec_init_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x968f27b3 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xe41a935b hda_codec_set_codec_wakeup sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xf55e3909 hda_codec_check_for_state_change sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xfcb0eb69 hda_codec_detect_mask sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x456430e5 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x641a0a65 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0xc16d38ac hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x020d234f atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x22e97781 atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x254f62cc atom_machine_select 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 0x5b80a28b atom_dump sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x94f63ff8 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb7585e33 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xc7be6845 atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xde75a477 atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe66ad024 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 0x003622eb hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x034c36f3 sof_icl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x1c6db9ac jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x1dd07972 sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2ba06a0a sof_skl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2ca78739 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x3ffdfd02 sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x41108048 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x443500cc icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4a350bd6 mtl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4eb521ba skl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x504577db sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x55c4266d tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7ea1d4ee apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x86e8a9f0 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x89092e42 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x9d4f92a6 sof_tgl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xa9741adf sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xba851a36 sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbfe31d68 sof_apl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xcdf45a66 sof_skl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xda796793 hda_ops_free sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xed4be31c sof_mtl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf0e6e41d tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x1f8b21f1 sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x2b1f0346 sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x550347e5 sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xcdfc48ed sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xa5a5d948 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL EXPORT_SYMBOL 0xc46e65c9 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x3f410190 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x7b91cb48 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 0xdf4daba4 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xfc868261 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2eb0841f dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x349469b6 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x51c449aa dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x77277f0c dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8857397c dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xaf312630 dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb35efd67 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xbf16e782 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd0b75612 dw_spi_dma_setup_generic 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 0x03711a9c usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x16424138 usb_stor_Bulk_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 0x29c12d46 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2e5b7ae3 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2f65b43d usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4396e1c9 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5e1640fc usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5e1f3d92 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x631b4547 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6f45959a usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x71b06728 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x72c5a914 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7325d79a usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7e3a89f2 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x804fc292 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x826208c3 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa4bf251b usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbc5e3765 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbe8b968e fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc6f31fb9 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdcf25ac3 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe4558354 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe65be769 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xef65d1c2 usb_stor_probe1 drivers/usb/storage/usb-storage --- linux-gcp-6.2.0.orig/debian.gcp/abi/amd64/gcp.compiler +++ linux-gcp-6.2.0/debian.gcp/abi/amd64/gcp.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 12.2.0-17ubuntu1) 12.2.0 --- linux-gcp-6.2.0.orig/debian.gcp/abi/amd64/gcp.modules +++ linux-gcp-6.2.0/debian.gcp/abi/amd64/gcp.modules @@ -0,0 +1,6253 @@ +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 +ad4130 +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 +ad74115 +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 +adf4377 +adf7242 +adfs +adi +adiantum +adin +adin1100 +adin1110 +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 +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 +advantech_ec_wdt +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_dwc +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-pmf +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 +anx7411 +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 +ar0521 +ar5523 +ar7part +ar9331 +arasan-nand-controller +arc-rawmode +arc-rimi +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arcxcnn_bl +aria-aesni-avx-x86_64 +aria_generic +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 +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 +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-phy-ptp +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 +bno055 +bno055_i2c +bno055_ser +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 +brcmfmac-bca +brcmfmac-cyw +brcmfmac-wcc +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 +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 +can327 +capmode +capsule-loader +carl9170 +carminefb +cassini +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +catc +cavium_ptp +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +ccm +ccp +ccp-crypto +ccs +ccs-pll +ccs811 +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-pltfrm +cdns-usb-common +cdns3 +cdns3-pci-wrap +cdnsp-udc-pci +cec +ceph +cfag12864b +cfag12864bfb +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +ch +ch341 +ch7006 +ch7322 +ch9200 +ch_ipsec +ch_ktls +chacha-x86_64 +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone_icn8505 +chipreg +chnl_net +chromeos_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 +colibri-vf50-ts +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 +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_hps_i2c +cros_kbd_led_backlight +cros_peripheral_charger +cros_typec_switch +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 +cyttsp5 +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 +defxx +dell-laptop +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-uart-backlight +dell-wmi +dell-wmi-aio +dell-wmi-ddv +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 +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpot-dac +dps310 +dps920ab +dptf_pch_fivr +dptf_power +drbd +drivetemp +drm +drm_buddy +drm_display_helper +drm_dma_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-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 +emc2305 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +eni_vdpa +enic +envelope-detector +epat +epia +epic100 +eql +erdma +erofs +esas2r +esb2rom +esd_usb +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +eurotechwdt +evbug +exar_wdt +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 +firmware_attributes_class +fit2 +fit3 +fixed +fjes +fl512 +fm10k +fm801-gp +fm_drv +fmvj18x_cs +fnic +forcedeth +fore_200e +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-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-i8255 +gpio-ich +gpio-idio-16 +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-latch +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_bcm4377 +hci_nokia +hci_uart +hci_vhci +hctr2 +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 +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-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-pxrc +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-topre +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-vivaldi-common +hid-vrc2 +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +himax_hx83112b +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 +hynitron_cstxxx +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-mchp-pci1xxxx +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 +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-m10-bmc-sec-update +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_ifs +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 +iommufd +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 +irqbypass +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 +kionix-kx022a +kionix-kx022a-i2c +kionix-kx022a-spi +kl5kusb105 +kmem +kmx61 +kobil_sct +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz884x +ksz8863_smi +ksz9477_i2c +ksz_spi +ksz_switch +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 +lattice-sysconfig +lattice-sysconfig-spi +lcd +lcd2s +ldusb +lec +led-class-flash +led-class-multicolor +leds-88pm860x +leds-adp5520 +leds-apu +leds-as3645a +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-is31fl319x +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 +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 +libwx +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 +lt7182s +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 +ltrf216a +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 +mana_ib +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 +max11205 +max11410 +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 +max30208 +max3100 +max31722 +max31730 +max31760 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +max6621 +max6639 +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 +mchp_pci1xxxx_gp +mchp_pci1xxxx_gpio +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 +mf6x4 +mgag200 +mhi +mhi_ep +mhi_net +mhi_pci_generic +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +micrel +microchip +microchip-spi +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 +msa311 +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 +mt6331-regulator +mt6332-regulator +mt6357-regulator +mt6358-regulator +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6370 +mt6370-adc +mt6370-backlight +mt6370-charger +mt6370-regulator +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 +mt7996e +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 +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_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +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_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_osf +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_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 +ngbe +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-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 +occ-hwmon-common +occ-p8-hwmon +ocelot-soc +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 +ov08x40 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov4689 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov8865 +ov9640 +ov9650 +ov9734 +overlay +oxp-sensors +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_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-epf-vntb +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-altera-tse +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-cy8c95x0 +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-meteorlake +pinctrl-sunrisepoint +pinctrl-tigerlake +pinephone-keyboard +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +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 +polynomial +polyval-clmulni +polyval-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 +pse_regulator +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-clk +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 +reset-tps380x +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 +rt5120 +rt5120-pwrkey +rt5120-regulator +rt5190a-regulator +rt5759-regulator +rt6160-regulator +rt6190-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 +rtq6056 +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_8723du +rtw88_8821c +rtw88_8821ce +rtw88_8821cu +rtw88_8822b +rtw88_8822be +rtw88_8822bu +rtw88_8822c +rtw88_8822ce +rtw88_8822cu +rtw88_core +rtw88_pci +rtw88_usb +rtw89_8852a +rtw89_8852ae +rtw89_8852b +rtw89_8852be +rtw89_8852c +rtw89_8852ce +rtw89_core +rtw89_pci +rx51_battery +rxperf +rxrpc +s1d13xxxfb +s2250 +s2255drv +s2io +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k5baf +s5k6a3 +s5k6aa +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +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 +sd_adc_modulator +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-leds-gpio +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 +smpro-core +smpro-errmon +smpro-hwmon +smpro-misc +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-rembrandt +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-pcm +snd-pcm-dmaengine +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-rn-pci-acp3x +snd-rpl-pci-acp6x +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-es8336-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-avs-da7219 +snd-soc-avs-dmic +snd-soc-avs-hdaudio +snd-soc-avs-i2s-test +snd-soc-avs-max98357a +snd-soc-avs-max98373 +snd-soc-avs-max98927 +snd-soc-avs-nau8825 +snd-soc-avs-probe +snd-soc-avs-rt274 +snd-soc-avs-rt286 +snd-soc-avs-rt298 +snd-soc-avs-rt5682 +snd-soc-avs-ssm4567 +snd-soc-aw8738 +snd-soc-bd28623 +snd-soc-bdw-rt286 +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-cs42l42-i2c +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42l83-i2c +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-es8326 +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-utils +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hda-codec +snd-soc-hdac-hda +snd-soc-hdac-hdmi +snd-soc-hdmi-codec +snd-soc-hsw-rt5640 +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-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-rt1318-sdw +snd-soc-rt274 +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-src4xxx +snd-soc-src4xxx-i2c +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-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-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-tas2780 +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-wm8961 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wsa881x +snd-soc-wsa883x +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-rembrandt +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-skl +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 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +spectrum_cs +speedfax +speedstep-lib +speedtch +spi-altera-core +spi-altera-dfl +spi-altera-platform +spi-amd +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-mmio +spi-dw-pci +spi-gpio +spi-lantiq-ssc +spi-lm70llp +spi-loopback-test +spi-microchip-core +spi-microchip-core-qspi +spi-mux +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pci1xxxx +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 +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_hub +surface_aggregator_registry +surface_aggregator_tabletsw +surface_battery +surface_charger +surface_dtx +surface_gpe +surface_hid +surface_hid_core +surface_hotplug +surface_kbd +surface_platform_profile +surfacepro3_button +svc-i3c-master +svgalib +switchtec +sx8654 +sx9310 +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_none +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_rtl8_4 +tag_rzn1_a5psw +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 +tc358746 +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_mt6370 +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 +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 +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps546d24 +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 +txgbe +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ublk_drv +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucsi_acpi +ucsi_ccg +ucsi_stm32g0 +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_adc +vf610_dac +vfio +vfio-pci +vfio-pci-core +vfio_iommu_type1 +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_snd +virtio_vdpa +virtiofs +virtual +virtual_ncidev +visl +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vmd +vme_fake +vme_tsi148 +vme_user +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 +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 +xctr +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 +zr36067 +zram +zstd +zunicode +zzstd --- linux-gcp-6.2.0.orig/debian.gcp/abi/amd64/gcp.retpoline +++ linux-gcp-6.2.0/debian.gcp/abi/amd64/gcp.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 --- linux-gcp-6.2.0.orig/debian.gcp/abi/arm64/gcp +++ linux-gcp-6.2.0/debian.gcp/abi/arm64/gcp @@ -0,0 +1,28004 @@ +ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux +BRCMFMAC EXPORT_SYMBOL_GPL 0x852ed8e3 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0x92b58d75 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x028c1238 counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x09ad2fa6 counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x3b89ddb7 counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x606fab06 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xe384b48d devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xea15136b counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xeab654a6 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xf4270dfa counter_priv drivers/counter/counter +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x051ca947 otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x0dca3884 cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x200a50b6 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x33180ee0 otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x356ec917 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3d2c240d otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3f99990e otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x522624e2 otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x5678d562 otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x5d8951f6 otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x65d873d2 otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x7cbe70e3 otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xa7c6b678 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb8615834 otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xf596d554 otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xf8c1b7dc otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xfa22ce3d cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x27d333d8 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x531c638e crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x87890e11 crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x0713d589 cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0c455792 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0dbe50d1 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x15a5ea12 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1b003b3d is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1c99150d devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x20919607 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x229b0dee cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x27590f97 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2bc89db1 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2d3f870e clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x319ec1fa is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x37e5eab9 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x38fecd8b cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3f29ed6e cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x44cdf3b6 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x47de837f is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x48ff086e cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x499b3233 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x49d36aab cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x509f3881 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x529a6857 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x53f3f5c9 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5b9fc4b7 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux +CXL EXPORT_SYMBOL_GPL 0x82d50411 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x847ecee3 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux +CXL EXPORT_SYMBOL_GPL 0x85cc8c16 cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8f7d2b59 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x91c2e436 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x92033477 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x93921b3f read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x987715cb cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9d492859 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9f6dff5e cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa26e9db2 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa2804aaf cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa410e4b4 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6f1d52f is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa824197f cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab0763d3 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xad2ec0b0 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb9c1d332 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb9c51f77 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xba477766 is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc3881056 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xccd4725d to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcd9de946 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd1a64ebc cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd44594c7 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdd6cb77e cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe23b5f54 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe66e04ff to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe6e9968a devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe8319187 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xec514e02 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xef9af505 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf0888710 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf95581c1 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfbac673e devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfdb043fd cxl_port_to_pci_bus drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x001210b3 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x093839f3 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1ae6d600 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1f16d8f0 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x23ab74a0 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x29fb9f7e dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3595550f dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x39bf1932 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3aba1647 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x43db851a dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7ae8ddfa dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x869ebf4f dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x872f181e dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9a2641bc dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa0ce728f dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xbc15ee71 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc2c7d920 dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xcb5661f8 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe77161cd dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xee4d6f59 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf04595a1 dma_buf_map_attachment_unlocked vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x2303b915 efivar_lock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x5a3c9dbb efivar_get_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xa336852c efivar_get_next_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xc961bff7 efivar_unlock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xefc77711 efivar_set_variable_locked vmlinux +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xf37ca3eb 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/crypto/sm4-ce 0x0fca045b sm4_ce_expand_key +EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0x7155f33f sm4_ce_cbc_enc +EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0xe609a0d5 sm4_ce_crypt_block +EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0xed1f9633 sm4_ce_cfb_enc +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 0x16b7fc5f crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x1a86f1df crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x20e7d0dc crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x4435edda crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x7ac0d1aa crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x7ca6a938 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/sha3_generic 0xabd678cf crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0xc93f8e5c crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xe7b0b4b4 crypto_sha3_update +EXPORT_SYMBOL crypto/sm2_generic 0xbe477bca 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 0x103735ba acpi_video_report_nolcd +EXPORT_SYMBOL drivers/acpi/video 0x15c048b5 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight +EXPORT_SYMBOL drivers/acpi/video 0x59804f6b acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xab17113b acpi_video_backlight_use_native +EXPORT_SYMBOL drivers/acpi/video 0xd1aaf8d4 acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x1e08eecf suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x61277356 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x7749c2dc 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 0x04d960b8 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x1bdc5121 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4288ae5d pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x4b08c28c paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x500ce9fc paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x766a28b1 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x9a096d81 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xa64f8735 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb9c99cb4 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xdeec6862 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xfc58c00f pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xfcde5454 pi_connect +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa27e077a btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xf345a9b5 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xe31dd74e 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 0x0f758285 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 0x47657573 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 0xa072123c 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 0xf753d13f ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x01fae108 kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0485a25f kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0fe6a262 kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1601484c kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x2d550003 kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x87923103 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x8d042daa kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa16b8280 kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa6687e67 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xad611924 kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xb9f78328 kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xca396858 kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xdebf8fce kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x56ece3d7 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8dc3adf6 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc408e385 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd1178e97 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x4c9b1af9 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa38373a1 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xbb9606b9 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1207e84a xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1d37d888 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd8d2aa6d xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x5816750a atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb049cc3d atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_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 0xed569939 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/caam/caam 0x0e3ee15f caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1941003e caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0x219bf7f8 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 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xd68e6306 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2fa79963 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x5b483817 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7ed19c26 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb7e4266b gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xbb9e623e caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b0c587f cnstr_shdsc_rfc4543_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b7bcab8 cnstr_shdsc_rfc4543_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86bcdec7 cnstr_shdsc_xts_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x88430d4c cnstr_shdsc_aead_null_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x91ac0969 cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa3115081 cnstr_shdsc_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa340e264 cnstr_shdsc_aead_givencap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa99d7fa6 cnstr_shdsc_aead_null_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xebcdd349 cnstr_shdsc_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf92c5da5 cnstr_shdsc_gcm_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf95bcf62 cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfd807e48 cnstr_shdsc_rfc4106_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfdf7ec8f cnstr_shdsc_rfc4106_encap +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x249eb8cd dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x29fdaa77 caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x60dbc82a caam_dump_sg +EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x7681fdef xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x02825cbe fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x335ff85f fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x34b4b4d4 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x34c7dffc fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x40f125fd fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d36a851 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5712c0b4 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6a93ea82 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c613678 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7c71926d fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f63c83f fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x831e1b80 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x83b8eacc fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x93ccc83e fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a303199 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9c4ce6a4 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa55e2b0d fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb220ec8f fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc30d9a6d fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8df7dbe fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe919523e fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xead13fdf fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xee203987 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf007ba2c fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf9ac4aec fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfcd96572 fw_bus_type +EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0x57b73b33 tee_bnxt_fw_load +EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0xdfaff93c tee_bnxt_copy_coredump +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xaee2e3dd imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xe29a4ac4 imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xfddb25e6 imx_dsp_request_channel +EXPORT_SYMBOL drivers/fpga/dfl 0x18b0dad3 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0x920df79c dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0xb88d15ad sysconfig_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 0x02624d60 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05a317cb drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05fe3dff 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 0x08ac58a5 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b487a6f drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x15003f87 drm_dp_aux_unregister +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 0x1675d883 drm_scdc_read +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 0x17fc8fe6 drm_dp_read_dpcd_caps +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 0x1c08238a drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x200de204 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x22dde8ee drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26686a59 drm_dp_pcon_pps_override_param +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 0x28f9bebf drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29fbe227 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2a0055fd drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2b98584f drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2db7552a drm_dp_stop_crc +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 0x305c2cad 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 0x3eb53980 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4026cc50 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41b8283f drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43d561a5 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x44316759 drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x44a7e978 drm_atomic_get_new_mst_topology_state +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 0x4848db33 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4dc9811f drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e35e313 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x50c79617 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x51baf3ab drm_dp_downstream_debug +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 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 0x5a55c6fc drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a86f411 drm_dp_phy_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b9e5677 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5eadc9ae drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6065b516 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x61723fed drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x61f2ef99 drm_dp_mst_topology_mgr_suspend +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 0x64d090a8 drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64dc77d9 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64eb265e drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6504216b drm_dp_pcon_hdmi_frl_link_error_count +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 0x69512da6 drm_dp_cec_set_edid +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 0x6b8f42e1 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6ef497e0 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f35044f drm_dp_mst_connector_late_register +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 0x75af45b6 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x761ad34b drm_dp_downstream_id +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 0x78f346c5 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79e82d29 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79f03c99 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7f97d2f0 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8461dc2a drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x85703f63 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8604bde9 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d4bca4b 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 0x8de39785 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f498e1b drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x912c9343 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x916c94d4 drm_dp_set_subconnector_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 0x92e06363 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9e5f9ef3 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9ef06474 drm_dp_link_train_clock_recovery_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 0xa32da118 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa6f1c461 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa8247fe6 drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa9dc899d drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xab9e78d2 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xac9f54c3 drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb1256acc drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb2d181f0 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb2e63051 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb36211dd drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb3de768b drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4572ea5 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb6a7020e drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb78a8bae drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb8833021 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb9ec9a7d drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbd6f57a4 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf2b8c0b 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 0xc034070d drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc14a1935 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc1941661 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc49b3747 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5a80b83 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 0xc6d3c2ee drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc72cdd3b drm_dp_send_real_edid_checksum +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 0xca75c8bb drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb310559 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcc4a2184 drm_dp_mst_update_slots +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 0xce8466a1 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0339d58 drm_panel_dp_aux_backlight +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 0xd5cf8f9c drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd7646354 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd782d3f3 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde5eb3cf drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe081fa88 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe1ab985a drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe361fa70 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3c742a7 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4a00e07 drm_atomic_get_mst_payload_state +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 0xe5b49e27 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe8bc9f96 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb59946d drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeba9598d drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec3f1efe drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0f2aff8 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf126d270 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf3dcdc5d drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf48cec60 drm_dp_aux_register +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 0xfaad7ac0 drm_dp_mst_topology_state_funcs +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 0xfc96507c drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01370e52 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0139eadd drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x014610cc drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x015476cc drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0243e8c7 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0247f6a9 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x043e3438 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ae7e78 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0509f3c6 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x051ad90c drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x061a422d drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0661cbdd drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07a385a2 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e75bb6 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x085a617c drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a2bec04 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a5fe5e6 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a773c65 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a9edd17 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0abe4eaf drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b042537 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7b4dfa drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7e5e28 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cabc0a7 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d96a9f3 drm_atomic_get_old_private_obj_state +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 0x0ef1ad17 drm_writeback_signal_completion +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 0x109779d2 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10b59ec5 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1266147a drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12d4fb0f drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1362c07f drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x147805ac of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14928d54 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1571d886 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18c1e16d drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19339b1e drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x197fabfd drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19f58f94 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b80c33a drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba91af8 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c1445f5 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d7ee2e4 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eb6d848 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x206c60c2 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x213eb31c drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21581b3a drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x219cc585 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2244c861 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x228610f5 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x231ca29b drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2382252b of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ba1855 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x248b09c6 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2492aa37 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cb7390 drm_connector_attach_tv_margin_properties +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 0x25249334 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a77cfa drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26ffea72 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x283d7721 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x285fcbda drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28cfe316 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a1864a1 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a340827 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a7b94bd drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aea75f8 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b55375c drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c2de934 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c6e1352 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d2e9476 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d510506 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d7c3920 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e547f84 drm_bridge_chain_mode_set +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 0x2f8e7731 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb691b4 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x307a21b1 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30eb4ffe drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31af5681 drm_edid_read_custom +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 0x32b94337 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x333795e9 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x338ea6aa drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33c9625b drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x353f9908 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35409265 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e89252 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36802812 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36e42458 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3763da50 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37778814 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380ebed0 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e79574 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38fc94e3 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x393367f4 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free +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 0x3c44e581 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c90b914 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d0dd304 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc734f0 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42e2c309 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4455a720 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44b2ec63 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44f8ef97 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x459b668d drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45df4407 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x468b7412 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f740b2 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a8d482 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48bf276e drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e89b87 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a3e9900 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab3c621 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4acade23 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5a7153 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c707437 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ccacf36 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9eba6f drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e5ea6e0 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e8b2c2f drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ecfb400 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f09e61e drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8d574a drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x502af9e7 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50d322d6 drm_writeback_connector_init +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 0x53171ebd drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53a47740 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c5ab47 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54231b2f drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5452ba9a drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5477e993 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5666cb54 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5666d5e8 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56e5515a drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57291ca5 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x577598db drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57c48730 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f756fa drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58ff5d70 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59017c16 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x594227d7 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5abfa648 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e882b93 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eae67cc drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6052d13d drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60c621e5 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6176713c drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x617b91c1 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629cf813 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6340dc1a drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63527271 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x646ada8f __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64f7398a drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64fecda6 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6513c23b drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65dccc54 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x662ef650 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67ebf4a7 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x686588a5 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68e67d17 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6955331c drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69690dd9 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a3959df drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ae9e15d drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c20ee3f of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cc3fa2f drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dcde2fe drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e11a0cd drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e2ad888 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f49fdad __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x709ef969 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x714f2df9 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7239e31c drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x733eea4f drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74139be1 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74669520 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75318487 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7577cdc4 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c085d7 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78bcb8f2 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79443768 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a37d33b drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b57f249 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dc0287e drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6ac4ec drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f9bb30f drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7faeb526 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x801a0d12 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x807817fc drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81676d69 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a433dc drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81edffcd drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82253708 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c4115b drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84c99c1d devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85346a04 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8534b204 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8686e8e8 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86aff120 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86ba3aef drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8982d320 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89fc1bab drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b973c8a drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ba66264 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ba918ed drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8beed5dd drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c0d5756 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cbfdbd6 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e60fb24 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef4d132 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f1b1d17 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90240b19 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90ddf872 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9171c262 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92345f70 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x924fb8c8 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92c11cfe drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9323a29c drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93474bdf drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93bd5a76 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93fb8566 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9439d81b drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94b3e3ef drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x960b2627 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e5b18b drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x973bf1c9 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97853f76 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9793e512 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98a6a7e4 drm_panel_init +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 0x9bbb8675 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c3122b8 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c34e987 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9caec25b __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cfad68b drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d8c8d6d drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fc18c56 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0844c07 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c6e244 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c7c1cb drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13ceea9 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa168e745 drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2648dc8 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa31968fd drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e9a200 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa44b7a55 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa493e163 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ca6dff drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5daa6ba drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5fa0744 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa643f429 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6e50b1f drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7044fd9 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa74de4fc drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7a93525 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7cae332 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9114c80 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa924c49b drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9880871 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa98d3eca drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9f70cb7 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa5a78ba drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac73c09 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaad13590 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab8bc531 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabd8b34a drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac7bf806 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca0eef6 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca39358 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacacd5fb drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacc5605a drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadadc880 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae8a978e drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaec92d92 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaedccc1e drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafcf0fa8 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06413c6 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06429a7 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ee1ee9 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2127d3d drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d0e9bd drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb408ba70 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb58d9f8d drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb645d1f7 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6bcf3cd drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6efdfc0 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb762b9bc drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8837c93 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb8eb09b drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc2e384c drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd95e601 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe64e3e8 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf628bbc drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0228eeb drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1032de4 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1fbe8eb drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d0283d drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2da2324 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc30a81bb drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c2b2ff drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6b85356 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6ec64d8 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc744c9f0 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc79c0178 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc972de2c drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca2aeb1a drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad82fde drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2d5a51 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc1cccfb drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc31380e drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccbca9dc drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccfbca9e drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc33683 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce2cdf75 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd039c6e6 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1a0a5b9 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2407d22 drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3cd4da3 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd44a3cc5 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd58e6c3a drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6b5f16a drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d57003 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8076f4a drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd86f9251 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e70686 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f78324 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda37f110 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab04895 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbab6556 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbfe6ba7 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc96814b drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeccdd2c drm_client_rotation +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 0xdfb0da44 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe08a382d drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2623492 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b7037f drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d313b5 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe36b4fb1 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe38eaf81 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4e8f58e drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4f2513a drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe52281e7 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5366922 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6ad9ed3 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e9f4f8 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe88e1ddb drm_bridge_chain_disable +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 0xe8d2d689 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe955eae3 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe959f1bd drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeacad6cf drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeacbb9b1 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2d5660 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb777a4a drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8c9809 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeca1e8d5 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecea139c drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee6de87e drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee8d0f73 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0967ebe drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1d1b0eb drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2d454ea drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf34a778b drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf37f5ead drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3e59d56 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f4108b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4ee80d2 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5030ae3 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6592df1 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf69ee022 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6dc5c00 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf745c853 drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf779013d drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf89485fc drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8e2521e drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8eb0245 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2e3e17 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfac6b709 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb8a09cc drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc6d83c3 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcffa3dc drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd42375e drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9c92e8 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe2219ca drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffac1def drm_gem_lru_remove +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_dma_helper 0x2e67b5d0 drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xc02f1b8e drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f8f363 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0241bdd3 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x027757ac drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04374356 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0447deef drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05703ec1 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06560685 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0793e5f3 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07b6c321 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07eb9a49 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08290490 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08360bfe __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a83edcb drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ad568ed drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c990a2b drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c9c4927 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ce61898 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0faed28f drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1111e714 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x138af70c drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13af3a9c drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x143f5f78 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1663330a drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16b1a926 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18f1fd85 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x197fcc6c drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19fb27c9 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a75a787 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ce721e8 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d014e45 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d2b2df7 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f6923ae drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x205fb136 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22ed18cb drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23345f0b drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2347c15a drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23e44ae1 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2485603a drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x263c8011 drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28e02d05 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a87064e drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d3bca9a drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d66b8f2 drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ef71ba2 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f1b6c7d drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33330061 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35b4d2e6 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x379a57a4 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a28a9bb drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b37b751 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bdfde1e drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cad0c2a drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d8d3604 drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eca2bca drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4361230c drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4413a6b1 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x454cc454 devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x461ce3fa drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46660e03 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e95d75 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x491eab7e drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a2c2fff drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a3b232e drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a5b3bb5 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b4315fc drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b54bc98 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c298d24 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d33b52e drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ff7d6ee drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51aa514e drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x543c3172 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57873aea drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x581e8f71 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5872fc2e drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d9e539 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a3d8635 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cb6cc0e devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cdecd4a drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dea9af6 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e08d5c0 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f26f2ac drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6028d52d drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60aaeea2 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62fa2c5e drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6347c718 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6360c78a drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6389e008 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6392aaa6 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64ac1905 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64d8fb85 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65b45e45 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66dc62fa drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x674964b3 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68bdb0dd drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a7a9250 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b08c35c drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c8f9571 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cb524a7 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d685150 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x707517c3 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71127076 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71572144 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73b28c46 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74d0450f drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75d36b14 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ec3539 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x783bf339 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78bb0aea drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b5b66d1 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c2680b3 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f05c4e8 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f16cc61 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8054d33d drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82bb7285 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83af929a drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83f9f1e1 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x856194b4 drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85cd16e9 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85f5aec5 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x865f3b03 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x868e04e9 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x884223f6 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88863c32 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a351c1e drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ba1a98b drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c96d018 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dcbbeb1 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ea8db2a drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f76869e drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f7e0051 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91c1ae3c __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x930602f7 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93c1d5eb drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94aafdab drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9565c3a4 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95da0b02 __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 0x9d497cc7 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ddfd134 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0edd048 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa217d27e drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa49f3701 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4f7bea8 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa845191e __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8849eb2 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9e49769 drm_fb_helper_cfb_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaac5213e drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xada17a7e drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb36eb93d drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3702e23 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6404cf0 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb67c7e73 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7ff164b drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8f76d72 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb92533e6 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb6f1f2c __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd867c06 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdedc97f drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc04435b0 drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1f20e3c drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2032d40 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3286297 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc863c7fe drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca5b7bde 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 0xcca28227 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcea83949 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xced17df2 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1b6b75e drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3623423 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd457852b drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd53330c1 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd58453c7 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd902524a drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda438620 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd84fa03 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfb343a4 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1a242eb drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8a85a0c drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8aac50e drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9983c63 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9984090 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9b224af drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9b7a0c3 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9d8c918 drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedb02d64 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeeeb1b6c drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0f76b55 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2eaf2d8 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4d6fba0 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf56ab004 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7792fc1 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa01e0a3 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbbf635b drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc54fb40 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd10d8ec drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd4bcb5f drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd7ad640 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff8af171 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0df23cd8 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2b6bd4af mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4bd53bc5 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x64bdb8f3 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x653f44ff mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7499c463 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7620d79a mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x786e5c75 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x85590158 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa1596589 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa6b24dd2 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb911e840 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbacd18ca mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbae8ffa9 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcb9cc4a0 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd6d1cf5d mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe98b6a94 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf147ac01 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0c1641b0 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2a2fe82f drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2f0cf868 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3eaa2937 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x8d592ef9 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x97b247b0 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc79788aa drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xce98e57a drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdec6c3cb drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xee6bd3e1 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x530106ac drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9159579d drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc72010da drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd7ac1f66 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xdc0e575f drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x027b885b drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x12a24275 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x150370f3 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1a5d71ff drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x30380978 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5de18e3b drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6391b848 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x69c11f98 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6aa33e45 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x74d5a216 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8137f991 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9914d932 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaded6648 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb565c6ca drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf065ce6a drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf578e2c1 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x39530035 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0cfdfdd1 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b07292b drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x247569a3 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x27804488 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x38f185ca drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x40c9a771 drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4cc67fc7 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5ad65585 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7aa1523b drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa351865e drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa94e6830 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xab4a3f8b drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb2825f40 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xba1d0237 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbc624e85 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc2556880 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc948705d drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcab5b681 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcba968b6 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd637b0c0 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd789b27a drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe7edfd44 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf80fe032 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfe676f09 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x106d459e sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x3f26adce sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x4329d07c sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x54a3390c sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xa2829485 sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xbc1c6d4a sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x144945d3 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x29034736 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0492e715 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0546a980 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07db1974 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x086e43ab ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0919faf4 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09bc09e5 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c231474 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f84a776 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fc3c782 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22377d31 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22f09b99 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25f34537 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x289a1614 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3054f67b ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x313e9b1f ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37224c91 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37b6ae37 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47e88ee5 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x491f46a4 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f85dbc3 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x556f80b4 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a19f411 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x671651e0 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6aea9bc1 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c34b6c1 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ec7d43f ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70018a88 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7187a059 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f81dc7f ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82e7782d ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83e8c96d ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a2763c ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89b39680 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9434730b ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d7f3bf0 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa20b9988 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa255eff0 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3234f99 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3bb9a5d ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb50e1a9f ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb59ca059 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd9f7392 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2667239 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0ae82 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc789e312 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc84a7723 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb7f3b17 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdc93ecc ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd18d38a9 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd28c0dd4 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd308162f ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4c62b4a ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9e9fd06 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdab5bfb3 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdac55484 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb0ea982 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebd1cc5f ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeccfe335 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xece19fb0 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8c07792 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8db60b3 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1c57364f host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1e55e56a host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x25b3ec51 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3a18221b host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3b78db6f host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x46b4e125 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4920e133 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4a7843bc host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4c29f9a1 host1x_syncpt_incr +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 0x6bfcbf73 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x70569877 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x77289f44 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x803c1954 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x855f6c4e __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x93d2f3f8 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x951e8464 host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9763421c tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9a9587a3 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9cc46c11 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa597d639 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa96a61e0 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xac8ceabb host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaf89124d host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb91c630a host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbafbb112 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbdda8c5d host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbf4ea22c host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc2803e16 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc46199b2 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc64969e8 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcd5c959c host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd0667ddb host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd2d9904a host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd57098e3 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe13531b7 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe3c7a5eb host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe4915e49 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe998e5d6 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xefd1f655 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf198d69a host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf81923a1 host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/hid/hid 0xa7d12070 hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9d83d9f3 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9dbe2f49 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdbacb280 vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x05c856b5 adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x7ee9d5dd ltc2947_pm_ops +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 0xb3c765e4 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x241fc271 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x78e79baf i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb9d0ef3d i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa3655d66 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xebc22ee5 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x335fb8ef 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 0xa5fc2b23 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb7c43ca7 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x90130ba3 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xce8472fe iio_kfifo_free +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x2d1a45d5 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x028e4517 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x1612cfb0 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x1ac2416d iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x1d9fe7b3 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x27f37603 __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x28be37c9 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x31788530 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x473e100a iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x4808cc96 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x506b93d8 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x646ab00a iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x6db6cb06 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x88334118 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xa786db12 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xbe337488 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xd1a9bde0 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xd587f94d iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xdbb80d2c iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe1eced34 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xe9314757 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xf0a661d9 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xf17fe4e2 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x66f5b6da iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x2d85b21d iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8246eae7 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb662feca iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc554a134 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x180b8e7e iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x284d5a5d iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc194d184 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf95b5693 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x2b89b387 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x470faf0a iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xadf8daf9 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2513628e ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x283ba2e4 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x308f2cac ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x86c704de ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a0e232f ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ad4dd32 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8af41a40 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8b905c41 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa4051bb5 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb7fac756 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd51c864c ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xea44eeb5 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf27cba50 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf5e3986e ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfdcc2a9d ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x013cccc0 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04a2bfc7 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04a98dfd ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d27a73b ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dfbcbff ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e2e86aa ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f389ab9 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x119b4ddd ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x119f57b9 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1286a296 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x147d1667 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x186a15dd rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bf9cf7a rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ffc8d1c ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x201d16a3 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20a60958 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2570555a rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28083ed0 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2adb359e rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ba1a537 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ba72e92 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2beb21e9 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ded6d74 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e2784bd rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e5ab80b ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e648279 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32152093 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32d6c4e4 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x339c72c6 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34ae4351 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35f9eb8c rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36be7316 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3704dc6c ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39112b15 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a950548 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3adff27d rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3faae1a2 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ff5afd1 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40920536 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x422971f9 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x424a0f5c ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44f1214c ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4570301e 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 0x4697ad82 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47d5818b ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48f5d9ec ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4af89d57 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b0d1b0a rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bb6e703 ibnl_put_msg +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 0x4f87dad3 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5024cfd4 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50b41736 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51507f5e ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51f997de rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55cdcec9 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57cbc45b ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58510d59 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5870ae89 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5974cb5b ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5975e0f2 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d7b6a0b ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e383e6d ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61997157 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x642bc832 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x670b57cc rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68122b13 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x684388af ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a73466c rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b987fd1 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bcb1ce0 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ce9015d ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d8d107c ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dd63923 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f26c486 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70cb3a9a rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71b990be ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x723c6948 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7246811f ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72def0ca ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72e2394e rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74ce8966 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7671a3bb ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7686e05b ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76efdc7e ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78b1ed70 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b22e079 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b788f5c __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b8e6dfc rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d987748 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81eff265 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x822dc901 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x868d62c6 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86ec6ac5 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8720ae2c ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8be520b8 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f215857 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90193e7b ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92b7f210 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99004b69 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99559db6 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a0ca34b ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a6796f3 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c146ce9 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cefd82b ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f6a56e8 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fc1e2ef ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1553a1a ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4ab9349 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4cd23e1 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa510f4f9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa56206c4 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa634f0a1 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f243ed ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9a2f14d ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab010e20 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd6b808 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb09d1c44 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb220cc02 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3558d70 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb382f926 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7e89bb5 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8504a37 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb977e610 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbada329c ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb279c23 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb777714 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbce858c5 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcefe402 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe5b5e3d ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0118ff0 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0aa1991 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0f3b96b ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3f6aabf rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4b6f16b rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4f58c98 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5280c69 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc739ca00 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8354296 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca702d9e rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccab7cc9 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdf5cb93 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce373a49 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcee02a06 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd010c27c ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd238a273 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2fa9279 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3688989 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd40cd94a ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5c4955a ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd73a7c60 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd74dc832 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd75c18b6 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7bcdc54 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9aa056c ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9e55024 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9fc18c7 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdab8dc6c rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb4808c7 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc9dd2cb ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcd92cc0 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd2d023d ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdedf96ff ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0cc76a8 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1cc0686 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe35b9082 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3bc1d8b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe57f59eb rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7003d66 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7ee8342 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea7559b8 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee87caeb rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef7e833e ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf01f9731 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf38cbb73 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3cb67d8 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf43a5287 rdma_move_ah_attr +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 0xf7bc34e5 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf844ab35 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8515880 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf87e3f17 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8f1638d ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9acd0a9 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa15e678 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdfed898 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfefe7d85 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff45d840 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x121a0bc3 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1619a1a2 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18b38cdb ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1a415c45 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1bcb5f10 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2d61f0b1 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3493d351 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x390d90c0 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3b52c6bd ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x402441d4 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x41aff838 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53feb779 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5db2a06d ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6edb39bd ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f0d2ed0 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96fb4786 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa1862ac4 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa33c49fe ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa395b785 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa9c2dc40 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xacaa97f5 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb63389e3 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbfacdead uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc2810855 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc2fe233b ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc361524d uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc840be74 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc97b8ea2 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd2353250 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd535c529 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd69e748c uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdc5147a7 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe2aa2863 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xea700e68 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xec44a332 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf90b81f1 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfba42217 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x044cdf2f iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x29f5fa7e iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x48df5d62 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6bc5dfb6 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x70636a3b iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8058f1ae iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbb7a4398 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xce5ffb09 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03d975bf rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0508e749 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09b966af rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b313396 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x187eedd1 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a2fad9c rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a998fff rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26debbc9 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b9909de rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35bf2e9e rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x386d8f98 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x38c9d3e4 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4fd655a4 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f6d0f55 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f7ccb56 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78d58923 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b9a0f46 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88024267 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96e58256 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9cde855c rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fb10acd __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa52b429 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0280e36 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb3893add rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbeee7192 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0995edf rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd717e53b rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdea586a3 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdea93670 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe08cae2d rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe913b676 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec3163d1 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeec0390e rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf439134a rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x26bdfe5f rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x27b05b39 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5edb2dc2 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8e67637c rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x927f72be rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa209b3c4 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf7dee108 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8639a95c rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8bbc72bf rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe4ce1965 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe650a66e rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0acdfef4 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4fc162bf rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x65aa3044 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9e5ff8b4 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa609ef63 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe433e46a rtrs_srv_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x11af1830 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x158d1d15 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x234058a6 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2921dcee gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x840e817e gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x896ca433 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8ed300e5 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xab8ecd3c gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfb168f13 gameport_unregister_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x75b64e63 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xd7e92e95 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe5452f34 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0xe1e0b153 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x37ce22ce ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7b27eb55 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xda0c9256 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x0aee4a4b 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 0xad501c64 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x48939339 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4c1d12fd sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x68ca268f sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb5e2f0b2 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xdb7308cd sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x60e01097 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xde501850 ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x20ebad29 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xd75f475d qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x098198e5 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x22ae4af2 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2499f329 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x39572c38 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x990f902e attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1f5507d1 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3f65dd3a mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x96b5393c mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaf1fe664 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4c578b98 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xba0aa496 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06437997 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1aba0c3d recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3415114c mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x45103a50 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x520ffb01 queue_ch_frame +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 0x6383ba20 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e748193 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x782ca7d8 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7e718839 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f491d40 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fe9bba7 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8b6b0158 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b89f4f7 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9e915cf2 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa985f583 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0dd3352 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb8a26e7d recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xce1559cb get_next_bframe +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 0xd7dedc12 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdebce62d recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe0840086 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb11ea55 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf815bd12 mISDN_freebchannel +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 0x266735c2 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 0x5ddc72e1 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 0xa12ce200 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x3fd5dbb7 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xde79c653 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xfca92d18 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x7a4b601a dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x856512b3 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x8f645ced dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xb2211d7a dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1935dfe0 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x41e4087e dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4b334807 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x74a02546 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7f17e6b7 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdf091b6a dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0x6c633fb3 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x918ccda4 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0190c4c7 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0476555a flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3b658861 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5ff117bf flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x80f02e92 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8b643673 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9c9d287a flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9f9ae3d9 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xab1bfdf4 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xae514ab1 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd870c41c flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdbedb7d3 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf6a15835 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 0x32f1202c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6293d9bb cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xba9a46ef cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xbd70a750 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 0xf6987347 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x5bcdb329 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x9975d556 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x60885470 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 0x5ac1b4a6 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xf507ac58 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1aa118fd vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3c8e3bc2 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8fefc95b vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd72b867c vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe73877c3 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe7a15fd1 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x68d97977 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x02052877 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x189897b3 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x26b8996e dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2875083d dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2e9f78cf dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34c77a54 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4c1fa264 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4c69876d dvb_frontend_detach +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 0x68bc24cc dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69ed39c7 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6d597951 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7a32a40c dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x844439ee dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c5d648c dvb_net_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 0x9e61c60e dvb_unregister_adapter +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 0xb6f727e8 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xba1c4bdf dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1590343 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7a71a30 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb605da9 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd909e814 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe22d2797 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea0299df dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf0b86228 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xdcbe0f44 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xb6f79d28 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0a1445d4 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x32e8de5d au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6869a9fc au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6c4ed455 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8039dafd au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x836c6b68 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe0dcca4d au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xeb56858a au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf09ca500 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xc1baaf85 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x07aefb25 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xcc01db56 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xd3bfc183 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xd7119139 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x27e6187f cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x6e334581 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xb2435e0e cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x1a28a6c0 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x4cd77b1e cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xba479dc3 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x51c80368 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x57110cd7 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5d220d9c cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x1fcbdf05 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x08c25bb6 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4c7788c0 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8fa942b8 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9a6aaabb dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfedc3259 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0c314c7b dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1550d074 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x401b5806 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x467338c8 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x57668390 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6743c19c dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70bb600d dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x732c8cb3 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x798829ce dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x996be05f dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbb09a88b dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc3960e7c dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd2091c8e dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xea3e39ef dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xef8b6ef7 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x82e0dba3 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x091caed8 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6b3ce237 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa2c930da dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc57b2f66 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcfb91a8e dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd2a644e8 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x19777be8 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa6df8d9c dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc0937d0a dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc2bc40c3 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x102b422a dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xc6014fa8 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0b5c88f6 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x12ed93e8 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2ca4fac9 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x68eb0bbf dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8de746d5 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x936b945f dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9b02a987 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa0961572 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa0c79a3a dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb07d964f dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd03ee9c9 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xebfcb679 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xec043a37 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x218b69bc dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x568491a7 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5f4dc18c dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x61da5e2f dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd8c92a80 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x063dc5ae drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x1ae2203a drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x6be79681 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xc30c744b ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x08bed1ca dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x6ee0c5e1 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xc52ee189 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xde1beb2f dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x2274ae15 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x6771e41a helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xdcdecd91 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x632c654f horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x2c7b9e3e isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x503c51ec isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xb6f7069a isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x2085ee86 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x2fbe1292 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xc10a242a l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x0d8e5cb4 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x83ceb481 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x359b6adb lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xba6ce6ef lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x95f9c7da lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x77b24f8c lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xbeb16d22 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x6fb2201a lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x530b2a10 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7c38a001 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x1fef4865 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x18738386 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x9646311d m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x81cf3e03 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xfa93f735 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x1cde7321 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x0a1486ee mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x1244eb1d mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x94562c53 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xcc9601cb nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x76e55c8f or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x09688b4f or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x48bff681 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xd485216f s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0877b1ee s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8a828a07 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xda340cb3 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x3e1e8f18 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xdd540d09 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xf4aa16bf sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x506ebb1c stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x5f2b7777 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x0ffe670b stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x97a9f542 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xf922d28c stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xc0a715f6 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5fcf2524 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x6f3f3b1e stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xdefddf49 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x5594bd7c stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xc3103b87 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x66ecc599 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x62711711 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x569ff907 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x11038a69 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x28b7b2c6 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1958d851 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x22d5c725 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xd2e724a3 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x27aff121 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xa3002f10 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xb8fe01f1 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x6266bf4b tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xe97c1713 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xcde74793 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xdf15c699 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x09614866 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x57005aee zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xaeb2a472 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xfb2a46e8 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x5c2a5b22 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xfbf59a17 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0ccd8daa flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1b1984cf flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcd2eac1a flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe617ba37 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe82c9e54 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xecae5feb flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf4f56ad7 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0ea7c134 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x200eb31a bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x69e7d08c bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6ac07b2a 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 0x687aedcc bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x69f275c6 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 0xbfba2f81 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x276b991f dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x70c7e42b dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x77dca14b dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7cd834f3 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8ab30f3f rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8c144db5 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9e38fc06 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb947ce54 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd53a4ba3 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x4ebf8e06 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1396e8b1 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x27c57855 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x297414ec cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x79f7e8e3 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb9f10ec1 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 0x20739a1d cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x287d5c80 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x48d0a718 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5baf4238 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8b82762f cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc06e83b6 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd36873c7 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x126825c9 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf6f54bb1 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x48786d9b cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x93d12bf0 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb2843b90 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdc36d7d9 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x09bb56bb cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x57d4e80b cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x907c92bc cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9fbe109d cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbdb4e643 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcbd4007f cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdf646b44 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x05740ad2 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x11b6a023 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x171f9b0e cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x38a8b3d3 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4151d951 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4e4f9f62 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x50b3c364 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x563d5383 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 0x6165a89b cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x856b4f7c cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x87d0d3e5 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 0xa34d6e37 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaf4f859d cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbd787d81 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc26d85a8 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7431ba8 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd6947ea1 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdfbbd810 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf34093b1 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xff41b297 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x5afb5a89 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x07409a93 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0ee546b9 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1819c6aa ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x37ccf2dd ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3f2dd9ca ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x41706314 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x51b7ab87 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x533b6126 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6fd81666 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8059657f ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1ad0886 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa9578919 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb45467e7 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc0828982 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcc72784b ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeaa32c3c ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf8acaa1b ivtv_clear_irq_mask +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 0x1d796dc1 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4a9bcd68 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x76a466b7 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7c158ba7 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8769c14b saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8bc25422 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x91a485ff saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa302e590 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaec0fee0 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc12191ca saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf6032125 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5b60df97 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x678be15d snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x87376ef1 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbc1e41d3 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbec02774 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc9064315 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd078bee4 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x1c64b98a ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x6ab55376 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/tuners/fc0011 0x04073592 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x2bb356ec fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x01409bd3 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa837df86 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe16841a8 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xf63ff655 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xb7e59708 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xc936f056 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xd4aa625e mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc6bb44c6 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x55d06fc0 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x6bad17c2 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x23c70aeb 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 0x11ea2d75 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x5ea39884 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xdfdcafc0 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x234d0ee2 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x43c51f56 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0c8c4500 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x15e883fa dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x41464b77 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6b33311a dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8ea4b0fd dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcbd151cd dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd996407e dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdb273f49 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdce759d1 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7aed38af 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 0x9e5e5c12 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa3fadc3f usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb3f24983 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb6fb41c1 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf3518f96 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 0x7cb9d3d9 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 0x47e0170e dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x56265c6d dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6dc1afba dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9c4824a2 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbd945783 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc1947c23 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdb53812d dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf7d5de30 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf9114bdd dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xd74f0dba dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xd831abfa dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6cfd1c5b em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd3a27c75 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3f2254a2 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3f75c943 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x41e0559c go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8d4d6055 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9320e8fa go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9ce78a1a go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa9cc4c84 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb82b53c0 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xff9ab05f go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x33a2860d gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x346fba5d gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5a673c44 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5ae192de gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x62ffeeb1 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x777cdd07 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb7c0b5de gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd1abc805 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x030f4c75 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x28c84dbf ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0cdac9e7 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x20c51171 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x628ee174 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x65955138 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x87c61dc1 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8fda073a 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 0x557d9fb3 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x842a0baf v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb0ff55c7 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc6e8a2db v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00bb2668 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x041e83bb video_unregister_device +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 0x098e9bdd v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x118a2d90 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x150c5524 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a947be7 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cb4d83c __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24a9a899 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26f1e58e v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d6bc4c8 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d8262b3 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31738f4e v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33478395 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3512160b v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ac1fefc v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ad42d48 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bca12a8 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f7e234c v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43181419 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x438be0c6 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e487b8b v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58505523 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a191b81 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c00a577 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x614e90a0 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62b94a01 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69829f91 v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e75b614 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f2bdb44 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fa15043 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a097450 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e81749f v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ecc57d4 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7edaafb1 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7efe0046 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80bdc399 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x831e4931 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d531594 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x921c7e95 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9921749e v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7bf90aa __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaca5340f v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb4ae0 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb435e33c v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb64c7974 __v4l2_ctrl_grab +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 0xbf23062c v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0e63b71 v4l2_ctrl_subdev_log_status +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 0xd1a2bdcb video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3947999 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd723d677 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd82934f3 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe65379b1 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe80272d6 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4d7be2d v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf51bc669 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9371b13 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa58f373 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/memory/omap-gpmc 0x389acf0c gpmc_configure +EXPORT_SYMBOL drivers/memory/omap-gpmc 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL drivers/memory/omap-gpmc 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x6bca895e rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x8c58c136 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb2c5f7c7 rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc06ef461 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xf55b0000 rpcif_hw_init +EXPORT_SYMBOL drivers/memstick/core/memstick 0x06bfca91 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x16b72d2e memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x43992403 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4c276104 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x512d3e3b memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x58867ecd memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5aac45d9 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8167bbe4 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x86c7a1a2 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9961b2b9 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb8bd1cc2 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc3e22606 memstick_add_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x009adaaf mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x065c453f mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13ec6cc1 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x233ce360 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28bcebc2 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28f24cfd mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35ebcfeb mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x41611692 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x52f38fc1 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x538f76dd mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67a0fd68 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74967e8b mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78b622ed mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7940c088 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8cf34e72 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9378d29f mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94df0157 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x96af1cff mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d042716 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9e93e905 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0a60cae mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa121cb8c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb432630d mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc576bf27 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc020cfe mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd68bafb9 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf97c8a6 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf2d361f2 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4f4614f mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x01d63024 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x05993d8a mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x25f847e5 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2abc9a4f mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2c47b67c mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2ee57c3c mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65e2e0d5 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d6b59b2 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x72d0b4ac mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c73439b mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x95a56b3b mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x96a53e2c mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9dd814ae mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7ef944c mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab34f84a mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaeb385e7 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaefe610c mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb6e9fcaf mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc450be18 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd8209d9 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd9308951 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde57a23b mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf149d11 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdfe708c1 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8b15e65 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xee8b516b mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf0aa06ac mptscsih_host_reset +EXPORT_SYMBOL drivers/mfd/axp20x 0x0fb07909 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x42a8cd1b axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x8a2f5736 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x02d3273b dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x7b163afd dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xe0ffd224 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x914b3846 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xb940a252 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x00873187 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x41134b30 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x63ad4061 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x71fda706 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7e6b742c mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x83d5a6b4 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9c629c2e mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd3872be8 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdc73dc02 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe15fb4ca mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe78d728e mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x6455e900 qcom_pmic_get +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 0x1760b2d1 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x8802b0fc wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x9d2d7388 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xba380b65 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xd45c29a6 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe12ad312 wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6801db5c ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x80d5e5b9 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x01bc1307 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x8b6cd732 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0e973d90 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x261658b8 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x31dc9c73 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x379f2800 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x4085ea9b tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x5317b564 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x65e9722a tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xa117f0c7 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xaaeb492d tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xb527d8bc tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd3e887e4 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xff17bc77 tifm_alloc_device +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x00f512f3 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5201e157 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb3fa1050 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb6809ab6 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xfc02cc92 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x61e0c36f dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x750dd051 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x86073744 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xa680459a dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xa640d820 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe68ac5e4 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x29acfc7c cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x53312d99 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7e67586f cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8ad1a8a9 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb2d7e912 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb63f727a cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb6c83721 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0c43f66e do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x8421d41c map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc37e20f7 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe28329f4 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x46f43514 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x9ed2a804 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xca0d4eca simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x02445ddf mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xccb6d7fe mtd_concat_create +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 0xac5991e7 of_mtk_ecc_get +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 0x08329cb8 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0c3b51a6 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x108fb41b nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x161fecd6 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2b322baf nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x351d3968 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x504be607 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7167f5da nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x774c47f8 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8bcc710f nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x99490a0d nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9dd685d8 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9f447a5e nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9fcfe1d2 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa8b20136 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xba413844 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc1c7df29 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc79a5aef nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc93ffd71 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe1fda07c nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf754babb nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfb908c93 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x12ca9bff onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x6541f486 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x2a8ff4e5 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x9430e131 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1693f6ee rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2ec0f26c rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x37ad70b4 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3d80ee0a nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3dcadb8f rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x445a3205 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x45d4f906 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x51cc2549 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x57100af1 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5f6ba562 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x69d941b7 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7682511c nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7f8434dd nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8521c73f rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8e578ef9 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xadba57b2 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf22f4482 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x2aca5cbc elm_decode_bch_error_page +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x323f00b0 elm_config +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x27152feb arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x30d6b0a9 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3f3275ae arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x44041bbe arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x569fafe8 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8dd3435 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb5a8b638 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbae69002 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4fd767f arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc9c9e851 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd0cb3cf3 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x020c5f84 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7fb3571d com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xad716b45 com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x34547c79 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x6b7dcd28 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x7b79aa9d ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x40394b59 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x79195204 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0066b5f8 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x04bc85d5 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07c0aaff b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0e70f318 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23da099d b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29a6e96e b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2ad59ccb b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2d185d7f b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x359e3ae8 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x39ece88e b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a683023 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4e3ca69f b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51f4d5f9 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x531cda7d b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54940705 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54eef93c b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6ce616c9 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6df6d6df b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x912c8db1 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9458f125 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x96e77e66 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa1f39b57 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbfb5649d b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0eea8bf b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9f3926f b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd6254dc1 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd665f5b5 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdcf4e25a b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe5367f48 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe5ab184e b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeb4869d6 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xedc32986 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef513525 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf2608a8f b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf4d61f88 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf68c5189 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf69181a7 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf9ad969b b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x26c6a57a b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x99b694d3 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc34fea4d b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf7ed9a6e b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x62b4fe6e lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x92e8a7d6 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf00a49e2 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x9b7023b7 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xcb8a1e24 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xedab27e2 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3a068a7a vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x457ee6a0 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xfda1b951 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x67c1dff9 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x773cea28 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 0x99e777b8 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 0xbf67fff0 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x11ed672f __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2c000e95 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x31ec6a98 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3d5246cf ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4cf995e8 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x89337255 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8eff37b4 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb138e919 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe67ca4b0 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf1bc977d NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xb368ec47 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x33e65744 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x10d3c9e2 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x311b642b 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 0x0b63564b cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x183ac963 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x25a63750 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b9b68cc cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4282a525 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x59b7da29 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5b4c4fbd cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x65b14586 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6749d45c cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7dfb53f5 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8d3fdc26 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x96b5c8dc t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaa66081f t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbc51e901 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe0486b56 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfa87ad6a cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x066feda8 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x115757dd cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x166946a2 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1fabeb92 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24c880c5 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x272cd807 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27e0191f cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3475519c cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x387f4bf6 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x392b32e8 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40ef00ce cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44f92b36 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5089248d 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 0x510cbdae cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x518e65a2 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5495624c cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ec2094e cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7383bd71 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77382fa6 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c354e77 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7df24889 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8197db98 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x832e85d6 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ab3e27f cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c615dab cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9204f946 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9653938b cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99cffdb3 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1eee9d4 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2bce0f5 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa7062528 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1fd252b cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb54f5598 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7b01e52 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb408f51 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc7d4fa1 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4cb82fa cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1cc545e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7b04e2b cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd87f0493 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd90ef625 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdca38ec7 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4592114 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf037bf8c cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf33b9bc5 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4764e83 cxgb4_update_root_dev_clip +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 0x2ec3e705 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x399da3db cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3a137419 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9b8025b6 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb3e74872 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc3b071ae cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xff6c956a cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7be8b445 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7fdd5fd1 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8bc8b2ca vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9576aeda vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd394a46f vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xec91653b vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x19914485 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 0xca8f28e4 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 0x48772757 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x8ac2de8b 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 0x01568e93 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x0e491e0a fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x64d2b3f0 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x66c19e2a fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x43af9a48 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4be37821 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4db13eb7 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x95d773fe hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xca49f19f hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x4d89a14a hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x22ba2e43 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x595acaa1 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8966e67f hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8c1438c1 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x9c9ba9fc hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xcd3be350 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xddb4726d hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf79389a5 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x5100d962 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x84c8cbd5 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 0x0c750ba3 otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1e5a0ed5 otx2_mbox_reset +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 0x431a251c otx2_mbox_alloc_msg_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 0x4b643da5 otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4d90631b __tracepoint_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6365a74f __SCK__tp_func_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6ddbf965 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x86f366ce otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x88e1a370 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9115328e otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa35c5ffd __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa3a96eb9 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb150b38c __tracepoint_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xbfb71ed5 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc196bc11 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc21e8509 otx2_mbox_nonempty +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 0xe328a43b otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf9c0146a otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfa67fa38 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0504442a otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x08ed8608 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x17786d63 otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x179c8c67 otx2_txschq_config +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x196c7a78 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1b27d514 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x255a8fac otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x273110f5 otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x299b5c2f mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2bd3d2d9 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2fb45324 otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x300490af cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x359e07e1 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x41563dc6 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x46243bcb otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5d87c37d otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5decae6e otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x720c1b18 otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x76621f4a otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7f21eb2c otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x83e591b8 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x84a05bab otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x94ae3f2f mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x95d8f2e9 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9a8e1e27 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa1534230 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xada2a410 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb4830f2b otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb512862f otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbe3f74f6 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc9331335 otx2_smq_flush +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcf5a2645 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdf09c31e otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf5f8af1f otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfec0e2cb otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x2b4188a8 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x44bf6e08 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c40c1e2 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ebca374 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x144843b1 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15155dd1 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b071206 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dc7756b mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f71b453 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x211ff46a mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2990dc43 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3632bb8a mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36719e3c mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d168d43 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51266a23 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f652053 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62c1bdb6 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e96b196 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7038bf73 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74e86e88 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b696a06 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7de3a5e2 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 0x8072e0c7 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82511368 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x831bc64f mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85e727b9 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a301aa3 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c63e670 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90d00a03 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a6b0e98 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa273d881 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa29485ed mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa86f1ae mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf578d0c mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5d9a1e7 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcf7d7fe mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca3c0501 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3b9ed22 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde32489b mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf942c1f mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe04641c8 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe597db2c mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec56da77 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef01e69f mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf80b3d2f mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd2b868a mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00bae707 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01740b2a mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01797bf6 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07015565 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09d25e13 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ef238f8 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x102b5012 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1258f2b3 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12e96061 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d565c7 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1696203a mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18358cf1 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18585e11 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1911ed28 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19f7ad89 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e167038 mlx5_vf_put_core_dev +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 0x1ee8f575 mlx5_add_flow_rules +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 0x23bb3f50 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d0d456a mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d922654 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f2a1c62 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3110c668 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x316bc5e5 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3184d5bf mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3278fa44 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34c223b3 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3712fd82 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a2b56b0 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b0101a0 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b4dddc2 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e5feeba mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41158a4b mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41b7e2fe mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45a098fa mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4be27f3a mlx5_lag_is_sriov +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 0x4f130e21 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fb7d748 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5011c1a2 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50f3d0e6 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52ba69b0 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55370940 mlx5_debugfs_get_dev_root +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 0x573f3bde __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5758a377 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x575f3c03 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5959537c mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b0295bf mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c5fe499 mlx5_core_create_mkey +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 0x5e81e425 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ef9728e mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6482eeea __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x657daf32 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x682971f0 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68cb7220 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x694f2865 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aa4d307 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e406e86 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eb0bf85 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ecaef91 mlx5_lag_is_master +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 0x736fcbb5 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74ff7243 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76ba4b9c mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x775168fe mlx5_lag_is_shared_fdb +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 0x7bca1526 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d5ffe09 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7df19565 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ed65e4d mlx5_cmd_exec_polling +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 0x81963e56 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x824cef0d mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8558da80 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x866d973c mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86ec96ef mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87073bcc mlx5_alloc_bfreg +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 0x888a2246 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88a07ce2 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8932742d mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c96852b mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9073d364 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c01a5b9 mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d3900c5 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f8eec8e mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa02c7f85 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa22a62fd mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa37d7111 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa585a034 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7bcab60 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8c35f06 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa90bf00f mlx5_fpga_sbu_conn_destroy +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 0xacaad974 mlx5_free_bfreg +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 0xaf29f0a9 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0851a9c mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb102735f mlx5_core_destroy_rqt +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 0xb35b7b6d mlx5_create_cq +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 0xb7992870 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb830351e mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb976d282 mlx5_fs_add_rx_underlay_qpn +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 0xbcda28e5 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfd20f05 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2e35e6a mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc72b521b mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc782ca02 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8737e10 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc89e61bb mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9d39401 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca060c7f mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbb22627 mlx5_eswitch_get_encap_mode +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 0xcd65b35d mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdfd12cd __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce9afb7f mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf9435a7 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd015bba4 __traceiter_mlx5_fs_add_rule +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 0xd13f3728 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1f2dfdf mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd310aa22 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd34ec2a6 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd54d3163 mlx5_core_modify_sq +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 0xdb4e004b mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb6c397b mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbf21417 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde85f81d mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde9842b9 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe13239d2 mlx5_eswitch_get_proto_dev +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 0xe7a90a18 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe831fe69 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee558894 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef6bba54 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1b0433d __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1f0cc55 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf215938f mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7e3b555 mlx5_core_dealloc_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 0xf8dc75c9 mlx5_cmd_out_err +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 0xfde0cc85 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 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 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x13f3b759 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode +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 0x16f4221d mlxsw_core_irq_event_handler_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +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 0x209e9716 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x347c6d63 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x34fc4123 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3783532c mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4770e137 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get +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 0x5254fa16 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 +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 0x612b931a mlxsw_core_rx_listener_unregister +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 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio +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 0x6b92095a mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify +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 0x7e08c6e0 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x85c5595b mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86817014 mlxsw_core_read_utc_nsec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8d162e85 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x93081a7b mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x99e58662 mlxsw_core_skb_transmit +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 0xa509fafd mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa527cd30 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler +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 0xb9bd91a4 mlxsw_env_reset_module +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 0xbda212df mlxsw_core_irq_event_handlers_call +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc72c41cd mlxsw_core_ptp_transmitted +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 0xd0cada5f mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag +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 0xd66e6084 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd888ffb3 mlxsw_afa_block_append_ip +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 0xdc5c95df mlxsw_core_resources_query +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 0xe1860dde mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop +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 0xf0d3a447 mlxsw_core_port_devlink_port_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 0xf8687efd mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x5bd48990 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd152d1c5 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x3a6ddcf3 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x860d0d7c mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00de1c54 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03204e07 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03bcdaac ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x049bd7ef ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05390c25 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0bf414ad ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1142631e ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x167a2563 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x172daf89 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x18febbd8 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 0x2206ee43 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x235e3311 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x250367ff ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26d130c8 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2766e374 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x286aff1b ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b56b4d3 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e02b99c ocelot_mrp_add +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 0x2f53d8dd ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fb641b0 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33246416 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34b6e54c ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3762b9b9 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38652fce ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3906fbfd ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3fb42333 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x406e9c23 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4245f980 ocelot_port_inject_frame +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 0x43aebe9b ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4992e586 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x540285a7 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55130c8c ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67d30f48 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70aed8dd ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71048f88 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x718df217 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x744bd65e ocelot_sb_occ_tc_port_bind_get +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 0x8312406a ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x838970e3 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d40531e ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9032deef ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90ca2f33 ocelot_port_policer_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 0x93ab1c44 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x945d22a7 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9890f46f ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9fe81690 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2701292 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3523c88 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7f6bca1 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad50baf7 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf9d15fa 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 0xb6c79028 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb85ab0bf ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb86da1cb ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc1fe713 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc939f68f ocelot_vlan_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 0xd211085d ocelot_port_get_stats64 +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 0xd96444df ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd056cd6 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdda6598c ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf24b0b4 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf9f8dcb ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0bbd69f ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe389f38b ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3ab2c12 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7cd4e5e ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe85493f5 ocelot_mact_learn_streamdata +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 0xed76756a ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4f26438 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7839765 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc7dab06 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfdfa46e7 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfeaa56c3 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff0c87c4 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x5be9e214 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xcf90c819 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe7a0049f qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xef8ad21a qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x92b06668 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xd9e61de0 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x035028ff wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1b20cdcb wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2bff7754 wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4c51f302 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4d669639 wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x500b0bb9 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x67e590d0 wx_clear_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6aad4551 wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6c1aedd6 wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbb0c0675 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd5725cec wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd743dea4 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdfcd0c7b wx_set_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe4160ee3 wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xea4fcaca wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xeaa549c8 wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xef9ccb42 wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfd9545b5 wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0ee8c81c hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x12782276 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7218de51 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdaaba88b hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xeae991c9 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 0x7e8fabde 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 0x0e780f70 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x2da21fed cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x371c70c6 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x12249369 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x319c0347 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3c8e0f83 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3e43465e xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xeeebbf0f xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x852c05e6 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0fca328a pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3b70a099 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x72ba1735 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd70c1364 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x1811b23a sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x345ff5f4 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x54e23e8f team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x599405c2 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x7db942ba team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x80945d4a team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x851b1d4b team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x8c1b448d team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xac9feb90 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0a184e8e usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3be33f17 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3fdf4d54 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1b603354 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x20f9fbd0 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2b20ee6b hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x43e5767d alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4e71007a hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9bf791e6 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb518be83 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc8773bee unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xce98f0d9 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xeea176ea hdlc_close +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 0x18d303bd ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x24289a91 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ff276cc ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x51deb48d ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x64199f73 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6b9c9a98 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x73ea84cf dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7bd84fe3 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8dd42a89 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb2f82421 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd43514d7 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdc020731 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfc228bed ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0330e240 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x056623de ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0aa7271a ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ea86c42 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1413af55 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15bbc152 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d94762c ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22c678f7 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x25b38e4c ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x263526db ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26497a03 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x281a92be ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28ce6b58 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b429f55 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36496098 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3aae4951 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3cce42bc ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3ebc0c33 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f85c008 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41a00508 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x457f41d8 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d8259cc ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52e2300b ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58137463 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5907464a ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d085d97 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x634689f7 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x635d3820 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72345c62 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72e4a776 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8058e3d1 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87870bbf ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8953086d ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89ebc577 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c187248 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90a2895f ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9394e816 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 0xa8a527b5 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb47e6aa4 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbfeabed3 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0ceb0ba ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2167d13 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc35308d3 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc48f224 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd759bf0d ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9f2e812 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe091f9e2 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe38e361c ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5b393f0 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6adaad8 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe95c6b8f ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9d9f670 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed83f7cd ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf372bf3f ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf563bdf9 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf79312b0 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0a7973c6 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0b402a74 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x25ec8ecb ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2da6f1da ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x30ac4f55 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x32778e7d ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3ed8184a ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x43e96551 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x493aa5c7 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4a249572 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4de34d64 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x516d7a64 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5b66d6e6 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6af2876c ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6b221d52 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6b2de73b ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x71512919 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7892d2ec ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x79a3492e ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7edcc56d ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fb8bf32 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8b999064 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8dc00680 ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x93ac983c ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x95e9c6f7 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x97c97e4f ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x993250fd ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xae4bd1e2 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xba6f56c9 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbe666200 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbe802e64 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbf83e462 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbfbacea3 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcc96b9c4 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd4053e56 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd79a168d ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdd1fc4a2 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xde7b1726 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xea56003a ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf00e9780 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfea1acd9 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x27e733d4 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x37a83864 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80220730 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8401a9e4 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x842c2c3a ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x88284bfd ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x93be21b2 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa03de439 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb6847ec7 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd3a286ca ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfec9eb58 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01712166 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0220512a ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x13b133af ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x243b8519 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d20adc4 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3241e556 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x34a0a75f ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d88347c ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44157aaf ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56428468 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d8ee2fc ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x78228bcd ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e14cf89 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a2a2019 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa6da7aaa ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc1a5dc41 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcffb9fb2 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd7fbbba7 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe64325c7 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeb06386a ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf254b62f ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4c65911 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7a8f36f ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x010de78d ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03a875dd ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0919ae54 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09a14e8b ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c08ea78 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0da235ab ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e694979 ath9k_hw_disable_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 0x112a0193 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1189cd92 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17c4cd86 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18f96980 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x193e94a0 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d1db248 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1deba4c9 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21972acb ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x284cfa1b ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a1effd3 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2af36452 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bbc63e5 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3059a344 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3410e770 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37a1783f ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37f42133 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bce93f5 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d37e8b0 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e3eaf9f ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ebe7758 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f70259e ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40c3e123 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40facddb ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x488ab3de ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ed94aa0 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4eefc609 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f053f92 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x512f3d3e ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5319f197 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57b90496 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e62a71c ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61734953 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64e252f4 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x658f3023 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f5e0e93 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71925e06 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7533e716 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x800847eb ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81d8c2c3 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83cbb557 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x842d87b8 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8563c040 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x864e0002 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86acbae4 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8745a23a ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89cdea41 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c467160 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c6ac35c ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dd7133c ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e6e63b3 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x908e407d ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91e9f7d2 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93cf3a35 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x940ac35b ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94f37b8f ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96af734c ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9af05202 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa32ba6c3 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3fd2657 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4158e82 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa555c48f ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa809793b ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8e0be72 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa98fedcf ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac1201eb ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf49b4df ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb21cc109 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb23e09b1 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb39cd6d7 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7f3ca89 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9e9a026 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba2639eb ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbab4b4a4 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbad1142d ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb3ecf83 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcbc0fe3 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc66047a0 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1a88008 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1af328c ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd204eb1c ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4fca577 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5a2c5f4 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd931d0fa ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9ea416a ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcde1290 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf44cff2 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf7613d4 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe034c87e ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe530eb95 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe88b1509 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe994f961 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9f4cd37 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec58fab6 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeef92c0c ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2a0b432 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2ca4810 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3256eba ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6d683bb ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfec5c2a5 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfec7b826 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x26589454 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x813fba23 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x96ce86cb atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0b4ab058 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 0x22478628 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2ff7f287 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3d899ea7 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x46f206e9 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5361c6f7 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x565686f8 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x61ddb757 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x848ad0ce 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 0xa51f7eb8 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbfe16f41 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcf8337ea brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd639c683 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x063f29c6 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0bf02f42 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x15babac0 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1eed159c libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2c840738 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2fdfb6e7 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x41035be5 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x48b1afd4 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4c20fb2e libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x50144c29 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x506ff2c3 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x57436119 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x78c1e2cb libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8a3f5d7f libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9fd8b08f libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xab594590 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc233d66c libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc4051dc3 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdcec7863 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xec4db681 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x026e6e31 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02d8c268 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x049ad92a il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06342da6 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07f4bb73 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f9ba3a6 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x113da67b il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18733926 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1883e04d il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a0ba34f il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1aa3b596 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dc05702 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22d127c7 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27e7914b il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a28d1fc il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ccbe693 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f805174 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3065fe04 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30a18709 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x365fb129 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38383691 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39292ce0 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b779d03 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cc93a05 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40a7031c il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43532548 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46a45fc2 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47434b1d il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47c3b9df il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x495395c9 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4cc18545 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50f72873 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5387e909 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ce9d45e il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5debaf7d il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x639b6568 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x649bae90 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64dbf832 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65c8fadf il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69a5e815 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69e6c1a7 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ad93e77 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b819e7a il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d1d628f il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dc3be6c il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6eb73589 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x796a6161 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c347a9e il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d761b0b il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x810a254c il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83469d4f il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83ace824 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87728cc4 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87fede36 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88b90d39 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x896b63c3 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a0ab843 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ab02873 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8af3f647 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b7d748d il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x909c80da il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x966f0a5e il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x974e6fda il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x996c0f88 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c2dfb18 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f967375 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa33bbbee il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa73006e2 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8408505 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9ebf15a il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa9b3b14 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae0b1355 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae627a41 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae80cdc4 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb198981c il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2b8f1ea il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3c64bf6 il_cancel_scan_deferred_work +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 0xb91b3cbe il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbf61d90 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfb4777a il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1336773 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc873c9f0 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xccba343e il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd990957 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1389e16 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda62387d il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddaa0e4c il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde4cbddd il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdeea4e28 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf599320 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4cca0b6 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8910c4c il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xefaf331d il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0fdfc3b il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf535fda8 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf78ad835 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb80314b il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd3ea65f il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x03c94965 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1353884c __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24458ec7 iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d23c104 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xca321240 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x01cf238e hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x08741ff8 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x094d7abe hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x173f6675 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1af144bf hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1fd8f9f3 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x398e516a hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4a12b38e hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x50a537a7 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x50d401bf hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5c53391c hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x70fbf81b hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7bf7c9c7 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7c061735 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 0x9ee74514 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa2102514 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa3d18036 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa62a5be2 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8b1f3b9 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xba26b4a2 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc3716201 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xce231fae hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd802211f hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdae16b28 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf62fa338 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x462d9ba2 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x552bee29 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6ec23715 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x74d67637 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x84c951ec alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x92828dbe __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x99319e5f orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x99b0846f orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcf733ee1 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcfab4bed orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd26e8210 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf5af92f2 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf8eb3036 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfc2021de free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfda71376 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x06dcfa79 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xf779aa14 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00f13678 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0660c2e8 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ba9408e rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18206b67 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ab61c3f rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4548c6d5 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47351f7c _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e1b228b _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x519f50d2 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55788bdb rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x564b736e rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6082f55b _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61b3330d rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62cb41b2 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x66edfdde rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69a1817a rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a9c726c rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fa23f1e rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fed433e rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f4e93c9 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90607891 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x943fd41d _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x974cce12 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97b39f5f rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9fa09c56 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa08157c rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaba3726b rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb38cdcbe rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4a84ab5 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb59fef2 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc9c3910 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2eda555 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbd4df5f rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4b497e4 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5b92032 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf14bef9a _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1bc1c74 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf52486ca _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf751e1e0 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf76a68cf rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe2ce5fb rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1dc12bfa rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7d06a3eb rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8ec6dda0 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa02721cf rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5141a178 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x59ce53e9 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6dec8b63 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8cea7192 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10f698b4 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10f7ade9 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x197ab5dc rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2246a726 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2317197a rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28a9ce25 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28aebbdb rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x341b0abe rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x391a8b68 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5998a7af rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5faf9fc2 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6503e384 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71be646c rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d3e8938 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8219e006 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x909be15c efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2384323 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3014f3f rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba6df9a2 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2aafd75 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc92835bc rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcba49f15 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfb7dd0c efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9b9e51c rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda1d002b rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe254c01c rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe30be33a rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8c4a026 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe923482a 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 0xfc7c9a02 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x57739b00 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xcab3ec8d rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xbc93e1b2 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x53518a8c rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x00c6b2c5 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0134a85d rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01cf5523 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01d4b368 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0596de1f rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x076aec38 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0927e9d9 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0a722712 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f570440 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x141a0f89 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x20c12a77 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x258c5a6b rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2b05a4a7 rtw_phy_set_tx_power_level +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 0x38d6118a rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3dbee927 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4375fc3b rtw_phy_read_rf +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 0x45094010 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45aedff7 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x495bd9d1 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x498735b5 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b21ad2c rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b99cad5 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50171fbb rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x52d46ab0 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5bc38299 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d7ee7c0 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e5b8d1f rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x62532359 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x64a2704f rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x678c8b0f rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e70cc18 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x738396e6 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76f03ebd rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8801e72c rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x930ff301 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x97e511f2 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x980f31be rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9915e472 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b05f207 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b2bbd9f rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0e8f811 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0e90e5e rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa226f7fe rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa40d72eb rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa432fde0 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4541192 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb55f02fe rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb57aed66 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7af6b51 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbbaf42ae rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf121d31 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcabcf022 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xccfbd6e0 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1095e61 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9a6b21b rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdcc56c8f rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde9761a4 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe46da0a6 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf3c8e959 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf8a71c72 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x72b008b5 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xdfc677fb rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xedd67675 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf286341f rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x2d70e9f1 rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x6ebf9b8a rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x6f531d59 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x18cdcfa9 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x836883c6 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x00f7f80d rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x04533961 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x07f0c772 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0ad22b90 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e93d21c rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x16660d65 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1e12ed6c rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x213eda9a rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2174f0fc rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2741849d rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x29391b7f rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x299134df rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x30455cb1 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3475e2fe rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3f57cb40 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x426f6f7a rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x473d4061 rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x49b6217c rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f568315 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5534c738 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5595da32 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x60b51921 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x61a2ea03 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6414aa18 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x64c77036 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x67146ce2 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x67153cd5 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6a7f397f rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6bdc262e rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x70847741 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x79675389 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7a7a1bdb rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8c6b4d66 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8dc98042 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8e344092 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8fc091b4 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8fcebd86 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x94e7d990 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x965713d1 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9c0fd1bb rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa78ac6d0 rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaac4ff6b rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaafa1de7 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xacc0c7d1 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xae0d3ed4 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb07a7438 rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb4022aa6 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb746efc7 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc0c8d117 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc3a39545 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcfbb4846 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd70bc5e8 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd868c81c rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdd3fff50 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe37d91b5 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe66748e9 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xed336547 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf4eb285e rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf5f5f53b rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0ced9a1f rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0dc4b06f rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x133b2ff5 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1bdda894 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3a07613e rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3ed9ff16 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x547be4a2 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x557678c6 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6ff44b08 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single +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 0xa53d9b93 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb2d05e9b rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb8c4833f rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc01e6de7 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc8954df7 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe817fdf8 rtw89_pci_probe +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 0x7a9617c3 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdbae27c2 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdbe1dfe7 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe8235773 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xed9446eb wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc025eb53 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc1555c4d fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x17548242 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x8f439518 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x12bcc5af nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2bde8bed nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x59738e6d nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x152c87d6 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x213391aa pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x944bbab9 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1fba3fa5 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc9b1ba9a s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd0c000e4 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe9a4b09b 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 0x0a9872fe ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x120ad9bf ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x54d1f837 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x57269b50 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5c0b9595 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6695197c st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x71c4aeb1 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb6b4573b ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcabbb975 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe372009d st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01c330ab st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x094db498 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0abb958f st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1c217147 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3cb04064 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x59754bbe st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x624f3725 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x625f3d74 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7cbb2f49 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x841efc15 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa18db29c st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb2485c53 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd03d43fb st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe1d9c580 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe331b2c4 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf1fed553 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf2eb3a04 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfa4f78de st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x08a887c7 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x0cb07af9 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x199cfd7b ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x1bb31746 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x1e30bb69 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x24370ba1 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x2f417a50 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x575d7ba0 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x5afe8b5f ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x60302312 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x695f88d1 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x72c54edd ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7ba41565 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x7bbfbf1e ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x83af3376 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x8782ff35 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x9306297d ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xa371179c ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xdee476b0 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xffa33472 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x6fe6d918 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe46601b4 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x06311435 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x1cf8fb86 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x286f4595 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x37b03818 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x3cb34ec0 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x470bd472 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x520e5c96 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x531a6b65 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x5cc584a2 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x61077eac parport_release +EXPORT_SYMBOL drivers/parport/parport 0x8269a1d9 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x82dcf65f parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x9117b3e1 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x99b0517f parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x9a2f58da parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xa0bd35e7 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xaa971a93 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xaeec29a4 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xb41100f8 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xb7941358 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xbbbfd81c parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xbc7451e7 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xc06838ed parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xc1085280 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xc73b2af9 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc99633c0 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xd01e44de parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xd706acc0 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xd88a9138 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xdf729e3b parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xf8ef17e2 parport_find_number +EXPORT_SYMBOL drivers/parport/parport_pc 0x53a9ffd1 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xfaf372a1 parport_pc_probe_port +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x94435123 iproc_pcie_remove +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x9e4bef37 iproc_pcie_setup +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0fdb69aa pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x15e8d09e pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1950076f pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3bb387bb pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x40b94b65 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x67765437 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x708cde53 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x813aa04f pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf2da44e pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd28dbdb3 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x66c6ed9b pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x44c1f956 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x66335e7c cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xcc4ea772 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xea1d8fe0 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xced6640d rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xa8d1b629 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x0b45b836 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x41715ed6 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x036eacc7 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x11e92797 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1c798390 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x25d72996 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x51b4f764 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5385278e rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5463ac1d unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x556fa9ac rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5a714215 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5d92e43b rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x76d84d7c rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x95cf4f88 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbca5eefb rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdfb19f45 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe75a0ff9 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xed5a8636 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf0c6b3d4 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf79f3cb8 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfb460533 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x92c76132 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x2818cf5e ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x18f177b8 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6e810652 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb60b1a8a scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb89a6025 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x10e2a960 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x272d1a5d fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x449c0e77 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5bdff751 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x80027354 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8369d6d4 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8f65cee6 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaaf4411a fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbd4b1459 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd5f925c3 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe35e711f fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00dcf7d3 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05826a6b fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05f64797 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1231d508 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1626ff47 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1defb8e0 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f41f8e4 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x230a0776 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29a11a70 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29b79541 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29c1ab6f fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a30d441 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c599d39 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d339846 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3443fb4f fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46f4dd56 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49550f28 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a1bc380 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e22408f fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e76016c fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5405d721 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x569dd730 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5991f7f9 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5cda2697 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66062c12 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6eab9c78 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6eacea1a fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a8ca5a0 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7adae635 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7eb0781a fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fcf7da0 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8396d082 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86fa2877 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87b9cb01 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fdcad73 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99ffe0aa fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c88ac43 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f15bcbc fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa41c3a39 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9ab3023 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc055d005 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8b3b372 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9a12c3f fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb66c6cb fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccf1bb7f fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd34d2dd4 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd428e04f fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd573f470 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb262337 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd07f267 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd783961 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde0774ae fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde48d91c fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0512dd8 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebae667f _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf584f2f5 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfaaed90f fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb28a3e5 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9e921f67 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xba5ad87d sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd1270f6d sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xeb375e31 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x778d1a8d 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 0x4468567f qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x689b9c3d qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7362cc4c qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x81a69bee qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaeb98967 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb7dd5eb3 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbdbbe9b6 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc2aea599 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc485a863 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc9b55f37 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdda01c70 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf3dddf96 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/raid_class 0x0e42942e raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x554ce43d raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xdb5a3f75 raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1362a2cd fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1b82f665 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2488afa6 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x32d14686 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3d8051bf fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3f103238 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x40dd602d fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x47c8b41a fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4a57791d fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x671d466a fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6c257af6 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6d0de3ea fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6d720466 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x90933b41 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94b3d92e fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfb1953a2 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfd09d5d9 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a18554b scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f30987e sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x111f537f scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x117dba88 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b208c9c sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x234a2a43 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24ce08f8 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d6950dc sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36716173 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36a14b54 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5303d5c6 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x539b53b9 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60e8fe67 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x614a6abe sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ac07e15 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d923205 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6df444c0 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x763f6029 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c145c03 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ea3b2e4 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81029f2b sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c2ef957 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9bb66f69 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbaaf7a65 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3fc3621 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7262c0d sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8d371dd sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdb6b2b85 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd137880 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x579b9607 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xab285371 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc657902a spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xec70534b spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xecc59f30 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x07bace63 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x47a31c2c srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc169289c srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd3227dde srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf5c72832 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 0x07564e82 cmdq_pkt_assign +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x081d1a1a cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1f3ed632 cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x2e1830d2 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3f6fab3f cmdq_pkt_write_s_mask_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3fc19424 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x45dae4fc cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x556fb253 cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x578699c0 cmdq_pkt_finalize +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x58cdc788 cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5a123a5e cmdq_pkt_write_s_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bfd584c cmdq_pkt_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6b715b2c cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8aa532b3 cmdq_pkt_write_s_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8ab965b5 cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x9194f23f cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa0a3f2c1 cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa40c93c8 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd529f27b cmdq_pkt_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdf8340fe cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfec2df2b cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc9a7d2a4 of_get_ocmem +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x15ff51da geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1ea807f6 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2891189c geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x467098c6 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x52217f1b geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5dbafc77 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7db1a0fe geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x845a32f0 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x849a027c geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8f18386a geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x967aa314 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb552038c geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbf4c40b5 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc14f0861 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd176f005 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd58e2bac geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xee7b3c23 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x73c997fa qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1c54e41b qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x26d3df2d qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x27515be7 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x40c5fcbd qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4ef1cc1d qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x674ffe4e qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb00055cf qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xcca54638 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf1fe1ae4 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf5f2580f qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x61e9bc90 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x04cb3468 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0a07be1e sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x11bdd233 sdw_bread_no_pm_unlocked +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 0x2bb628ab sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x371217e6 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3837199a sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5279ad4b sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5cb4911e sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7182efb2 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x743cd288 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7579c26c sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x76c55947 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x77f9c38a sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8ac59116 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8d242ea4 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x94b1b47a sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x999450bd sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x99ac564a sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9c607168 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb1273f69 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb236965d sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb83b8792 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 0xbe6365a3 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc6cd8e09 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd0c20986 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe0e29df0 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe7e694b9 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x16fe3919 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2d39fd58 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3a351c25 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x44eba87b sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7b9a72dd sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x864f88fc sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa69fb376 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa8512688 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb4001228 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xba50eb54 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbcff18ca sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd8039086 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xda507c4a cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdcc7e69a sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe0cba8c4 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe0ff6f07 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf2b3f651 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x6155a543 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x06bbe141 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x0df50c8b ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x0e14c222 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x2742a913 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x3a99e121 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x5779cc0f ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x59dc0cd4 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5adf8d3b ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x626638f1 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x654bd35d ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x72f512a7 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x73f603a1 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x7ba40874 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x86ec0e8d ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x8caf6a98 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x91dffdbc ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xa0ef3df9 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xafd60a6e ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xce29f9eb __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xf24648ca ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07b19377 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x24bf4664 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x30a86534 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x30e44d6e fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x39e76409 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x496b2901 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b939daf fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x611d6cc6 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6b7dca87 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x78b4a449 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x82592aa3 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x840802f0 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x875610f4 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8a7f3c88 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x92e3246b fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9cbcd920 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa6aaaf7d fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa7c0b5d9 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb245f706 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb2b38026 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb498123e fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbf990130 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc314dc7e fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc40d2233 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce8b1b7b fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x67f455af gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x8691c13f gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb90d626c gbaudio_register_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf15ec582 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdb52a269 ade7854_probe +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xa21da4da nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xbcef1281 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01a8a4d4 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01f95fcc rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x033ffdbc rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0aea087c rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b854d93 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f7f59db rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10ab128c rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18a1e336 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1904c16b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ecf3bbf rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b72f688 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e45ed85 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x369d68c1 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43bd4786 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4577301b rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4cd32c75 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d847a3a RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53c8ca95 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56c50cbb rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b0db487 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68b81461 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cc6b2d7 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70699fda rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7312f980 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7729afe6 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7abd2a67 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7efc5a26 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x86ebe0e9 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a65f34e rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94188358 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e102950 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0df7465 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa726362b rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xade8d0b7 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaea429a0 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3295b94 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb477347e rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb59ef69f rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb7752d19 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd30e9a7 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe7e8ad1 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2878865 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4e72762 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde153cd3 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe64a0036 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb04889f rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7a16854 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8970d15 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9d66459 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x030a5079 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a2b011b ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d4f7f45 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1196c3f5 ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2510621a ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2605f341 ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2706d5e1 ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36bcde99 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4749f3e2 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x498b6e0c ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d7e864c ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5458b1fd ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5720a48a is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x602fa144 ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65c4aa0d ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6714116f ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x684212f1 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a722aa0 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75639ab6 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76490b4d ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c7c5bd6 ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ce4cd2a ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7eb59de7 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ed6f3b8 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x822c463f ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84b408cb ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8640a3d0 ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x868da0af ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88980af3 ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x903fe253 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa65a423a to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabfd53b4 ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb131933f dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf48feed ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbfbff724 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2ca1261 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc39e91e2 ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6a4a8b7 ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7ed6249 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc98732dc ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd41a556c ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd460c309 ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7e86c26 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe371e1a8 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6dad5df ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6f02e62 ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe902d11e ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0426c9e ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf329fe14 ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf413930f ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8d97fa0 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa90e990 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff72ac52 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x2d4c8ed4 vchiq_connect +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x3c67248a vchiq_use_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x438b3631 vchiq_get_peer_version +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x4b1d1e8b vchiq_queue_kernel_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x58f5a859 vchiq_bulk_receive +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x683e5f57 vchiq_shutdown +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x735d5b7c vchiq_release_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x750a4eaf vchiq_get_service_userdata +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x7bcfd309 vchiq_bulk_transmit +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xad1e52ff vchiq_open_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb848719a vchiq_msg_queue_push +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xbca0c1c0 vchiq_add_connected_callback +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc43f3fdc vchiq_msg_hold +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc9263f01 vchiq_release_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe703148d vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xeae64bc6 vchiq_close_service +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d54adc8 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x403b2b11 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42408f61 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4512cb37 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45545b7d iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45f4b07f iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e4a4535 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52383e74 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5259ec66 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52742a70 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x537ad124 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x540eb9db iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d39401f iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f4fc61d iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x608b37e1 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67fa2e63 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a057c1b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6abc013b iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b1e2be9 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8038c3ea iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f50b3d0 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x919543e0 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93848169 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f70ba60 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa20548d0 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa59fb121 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0225420 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb071bdc9 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb2444671 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb548a996 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb73ff36b iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce2e2d67 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1989f0e __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4f68e43 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3a6bcce iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3a8aea1 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3da6789 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe46cc318 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeaa92083 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf084fd4d iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf33218c0 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 0xf5dc7d64 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf80e73d5 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc819e0e iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfced7472 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/target_core_mod 0x06e12e40 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x076670c1 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d0f7f00 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d67c5ed spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x10e038b9 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x11d796b6 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x12a192f9 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x12fc195d transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1739d961 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x189191ca transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a283a9a __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c3e47e1 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x22d1e25a core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x289beb9a target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x29af3e51 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x29dce7c8 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a2514a5 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a3f8597 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c922bc9 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e239ee9 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x305df13d core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x3115e7cb transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x32034c26 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3562cd40 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x441b7eea transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x48586924 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c715f98 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d9b3bc9 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x51ca7dd3 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x533d48a1 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x533d6956 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x59eedfec target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bbdb869 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c0a159b target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d0fcf29 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6572fc13 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x65b595df transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x703eed41 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x74fdb474 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x75812e1c target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x75a108f1 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x76945ae6 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x76bcb744 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a567353 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b03a1e8 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x80e7afbd target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x8744759e target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x87df55ce sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x89981dc3 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b1e245a target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x923e4f86 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x942fad51 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f1c515a sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xa44c4593 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xaee7bc2d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb33eec45 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xb39ec92f spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xb813f850 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6e93ae1 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc910f5d9 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xcae778a4 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcda01670 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xd15f7a7e target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xd26f174f target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4e30ad4 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xda412497 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xde5a4e93 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe42a28e1 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1ebc720 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2ca5aea transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf483c87b target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbedc09f sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc382ecf core_tmr_alloc_req +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2409a5a8 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x293da1b2 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x58bea865 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6e317ef5 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x87619680 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xbc213ec6 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xbfc0b401 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xedc043ea ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x901acb52 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xff1abc27 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x1d336562 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x3db5487a ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x43038bd5 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x67c25ec2 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x7962eb0b sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2ce62143 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2d34e033 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2edf2fcd usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x39edf294 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x61a9ac69 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x61cfdb4b usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x997169d2 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa36e0cf4 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa70b0ad6 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc497ecdc usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd29354c5 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x19625020 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xfa5b7b79 usb_serial_resume +EXPORT_SYMBOL drivers/vdpa/vdpa 0xa0a6b2b5 vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3f57c33a mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4f76c4b9 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9d893ac3 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe2d92f71 mdev_register_parent +EXPORT_SYMBOL drivers/vfio/vfio 0x03413c4f vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x93892869 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xc9bf8afa vfio_pin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x94e85d47 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xc217e2d3 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 0x1b80bb26 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa8a2d2bb lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb5ad5c15 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf638f4dc lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x04a69863 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x148cd8fa svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1f0a6405 svga_tileblit +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 0x8956f8a6 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa1d6a8cb svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcff04ba6 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe662472d svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x6e0cd5fe sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x7ac42711 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xedacfe75 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x1e7230c5 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x42e784ad mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x10831c13 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x40f4fce1 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x62528a05 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2fa977d1 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3561c37f matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5097c7a1 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8797fadf DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xe1c0a46d matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x8156e0ba matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x805535fb matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x87f6b49f matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x998ef42a matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf1dfd257 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x6d07700d matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x7bb3b1bc matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5b59977d matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6a794942 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xad6db3fc matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xaee20110 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xce7e3cc5 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 0x2a25052a virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x73453508 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xadcd7fe3 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb03c3d65 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x21f37075 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x7a39b7f2 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x38c95855 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa8c74e7a w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x0b1095df w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe5bf70c0 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xe76ec9c8 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xec040b08 w1_unregister_family +EXPORT_SYMBOL fs/fscache/fscache 0x0be8f82b fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x0f074104 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x102f8629 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1a25cfa0 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x1e1fd7cf fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2261af23 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x2ec47c51 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x36fbf478 __fscache_write_to_cache +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 0x5669c19f fscache_cookie_lookup_negative +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 0x6ef10b19 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x78ae5499 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7b1a46d5 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x8f3fce73 fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x94e967f5 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xa0d379ec __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xad65457e __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb4ee812e __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb7432cc0 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xbc131033 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xbedfe603 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0xcc7522ec fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xcde0a2c3 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0xd0e627ce fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xdfaec961 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xe1e3ac36 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xe5f0b947 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0xf4a5fd97 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xf63da124 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf7462cb8 __fscache_unuse_cookie +EXPORT_SYMBOL fs/netfs/netfs 0x5d1d9c01 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x90c00580 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xaadd91e6 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xac413fcb netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0xf1bd69f4 netfs_stats_show +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x0a4629f9 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x52694277 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x76acb3e9 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb3d3d01d qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xc6ab9c44 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xdca35788 qtree_delete_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x6c713da5 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x916491ac chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/lru_cache 0x0cb562e6 lc_put +EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed +EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get +EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del +EXPORT_SYMBOL lib/lru_cache 0x28428934 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x66b46c23 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create +EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find +EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xf0e20f9b lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xfba16232 lc_get_cumulative +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 0x14062758 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x161591f4 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa26632e2 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xac4ac442 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe2f6ef44 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf5becf5e lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x2785d945 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xeb2e9052 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x58174de6 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xf1d602df unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x04da76cc p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x09318dd6 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x0a9d05af p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x19368f92 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x2806b6de p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x29313500 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x2a808d7c p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x2e70f4bb __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x3274ca6f p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x423c5e45 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x42b9780f p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x4308e4c7 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x45ecc4fc p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x49d79405 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x4f4a8d52 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x54fd3816 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x557fa8a7 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x5af86721 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x5be5b3f1 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x5e8d0106 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x60ce04eb v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x6d0409b7 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7337094f p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x74ccc966 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x78893cb3 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x7e2e8f75 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x8417b37e p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x8dc22d79 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x9b95efea __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xa0c554a1 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xa0d66366 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xa237d8a4 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xa321dd2e p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xa9d2c7b3 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0xb430371e p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xbbea6ec7 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xbd50eecb do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0xbe27f9c3 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xbe376f66 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbf0939a7 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xc398752e p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd3f529cb p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xdd532f3d p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe62d398d p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xef27e813 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf85a2831 p9_client_rename +EXPORT_SYMBOL net/appletalk/appletalk 0x005e1f72 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x5741a04b atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xd6a560be alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xe726c8cc aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x01899c88 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x029c8805 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x03b98e33 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x148d07de vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x291710d6 vcc_insert_socket +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 0x97a391e2 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x9cf69119 deregister_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 0xbf699b01 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xda5a3264 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf19b3c6f vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xf3f8ffe1 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf7d5df80 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xfce71ef0 atm_charge +EXPORT_SYMBOL net/ax25/ax25 0x14098c4b 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 0x2492ddd7 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x410a6005 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x46eb184e ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x67b471db ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x79acb0c6 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x95547b5d ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc45a1ec2 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02baa631 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07ca4058 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07dd7fb0 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ac3bb25 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d7a815a hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fa6caeb hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12df8827 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2605cd6d hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x299a172a bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4aeca79a hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4cea026e bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x509c5bb7 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51fafe76 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x57da8292 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59ebd252 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a87b6af hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5bb66a00 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e792107 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x67fd61b0 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6d5101a9 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x74a07332 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7af2f385 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e18d0df bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f05fd02 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80c1dd03 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c7c418c bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9117c839 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x99b67915 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a71bff8 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bbd4036 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d211882 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d88c4cc bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e53d59a __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa020e42b __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8288737 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xad932d95 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf155204 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb19471f4 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb20ba653 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xba160018 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0d96a0e __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2fcb016 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3132237 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb2e44c2 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec190501 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec8536de bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef4ce86e hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0023154 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5873666 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf58f4e0e hci_mgmt_chan_register +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1b54ed64 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1cd5c43b ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2bbdbaeb ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x59c8544b ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6892df0d ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x91959c3b 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 0x34a5307f caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x7bd01b47 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8978ca50 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xd0056773 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xd2f710ae cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x03e4dab0 can_send +EXPORT_SYMBOL net/can/can 0x0f012cd0 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x3c9a405c can_sock_destruct +EXPORT_SYMBOL net/can/can 0x76cc6fef can_proto_unregister +EXPORT_SYMBOL net/can/can 0xa9bd445b can_proto_register +EXPORT_SYMBOL net/can/can 0xe487b6b1 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x02f95a0a ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x044b0aac osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x078caad0 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x0a98d6d5 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x0aa558b7 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x0acc3a5b ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x0b36f5b2 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0b71584d osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0ce3f8dd ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x0d076b41 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0f28351a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x0f485903 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x1529ce59 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x153deece ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x1548a97a ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x15eb71c0 ceph_osdc_sync +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 0x17f02f14 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x1d8b73b2 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x1e8d1e05 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x2a222a0e ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2c6acc8c ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x30cd729e ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x3122cf04 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x338534f4 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x33f396a1 ceph_copy_from_page_vector +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 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4733a5e9 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x476f029c ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x47ec16e9 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x48673bd3 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x4906fa76 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x497fc38a ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x49cef6a8 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x49e613dc ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x4acdcca6 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4cad40cf ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x4e40fea7 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x51318a16 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x5348622f ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x5469f28d osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x56f42b2c ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x582e9652 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x5964d465 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5f0a1cb7 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x60e19ea7 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x66501cde __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6aea2dcd ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x7419e1ea ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x78e48ed1 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x7b1260d1 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8b6af481 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x8ff840e6 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x921cddb3 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x9366f776 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x93694a90 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9a626921 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa08df436 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xa1adf1da ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xa1c0e451 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xa2dad5c3 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae42fb79 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb02c887d ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xb2d8076e ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xb2ebd101 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xb2faf8f2 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xbc471ada osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbe59aeec ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xbec1d538 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xbf6f8419 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xc12573a0 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xc13e5565 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc3a60d85 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xc40760ed ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xc792d262 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc9e0aaec ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcd205067 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xcdb6cafa ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xce0f7e2e ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd4ecb5e9 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xd59571cc ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xd6b2a9b2 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xdbf6a33e ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xdcb74583 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdd8e8d79 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xdeeef4e6 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xdf05dd04 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xdf635c06 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe26ade36 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe27f810e ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe460af97 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xe4710eb5 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xe55707d6 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe910dc51 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xeae6a7e6 ceph_client_gid +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 0xf0f92670 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xf68d2ef9 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xf77a671c osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf8d5a973 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xf9135b99 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xf91a6f9a ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf9aceaa8 ceph_zero_page_vector_range +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3ba05ef1 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6d52f5a8 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x6e63fcb5 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xc30fb4bc is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0fd486b6 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x12b24921 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x513cb35c wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x68de6799 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x79f67acf wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8a502e7f wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x11455423 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x8fef0dc6 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x8bf1aa8b gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2b079df9 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x712e1cdc ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc044a536 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd27b23b1 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x037f5d96 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x242c4617 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6cd0c64a arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xae5e7e75 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4cccc571 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc1bf237f ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd911e304 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xda7c9d2b ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x9f90ce66 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xb159b085 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x13517085 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x15b1c86d ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1616de6b ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1be36bfa ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6c5888ef ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6ce28e2a ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7dd483ed ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x826681b4 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd37f32e3 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf820e1d9 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x88d39b7c ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb5a18274 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xbbf0069c ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe7b1aaed ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x40195f8d xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x41f40ee5 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2a125ce4 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x4d4c98bb xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x03ffa23b lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x0da93620 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x1af02411 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x3ee16cf0 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x70df343c lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xa80f417b lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xc1fd70ac lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xfe447bd6 lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x053fb5bc llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x1cfb8e94 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 0x6de65579 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x6ecef122 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x8be3c427 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xa7aab49b llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xd1e6786d llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x01e698a4 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x020baa58 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x07a80de4 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x09981025 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x0a97e017 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x0ae0e946 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x0c16e8cf ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x0c5c4322 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x0cbbb1af ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0e46c0ed ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x10279d08 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x19aa1a13 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1c213d60 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1caa0f0b ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x1d6e9d7e ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x1db0b74f ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x1f697adb ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2607d6a0 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x28c0bef8 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x29a8b3f4 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x2d6667c4 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x2e9e100d ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x3038c95d ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x315fe25c ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x330f9fdb ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x346fdc37 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x3483194d ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x384c9b0b ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x3c7556c0 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x3cd159f4 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x40a7e2fa ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x460c5268 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x460dfdd8 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x46cd48b8 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x4934d0b6 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4998f71c rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x49c9393a ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5519c34c ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x5daf533c ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x5dd4ef9f ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x604e4117 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x61b6b25b ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x6210e852 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x63a0b01a ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x63ac9808 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6552d989 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x6b8e1228 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x709ed34f ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x7a3347f5 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7a73b02e ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x7b962611 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7ecffa06 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x7f1b71f9 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x7f7e2c97 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x842716c9 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x84eb2e0a ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x86901edc ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x8c2ed9f1 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x8dece85d ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x8e06a39e __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8eff606e ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x95528c7f ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0x98978e0d ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x99d68a2f ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9c050cba ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x9cb75332 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x9d7b9764 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xa1c60352 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xa76b4b5d ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa98da351 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xaa8741d8 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xaf497fd6 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xb01c9ad1 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xb1fac501 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xb2531103 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xb2e24014 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xb90a2105 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xbe1152c9 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc1bcac0f ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc482a896 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xc6c1702d ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xc729ee18 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xcb58ec4a ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xcd531548 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xce23474e ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xd0768291 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xd28b5e5a ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd805dbc6 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xdb63cc3c ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xe55bead6 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xebfc4b82 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xed0a07f1 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xf0ac6f39 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf30aa641 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xf3b0b828 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf4b1a1b0 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf52e4ea4 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xf6072d79 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xf61fa661 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf7abeb9f ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xfd384d8b ieee80211_report_low_ack +EXPORT_SYMBOL net/mac802154/mac802154 0x159b2e0f ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x159bde30 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x25d552d6 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x2ef4f2fa ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x58965be6 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5a93c82c ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0xbb1cfc56 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xefc5d93a ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xfc404a65 ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2de4220f ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2f84fb8a ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3d0cd8bf unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b40f580 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9770fdb1 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa92c240f ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xae385c6c ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb1449b19 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbd339dee register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd03b496e ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd1526a11 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd233dd43 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdcd8e2c6 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf9bf8450 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfab5bf5c ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x2ccf73d9 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xcba75837 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xf1742573 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xf6f39c3f nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0c5ae821 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x24df8f81 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x2d22a7d1 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x2de8c023 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x48141e18 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x58bf36de xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x6223dc9e xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xaf27f56d xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdf282fd4 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfec7a0d6 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0523d066 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x0d6913f0 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2d79c3ac nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3d76c283 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x40fe02c8 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x45848c94 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x4c6225de nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x7169fdd9 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x8711ea7d nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x8c90c728 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x93a17fc2 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x9806aea4 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xa062d3b8 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xa3bc4691 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xab69fb78 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xae96cc9f nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xc2d10718 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd092cccb nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xde776793 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xef817f00 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xfea72e42 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x0208206a nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x03606efe nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x07c47bda nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x19665c0c nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1fed2401 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x2088dc5c nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3ca825f6 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x500aba6a nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x5185ed35 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5b000b94 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5faf850b nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x63c37dad nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x6a776465 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6ad2eb9b nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6bd87e09 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x6e0153fb nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x78ecc370 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x8f2db50a nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x93ac87d0 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x99436e9d nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xa0a2739d nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xa82d2bd6 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc4c2834a nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xc7813217 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xcd8d3e75 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xdf83b32c nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xf7247d33 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xfb0704be nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xfb15e982 nci_req_complete +EXPORT_SYMBOL net/nfc/nfc 0x00679c1b nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x09cad088 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x0f773581 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x19950b94 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x21d0c9a1 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x3ecfc95c nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x441f29c6 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x4c838fdd nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x50fae9f6 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x5633cebe nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x5abd10e2 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x6a79f70b nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x6c81e9bd nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x95de9134 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x95fb5651 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x9910a614 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xa7deb060 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xbbb55edc nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xc81511e5 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xc9981f46 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xca20dab4 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xd6cae5b4 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xe3bc8ffb nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xeb7dccda nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xf331f1b4 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc_digital 0x2df377eb nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2f79ab5f nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xad185592 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xd3bb57d5 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x13cfb117 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x1f004bfb pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x3d727892 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x54b00eac phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x70ce7e10 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x7a952902 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xdbb8ad02 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xfd273cee phonet_proto_register +EXPORT_SYMBOL net/rxrpc/rxrpc 0x08aa1060 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2262af5e rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3259aa33 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3842e781 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a1c116f rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x45daeade rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8154f3f6 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8493fb9e rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8ab1e929 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b25026a key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc420ba65 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd71adaa5 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xda3d1076 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdd1050ec rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdde710f2 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe1fddb99 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf53fffc4 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfcc334db rxrpc_kernel_end_call +EXPORT_SYMBOL net/sctp/sctp 0xbf733dfd 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 0x51630a56 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x56067b6b __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x768ad859 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x83163422 __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 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 0x4706c14b gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcc5af315 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdd7a61a6 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3fbaf2dd svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4195dd7e xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xbd00ba83 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x28b6f56f tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x48623e2b tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x73180c2d tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xc8df5f26 tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0xeb4c9744 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0063c88d freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x03b87283 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x08392dbc cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x097f3367 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0de80a48 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x11132b6a cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x12056811 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x127ac50c cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x16e4136e cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18f34797 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1c5eacf7 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1cf23886 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x1d7ba34c cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x1f15c23c cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x205cfd7e cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x225fc0b4 cfg80211_any_usable_channels +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 0x28ffe39f cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2c2ebff5 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x2fab721a cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x333bc19e cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x3c94fab6 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x3f29b7f0 cfg80211_send_layer2_update +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 0x45da9eab cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x46531efe cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x47194786 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x47522381 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x495ada83 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x510a34bc cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x5221097e cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x565d829e __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x59f71366 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x5bafa793 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x600debce cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x67414fb1 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x678ae8b1 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x67b4da13 cfg80211_gtk_rekey_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 0x6d4c55fd cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x6ef7299e cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x6f63d96a cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7109b3eb cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x71325a28 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x734519f1 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x73d2309c cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x7486aacb wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x76e5700a cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x776e9d35 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x783378b1 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7839fe09 cfg80211_assoc_failure +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 0x7b887d74 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7dfa3801 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f8d9ad0 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x81eb590a cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x82e33860 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x84c889b8 cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0x8634debe cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x8834f51d cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x8ef63a74 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x8f3eb106 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x9057c351 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x909eaf65 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x910f76b3 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x928be06f ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x947f3bc3 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x95e8dc8e wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x99ffdcb5 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x9a26b820 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x9ac37448 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9f67883d cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x9fba02bc cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xa0867936 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xa1ae8df8 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xa278774e regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xa4ab1cfb wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xb0bdb8e2 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xb6c3d369 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xb7a8def6 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb9944544 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xbd038bbd ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xc443657b __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xc7a429a2 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc91e9adb cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xca1f2bb3 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcd82d166 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xcda8b1fc cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xce9f0921 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xd14c84b9 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xd28491b5 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd8379561 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe2e4c729 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe80f8b9f regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xe84382e2 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xe8c615e9 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xe93ed896 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xeac5ad77 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xef7f78cf get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xf0d5a1c3 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf48918aa ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xf4d2817b cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf99f8bf9 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfb78324b ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xfc0ed0be cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/lib80211 0x2c5ebfc3 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6301922c lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6b139ebf lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x7d5160ec lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x98271447 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xe0a6ddf5 lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xd68f836b ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xa16527e7 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x0a471119 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 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 0x45de7b6c snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6225005d snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xfac18b6b snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7a3e0db5 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8150b379 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd70dbf6 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x6553d415 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x000bb4c3 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x0b721bdc _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1aeb02da snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x1fdedd05 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x277428c4 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x32802076 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 0x40220a06 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x43e0c698 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4c95a0c4 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x4d842807 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x50af3256 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x546cf576 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x5efbeb5a snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x5f01152a snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x6268305f snd_card_new +EXPORT_SYMBOL sound/core/snd 0x6c1f7595 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x74753cea snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x780bc75e snd_device_register +EXPORT_SYMBOL sound/core/snd 0x8135adb8 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x829d20a3 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x877e8e7c snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x878c6d09 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x882eb250 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x8d53d2f2 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8ef747c1 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x927df8b1 snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0x92e8ab6a snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x99b47420 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa3ab703f snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xa3e16fb2 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xa5ff1b0c snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xaec2d348 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb9c08283 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xba4db9af snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xbbce77c5 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xbc0ef6cf snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xbca0b221 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xbe46c747 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xbf64ff24 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xc2d3aa0f snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xcd5f70c7 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xcdc7d35c snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xd07579b4 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xd360ab91 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xd6c6e82c snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xeaf9f796 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xf413c358 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xfda7aa80 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xfe92d962 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x8d87ce84 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0xcbd84f70 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0xaeddc8a7 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0087f1fe snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x00b44185 snd_pcm_lib_preallocate_pages_for_all +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 0x0a7b9fc3 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x0aba66fc snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x16c0af58 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x2383ed4f snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x26803380 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x2a944adf snd_pcm_hw_constraint_minmax +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 0x3f621147 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x40fbf901 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x44fd5a54 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x4593d126 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x468d4204 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x4c5d9082 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x501b3634 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x5071fc5b snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5cc111ed snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5eb6bb02 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6520231f snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x6895bf50 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6b0e6a4c snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x6c4a3ad1 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x77594e53 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x820a0544 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8414f683 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x850a930f snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x85314eb9 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x9045dec0 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x94114284 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x94c65d11 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x9516ad28 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x9dcc5d4c snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x9de837d3 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa370b644 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa95c8da4 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb2e209bc snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xb4bde5a0 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbbc2c32b snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xbf4febd3 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xbfe6d0ef snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xc8a2d505 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xcbcee692 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xde3b4731 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xde8ca74b snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xdfda7c45 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe21ff22c snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xecd31d6a snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xef50528a snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0afa9c9a snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x29fccbe2 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x346cff47 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x39ac16f3 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3d8e7ea9 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x48cc4706 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x52de7770 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x57b9e85c snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x663f9e1e snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7bc05a97 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x836ca2c5 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb5676dd8 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xca890b14 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd3eb8a87 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe29cc715 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf4c4a49d snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf6e36c1c snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfef159d7 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xfe23caec snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x0e883f39 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x104f3953 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x505698ba snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x6354526d snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x78235601 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x78f595bd snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x83d3b276 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x84baba73 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x99b9703b snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x9cac54e0 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xb414a39d snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xc00f0dba snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xdc36396e snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xe87e7d9a snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xedabf15a snd_timer_global_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x63f1765a 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 0x27c6358b snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x392a3cb1 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4abba0f2 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x98daddc9 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa93ba90c snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaff97977 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcedb1b67 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe158025d snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf1d447c0 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x10620953 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x32f7435e snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x46c29385 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5a395ab5 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5cf40605 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x657be741 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb84fa763 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe656fb43 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf66050cf snd_vx_create +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00ff39ea cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0740a18f amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08c51d12 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b4e478d fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x316d1004 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35b8f189 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x36bcce33 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x41bee9f5 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4aeb5716 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b6b5fbf fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x549eadfd cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5991a639 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f9e4619 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x608140ff amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x71d01cbb fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x725e3863 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7382acea amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f6a4814 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9792acf4 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9dbed4fe fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa0332dbb amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa52ef697 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad11507e cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad9f1c7e cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb10b0dcf cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5b417c1 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed1d162f amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xedd5f72a amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfbdb7495 fw_iso_resources_destroy +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 0xb7b836b3 intel_nhlt_ssp_mclk_mask +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xe2111917 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x921ddf52 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xaee77ea2 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x07e4267a snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x106b86e3 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1b9a0841 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1fc8249c snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x30c610e3 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6e7e1005 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc7f6aea1 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xec4b6844 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x6b453c4b snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7bbd0710 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x82e16c68 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x986c7dab snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x25af1c18 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xaee1400d snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x02ebc5bf snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1dd458d2 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2802fedc snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5592c0ab snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9988db4b snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xebc68c82 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x054820bf snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x335e34e0 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x73a316c6 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xad6f2d96 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc7a6224b snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc8659e70 snd_i2c_readbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0e608504 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x12434d6a snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x18e596bb snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x33a77a16 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5daaf5b9 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6851259e snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x688532d8 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7a42dc63 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x82a84af9 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb866b6ce snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbf99a4d4 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc093cefd snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc626eb35 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcc08f672 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe13980f4 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe89da7b9 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xed69e6b3 snd_ac97_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x05ff97d9 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x086e4fab snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1b791489 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2922da28 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3740bf26 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x69acaaab snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe2ecee50 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe81106a0 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf85c6835 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1bdb724c snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7e6f6918 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe64354f3 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0510c23c oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0aa68755 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x10b5596b oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x10bfc850 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1c02c872 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1dbe2319 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ab0ea90 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x33862550 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3861ac4b oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4309a436 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5592d072 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x57d86db4 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x846948dd oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xae6230a5 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb79e87d1 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb9845b53 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc8d8063c oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xddaae644 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xebbf5e63 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef5234f3 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1ad4acbc snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x627e60f0 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7306698c snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9b9e2cca snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa1349046 snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x1c3d55b8 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x5b128b8d snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xdb6e2078 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xd41053b5 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x537efc39 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x92ff90c0 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xf920d665 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x42afa1bf tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe1881c2e tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x11e78ea1 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x536b0097 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x58181e40 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x99cc00e0 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xa5c87eae aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x14f29335 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 0x63409646 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 0x878cd0b6 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/fsl/snd-soc-fsl-utils 0x0d788520 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x5b84abd6 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xd0949625 fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x6705b1a2 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xbc2636d2 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x37b557d0 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x5ea762d5 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/snd-soc-core 0x3380e256 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x719f1875 imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xddc3f509 imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xe2be1959 imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xfc122a78 imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0xe0316434 mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d2a3e8d snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11e91ad1 sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x141d408b sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x188314b6 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x191c64b4 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23a691e2 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x282bd2e5 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x29d28970 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a71d236 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x304e4f49 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38d3e7ba snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a563a75 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3baacbda sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3e1e7fe5 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x413156c3 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4657bd4e snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x46b9a0cb sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x473d8088 snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4cd8620f sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x50b593ac snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5dc6c3d9 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x693ca2c6 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c115a94 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6da50f7b sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x79247b40 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8f9110b0 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90e3700b snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x94cad746 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96c5d71d snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96e97b64 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x972cf191 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa28abcc9 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa4c07171 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa52e5721 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa83cd4eb snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab961a1b sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xafcb7926 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb09218aa sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb225d307 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbba64e4b sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc6c8499a snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcca5e591 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xccc52a5d snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd09a277a snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd1d820f2 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd6489467 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd832bba5 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9f9b87f sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdac461fa sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb971187 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdbf597e4 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdfec7275 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe6c4d77d sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec46d793 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf0f4685a snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9119c29 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa1d2f5b sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x5282c845 sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x908cf287 sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x98337804 sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xfe219b50 sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xab0aae83 snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x3009f1c0 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x6c655750 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x75aa0072 sound_class +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd491c41c register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xebd9a9c3 register_sound_dsp +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x035b69e8 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x04bb6697 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5ff9ba63 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x643890dd 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 0xa71486c0 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xeb7b07f2 snd_emux_lock_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 0x46685084 __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 0x00009054 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x000b7960 write_inode_now +EXPORT_SYMBOL vmlinux 0x0013e7c9 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x001c5b9c put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x001c7aa7 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x00288682 vfs_mknod +EXPORT_SYMBOL vmlinux 0x00325b31 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x00454518 kthread_stop +EXPORT_SYMBOL vmlinux 0x00563e9d vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x00568506 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x00594ac2 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x00616d6d tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x0066e4d5 unix_get_socket +EXPORT_SYMBOL vmlinux 0x006c2b87 bio_init_clone +EXPORT_SYMBOL vmlinux 0x0071350f d_instantiate +EXPORT_SYMBOL vmlinux 0x008430ea seq_path +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00beaf3b devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x00ca7dc6 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x00cb85b5 mpage_writepages +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00da87af tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x00f1f291 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x00fa0c04 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0112b81f submit_bio +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x011a4cb2 inode_nohighmem +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 0x013fb04f __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x015f9900 empty_aops +EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017a0f25 padata_free +EXPORT_SYMBOL vmlinux 0x017c1f09 dquot_alloc +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x01ab44b1 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01c4dfa8 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x01d2bfe8 bdi_alloc +EXPORT_SYMBOL vmlinux 0x01dc8a99 qman_update_cgr_safe +EXPORT_SYMBOL vmlinux 0x01ed6e8f skb_ext_add +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x022a46cc pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0278f52f truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x027a818c find_inode_rcu +EXPORT_SYMBOL vmlinux 0x0282fe41 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x029621ce fb_set_suspend +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a5700f skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x02bac5a5 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02ca5f46 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x02cdb3e4 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x02e7e37f pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0340fef0 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0386f420 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x039e97ad fsync_bdev +EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x03bb5e3e xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03bf4d83 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x03ccbfd6 kernel_read +EXPORT_SYMBOL vmlinux 0x03d5a0b2 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x03d5b087 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x03ff1610 skb_copy_header +EXPORT_SYMBOL vmlinux 0x03ff5c38 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x040533b1 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x042af432 touch_atime +EXPORT_SYMBOL vmlinux 0x042ef8a3 lookup_one_len +EXPORT_SYMBOL vmlinux 0x0438d7b8 mr_table_dump +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 +EXPORT_SYMBOL vmlinux 0x044f1668 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x0456ea1f serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x0457f035 tcf_block_put +EXPORT_SYMBOL vmlinux 0x045dc9fe vfs_ioctl +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x049b3dbc blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x049fc4b9 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x04a35d66 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x04cc962b nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f447af cdev_set_parent +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05138b2d flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x05181675 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053dc153 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x055fb3c4 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x05621d13 sock_wfree +EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x05666378 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x058259e5 __find_get_block +EXPORT_SYMBOL vmlinux 0x0585cd17 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x058909bf mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x058a0e85 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x059fc910 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x05bba317 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x05e7ef55 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06198d9b mmc_release_host +EXPORT_SYMBOL vmlinux 0x061d77f0 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064e095e tso_build_data +EXPORT_SYMBOL vmlinux 0x065bef5f security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x06637494 sock_create_lite +EXPORT_SYMBOL vmlinux 0x06679e2a blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x0667faf2 d_invalidate +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06912484 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x06ae1fa2 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x06b12e0e qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06bf9ad4 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x06cba95d inet_put_port +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06e1ae14 of_translate_address +EXPORT_SYMBOL vmlinux 0x06ecdc41 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x07082f74 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x071cc881 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x07294534 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x072e6509 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074042e7 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x074507f2 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x07539743 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x075d8ff4 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x077c7d4a blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x0790cf78 setattr_copy +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b536e5 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07cf12c3 tcp_read_done +EXPORT_SYMBOL vmlinux 0x07d39600 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f6ce6d devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x07f8f6c6 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x07fb0cb6 flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0813b6e7 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x08165bdc blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x0823f0fd mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x082971f3 d_drop +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 0x083a0a1b param_ops_uint +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084ac62b sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x084bc8b0 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x085730e1 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x087d56b5 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x08920fd8 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x08ce9637 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x08d66ab3 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08f71dd9 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x08f72235 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x09138663 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x092703a9 sock_register +EXPORT_SYMBOL vmlinux 0x092bb112 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x092d858d xfrm_lookup +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x09331ecb posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x09644207 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x09680096 param_set_invbool +EXPORT_SYMBOL vmlinux 0x09692743 set_blocksize +EXPORT_SYMBOL vmlinux 0x09735727 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x09784f6c pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x097f181d mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09918445 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09a271e7 neigh_for_each +EXPORT_SYMBOL vmlinux 0x09a4a339 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x09b13b33 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x09b998d5 of_match_device +EXPORT_SYMBOL vmlinux 0x09bdd20f __scsi_execute +EXPORT_SYMBOL vmlinux 0x09bfdd98 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x09c07ce5 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x09c15763 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x09ce4250 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x09d17e8d iov_iter_discard +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 0x0a04326b bio_uninit +EXPORT_SYMBOL vmlinux 0x0a052a5c slab_build_skb +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1dc04b give_up_console +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a3b0c54 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x0a3f0d43 netif_tx_lock +EXPORT_SYMBOL vmlinux 0x0a443dcf neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x0a4cd021 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a85cb1b md_handle_request +EXPORT_SYMBOL vmlinux 0x0a889b1b xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x0a8fcba3 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x0a91b2a9 node_data +EXPORT_SYMBOL vmlinux 0x0aa23890 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa9b5c4 nf_log_trace +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ab74c84 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x0ac2a970 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x0ac8710a netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x0aca3a1f iov_iter_npages +EXPORT_SYMBOL vmlinux 0x0acbba10 keyring_clear +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae4b58e vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x0aef10d9 dump_emit +EXPORT_SYMBOL vmlinux 0x0af9924f kern_unmount_array +EXPORT_SYMBOL vmlinux 0x0b11f53f cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x0b19ecba sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b208aed __phy_resume +EXPORT_SYMBOL vmlinux 0x0b23809b kset_register +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b2e1249 seq_open_private +EXPORT_SYMBOL vmlinux 0x0b399658 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x0b4f46e7 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x0b54dda8 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x0b5a06fa input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x0b637467 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b90c2f2 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba128ed pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x0baab146 __check_sticky +EXPORT_SYMBOL vmlinux 0x0baf675a pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x0bb8a8c9 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc6fd28 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x0be4c9cf set_cached_acl +EXPORT_SYMBOL vmlinux 0x0be4cc47 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x0be8cacf devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf4b8a3 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c224bb5 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c35cd9f dev_uc_sync +EXPORT_SYMBOL vmlinux 0x0c4ccc2b inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c57841f __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x0c61b3f6 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c6da707 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x0c8a034d unload_nls +EXPORT_SYMBOL vmlinux 0x0c97757d dev_close +EXPORT_SYMBOL vmlinux 0x0c997bbc simple_getattr +EXPORT_SYMBOL vmlinux 0x0c99e953 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x0cad3e7a lynx_pcs_destroy +EXPORT_SYMBOL vmlinux 0x0cb0988b flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cbb9d7a bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cdf2216 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d246177 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d3963d6 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d49f36f sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d624a58 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x0d7e70ab netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x0d99675a set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0da76996 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x0dcc4061 folio_wait_bit +EXPORT_SYMBOL vmlinux 0x0dcf1550 dev_trans_start +EXPORT_SYMBOL vmlinux 0x0dde30c6 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x0e109197 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x0e14e42e migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1bdbc1 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x0e1e5f4e dst_dev_put +EXPORT_SYMBOL vmlinux 0x0e316916 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e4939a4 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x0e4c5fb9 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x0e66311b generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x0e6c48ff of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x0e6d2933 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x0e75347a bioset_init +EXPORT_SYMBOL vmlinux 0x0e8530d0 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x0e883b4b netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x0e9d95cd pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0eb81eb7 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ece1740 km_state_notify +EXPORT_SYMBOL vmlinux 0x0eda7715 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x0edea2d6 tso_start +EXPORT_SYMBOL vmlinux 0x0ee07350 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x0ef27faa mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x0efa81e6 d_add_ci +EXPORT_SYMBOL vmlinux 0x0f06b66e skb_expand_head +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0cbbc8 noop_fsync +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f29e0fa input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x0f365835 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f42f7f5 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x0f43cb5a input_set_timestamp +EXPORT_SYMBOL vmlinux 0x0f4ab279 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x0f4c029b freeze_super +EXPORT_SYMBOL vmlinux 0x0f55fc0c devm_request_resource +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f697255 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8d3a68 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0faf0b40 inode_init_once +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc77057 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x0fc9249b register_console +EXPORT_SYMBOL vmlinux 0x0fd4ee58 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x101e36a9 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x1048b674 param_array_ops +EXPORT_SYMBOL vmlinux 0x104dbbfa call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x107a28b7 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10cf6218 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x10d473e9 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x10d6e251 dst_init +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x11055adc scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x11083d21 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110f12fc input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x1119196b dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x111ad1e0 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x112071bf cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x113cda98 bio_endio +EXPORT_SYMBOL vmlinux 0x113eec68 find_vma_intersection +EXPORT_SYMBOL vmlinux 0x11509ddd param_set_bool +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1170db2c user_path_create +EXPORT_SYMBOL vmlinux 0x11845ecb simple_unlink +EXPORT_SYMBOL vmlinux 0x11ad699d page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x11b04c5f mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x11bb2e27 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x11be9cbb sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x11c73462 arp_xmit +EXPORT_SYMBOL vmlinux 0x11cd7b85 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x11d2ecc9 amba_device_register +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e2db77 __post_watch_notification +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 0x120ff8e1 xudma_get_rflow_ring_offset +EXPORT_SYMBOL vmlinux 0x12166dc2 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x12316795 phy_driver_register +EXPORT_SYMBOL vmlinux 0x1233eff2 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1271a84e dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down +EXPORT_SYMBOL vmlinux 0x12831e12 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x1286d21d pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x129b20ad xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x129ede95 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x12a2d94e scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12bd3bd9 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x1300a0fe flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x130747e7 generic_writepages +EXPORT_SYMBOL vmlinux 0x13098b81 cdev_del +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x1310ef7d pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1312a2bd kernel_getsockname +EXPORT_SYMBOL vmlinux 0x1312b1c8 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x13277c57 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x1341c508 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x13517adb dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x1369c746 d_obtain_root +EXPORT_SYMBOL vmlinux 0x13831a40 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x1383e58b generic_write_end +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a31ee2 inet6_getname +EXPORT_SYMBOL vmlinux 0x13ba28b9 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x13c23ca3 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13f2f46c scsi_print_command +EXPORT_SYMBOL vmlinux 0x1402dd2d dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x14034b3d netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x140ebdd7 do_SAK +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x1432fd1d simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x1436d187 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x14430e21 phy_print_status +EXPORT_SYMBOL vmlinux 0x14449ac7 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x147e37a8 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x14890534 vga_get +EXPORT_SYMBOL vmlinux 0x1498a57d dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x149e2fb2 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x14a033f1 sock_set_mark +EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg +EXPORT_SYMBOL vmlinux 0x14c14e66 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x14c4388f xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14cbb785 pci_get_slot +EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock +EXPORT_SYMBOL vmlinux 0x14efcbca dquot_release +EXPORT_SYMBOL vmlinux 0x14f31126 km_report +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x14f4c326 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x1514a9f4 __destroy_inode +EXPORT_SYMBOL vmlinux 0x15180bf2 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x152625f6 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x15281757 dm_table_event +EXPORT_SYMBOL vmlinux 0x1538f7e0 param_get_uint +EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155b0939 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x159b60b5 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x15b1db41 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c06eee rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x15c123ae fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x1602aaba mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x16254fbb hmm_range_fault +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1639c63f pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x16506b75 init_special_inode +EXPORT_SYMBOL vmlinux 0x1656f25c genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x165af014 inet_accept +EXPORT_SYMBOL vmlinux 0x16628fed xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x16797da3 pci_enable_device +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x168a8273 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169976e9 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x169bc36e __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16f6e1fa sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x1705df87 finish_open +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x17104ea1 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x1740b049 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x17449763 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x174c5994 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x175158aa iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x17536612 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x175b2f12 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x175dccd3 bio_split +EXPORT_SYMBOL vmlinux 0x177c0114 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x178ccec4 vme_slave_request +EXPORT_SYMBOL vmlinux 0x17ab38ad set_page_dirty +EXPORT_SYMBOL vmlinux 0x17b558f5 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x17b5d7bf kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x17bb35ac proto_register +EXPORT_SYMBOL vmlinux 0x17c2b9ef blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x17cf20a7 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x17df6461 consume_skb +EXPORT_SYMBOL vmlinux 0x17fb2909 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x180173d3 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x1805898e inet_register_protosw +EXPORT_SYMBOL vmlinux 0x181ee28c pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x18329f57 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1844cd22 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x1848ac1a pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x1863cabe pci_scan_slot +EXPORT_SYMBOL vmlinux 0x18644daa qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x1869564d register_framebuffer +EXPORT_SYMBOL vmlinux 0x186f2507 vga_client_register +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x1883ee5e vme_bus_type +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189333e4 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x18a3fd56 iov_iter_init +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18d79e0c fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x18ddb4f1 km_policy_expired +EXPORT_SYMBOL vmlinux 0x18e19a03 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x18e3eb16 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f5d01a input_unregister_device +EXPORT_SYMBOL vmlinux 0x18fbd34d dma_async_device_register +EXPORT_SYMBOL vmlinux 0x19538678 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x195d6ccd ip_defrag +EXPORT_SYMBOL vmlinux 0x196862a4 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x196f847d sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x1970d947 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198ac0c8 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x198fbd92 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19ac347a sock_set_priority +EXPORT_SYMBOL vmlinux 0x19b0b5cd md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d8d752 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x19e54a3a flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x19f4e0e7 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x1a07d073 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x1a43e914 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a54cf9f scsi_host_busy +EXPORT_SYMBOL vmlinux 0x1a5764bc __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x1a81d69b sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x1a994f47 do_splice_direct +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa37607 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ad34aa5 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x1ae2535e param_get_string +EXPORT_SYMBOL vmlinux 0x1af32863 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b073122 __put_user_ns +EXPORT_SYMBOL vmlinux 0x1b180eaf posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x1b1c160e ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x1b2beed1 retire_super +EXPORT_SYMBOL vmlinux 0x1b34afea netdev_crit +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 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b834a29 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb62586 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info +EXPORT_SYMBOL vmlinux 0x1bcaf1bb devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x1bce3898 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x1bd19d6b pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bdc3e04 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x1be6cccb ps2_init +EXPORT_SYMBOL vmlinux 0x1bfff46a nla_append +EXPORT_SYMBOL vmlinux 0x1c153244 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x1c1b92c2 vme_register_driver +EXPORT_SYMBOL vmlinux 0x1c355696 register_cdrom +EXPORT_SYMBOL vmlinux 0x1c434bf2 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x1c4a5eeb netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c66c22f input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x1c66e03f mdiobb_write +EXPORT_SYMBOL vmlinux 0x1c698163 current_time +EXPORT_SYMBOL vmlinux 0x1c9124bb security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x1c9d3145 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cb4c747 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x1cb5eebb framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d1b79c7 __do_once_done +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d456e69 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x1d524a0e sock_no_mmap +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d631ca4 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x1d7d763b param_get_long +EXPORT_SYMBOL vmlinux 0x1d7ed73c tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1d97da11 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x1dbe4197 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dcb9abd neigh_app_ns +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd99445 ps2_command +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 0x1e1a6087 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x1e24c3da xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x1e3089fc folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x1e310801 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x1e35de1f dst_release +EXPORT_SYMBOL vmlinux 0x1e390f95 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x1e4a9c45 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x1e5464c3 page_readlink +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e702a0c ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x1e710c6b input_reset_device +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea3d208 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x1ecdfc9c phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x1ed06d94 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1edd2f9a xudma_get_device +EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format +EXPORT_SYMBOL vmlinux 0x1efc85ec ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x1f0a800a dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x1f1c4fc5 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x1f1cdbbe devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x1f366b06 d_splice_alias +EXPORT_SYMBOL vmlinux 0x1f390b94 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f5c6714 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x1f63f85a dump_page +EXPORT_SYMBOL vmlinux 0x1f6a63e9 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x1f785cc1 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x1f7e475d inet_getname +EXPORT_SYMBOL vmlinux 0x1f8d76c7 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x1f9bbe4a freeze_bdev +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd18119 eth_header_parse +EXPORT_SYMBOL vmlinux 0x1fdb56b9 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x1fdd8d18 __scm_send +EXPORT_SYMBOL vmlinux 0x1fe9d21f md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200da051 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x20149926 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x2017af30 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x201dc399 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x202b4c71 noop_qdisc +EXPORT_SYMBOL vmlinux 0x202f44b8 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x202fded3 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x2045b612 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x2046231c of_get_next_child +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 0x20689b35 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x207c7e34 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x208c827a crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b7fff1 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x20c5f7d2 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d30d14 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x20d4c900 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e08f33 dquot_get_state +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20fbb335 seq_puts +EXPORT_SYMBOL vmlinux 0x210f7c31 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x21335cbd pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x2137e16c mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21429601 __invalidate_device +EXPORT_SYMBOL vmlinux 0x214ee1a6 param_ops_long +EXPORT_SYMBOL vmlinux 0x2183b072 uart_register_driver +EXPORT_SYMBOL vmlinux 0x218cfb45 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21963a02 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x219b7605 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x21a4eb92 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x21a5f528 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x21b244a0 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x21b8215c of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x21b8bed2 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c9dbce scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x21d7a6f0 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e95190 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x21ea28e9 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x2241080b request_firmware +EXPORT_SYMBOL vmlinux 0x224b6e7f mmc_register_driver +EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2269c01c netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x226f27c5 param_get_ullong +EXPORT_SYMBOL vmlinux 0x2289e856 md_write_end +EXPORT_SYMBOL vmlinux 0x229cd8ff vlan_for_each +EXPORT_SYMBOL vmlinux 0x229ddfa2 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x22a1422d percpu_counter_sum_all +EXPORT_SYMBOL vmlinux 0x22a6a852 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x22a9945c dm_put_device +EXPORT_SYMBOL vmlinux 0x22b0820b acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b787a7 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x22bffe1d folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x22c203f2 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x22d12e97 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x22e2f074 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x22e8b447 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x22f43d98 md_update_sb +EXPORT_SYMBOL vmlinux 0x2316431f tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x2343128b rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x235b0637 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x2381648b __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23934829 lynx_get_mdio_device +EXPORT_SYMBOL vmlinux 0x23aaa4bf dev_set_threaded +EXPORT_SYMBOL vmlinux 0x23b2df10 is_bad_inode +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23dcf48f xfrm_init_state +EXPORT_SYMBOL vmlinux 0x23dddd26 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23f86a62 mdiobus_read +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240b446f scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x2436db10 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x24394e1d inet_csk_accept +EXPORT_SYMBOL vmlinux 0x243b0910 dqget +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244bfc1f xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x2456383c vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x249192a3 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x24ad25e1 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x24b5273f qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x24bfdb73 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x24c7ff67 override_creds +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24de17ff xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x24fc1e77 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x250eb85e d_find_alias +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x25339e85 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x253e6737 fc_mount +EXPORT_SYMBOL vmlinux 0x25514ae4 __netif_rx +EXPORT_SYMBOL vmlinux 0x25535d87 tty_check_change +EXPORT_SYMBOL vmlinux 0x255c198c dquot_initialize +EXPORT_SYMBOL vmlinux 0x2566204b security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258a9e98 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x258e5573 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x259ebfe6 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x25b47618 skb_pull +EXPORT_SYMBOL vmlinux 0x25bc6b45 locks_delete_block +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260e4c5d fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x261b2254 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x261f5cb9 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x26325148 filemap_get_folios +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263d5226 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x265c36a4 devm_free_irq +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26af4781 bpf_map_get +EXPORT_SYMBOL vmlinux 0x26d7d105 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x26e0f579 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f291c1 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x27171158 param_get_invbool +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271d5804 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x27243ffb kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x272a3b68 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x272d5710 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273c0fb5 get_vm_area +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275a8c14 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x275c74fd seq_lseek +EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27899312 dev_open +EXPORT_SYMBOL vmlinux 0x27975589 put_cmsg +EXPORT_SYMBOL vmlinux 0x27a145c9 clkdev_drop +EXPORT_SYMBOL vmlinux 0x27aaa51f writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x27b45a42 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27d47000 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x27dd772e generic_file_fsync +EXPORT_SYMBOL vmlinux 0x27deb09c ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x27e0dd0a qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x27f17c93 single_release +EXPORT_SYMBOL vmlinux 0x27f905fc i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x2803a3dc fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28492555 PageMovable +EXPORT_SYMBOL vmlinux 0x287414bf dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287f07c5 generic_write_checks +EXPORT_SYMBOL vmlinux 0x289771bb commit_creds +EXPORT_SYMBOL vmlinux 0x28b85916 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x28c55015 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x28cbae91 generic_update_time +EXPORT_SYMBOL vmlinux 0x28d28e29 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x28e2544f ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x28e38eca mdiobus_scan +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x291ca5ff mmc_put_card +EXPORT_SYMBOL vmlinux 0x291d0032 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x29407d78 register_shrinker +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x2965630d generic_read_dir +EXPORT_SYMBOL vmlinux 0x296a5321 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x29715d36 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x2975b34a mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x29777f7d genphy_loopback +EXPORT_SYMBOL vmlinux 0x29787aaa tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x29a6cfc2 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x29b47e89 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x29bedc05 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e80d1f of_get_property +EXPORT_SYMBOL vmlinux 0x29f2315b skb_copy +EXPORT_SYMBOL vmlinux 0x29fbc146 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x2a0277ff mmc_start_request +EXPORT_SYMBOL vmlinux 0x2a0679c8 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x2a2658d9 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x2a28a07e fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3545ff adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable +EXPORT_SYMBOL vmlinux 0x2a88e1d2 __bforget +EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aa23125 __brelse +EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ac6d096 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x2ad5f6b4 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x2ae18830 config_item_set_name +EXPORT_SYMBOL vmlinux 0x2ae80b9d send_sig_info +EXPORT_SYMBOL vmlinux 0x2b001e0f xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b20a05d skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x2b294901 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x2b473490 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x2b495e85 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b701125 __register_binfmt +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba98d04 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x2bae204e mt_find +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bbd4930 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x2bc915d0 from_kgid +EXPORT_SYMBOL vmlinux 0x2bd40ef7 set_capacity +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2be338aa mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x2be5fdf1 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x2bf4487f xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2bf8c76d scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2bfca951 neigh_destroy +EXPORT_SYMBOL vmlinux 0x2c000d0e pcie_get_mps +EXPORT_SYMBOL vmlinux 0x2c0e63a6 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x2c2561df xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c297690 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c6eebc8 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c7b0d89 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2ca9cd2e fman_bind +EXPORT_SYMBOL vmlinux 0x2cb71d06 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x2cc1fae5 inet_offloads +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdb84db blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cf067ac param_set_int +EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table +EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x2cfbb9e0 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x2d0dc6e9 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1826c6 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x2d1e3bf4 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3c80a8 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x2d3cd7bc phy_attached_info +EXPORT_SYMBOL vmlinux 0x2d45441e scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d69ed1e udp_ioctl +EXPORT_SYMBOL vmlinux 0x2d711f5b dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x2d7a8ed6 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x2d8e0596 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da82b28 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x2db4fd25 param_set_hexint +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2de4bcc3 xp_free +EXPORT_SYMBOL vmlinux 0x2de7c9ce folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x2e042431 dev_add_pack +EXPORT_SYMBOL vmlinux 0x2e0a3a6f request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e1ad26b nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1da045 filemap_release_folio +EXPORT_SYMBOL vmlinux 0x2e27df6d truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e3c34ac super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2eaf1e53 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ec7fdb2 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eeca122 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x2ef13504 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x2efdb762 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x2efe8fc8 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x2efef216 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f04eb86 ps2_end_command +EXPORT_SYMBOL vmlinux 0x2f0529e1 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x2f09ba4d pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x2f0b6349 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f2311af thread_group_exited +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f30e8f9 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f425df8 dev_load +EXPORT_SYMBOL vmlinux 0x2f6ff31e jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f8587b9 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x2f9570e0 dma_map_resource +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2ff9718d set_page_writeback +EXPORT_SYMBOL vmlinux 0x30334aa7 console_start +EXPORT_SYMBOL vmlinux 0x3049ee00 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x3072598c seq_hex_dump +EXPORT_SYMBOL vmlinux 0x307b4a62 clear_inode +EXPORT_SYMBOL vmlinux 0x308b906d mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a1dc62 pin_user_pages +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30ac882c clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30d2c43c xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x3104ac8d rproc_alloc +EXPORT_SYMBOL vmlinux 0x310e54ec phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info +EXPORT_SYMBOL vmlinux 0x3130d12e __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x315fd2c3 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x3171f70c serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a22598 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31bd631d rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x31cd2b42 vme_irq_request +EXPORT_SYMBOL vmlinux 0x31dfd9f4 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x32010879 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3217e9f7 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x321ac9df mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x322da38c dm_table_get_md +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x324736fe ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x324e36c6 get_cached_acl +EXPORT_SYMBOL vmlinux 0x324f3a98 device_get_ethdev_address +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 0x3289e9c9 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x329941fe napi_consume_skb +EXPORT_SYMBOL vmlinux 0x32a26541 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x32a58cbd mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x32a9d3e9 proto_unregister +EXPORT_SYMBOL vmlinux 0x32b8bd76 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x32bab92e mdio_device_create +EXPORT_SYMBOL vmlinux 0x32c29876 ihold +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d73a55 security_sk_clone +EXPORT_SYMBOL vmlinux 0x32e1c92b to_nd_btt +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load +EXPORT_SYMBOL vmlinux 0x32f691c2 generic_file_open +EXPORT_SYMBOL vmlinux 0x32fb0f70 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x330c959f sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x331c1bbd fd_install +EXPORT_SYMBOL vmlinux 0x332b76f6 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x333b02c6 input_setup_polling +EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x3383103f thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x339b2ab8 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x33a410c5 generic_fillattr +EXPORT_SYMBOL vmlinux 0x33af6985 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x33b0c72d __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x33bc1df4 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x33bce27f textsearch_unregister +EXPORT_SYMBOL vmlinux 0x33c75457 sync_filesystem +EXPORT_SYMBOL vmlinux 0x33df63fc fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x33e02fc6 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x33eb6bad key_invalidate +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f88318 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x3439c8d7 vga_put +EXPORT_SYMBOL vmlinux 0x344411db xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x34488426 tty_register_device +EXPORT_SYMBOL vmlinux 0x344cfa88 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x3453baad mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x34575efb ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x346bc098 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x346d1f34 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3470cf66 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x347920f8 vfs_fsync +EXPORT_SYMBOL vmlinux 0x3482e75d crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x348dbe17 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x348f16ab km_state_expired +EXPORT_SYMBOL vmlinux 0x3495a13a ip_frag_next +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349e0ad5 netlink_set_err +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34bab73d devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34e3401f tcf_classify +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34faf948 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x350e6bcb i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35267751 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x35321381 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x3532d043 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x35343c21 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3547bc43 proc_create_data +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3567dc8a scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x356bf8b1 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x357949f7 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x357cd65a xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x357d3551 folio_add_lru +EXPORT_SYMBOL vmlinux 0x359802e5 ram_aops +EXPORT_SYMBOL vmlinux 0x359a42d2 simple_empty +EXPORT_SYMBOL vmlinux 0x35a69160 tty_kref_put +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35acf28a blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x35b472f1 pci_bus_type +EXPORT_SYMBOL vmlinux 0x35bd82d5 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x35e827c1 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3614e9f6 init_pseudo +EXPORT_SYMBOL vmlinux 0x36329407 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0x3638f205 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x363b26ed __napi_schedule +EXPORT_SYMBOL vmlinux 0x3646ffec setattr_prepare +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x364fcc0b dquot_operations +EXPORT_SYMBOL vmlinux 0x3653f252 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x365a78c9 d_rehash +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365d1a64 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3680cf92 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x36aab62c ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x36b22511 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36e42a44 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x36e93437 skb_append +EXPORT_SYMBOL vmlinux 0x36f66631 scsi_device_put +EXPORT_SYMBOL vmlinux 0x36fe40e4 netlink_unicast +EXPORT_SYMBOL vmlinux 0x36feb1d9 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x37020978 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x370572b4 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x37286ff0 _dev_printk +EXPORT_SYMBOL vmlinux 0x372cfecd single_open +EXPORT_SYMBOL vmlinux 0x3742134a tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3750d40c md_write_start +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x376b377f fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x3792a1cc xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x37946399 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x37951da2 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x37a80523 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x37b07dd8 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e7e91f __inet_hash +EXPORT_SYMBOL vmlinux 0x37e84887 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x37e984a7 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x37fd3649 file_modified +EXPORT_SYMBOL vmlinux 0x3813c3ef inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x38180984 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3827be5a send_sig +EXPORT_SYMBOL vmlinux 0x383d2f5e md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x3846c68b put_watch_queue +EXPORT_SYMBOL vmlinux 0x3848d0d5 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x385a761d devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x385a7809 inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x386d7a03 padata_alloc +EXPORT_SYMBOL vmlinux 0x38749d82 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x3874ea6f gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x387646de of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x387f4433 pci_get_device +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a8ee25 dev_get_flags +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c1dce2 fman_get_revision +EXPORT_SYMBOL vmlinux 0x38ccd941 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x38d37af6 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x38e0dbb1 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38fe2ddb param_set_ullong +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 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x3940516b mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x396dd521 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x39708db4 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39c1b74c pci_restore_state +EXPORT_SYMBOL vmlinux 0x39c780df netlink_broadcast +EXPORT_SYMBOL vmlinux 0x39c92b56 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39ece7b2 block_commit_write +EXPORT_SYMBOL vmlinux 0x39ed98a4 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x39f503cb netdev_state_change +EXPORT_SYMBOL vmlinux 0x3a093781 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x3a0ed22a tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x3a16a0f3 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x3a229108 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x3a351cae pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a7da785 vme_dma_request +EXPORT_SYMBOL vmlinux 0x3a88193b scsi_print_result +EXPORT_SYMBOL vmlinux 0x3a8e132d __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x3aa366bc neigh_table_init +EXPORT_SYMBOL vmlinux 0x3aa43170 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x3aa5036f __neigh_event_send +EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ad54081 genphy_resume +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 0x3add00c3 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b010e27 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b28ee81 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x3b2f1558 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b3af114 phy_start +EXPORT_SYMBOL vmlinux 0x3b5c242b ethtool_rx_flow_rule_destroy +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 0x3b76e57b gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x3b81e37b dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x3b89d8c9 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b9b99c5 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x3ba7e57e mr_dump +EXPORT_SYMBOL vmlinux 0x3bb4772a ppp_input_error +EXPORT_SYMBOL vmlinux 0x3bed06bc unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x3bfdcdee __nla_put +EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c19df77 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x3c20d31c filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3ab077 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c5844dc ata_print_version +EXPORT_SYMBOL vmlinux 0x3c79b0d5 start_tty +EXPORT_SYMBOL vmlinux 0x3c7e052b fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x3c9efe41 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3cccbe3b __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce31e13 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce97882 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d422c4b napi_gro_flush +EXPORT_SYMBOL vmlinux 0x3d4ba4a0 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x3d52f1b6 simple_statfs +EXPORT_SYMBOL vmlinux 0x3d5ed374 __ps2_command +EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9db891 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3daad313 security_task_getsecid_obj +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 0x3db12002 simple_get_link +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 0x3de05611 devm_memunmap +EXPORT_SYMBOL vmlinux 0x3df61c99 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc74e1 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e008b46 __lock_buffer +EXPORT_SYMBOL vmlinux 0x3e1bd4a4 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x3e2c8b95 stop_tty +EXPORT_SYMBOL vmlinux 0x3e37fe32 serio_interrupt +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e42ae9e par_io_of_config +EXPORT_SYMBOL vmlinux 0x3e496648 netdev_emerg +EXPORT_SYMBOL vmlinux 0x3e52f8a6 backlight_device_register +EXPORT_SYMBOL vmlinux 0x3e57ddc4 sock_wake_async +EXPORT_SYMBOL vmlinux 0x3e5f7d5c xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3e8aba5d mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x3e943bb2 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x3eb6190e qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x3ec28020 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit +EXPORT_SYMBOL vmlinux 0x3edc4cc2 netdev_alert +EXPORT_SYMBOL vmlinux 0x3eeafa6c cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x3ef4d4db fget_raw +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f043018 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f1acd0e __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x3f26db76 pci_get_class +EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f366843 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f4c86c1 of_root +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f95d60d pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x3faaf7a6 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x3fbc6bca flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x3fbe4e4d md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fd3632f dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3feda716 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x3ff6fbb7 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x4007c871 fs_bio_set +EXPORT_SYMBOL vmlinux 0x40217b51 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x4030a4d0 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x407bb6b8 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x40863ba1 ioremap_prot +EXPORT_SYMBOL vmlinux 0x40907e5a __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a0498f sk_common_release +EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c08c9d ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x40c4415c inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e8ef37 dput +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x41099802 inode_permission +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41463a6b tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x414f9d64 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x415541a3 inode_init_always +EXPORT_SYMBOL vmlinux 0x4158ae90 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x415b4e43 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x41768fb6 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range +EXPORT_SYMBOL vmlinux 0x41a34543 fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x41ae2f30 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x41b41fe7 phy_detach +EXPORT_SYMBOL vmlinux 0x41bc9652 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x41d922e0 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x41e56390 tty_name +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f8560e pci_release_regions +EXPORT_SYMBOL vmlinux 0x42004ec3 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x42066d39 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x4212d65e crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x4216535a make_kgid +EXPORT_SYMBOL vmlinux 0x42195375 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x421af5fc pnp_device_detach +EXPORT_SYMBOL vmlinux 0x421b0200 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x421d1125 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x42224ac3 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x42293462 write_cache_pages +EXPORT_SYMBOL vmlinux 0x422aa1b5 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x4237c4f8 d_genocide +EXPORT_SYMBOL vmlinux 0x42440134 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x42476836 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x4275ecd5 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x428adf35 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x42939b88 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x42b65c65 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x42bb53e9 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42eba74e netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x42ef1e22 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x432c20e1 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4347cae5 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4361a1b4 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439bc976 get_task_cred +EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d882e3 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x43e026d3 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x4421822c __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x44296eff pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x442dd5d8 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x44331036 inet6_release +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x44581be6 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x4458c751 dev_uc_init +EXPORT_SYMBOL vmlinux 0x4459a60a input_copy_abs +EXPORT_SYMBOL vmlinux 0x445dc39a netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x447416a4 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x44843f1f vme_irq_free +EXPORT_SYMBOL vmlinux 0x448841f1 seq_dentry +EXPORT_SYMBOL vmlinux 0x448c26e6 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449c204a tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44b0d34e param_set_byte +EXPORT_SYMBOL vmlinux 0x44b9fbfd mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x44ce52fe sock_i_uid +EXPORT_SYMBOL vmlinux 0x44d04edb blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f56783 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450639ab sg_last +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 0x45276a33 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x4528e591 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452f6b3f tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4542ccd0 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x455029ae configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x45666756 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x456874bf posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457c4148 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x457efcee kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x45c488d1 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x45d1548a _dev_crit +EXPORT_SYMBOL vmlinux 0x45d45943 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461c426f tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x461d3590 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468e5d9f tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x4699a56c of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46aaa8cf phy_attached_print +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46e9b3fe tcf_idr_release +EXPORT_SYMBOL vmlinux 0x46f44b68 component_match_add_release +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 0x472056ac __register_chrdev +EXPORT_SYMBOL vmlinux 0x4758bcbc phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x47966f78 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x47a324ab security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x47a87622 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x47b1f630 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47ccf1f2 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d37fbe dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47e2136b inode_get_bytes +EXPORT_SYMBOL vmlinux 0x47e26d1f of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x47f0ad59 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x47fa0495 mdio_device_register +EXPORT_SYMBOL vmlinux 0x48002e25 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481e6e87 address_space_init_once +EXPORT_SYMBOL vmlinux 0x48241ee9 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x483156d2 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x48327830 input_get_timestamp +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 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485ea546 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48aeb8f6 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48cbabfb of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node +EXPORT_SYMBOL vmlinux 0x48dbc21a dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x48dd340b cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x48e014b4 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x48e52290 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x48f90df5 kthread_bind +EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49079a89 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x4907aff5 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x49270583 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x4930c354 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x49325ba9 neigh_xmit +EXPORT_SYMBOL vmlinux 0x494d07bf lease_modify +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x495ef5ff proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x4960df19 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x496ed5de skb_checksum_help +EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits +EXPORT_SYMBOL vmlinux 0x497bcbf2 inet_shutdown +EXPORT_SYMBOL vmlinux 0x499d2a75 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49e6ad11 sg_miter_start +EXPORT_SYMBOL vmlinux 0x4a081e39 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x4a279e01 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x4a3a0cb1 dst_discard_out +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a40e845 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x4a4c606d super_setup_bdi +EXPORT_SYMBOL vmlinux 0x4a6bd558 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a96d0ad __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x4aa53927 scsi_done_direct +EXPORT_SYMBOL vmlinux 0x4aa92066 set_posix_acl +EXPORT_SYMBOL vmlinux 0x4aa9f6b4 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x4ad7a94a nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x4add51a1 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x4ae73b1c iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aea884a mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b0e3df7 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6190da netif_receive_skb +EXPORT_SYMBOL vmlinux 0x4b66da3c iov_iter_advance +EXPORT_SYMBOL vmlinux 0x4b6cc114 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b888511 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x4b8a007c sock_kmalloc +EXPORT_SYMBOL vmlinux 0x4b939269 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x4bac734c jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4be5490f filemap_flush +EXPORT_SYMBOL vmlinux 0x4becd65a tty_unregister_device +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c07d216 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x4c36515f skb_pull_data +EXPORT_SYMBOL vmlinux 0x4c413469 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c42aaed tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x4c4e64e1 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x4c620a98 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x4c6db159 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x4c84383b dm_unregister_target +EXPORT_SYMBOL vmlinux 0x4ca39162 register_netdevice +EXPORT_SYMBOL vmlinux 0x4ca39eac scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x4ca94de7 sock_pfree +EXPORT_SYMBOL vmlinux 0x4caefe91 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x4cc42491 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x4cd7cfdc xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x4cdce2b0 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x4cf44e79 rproc_add +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d1c93db security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x4d1d5669 scsi_add_device +EXPORT_SYMBOL vmlinux 0x4d266dc8 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d5b3c0a inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d801050 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9605aa input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da3b4c2 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4da77868 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x4dc40203 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x4dc5709c param_set_charp +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4ddd8f55 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4dee4f1a _dev_info +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e04c042 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x4e065b44 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e21b87a generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x4e276bea to_ndd +EXPORT_SYMBOL vmlinux 0x4e29dcad pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x4e2c1224 phy_error +EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e2eb30c __devm_request_region +EXPORT_SYMBOL vmlinux 0x4e30f2eb param_set_ulong +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e4afcb3 pipe_lock +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 0x4e9bdef0 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x4e9df758 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb09c06 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x4ebd47d3 dm_io +EXPORT_SYMBOL vmlinux 0x4ec3c2c4 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ed54528 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x4ed6df9c pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x4ed80f55 fman_register_intr +EXPORT_SYMBOL vmlinux 0x4efbb41d skb_realloc_headroom +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 0x4f24ca33 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x4f41157e configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x4f491352 __nla_reserve +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f562921 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x4f58ebb4 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x4f83347e genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x4f8a588c iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x4f91c9a0 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x4f9d9c98 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x4fb8c738 tcp_filter +EXPORT_SYMBOL vmlinux 0x4fc7662c vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x4fe7c27b ns_capable_setid +EXPORT_SYMBOL vmlinux 0x4ff4000f noop_llseek +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x4fffb954 pps_event +EXPORT_SYMBOL vmlinux 0x50066c60 inode_init_owner +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x50150801 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x5030325f max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x50322661 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x503d8929 sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x503ea788 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x5057e977 fb_pan_display +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507d2254 __scm_destroy +EXPORT_SYMBOL vmlinux 0x507ee8d5 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x5089e41d skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x508ac5f0 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x509310dd phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509cb5dd __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x509cc7ec of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x509f58e2 vfs_rename +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a47731 make_kuid +EXPORT_SYMBOL vmlinux 0x50b3ec14 __vfs_getxattr +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 0x50c38942 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50e056f7 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x51088837 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x51273159 key_put +EXPORT_SYMBOL vmlinux 0x51296072 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x512cf878 mmc_free_host +EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec +EXPORT_SYMBOL vmlinux 0x51408527 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x51493dea genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x514ff52f vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x5156b6c6 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x515ef444 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x515fef15 get_phy_device +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x516936f4 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x51c5a2f6 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d3aed7 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x5204515f unregister_filesystem +EXPORT_SYMBOL vmlinux 0x52296155 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x522a1da4 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x522b1392 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x523f1fb3 km_query +EXPORT_SYMBOL vmlinux 0x5248ac73 register_key_type +EXPORT_SYMBOL vmlinux 0x5253065d follow_down_one +EXPORT_SYMBOL vmlinux 0x52603c0a i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52815ab9 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x528d28f9 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a8a634 udp_set_csum +EXPORT_SYMBOL vmlinux 0x52ab5aed pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x52ad5924 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x52bbe199 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x52c87ede tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52e16e4b dev_uc_del +EXPORT_SYMBOL vmlinux 0x52e73c89 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f0b067 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x52f15852 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530bdd80 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x530c1686 tcf_em_register +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531a7fdd inet_bind +EXPORT_SYMBOL vmlinux 0x531d34e6 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x5327e0d0 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x5332b671 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x535219ff filemap_fault +EXPORT_SYMBOL vmlinux 0x5356a122 free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x536dc4c3 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit +EXPORT_SYMBOL vmlinux 0x53a204a8 tty_devnum +EXPORT_SYMBOL vmlinux 0x53b8c16e proc_symlink +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53bb5517 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x53ecc43e find_vma +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53f55fd2 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x53f773f8 pci_pme_active +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x5402cd6c param_get_short +EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x5406c280 __module_get +EXPORT_SYMBOL vmlinux 0x541c420c configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x543f8426 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x544d9ab3 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x5471654a pnp_is_active +EXPORT_SYMBOL vmlinux 0x5477881b kill_fasync +EXPORT_SYMBOL vmlinux 0x54954a62 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x54b947da cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x54c1fb62 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54ed7f43 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x54f0264a vm_map_ram +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x5519a0ec phy_connect_direct +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55288e44 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x55329987 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x55415b19 dma_pool_create +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x5551b97d dev_disable_lro +EXPORT_SYMBOL vmlinux 0x5557166b blk_put_queue +EXPORT_SYMBOL vmlinux 0x5570352a dev_printk_emit +EXPORT_SYMBOL vmlinux 0x5586767e tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x558bcb3a buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x558f215e tty_port_close_end +EXPORT_SYMBOL vmlinux 0x55c49ba7 pcim_iomap +EXPORT_SYMBOL vmlinux 0x55cd5678 vc_resize +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e3629e __skb_pad +EXPORT_SYMBOL vmlinux 0x55e68620 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x55eeae6d tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x55f04078 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x561ceb78 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564b73af dcache_dir_close +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x565372b6 input_set_keycode +EXPORT_SYMBOL vmlinux 0x56718ba3 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x56751e21 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x567945cb bio_chain +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56826ab1 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x569ead17 register_qdisc +EXPORT_SYMBOL vmlinux 0x56b0d74f tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x56c33033 module_layout +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cd3ec4 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x56d250c1 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x56eb79cb blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x5700b831 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x5741587e dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57602787 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x5765ec9d dev_addr_add +EXPORT_SYMBOL vmlinux 0x57670f8c pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5771cc90 wake_up_process +EXPORT_SYMBOL vmlinux 0x57762577 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579aff44 release_sock +EXPORT_SYMBOL vmlinux 0x579e06f3 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x57abc9f9 pci_find_bus +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57ca7f53 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x57cc195a __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x57cc3f51 scsi_host_put +EXPORT_SYMBOL vmlinux 0x57cc52e5 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x57d6a2e0 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x57fe0166 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x57fe98aa __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x58173c3f register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x5819bc5d cad_pid +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58207a2c alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583eb0f4 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x58425e53 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x5843457c pci_pme_capable +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 0x5880ffae pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x5885ce9d __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x58944971 file_open_root +EXPORT_SYMBOL vmlinux 0x589aa802 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x589e8c22 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b5e28d mpage_readahead +EXPORT_SYMBOL vmlinux 0x58b6e4cc pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c119f7 simple_rmdir +EXPORT_SYMBOL vmlinux 0x58d8d90c ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x58d99260 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x590d0ddb pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x59142c64 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x594c5ca0 udp_seq_next +EXPORT_SYMBOL vmlinux 0x59508600 seq_read_iter +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x596d16db generic_block_bmap +EXPORT_SYMBOL vmlinux 0x5972f746 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x59773392 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x5980a0bd kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x59902483 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x59908520 sk_alloc +EXPORT_SYMBOL vmlinux 0x5992a01e unregister_console +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a1a362 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59add4ed input_open_device +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59bb6385 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x59e4211e blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x59f93d96 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0ffe2f pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x5a10bba4 dev_addr_mod +EXPORT_SYMBOL vmlinux 0x5a146969 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x5a1e16ed tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5359a7 scsi_device_get +EXPORT_SYMBOL vmlinux 0x5a5895f9 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a6140b0 nf_ct_ext_add +EXPORT_SYMBOL vmlinux 0x5a6b0d7a inet_add_protocol +EXPORT_SYMBOL vmlinux 0x5a790e95 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aaaebf5 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x5aadb75c may_umount_tree +EXPORT_SYMBOL vmlinux 0x5ac28453 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x5ac86ab3 napi_build_skb +EXPORT_SYMBOL vmlinux 0x5acf1ece max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x5ad365be mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x5ad5f86e flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae5f395 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x5b07afdf iterate_dir +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b689129 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x5b6ce7ec sk_ns_capable +EXPORT_SYMBOL vmlinux 0x5b75a72c no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x5b76c341 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x5b7e22ca sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x5b865e34 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5bdd98e9 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x5be2fb59 register_quota_format +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bff702f kobject_init +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c306f90 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x5c362996 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c871850 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x5c8f2ea7 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5c9ca3a8 skb_tx_error +EXPORT_SYMBOL vmlinux 0x5ccfff53 register_netdev +EXPORT_SYMBOL vmlinux 0x5cd31ca5 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d225c9d rproc_detach +EXPORT_SYMBOL vmlinux 0x5d435d15 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d54898f d_path +EXPORT_SYMBOL vmlinux 0x5d556235 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x5d5b0276 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x5d6aff6d dev_mc_flush +EXPORT_SYMBOL vmlinux 0x5d744464 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x5d7f99bc __block_write_begin +EXPORT_SYMBOL vmlinux 0x5d8a828c xattr_full_name +EXPORT_SYMBOL vmlinux 0x5d8d1cc1 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x5d923b8b rtc_add_groups +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5db6ef1c jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x5dcce040 _dev_alert +EXPORT_SYMBOL vmlinux 0x5de4dde4 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x5dfbdd70 proc_set_user +EXPORT_SYMBOL vmlinux 0x5dfcf3db get_tree_single +EXPORT_SYMBOL vmlinux 0x5dfed6a4 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e114f2e pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3f3d1e blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eba05c3 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ecf1720 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5edf7869 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5ef81ea9 jbd2__journal_restart +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 0x5f1323d2 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x5f263831 nf_log_register +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f2bc28c ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x5f344e8c d_make_root +EXPORT_SYMBOL vmlinux 0x5f36d2c0 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x5f4b6c85 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x5f53d5d9 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f55962c pci_enable_wake +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f71cb03 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x5f80d594 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x5f85188d dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5fa2232b mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x5fa6e6cf vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x5fb1a21d d_alloc_name +EXPORT_SYMBOL vmlinux 0x5fbe27e1 of_clk_get +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fc99d67 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x5fd69dc0 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call +EXPORT_SYMBOL vmlinux 0x5ff74461 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffaf674 iommu_get_msi_cookie +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 0x602212fa pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x60324896 param_set_copystring +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603629b2 _dev_warn +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x605d4450 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x605e3a70 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x6066d7a1 d_add +EXPORT_SYMBOL vmlinux 0x606a0305 i2c_transfer +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 0x60a990d4 eth_header +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60b2d8bf request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60bbfb13 napi_enable +EXPORT_SYMBOL vmlinux 0x60c89a6f blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x60ce748b uart_get_divisor +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60d95b18 of_chosen +EXPORT_SYMBOL vmlinux 0x60f1f415 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x61084ca7 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x61252e82 nf_log_unset +EXPORT_SYMBOL vmlinux 0x61287e15 set_nlink +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x614ab450 phy_suspend +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x61714c88 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x617a8693 writeback_inodes_sb +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 0x618e1f1b dentry_open +EXPORT_SYMBOL vmlinux 0x6199f25f of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b8ce4d pnp_device_attach +EXPORT_SYMBOL vmlinux 0x61c69add tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x61cb00cf key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61f860cc fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x6202b681 input_get_keycode +EXPORT_SYMBOL vmlinux 0x6208b1ae dquot_transfer +EXPORT_SYMBOL vmlinux 0x620caefa __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x620d4a64 md_check_recovery +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6247babf security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x6264fe35 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x62672d94 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6299264b security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x62aa0e62 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x62c61216 pci_release_resource +EXPORT_SYMBOL vmlinux 0x62c9f9d0 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x62d69a60 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62f31c8a kernel_write +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62ff917f dma_free_attrs +EXPORT_SYMBOL vmlinux 0x6309ccb4 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631b8272 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x631cd923 netlink_capable +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x6358299a nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x6369994c pci_find_resource +EXPORT_SYMBOL vmlinux 0x63946802 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x639fd735 dev_activate +EXPORT_SYMBOL vmlinux 0x63a0bd42 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x63a11601 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b4dbdf generic_file_mmap +EXPORT_SYMBOL vmlinux 0x63d1a103 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x640822aa ptp_clock_index +EXPORT_SYMBOL vmlinux 0x640a6298 truncate_setsize +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x643579a3 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x645611b5 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x6463c14e mdiobus_write +EXPORT_SYMBOL vmlinux 0x64741a3c __register_nls +EXPORT_SYMBOL vmlinux 0x647d52ef kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x6488779c bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x649c6c5c napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x64a7bc19 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c7eb7a dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x64c95ade init_task +EXPORT_SYMBOL vmlinux 0x64cb6184 tty_register_driver +EXPORT_SYMBOL vmlinux 0x64d27908 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x64d828e2 fiemap_prep +EXPORT_SYMBOL vmlinux 0x64dee33f fb_set_var +EXPORT_SYMBOL vmlinux 0x6501c29d pnp_register_card_driver +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 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x654c3ae1 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x65515876 fb_class +EXPORT_SYMBOL vmlinux 0x655ab028 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x655dc99a blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x6569dda5 blk_start_plug +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x657dc773 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x6581cb45 kernel_listen +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658f8e7b default_llseek +EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x65937d00 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a2d359 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x65a72feb flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x65ae1b39 config_item_get +EXPORT_SYMBOL vmlinux 0x65ba735b __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x65c8663e tcf_exts_change +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 0x65e8179f amba_request_regions +EXPORT_SYMBOL vmlinux 0x660a20c8 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x661cb3ba cfb_copyarea +EXPORT_SYMBOL vmlinux 0x66251e29 rproc_del +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x664f6658 rw_verify_area +EXPORT_SYMBOL vmlinux 0x664f922f seq_pad +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6665555b genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x667d66c0 kill_pid +EXPORT_SYMBOL vmlinux 0x6680fc79 of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x66888afd input_free_device +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x669a9666 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b04e47 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66bb9a34 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x66d37d4a phy_config_aneg +EXPORT_SYMBOL vmlinux 0x66d62aff tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x66f7d265 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x6716369f nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x672d619e tso_build_hdr +EXPORT_SYMBOL vmlinux 0x672f675a jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x674343c8 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x67498fe2 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x675d702d textsearch_prepare +EXPORT_SYMBOL vmlinux 0x676d1fcc netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x676febdd nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x678a5874 free_netdev +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x6797bac4 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x6798578c xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b67a74 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67cb99e3 mii_check_media +EXPORT_SYMBOL vmlinux 0x67e59214 simple_lookup +EXPORT_SYMBOL vmlinux 0x67f3c7aa iptun_encaps +EXPORT_SYMBOL vmlinux 0x67fb0563 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x67fd01a7 unlock_rename +EXPORT_SYMBOL vmlinux 0x67ff91a8 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x68034ec3 padata_free_shell +EXPORT_SYMBOL vmlinux 0x682e2a02 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x6855cbcd tty_port_init +EXPORT_SYMBOL vmlinux 0x6862a161 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689afd15 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x68a45585 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x68b21eb2 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x68d2f0b1 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x690150a4 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x69043c39 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x6913b614 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x69265317 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x692e6dca __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x695a4f34 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x695a9e53 pci_dev_put +EXPORT_SYMBOL vmlinux 0x695c8785 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x69825058 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x698e62f6 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x699b57f7 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x69ac6738 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x69afe8ee clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x69bbc053 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x69bdd4ce inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x69c3c43b of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69fb8a4b device_get_mac_address +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a196bae jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x6a1d6690 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x6a2272e9 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x6a340c1e __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a517b24 amba_driver_register +EXPORT_SYMBOL vmlinux 0x6a5c31d5 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a678415 sk_stream_error +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a6eac4a sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6a99d60c input_match_device_id +EXPORT_SYMBOL vmlinux 0x6aa8f96a sock_efree +EXPORT_SYMBOL vmlinux 0x6ac65799 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x6acb0df2 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x6ad78c54 fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6add82c1 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x6adfc227 sync_file_create +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b079231 alt_cb_patch_nops +EXPORT_SYMBOL vmlinux 0x6b0d916e twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x6b103bdf of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x6b10be68 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x6b1714c7 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x6b1e4f6a ip_check_defrag +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b39b3ca neigh_seq_next +EXPORT_SYMBOL vmlinux 0x6b3a543d __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5972ef dquot_quota_on +EXPORT_SYMBOL vmlinux 0x6b6b9485 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x6b6c7f7d blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x6b6f09f8 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8820cc sock_no_bind +EXPORT_SYMBOL vmlinux 0x6b8a9289 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6ba2c7ca generic_delete_inode +EXPORT_SYMBOL vmlinux 0x6bbaaefa jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be2ff9f mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x6beaf073 eth_header_cache +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6c04e83d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c2e0776 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x6c3c1ee2 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x6c5a4869 ipv4_specific +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c777be4 set_user_nice +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c9b094b vme_irq_generate +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb8cfc4 devm_iounmap +EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cfcffc4 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x6cfd1f15 xp_dma_map +EXPORT_SYMBOL vmlinux 0x6d0f9876 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1e6ce9 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x6d222649 backlight_force_update +EXPORT_SYMBOL vmlinux 0x6d2347cc regset_get +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d7bd170 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbbc525 param_ops_charp +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dc4766b __fs_parse +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6de65ad7 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x6dec318f alloc_fcdev +EXPORT_SYMBOL vmlinux 0x6ded620d devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df7fd1a blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x6dfca24e xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x6e0b67fe scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x6e13bf2e rio_query_mport +EXPORT_SYMBOL vmlinux 0x6e245810 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x6e59aa1b get_thermal_instance +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e696f87 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e8ff3d9 xfrm_input +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ec50734 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6f0f040e inet6_add_offload +EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock +EXPORT_SYMBOL vmlinux 0x6f19db66 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x6f2aa987 inet6_protos +EXPORT_SYMBOL vmlinux 0x6f309b29 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x6f34cd30 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f42bc4c pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f5d6965 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x6f63bc63 unregister_netdev +EXPORT_SYMBOL vmlinux 0x6f815d1b ip6_frag_next +EXPORT_SYMBOL vmlinux 0x6f8182c0 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x6f845146 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f948a90 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x6f9d0ec2 put_disk +EXPORT_SYMBOL vmlinux 0x6fae70c8 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb5db5b nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x6fba60fe generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcd1a79 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdae9ab eth_gro_complete +EXPORT_SYMBOL vmlinux 0x6fe33c36 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x6fe87905 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7001ca13 vfs_statfs +EXPORT_SYMBOL vmlinux 0x70095845 pps_register_source +EXPORT_SYMBOL vmlinux 0x700b1153 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7034a7a5 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x7042ebba i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x7062c155 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x707ad15f fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x707b07d2 serio_close +EXPORT_SYMBOL vmlinux 0x7086f4cc pskb_extract +EXPORT_SYMBOL vmlinux 0x70887635 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x708abc9f md_done_sync +EXPORT_SYMBOL vmlinux 0x709010dc input_release_device +EXPORT_SYMBOL vmlinux 0x709661a2 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x709735af pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x70a1ce8d __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70ae135e netif_skb_features +EXPORT_SYMBOL vmlinux 0x70b18409 simple_setattr +EXPORT_SYMBOL vmlinux 0x70c0580b vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70d7e32a dcb_setapp +EXPORT_SYMBOL vmlinux 0x70f3aba3 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x70ff956f fb_set_cmap +EXPORT_SYMBOL vmlinux 0x7106fbef jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x71151cf9 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712eb389 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x715a9108 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x7163332b remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x716811c1 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7177f6d3 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x71805fd3 shmem_aops +EXPORT_SYMBOL vmlinux 0x7180c820 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x7181ae7c tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x7188e629 poll_initwait +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71dbe80f netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x71dbee0e fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71f7351f __SetPageMovable +EXPORT_SYMBOL vmlinux 0x71f9eff2 pci_select_bars +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x724c7dcd fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x72515a14 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x7257e7d5 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x7280ae8d mmc_remove_host +EXPORT_SYMBOL vmlinux 0x72895c24 of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0x728f9f82 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72af1fdb vc_cons +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d44155 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x72d890a2 passthru_features_check +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72fac1da pci_try_set_mwi +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 0x7321a880 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7330d117 follow_up +EXPORT_SYMBOL vmlinux 0x734e2443 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x735043e5 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x73514003 clk_get +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x736602c6 seq_printf +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 0x73b2a20a tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x73cbb514 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x73cf9b2a nd_device_register +EXPORT_SYMBOL vmlinux 0x73d670c8 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x740aefb3 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x740c30c9 __quota_error +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 0x7433c096 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x74473122 dquot_resume +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x745e3ac9 serio_reconnect +EXPORT_SYMBOL vmlinux 0x745ef1a0 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x745f279c inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x745f6f06 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x7461777c pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x74670f06 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x748fb4a7 kobject_del +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c69a9f nf_ct_attach +EXPORT_SYMBOL vmlinux 0x74e00774 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e9c59a xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x7511828a ilookup5 +EXPORT_SYMBOL vmlinux 0x75237af1 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x75286045 input_inject_event +EXPORT_SYMBOL vmlinux 0x752c7fc6 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x75407f2a __seq_open_private +EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7562be6d skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x7567f76d scmd_printk +EXPORT_SYMBOL vmlinux 0x756a8549 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x756fada9 secpath_set +EXPORT_SYMBOL vmlinux 0x757fdd8d devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x7598da67 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x759c5466 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x75a48440 config_group_init +EXPORT_SYMBOL vmlinux 0x75b5dc7d keyring_search +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75d01dbe xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d3a432 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760b9876 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7652b93a uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76732f70 dump_skip +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x76843672 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x76975487 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x769c94fc vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76ad679a xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x76c99054 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x76ca7c7a i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76da9dd8 dcb_getapp +EXPORT_SYMBOL vmlinux 0x76e63680 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x76e9d337 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x76ecd2b9 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0x76f06b8c blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x77054ea9 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x77081e2d eth_get_headlen +EXPORT_SYMBOL vmlinux 0x77148477 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x776e31f2 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x7777b2f6 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x7783bc4a fb_find_mode +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779ff28e from_kuid +EXPORT_SYMBOL vmlinux 0x77a4c1a4 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77eb9991 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780ba141 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x782bae03 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x783a3578 simple_open +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7856442c udp6_csum_init +EXPORT_SYMBOL vmlinux 0x78645322 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x7878e2dd jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x787bba16 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78885be4 unpin_user_page +EXPORT_SYMBOL vmlinux 0x78889340 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x789f94b7 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b0f604 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c19808 mmc_request_done +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78faada7 __folio_alloc +EXPORT_SYMBOL vmlinux 0x79020c7e scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7907d677 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x790e9e2a xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x7922fbcf d_set_fallthru +EXPORT_SYMBOL vmlinux 0x7933d55c sock_sendmsg +EXPORT_SYMBOL vmlinux 0x79549a4a tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x79662ea5 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x796746cb gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x79675e2c xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7978e4a0 pci_match_id +EXPORT_SYMBOL vmlinux 0x79826b70 dma_set_mask +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x798662a6 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x798d3009 __alloc_skb +EXPORT_SYMBOL vmlinux 0x7999e59a tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x79a0cbb2 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x79a1fe21 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79ab0f5c __bh_read_batch +EXPORT_SYMBOL vmlinux 0x79c7b4d5 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x79cae0fc deactivate_super +EXPORT_SYMBOL vmlinux 0x79dcdd7d __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x79df9170 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x79eb3e19 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x79f10e1a vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a3d8e9b processors +EXPORT_SYMBOL vmlinux 0x7a482dac end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x7a48c4ac copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a5e2871 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7a66e858 security_sb_remount +EXPORT_SYMBOL vmlinux 0x7a6b98df pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x7a8d52d6 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x7a903870 mount_bdev +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa598d4 phy_find_first +EXPORT_SYMBOL vmlinux 0x7ac07b42 icmp6_send +EXPORT_SYMBOL vmlinux 0x7ac57578 from_kprojid +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7af8789c netdev_features_change +EXPORT_SYMBOL vmlinux 0x7b00d425 cdrom_release +EXPORT_SYMBOL vmlinux 0x7b09b7db vfs_link +EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store +EXPORT_SYMBOL vmlinux 0x7b189d9d open_exec +EXPORT_SYMBOL vmlinux 0x7b2a5413 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x7b2c2235 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5bfeb9 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x7b5f4f80 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x7b6e748b sock_release +EXPORT_SYMBOL vmlinux 0x7b74cf79 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x7b78553e dcache_readdir +EXPORT_SYMBOL vmlinux 0x7b7ecd2c tty_write_room +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b8346ab flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x7b892595 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x7b9d9238 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x7ba1978a path_put +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7bac541b clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x7bb42382 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bbd0dd8 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x7bcad462 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x7bff91af kernel_sendpage +EXPORT_SYMBOL vmlinux 0x7c06fb19 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2e1e00 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x7c2ec01f sock_rfree +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c48c0ce acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x7c48ec3b param_ops_bool +EXPORT_SYMBOL vmlinux 0x7c99480c mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x7c9f3e4d __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf4f7fd rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7cfed89e setup_new_exec +EXPORT_SYMBOL vmlinux 0x7cfffc47 skb_dequeue +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 0x7d14ff8b ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x7d47eb62 param_set_bint +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d61621b md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x7d709ad2 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x7d721c7d ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d771b50 udp_prot +EXPORT_SYMBOL vmlinux 0x7d842143 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x7d8bd816 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x7d9788c3 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc3a960 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dc8312e padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7de0650c __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0677a0 finalize_exec +EXPORT_SYMBOL vmlinux 0x7e07170b ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e3bd8c9 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x7e4402d2 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x7e531b52 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize +EXPORT_SYMBOL vmlinux 0x7e637440 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x7e6eb5cf skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x7e963135 phy_init_hw +EXPORT_SYMBOL vmlinux 0x7e9be1ee dev_mc_del +EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info +EXPORT_SYMBOL vmlinux 0x7eb03de5 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x7ed2667b udp_seq_start +EXPORT_SYMBOL vmlinux 0x7eddbabe dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x7ee6da75 ip6_output +EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f1a0091 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x7f23d68e would_dump +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f31eeca kobject_put +EXPORT_SYMBOL vmlinux 0x7f45137b sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free +EXPORT_SYMBOL vmlinux 0x7f777870 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x7f7a61e6 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f90c60e mmc_retune_release +EXPORT_SYMBOL vmlinux 0x7f9fc9e3 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd1f9dc genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fecfb2b jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x7ffd4970 dev_set_alias +EXPORT_SYMBOL vmlinux 0x80039818 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x801aeff9 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x80534dc8 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x805433fb generic_listxattr +EXPORT_SYMBOL vmlinux 0x805b2bec vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x805dee23 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x806383b0 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x80933c47 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80ae13c9 __skb_checksum +EXPORT_SYMBOL vmlinux 0x80b556e5 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x80ba7411 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x80c389de of_match_node +EXPORT_SYMBOL vmlinux 0x80c50082 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80ddaf6f bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +EXPORT_SYMBOL vmlinux 0x80ef8e38 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x80f046b7 con_is_bound +EXPORT_SYMBOL vmlinux 0x80f8dde3 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x80fba956 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x810a3c03 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x810e13fa md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81141c73 vm_mmap +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x8118f442 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x811a8b61 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x812679a4 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x812ac0cc misc_deregister +EXPORT_SYMBOL vmlinux 0x814024ce netdev_err +EXPORT_SYMBOL vmlinux 0x8147cdf6 devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x81761750 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x8186333b cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x8193348a twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x81934f0d tty_port_alloc_xmit_buf +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 0x81cf2a64 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x8224d0db blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x822c858f cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x823876e4 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x824f7328 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x826be8bb cdrom_open +EXPORT_SYMBOL vmlinux 0x82795efa __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x82aa3481 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x82b84373 tty_unlock +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82d74a06 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x82dc0964 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x82e300bd tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x82edae87 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x82fae57f inet_del_offload +EXPORT_SYMBOL vmlinux 0x8307d3fa phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x832117a1 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x83305063 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x834be283 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x8352560f xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8364ede4 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x8370bf8f set_security_override +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838e7460 netif_device_detach +EXPORT_SYMBOL vmlinux 0x83a33362 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x83a71e07 inet_protos +EXPORT_SYMBOL vmlinux 0x83b4e455 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x83c20698 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x84291126 key_move +EXPORT_SYMBOL vmlinux 0x842aff5d dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x8435b9e4 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x84404726 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x844a41a9 genphy_update_link +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x84577cfd tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x8473c986 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x8484b23d request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x84853fef pci_request_regions +EXPORT_SYMBOL vmlinux 0x848d42af tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84ba6edc __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84cf251b scsi_device_resume +EXPORT_SYMBOL vmlinux 0x84ee766a generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x84f0b3c2 load_nls +EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base +EXPORT_SYMBOL vmlinux 0x851c9e54 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x851ecd05 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x8522801e dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x85294ce4 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x85448a8e devm_memremap +EXPORT_SYMBOL vmlinux 0x85486b35 sock_no_linger +EXPORT_SYMBOL vmlinux 0x854bec0a ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x85572ba8 single_open_size +EXPORT_SYMBOL vmlinux 0x855dfd67 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8582ba43 __bread_gfp +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8591dcf3 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x8596260f blk_integrity_register +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c2e784 pci_iomap +EXPORT_SYMBOL vmlinux 0x85dabb08 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e2325e netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x85e4bb11 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x85e977c5 dquot_file_open +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f0117f xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x85f2be6a xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x86160a54 pci_save_state +EXPORT_SYMBOL vmlinux 0x86249c54 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x862c4cb1 qdisc_put +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x863859da proc_remove +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x865e1555 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x86641a07 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x866ae2ad netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x867b9a37 phy_init_eee +EXPORT_SYMBOL vmlinux 0x86879101 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869e5963 ip_frag_init +EXPORT_SYMBOL vmlinux 0x86bf5df1 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x86c672ff rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86e1b259 __put_cred +EXPORT_SYMBOL vmlinux 0x86e9857e skb_dump +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fea297 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x870d7b29 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x8724aaa4 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x872d5ab8 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x8735e959 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x8753e9e2 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x875baac5 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq +EXPORT_SYMBOL vmlinux 0x878e199e netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x878e1af8 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x8794700a iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x879bcf29 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87be6e52 sock_no_listen +EXPORT_SYMBOL vmlinux 0x87e484a5 nla_put +EXPORT_SYMBOL vmlinux 0x87f4112f path_has_submounts +EXPORT_SYMBOL vmlinux 0x880f596d dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x8815cd85 d_exact_alias +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x882f8a2c phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x8846a92d jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x884c4725 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x886fa11d may_umount +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x88841f37 nf_reinject +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x888eaca9 drop_super +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e05338 block_dirty_folio +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e6aa98 elv_rb_find +EXPORT_SYMBOL vmlinux 0x890d3b61 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x8911792a sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order +EXPORT_SYMBOL vmlinux 0x8929708b udp_disconnect +EXPORT_SYMBOL vmlinux 0x8929b8c9 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x892e78ba sock_alloc_file +EXPORT_SYMBOL vmlinux 0x8931f45a ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x8948cdcc cpu_hwcaps +EXPORT_SYMBOL vmlinux 0x89597592 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x895ae27b tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x8970ec83 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x89903d1f fb_blank +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL vmlinux 0x89a6e2ff __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x89b7468e block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x89d389da phy_validate_pause +EXPORT_SYMBOL vmlinux 0x89d7dff7 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL vmlinux 0x89dfecbe skb_checksum +EXPORT_SYMBOL vmlinux 0x89e442e0 twl6040_power +EXPORT_SYMBOL vmlinux 0x89ea322d freezing_slow_path +EXPORT_SYMBOL vmlinux 0x8a0ca349 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8a110398 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x8a1561ec tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x8a367f4b tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x8a3e46d2 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x8a404233 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4ccc7b devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7ffa2f tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x8a9919bc to_nd_dax +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa304a4 sk_error_report +EXPORT_SYMBOL vmlinux 0x8ab68cad page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ade9c7e vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b0515ec sk_free +EXPORT_SYMBOL vmlinux 0x8b065797 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x8b18ba8f scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x8b2b667f pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x8b2db096 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b384921 param_set_uint +EXPORT_SYMBOL vmlinux 0x8b3d69ab of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6d1eaa i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x8b71c790 input_register_handle +EXPORT_SYMBOL vmlinux 0x8b733947 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x8b7c508d nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x8b7e5ed9 sget_fc +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b873987 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bc9e99a sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x8bccf015 pci_dev_get +EXPORT_SYMBOL vmlinux 0x8bd291a4 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be15dc2 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8be6ba92 security_sock_graft +EXPORT_SYMBOL vmlinux 0x8beac98f scsi_partsize +EXPORT_SYMBOL vmlinux 0x8c033e57 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x8c06c418 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x8c08d0a2 done_path_create +EXPORT_SYMBOL vmlinux 0x8c1df51e inet_del_protocol +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c412992 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x8c432c08 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x8c44c665 path_is_under +EXPORT_SYMBOL vmlinux 0x8c45ed6f genphy_suspend +EXPORT_SYMBOL vmlinux 0x8c5441f7 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x8c5b5876 notify_change +EXPORT_SYMBOL vmlinux 0x8c5dcdd1 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x8c7ff101 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8fd71b vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca2ee61 param_set_ushort +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb3e9ef netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cdc1e64 __sock_create +EXPORT_SYMBOL vmlinux 0x8cf00730 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x8cf72ec9 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x8cfafefc __serio_register_port +EXPORT_SYMBOL vmlinux 0x8cfb2e6c scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x8cfc7b2a param_get_byte +EXPORT_SYMBOL vmlinux 0x8d083b70 sock_alloc +EXPORT_SYMBOL vmlinux 0x8d0f5f01 phy_resume +EXPORT_SYMBOL vmlinux 0x8d20dcdd kill_anon_super +EXPORT_SYMBOL vmlinux 0x8d2af96b dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d42cbe9 dup_iter +EXPORT_SYMBOL vmlinux 0x8d439649 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x8d47717d __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d714d64 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x8d7963da devm_release_resource +EXPORT_SYMBOL vmlinux 0x8d7d1b4b tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8dbcb2a1 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x8dbd8982 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x8dc0cb79 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x8dca2cd3 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e148b7b vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e3b3756 sock_create_kern +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e443760 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e4f90c8 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x8e7794b4 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x8e87fd6c mdio_find_bus +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e9fec69 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x8eb0132f pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x8ec9dbbe phy_attach_direct +EXPORT_SYMBOL vmlinux 0x8ee3bdc4 iget_locked +EXPORT_SYMBOL vmlinux 0x8ee7b435 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x8ef512fb param_get_ulong +EXPORT_SYMBOL vmlinux 0x8ef856e5 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x8efabbbb udp_pre_connect +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f1138de serio_bus +EXPORT_SYMBOL vmlinux 0x8f2156f7 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x8f5c418d blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x8f67deaf of_node_put +EXPORT_SYMBOL vmlinux 0x8f6fbbf2 vfs_create +EXPORT_SYMBOL vmlinux 0x8f716e02 submit_bh +EXPORT_SYMBOL vmlinux 0x8f7aad9b imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x8f822515 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x8f8a585d page_get_link +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fb2f0ed amba_device_unregister +EXPORT_SYMBOL vmlinux 0x8fb7c2b5 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd20746 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x8fd3aa4f revert_creds +EXPORT_SYMBOL vmlinux 0x8fe3f255 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x90046b61 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x900b749a nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x902201a6 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9044a3e8 filp_close +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x908ec892 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x909678df inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x909b558b skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x909eef89 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x90aa4acd ilookup +EXPORT_SYMBOL vmlinux 0x90ac3741 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x90adea11 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons +EXPORT_SYMBOL vmlinux 0x90bc33c8 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x90f238ce sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x90fef2ee tcp_child_process +EXPORT_SYMBOL vmlinux 0x9107ffec acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x9125c6a5 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x91332793 skb_unlink +EXPORT_SYMBOL vmlinux 0x9136c972 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x914aaf35 pci_map_rom +EXPORT_SYMBOL vmlinux 0x9153b14a rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x915ed2b1 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x917f77c7 proc_set_size +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91b34141 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x91bec605 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91da5218 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x92126f63 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x92131604 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x921c9fba tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x9222677b vfs_fadvise +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x92347bd1 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x92358484 udp_read_skb +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923f161a fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x92407b20 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x924cd3cb skb_split +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x926ca7b7 vm_event_states +EXPORT_SYMBOL vmlinux 0x926eafb3 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92982e66 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92b5e85f cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92d5f6ae dm_get_device +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f8e1ff security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x930421a8 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931dc2cf __bio_advance +EXPORT_SYMBOL vmlinux 0x93221753 d_delete +EXPORT_SYMBOL vmlinux 0x933144c4 inet_frags_init +EXPORT_SYMBOL vmlinux 0x9351b3e0 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x93534654 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938d9b9f __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b89327 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x93cace76 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x941ff119 __breadahead +EXPORT_SYMBOL vmlinux 0x942648f9 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x94340050 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x94428251 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x94824e9f sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a3aa6d param_get_int +EXPORT_SYMBOL vmlinux 0x94a4e648 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x94b30d02 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94caf9ed is_nd_dax +EXPORT_SYMBOL vmlinux 0x94de11dd tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950a1d0e tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x950c0538 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x95313ec3 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954b2763 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9550061f blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x955f3545 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95aadf38 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x95cbe1e0 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x95d9b0d3 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x95e30613 nonseekable_open +EXPORT_SYMBOL vmlinux 0x95f177a4 mmc_get_card +EXPORT_SYMBOL vmlinux 0x9629f50a __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x962d23a8 filp_open +EXPORT_SYMBOL vmlinux 0x9673087a vfs_iter_write +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x96944e56 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x96b06388 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96bb01b5 elv_rb_add +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c5a7c3 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96ce8718 dget_parent +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96eb6213 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x96ebf093 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x96ef9daf sock_recvmsg +EXPORT_SYMBOL vmlinux 0x96f42831 proc_mkdir +EXPORT_SYMBOL vmlinux 0x96f760f7 inc_nlink +EXPORT_SYMBOL vmlinux 0x96f9a983 uart_match_port +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x96fd9750 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x96ff18ee filemap_map_pages +EXPORT_SYMBOL vmlinux 0x9712cf9f pci_remove_bus +EXPORT_SYMBOL vmlinux 0x9721c04b vlan_vid_add +EXPORT_SYMBOL vmlinux 0x9726e078 dquot_destroy +EXPORT_SYMBOL vmlinux 0x972b7156 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x97354e57 xp_alloc +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97492904 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x974b45ff ptp_find_pin +EXPORT_SYMBOL vmlinux 0x974ef047 input_flush_device +EXPORT_SYMBOL vmlinux 0x976ee676 param_get_bool +EXPORT_SYMBOL vmlinux 0x97835e31 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x978c8761 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x978d42d3 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x97958f87 dst_alloc +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a5dc82 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bd84e0 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c31846 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x97c9533e fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x97d59262 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x97eb54be dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97f5a901 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x97f68b4e rt6_lookup +EXPORT_SYMBOL vmlinux 0x97fb2d08 touch_buffer +EXPORT_SYMBOL vmlinux 0x97febfda dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x981ecff7 skb_find_text +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 +EXPORT_SYMBOL vmlinux 0x9897f2b1 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x98ae4d46 posix_lock_file +EXPORT_SYMBOL vmlinux 0x98b72fb0 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cdc837 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d29cd1 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x98d7308f fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x98e0498e pci_assign_resource +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f70c50 sk_net_capable +EXPORT_SYMBOL vmlinux 0x99063b66 scsi_host_get +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x990d0515 of_iomap +EXPORT_SYMBOL vmlinux 0x990f7587 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x992f820b netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x99355e77 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x99392b18 arp_create +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993ef3a4 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99528935 fman_port_bind +EXPORT_SYMBOL vmlinux 0x995bb5a3 dma_fence_describe +EXPORT_SYMBOL vmlinux 0x995ffa04 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x9960233a filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x99689c19 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x998e21e0 folio_alloc +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b19011 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x99baab29 bmap +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d4a561 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x99d7ba89 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x99d7f5d5 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e4b16f acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0x99e5f614 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x99f29b76 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x99fdd13b configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x9a071293 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a0c9fbc serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x9a15100d ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x9a1d001f sg_miter_skip +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a326a8e make_kprojid +EXPORT_SYMBOL vmlinux 0x9a32d1cf dm_register_target +EXPORT_SYMBOL vmlinux 0x9a44ddc4 seq_release +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a678c2a mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x9a6c8a98 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0x9a812c0a unregister_quota_format +EXPORT_SYMBOL vmlinux 0x9a864879 mii_link_ok +EXPORT_SYMBOL vmlinux 0x9a99e505 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ac05134 elevator_alloc +EXPORT_SYMBOL vmlinux 0x9ac177b4 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x9acdd51a page_symlink +EXPORT_SYMBOL vmlinux 0x9ad3439f pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x9adde5d0 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9ae8db9c __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x9b062d4e neigh_parms_release +EXPORT_SYMBOL vmlinux 0x9b10488f netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b227564 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b338c2b ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b4d67b5 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x9b50e807 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b6cb16d __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b903dcc phy_drivers_register +EXPORT_SYMBOL vmlinux 0x9b94cd5f pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x9bab0d0b inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x9bc11753 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x9bca1c80 nf_log_packet +EXPORT_SYMBOL vmlinux 0x9bdbf3b6 _dev_err +EXPORT_SYMBOL vmlinux 0x9bf6d7df param_ops_int +EXPORT_SYMBOL vmlinux 0x9c06b092 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c2c998a arp_tbl +EXPORT_SYMBOL vmlinux 0x9c33db0d devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x9c3cdf34 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8da040 new_inode +EXPORT_SYMBOL vmlinux 0x9c8f910b crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb58e42 peernet2id +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9ccf8c5d folio_write_one +EXPORT_SYMBOL vmlinux 0x9cd01df2 seq_read +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce0e556 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x9ce37a50 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1541f7 eth_validate_addr +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 0x9d2fe9ee xsk_tx_release +EXPORT_SYMBOL vmlinux 0x9d4c79b9 simple_release_fs +EXPORT_SYMBOL vmlinux 0x9d569f49 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x9d5de898 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d62632d netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x9d68141c fman_set_port_params +EXPORT_SYMBOL vmlinux 0x9d82f42a lynx_pcs_create +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d9fc30f prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x9daa031b iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x9dc4b17f nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x9dcd83dc flush_signals +EXPORT_SYMBOL vmlinux 0x9dd11642 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x9dd943ea iterate_fd +EXPORT_SYMBOL vmlinux 0x9ddf3e48 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x9de2fd18 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x9ded7c40 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e243da8 da903x_query_status +EXPORT_SYMBOL vmlinux 0x9e252370 input_set_capability +EXPORT_SYMBOL vmlinux 0x9e257c7a tcf_register_action +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e2a6b5c update_region +EXPORT_SYMBOL vmlinux 0x9e2cd5c6 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x9e2f89fe __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x9e38ea7d debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e530c8f dev_get_by_index +EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e78d7e4 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eb0b516 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq +EXPORT_SYMBOL vmlinux 0x9eb68ae7 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ecadd02 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x9ecb3f9a security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large +EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9edcb291 tty_vhangup +EXPORT_SYMBOL vmlinux 0x9ee5e544 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x9f009771 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x9f0c1288 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x9f1e3f2f iunique +EXPORT_SYMBOL vmlinux 0x9f24ad99 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x9f37f5f8 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4c8ff8 console_stop +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f625102 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f8aad75 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x9f9364ff tty_lock +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9f30b9 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x9fa2a4e9 tty_port_open +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fd701a5 d_move +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffc7a74 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0xa003ee35 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa016d118 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02e523e blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xa02ffeb3 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa034ef91 pci_release_region +EXPORT_SYMBOL vmlinux 0xa036ac94 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0970b52 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b58622 mdiobb_read +EXPORT_SYMBOL vmlinux 0xa0be55f1 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0xa0c8db0f md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xa0cde74c __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xa0d23d9c alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0xa0d5569b skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xa0d8727f sk_wait_data +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e153b2 __sock_cmsg_send +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 0xa0f10085 __sg_free_table +EXPORT_SYMBOL vmlinux 0xa0f116e7 kill_litter_super +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa104f104 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1115e2b get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xa11342bb pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xa113ef6b flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0xa18375bb ip_output +EXPORT_SYMBOL vmlinux 0xa196dbff __free_pages +EXPORT_SYMBOL vmlinux 0xa1985028 inet_add_offload +EXPORT_SYMBOL vmlinux 0xa1a698aa md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xa1b0635b bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xa1b33b80 fasync_helper +EXPORT_SYMBOL vmlinux 0xa1cc9af5 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xa1ed2e64 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa20e6336 device_add_disk +EXPORT_SYMBOL vmlinux 0xa2187078 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa239ef77 inode_dio_wait +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 0xa26c15c2 sg_miter_next +EXPORT_SYMBOL vmlinux 0xa27d8fd5 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xa280edaa rproc_boot +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2a1d2a7 tty_do_resize +EXPORT_SYMBOL vmlinux 0xa2ba1915 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xa2be5a2d dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0xa2c2f324 __ip_dev_find +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 0xa2e4d7e5 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xa2f65234 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xa303914d flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xa3047602 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xa30ae882 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xa32c716d jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa34defcd sock_no_accept +EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa36a45f1 inet_ioctl +EXPORT_SYMBOL vmlinux 0xa3957c14 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xa395e20f kobject_get +EXPORT_SYMBOL vmlinux 0xa3a1bcdc ip_local_deliver +EXPORT_SYMBOL vmlinux 0xa3b9707e of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xa3bc07c4 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c18e84 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xa3cdc14b of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d73f7b reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xa3f9000c scsi_print_sense +EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xa3fb9016 devm_clk_get +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40ec748 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4290932 follow_pfn +EXPORT_SYMBOL vmlinux 0xa43674b1 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xa43d4b5d stream_open +EXPORT_SYMBOL vmlinux 0xa443be3b security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa477ea33 ppp_input +EXPORT_SYMBOL vmlinux 0xa49375ce cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xa496c568 of_device_alloc +EXPORT_SYMBOL vmlinux 0xa49b1d7b tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xa4a03804 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xa4be605d clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xa4c7acbe kobject_set_name +EXPORT_SYMBOL vmlinux 0xa4dbb190 request_key_tag +EXPORT_SYMBOL vmlinux 0xa4ea1d54 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xa4f4d4d4 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa506bd8c blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xa50c3a3b backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xa512e82e tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xa51ee1f0 readahead_expand +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5553ce4 dev_deactivate +EXPORT_SYMBOL vmlinux 0xa5613dc5 vmap +EXPORT_SYMBOL vmlinux 0xa56f8b9b pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5978ebe xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xa59b7807 sk_dst_check +EXPORT_SYMBOL vmlinux 0xa59de630 get_fs_type +EXPORT_SYMBOL vmlinux 0xa5a68b45 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xa5a73a8f serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xa5c615f8 d_instantiate_new +EXPORT_SYMBOL vmlinux 0xa5caf9a7 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xa5d0615d jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa605eec1 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa609269f devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xa60a96c2 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa61fb2a7 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa633733b skb_store_bits +EXPORT_SYMBOL vmlinux 0xa641eb27 rpmh_write +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64a747a qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa650799a mdiobus_free +EXPORT_SYMBOL vmlinux 0xa651064a textsearch_register +EXPORT_SYMBOL vmlinux 0xa6626875 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xa66ceedb nd_device_unregister +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa694c19f mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xa69532eb xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xa697aa82 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xa6a3102f of_mdio_find_device +EXPORT_SYMBOL vmlinux 0xa6c0c9c4 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0xa6c9ec72 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xa6cbf9dd skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xa6f86729 netpoll_setup +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa7285a4f thaw_bdev +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa751fa06 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xa757b487 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xa75cdd6a blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xa764ce9b devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xa764fc22 vme_master_request +EXPORT_SYMBOL vmlinux 0xa76a2ac1 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa770e95c udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7836472 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xa788c9d1 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xa78ff692 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xa79ecb1d blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xa7ca7f34 __f_setown +EXPORT_SYMBOL vmlinux 0xa7cc3c03 mmc_command_done +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7e127ec tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa8015e59 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xa8078757 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xa817b672 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa821464d scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xa822742f sk_capable +EXPORT_SYMBOL vmlinux 0xa8269acd dma_find_channel +EXPORT_SYMBOL vmlinux 0xa82773f8 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xa8436df7 i2c_smbus_write_byte +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 0xa8535548 of_phy_connect +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa85b7b24 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xa85d4c55 input_event +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa86ff9dd __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xa87329cd pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa89b5388 inet6_offloads +EXPORT_SYMBOL vmlinux 0xa89bc6e1 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8a91c38 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8dbf466 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8e6956c skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xa8f3fb97 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91e5071 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xa923172b make_bad_inode +EXPORT_SYMBOL vmlinux 0xa92a163c mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xa92d8c12 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xa9428407 follow_down +EXPORT_SYMBOL vmlinux 0xa948aae0 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xa949cf6a kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa955289b pci_find_capability +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa982dc15 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xa9938b29 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xa9967942 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xa9a2ba69 __break_lease +EXPORT_SYMBOL vmlinux 0xa9b1ac11 netif_rx +EXPORT_SYMBOL vmlinux 0xa9c593f9 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0xa9cd3852 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0xa9cf22e0 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xa9d69612 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xa9d7e59f kernel_accept +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f14ee2 phy_attach +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa025297 vfs_readlink +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa25f635 iput +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa4c281b sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa70c388 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa811d43 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaaa7ff4b buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0xaab8c6e9 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xaac4b905 block_write_begin +EXPORT_SYMBOL vmlinux 0xaac814ba netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad3cae2 pskb_trim_rcsum_slow +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 0xaaf07bd8 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab175ebe __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xab1a6027 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab39fba9 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab45f807 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0xab4a51b0 sock_no_getname +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab617ca7 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab646a46 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab72a305 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab9af089 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xab9d15dc dump_align +EXPORT_SYMBOL vmlinux 0xaba1b420 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xaba34937 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xabb42425 set_groups +EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0xabc72bf8 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac01abbc pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xac1a438f dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac21e69f mntget +EXPORT_SYMBOL vmlinux 0xac24b412 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac3e12dc bio_free_pages +EXPORT_SYMBOL vmlinux 0xac3ea803 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xac3f8e89 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xac488e7b mount_subtree +EXPORT_SYMBOL vmlinux 0xac4e67f3 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac59a894 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xac59da80 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac62e7d7 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xac6b6be9 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xac760a3e unregister_nls +EXPORT_SYMBOL vmlinux 0xac999500 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb63b64 tcp_prot +EXPORT_SYMBOL vmlinux 0xacbab7d3 simple_link +EXPORT_SYMBOL vmlinux 0xacbeb39d __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacdddf9b blk_execute_rq +EXPORT_SYMBOL vmlinux 0xace937c7 bpf_link_put +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0d749c seq_bprintf +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad189426 vm_map_pages +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad462eb7 __icmp_send +EXPORT_SYMBOL vmlinux 0xad4e3b94 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xad54eefe pid_task +EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write +EXPORT_SYMBOL vmlinux 0xad6b066b ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad798d83 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xad91428b dev_remove_offload +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad9cdbd8 ip6_xmit +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae0ba25d __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xae12de39 skb_clone +EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled +EXPORT_SYMBOL vmlinux 0xae227227 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae3293b2 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae54b88e netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae5aa00b pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xae6cad03 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xae70945a __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xae8d8de4 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaebcff26 uart_resume_port +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaed638f2 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xaedc98d3 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xaee2711b pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xaeeae2a8 __neigh_create +EXPORT_SYMBOL vmlinux 0xaeff720e ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xaf072da0 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xaf08a5bf inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xaf1a6c7e tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xaf24e321 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xaf2ee3e8 pci_set_master +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4c1f04 con_is_visible +EXPORT_SYMBOL vmlinux 0xaf531dce setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xaf54ba8d kill_pgrp +EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf611ebb vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xaf63a0c2 user_revoke +EXPORT_SYMBOL vmlinux 0xaf72660d pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xaf8ac559 pci_disable_device +EXPORT_SYMBOL vmlinux 0xaf9cf552 serio_rescan +EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit +EXPORT_SYMBOL vmlinux 0xafaf4bae jbd2_journal_grab_journal_head +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 0xaff01067 unregister_key_type +EXPORT_SYMBOL vmlinux 0xaff919e9 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xaff93f40 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xafffeb8c simple_write_begin +EXPORT_SYMBOL vmlinux 0xb003af5c bio_alloc_clone +EXPORT_SYMBOL vmlinux 0xb0110f50 init_net +EXPORT_SYMBOL vmlinux 0xb0168b14 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xb019b928 thaw_super +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb022f8e0 config_group_find_item +EXPORT_SYMBOL vmlinux 0xb0327164 vfs_llseek +EXPORT_SYMBOL vmlinux 0xb03f07d8 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xb0410682 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0xb046fbe7 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xb0492e65 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb053eaa2 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xb0572f98 locks_init_lock +EXPORT_SYMBOL vmlinux 0xb05c5a06 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xb05fbaf8 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state +EXPORT_SYMBOL vmlinux 0xb061993f tty_port_close_start +EXPORT_SYMBOL vmlinux 0xb06963ef iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xb06d33f2 bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0xb06ef0aa unregister_shrinker +EXPORT_SYMBOL vmlinux 0xb070c2eb device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xb07fffa8 phy_disconnect +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a8c979 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e4a656 dquot_drop +EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1358cc3 set_disk_ro +EXPORT_SYMBOL vmlinux 0xb13784dd ip_options_compile +EXPORT_SYMBOL vmlinux 0xb1428cb3 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb1577c4b mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xb15a6300 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xb15b02fa cfb_imageblit +EXPORT_SYMBOL vmlinux 0xb15b4109 crc32c +EXPORT_SYMBOL vmlinux 0xb17ea1e9 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xb17ff2d7 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xb18e9c99 kern_unmount +EXPORT_SYMBOL vmlinux 0xb1991898 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xb1b1b3e8 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xb1c0529c folio_mapping +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ce2f55 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1de4af8 key_alloc +EXPORT_SYMBOL vmlinux 0xb1ef5a72 get_inode_acl +EXPORT_SYMBOL vmlinux 0xb20cdde4 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xb20f5153 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xb21730fc tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xb21b4f12 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xb21e81a8 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb236e8bb can_nice +EXPORT_SYMBOL vmlinux 0xb23e8b08 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xb251f43d linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xb25225e1 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xb2534f92 security_path_unlink +EXPORT_SYMBOL vmlinux 0xb26e9154 dquot_acquire +EXPORT_SYMBOL vmlinux 0xb2926bc3 simple_fill_super +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c084d9 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xb2c3d61d phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xb2cdb8fb vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xb2d9f4e3 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f375ff netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31fa21d qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xb3226035 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb32e31d9 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xb32fffd8 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xb336b815 logfc +EXPORT_SYMBOL vmlinux 0xb33ab319 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xb346dcfb acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xb3473c35 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb3538b2f __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xb35ba06d __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xb372b3ca devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xb3816898 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert +EXPORT_SYMBOL vmlinux 0xb399f13a key_revoke +EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3ac1cb7 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xb3c0cbac md_integrity_register +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3ec5257 copy_highpage +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 0xb3f985a8 sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb419240f cdrom_check_events +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb427b991 is_nd_btt +EXPORT_SYMBOL vmlinux 0xb439d143 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xb43ed555 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xb447fd05 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb46189c0 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xb4f07d95 sock_i_ino +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb50cf028 scsi_done +EXPORT_SYMBOL vmlinux 0xb51c7e2f netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xb51d4d95 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb53fdbf1 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xb543a317 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xb566b4b1 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb583e1ad devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5d63a35 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xb5e18065 mmc_erase +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5ebff35 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xb5f41f6e udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xb6012304 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xb6170df6 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xb61cc300 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb634f095 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xb63aa8f2 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xb63ec18c do_clone_file_range +EXPORT_SYMBOL vmlinux 0xb643f6c6 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xb64a9235 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0xb64e6d5a inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xb6505043 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb670e94e migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6801025 udplite_prot +EXPORT_SYMBOL vmlinux 0xb6924485 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b27486 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xb6bc4e1d mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xb6c3653b jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6cd594a jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb7120fd6 clk_add_alias +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb715d03f simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb72939c4 __alloc_pages +EXPORT_SYMBOL vmlinux 0xb72cf220 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xb72f56f6 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb745e2c7 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xb752eb7e abort_creds +EXPORT_SYMBOL vmlinux 0xb75646f6 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb76a16f1 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xb76f8a4a request_key_rcu +EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78a3187 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7a26dfe devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xb7a59cd3 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xb7a5e478 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xb7ab4ee8 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c31bdf ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7e72537 of_device_is_available +EXPORT_SYMBOL vmlinux 0xb7e9341c __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xb7e9c69c validate_slab_cache +EXPORT_SYMBOL vmlinux 0xb7f01544 inode_set_flags +EXPORT_SYMBOL vmlinux 0xb8008d16 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xb8053fd4 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xb8081b24 task_work_add +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb817949d param_ops_string +EXPORT_SYMBOL vmlinux 0xb834c5f8 free_buffer_head +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb8484e69 napi_get_frags +EXPORT_SYMBOL vmlinux 0xb84946dc of_find_property +EXPORT_SYMBOL vmlinux 0xb85092b9 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xb85c7ddc of_node_get +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb861a688 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86eba65 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xb8728bd6 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xb874ce97 del_gendisk +EXPORT_SYMBOL vmlinux 0xb8775b4f unregister_md_personality +EXPORT_SYMBOL vmlinux 0xb88de93a inet_release +EXPORT_SYMBOL vmlinux 0xb88f8804 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xb896abb4 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xb896d338 clkdev_add +EXPORT_SYMBOL vmlinux 0xb897ea1e free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xb8980d59 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb918f78b page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb9280d12 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xb93461a4 tegra_dfll_register +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 0xb9975e34 dqput +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9bd8ccd xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xb9bdbadb md_reload_sb +EXPORT_SYMBOL vmlinux 0xb9d0f991 of_graph_get_endpoint_by_regs +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 0xba0fba31 clear_nlink +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba15b9b6 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xba2d7293 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xba3aaf12 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xba3eb8d2 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba530f11 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xba655a83 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xba666a1f jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba7ebbed generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xba8c3c8d rtc_add_group +EXPORT_SYMBOL vmlinux 0xba90ba88 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len +EXPORT_SYMBOL vmlinux 0xbad0992b tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xbaf86e59 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb07410c security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xbb124d4e genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xbb17eecd jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xbb1f1ceb tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb3be978 input_close_device +EXPORT_SYMBOL vmlinux 0xbb47221c tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb81ad2f d_tmpfile +EXPORT_SYMBOL vmlinux 0xbb8ff055 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbbbe5605 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xbc1efbcc phy_read_paged +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc301d54 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xbc75a207 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xbc770b37 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcc52ee9 input_register_device +EXPORT_SYMBOL vmlinux 0xbce6163b nd_dax_probe +EXPORT_SYMBOL vmlinux 0xbcecf1a8 generic_fadvise +EXPORT_SYMBOL vmlinux 0xbcf44f04 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xbd01c96c vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xbd04b528 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xbd12c333 key_task_permission +EXPORT_SYMBOL vmlinux 0xbd2a5a66 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xbd3c3bd8 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd57b55c page_pool_create +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd63239d read_cache_page +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd6fbc66 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xbd75b982 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xbd8e534c path_get +EXPORT_SYMBOL vmlinux 0xbd92db17 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xbd943d04 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xbdaa617a ether_setup +EXPORT_SYMBOL vmlinux 0xbdb63be9 seq_open +EXPORT_SYMBOL vmlinux 0xbdd42bd2 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xbde488bc xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xbdea47b5 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xbdf6dba6 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xbe03bfce tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xbe055947 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xbe0f94ed rproc_report_crash +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe15bf62 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xbe17cbba pci_choose_state +EXPORT_SYMBOL vmlinux 0xbe1b4f37 dma_resv_init +EXPORT_SYMBOL vmlinux 0xbe263f36 cred_fscmp +EXPORT_SYMBOL vmlinux 0xbe3092b0 skb_push +EXPORT_SYMBOL vmlinux 0xbe37bb84 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xbe3e6314 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xbe45d407 file_remove_privs +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe511229 devfreq_monitor_start +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 0xbe92d51f phy_connect +EXPORT_SYMBOL vmlinux 0xbe9749d3 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xbea9d9d6 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xbeaa141c skb_queue_head +EXPORT_SYMBOL vmlinux 0xbeab904a ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xbead7d26 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xbec14db2 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbefc425e flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xbf15cef3 lock_rename +EXPORT_SYMBOL vmlinux 0xbf2d26c8 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xbf36af9e xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xbf3d94ec nd_device_notify +EXPORT_SYMBOL vmlinux 0xbf4f15e6 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf66a608 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xbf6afee9 current_in_userns +EXPORT_SYMBOL vmlinux 0xbf790b31 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xbf8eabc8 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9c4a2b complete_request_key +EXPORT_SYMBOL vmlinux 0xbfae3682 cdev_add +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfddefbd padata_do_serial +EXPORT_SYMBOL vmlinux 0xbfe27447 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xbff5cf5c napi_gro_receive +EXPORT_SYMBOL vmlinux 0xbff7b5c1 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xbff8fe99 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xc020b324 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xc02107d2 netdev_notice +EXPORT_SYMBOL vmlinux 0xc032958b registered_fb +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc03db9b4 qdisc_reset +EXPORT_SYMBOL vmlinux 0xc055c218 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get +EXPORT_SYMBOL vmlinux 0xc06d1834 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc08de0b9 inet_frag_find +EXPORT_SYMBOL vmlinux 0xc08e7a05 nla_reserve +EXPORT_SYMBOL vmlinux 0xc0a21363 km_new_mapping +EXPORT_SYMBOL vmlinux 0xc0a4f9b9 may_setattr +EXPORT_SYMBOL vmlinux 0xc0c272e5 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xc0e13bae audit_log +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 0xc12051a9 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xc1410a60 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc1537404 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc162dd48 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1a52009 iterate_supers_type +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 0xc22f6693 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc233e31c security_path_mknod +EXPORT_SYMBOL vmlinux 0xc23e7891 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xc24bb1c9 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xc255b432 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xc2849eb8 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xc29346c9 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xc297fe4d napi_gro_frags +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc29ff9cf has_capability +EXPORT_SYMBOL vmlinux 0xc2b2c61c xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xc2bcb05f blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order +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 0xc2fec8e5 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc30d5412 get_user_pages +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc3383f89 pipe_unlock +EXPORT_SYMBOL vmlinux 0xc346ee9d mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xc3492d4e rproc_free +EXPORT_SYMBOL vmlinux 0xc35cef6c max8998_update_reg +EXPORT_SYMBOL vmlinux 0xc362020a build_skb +EXPORT_SYMBOL vmlinux 0xc36d64a3 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc387c574 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc398c91b netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc39ff139 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xc3a1675c acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xc3aa472f netdev_change_features +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3c30d34 register_md_personality +EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3d02a7b pci_scan_bus +EXPORT_SYMBOL vmlinux 0xc3e9054e sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xc3e98306 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xc3ff2f6c mdio_driver_register +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc404e1d8 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xc409cb63 unlock_page +EXPORT_SYMBOL vmlinux 0xc416ec93 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xc4182e6a skb_put +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc479e8cb simple_pin_fs +EXPORT_SYMBOL vmlinux 0xc47fc83c tcp_peek_len +EXPORT_SYMBOL vmlinux 0xc491789b mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xc49dc634 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xc4a01f6d of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4b3ce8e inet_select_addr +EXPORT_SYMBOL vmlinux 0xc4b40da7 keyring_alloc +EXPORT_SYMBOL vmlinux 0xc4c74892 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xc4f5e7f8 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xc4f93898 generic_perform_write +EXPORT_SYMBOL vmlinux 0xc4fae570 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xc5059155 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xc50e6b4f __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xc51d1de5 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc543b565 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xc547a595 phy_device_remove +EXPORT_SYMBOL vmlinux 0xc560efb5 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xc565d02b param_get_hexint +EXPORT_SYMBOL vmlinux 0xc56c358e of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc58d2b37 bio_integrity_prep +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 0xc5c10692 netdev_warn +EXPORT_SYMBOL vmlinux 0xc5cb6846 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5ea4e2e get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xc5ee1d59 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xc5fcfb3b config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc62f2265 unlock_buffer +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633211a acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc63a050e security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xc6419c3c bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xc6451990 is_subdir +EXPORT_SYMBOL vmlinux 0xc649796d qman_start_using_portal +EXPORT_SYMBOL vmlinux 0xc654a09b dev_mc_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 0xc66f3151 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xc68a3937 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xc68d9b0b wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xc696d593 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xc69c3725 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6c29e59 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xc6c86238 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6df6ccb backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xc6df6ef4 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0xc6f02dd1 sock_init_data +EXPORT_SYMBOL vmlinux 0xc6f10424 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc7070f8e phy_write_paged +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc7100b00 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xc71bcbea zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7368cb8 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xc742d7d0 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xc745b66d key_link +EXPORT_SYMBOL vmlinux 0xc7583653 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xc77de0e2 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc786803b sync_blockdev_range +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc7bf9fd3 pcibus_to_node +EXPORT_SYMBOL vmlinux 0xc7bff44e __d_drop +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d39d55 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xc7d52e9f mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xc7efc2c2 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xc7f29d63 datagram_poll +EXPORT_SYMBOL vmlinux 0xc7f619f7 tty_port_close +EXPORT_SYMBOL vmlinux 0xc8038080 page_mapping +EXPORT_SYMBOL vmlinux 0xc8091d57 input_register_handler +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc80d2b80 invalidate_disk +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xc84283a4 inet_addr_type +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc854abfb vma_set_file +EXPORT_SYMBOL vmlinux 0xc864afd0 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xc8694591 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc8855b4d mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xc88b13a0 param_ops_byte +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc895bf23 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc89bc7eb input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xc8a3406e fqdir_init +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b711b5 edac_mc_find +EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e9b05d scm_fp_dup +EXPORT_SYMBOL vmlinux 0xc8f34a7e eth_type_trans +EXPORT_SYMBOL vmlinux 0xc909b7cc kmalloc_trace +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc9229e3c blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xc923e0b8 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xc9319fdf _copy_to_iter +EXPORT_SYMBOL vmlinux 0xc93827fd blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc9544767 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xc95c7b0d devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc967875c kill_block_super +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc97a976a try_module_get +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc98481f8 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xc99a6ff9 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9d8447c kernel_connect +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xca0f82d8 pci_clear_master +EXPORT_SYMBOL vmlinux 0xca11ea4f sock_edemux +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca33a318 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xca383682 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca5383dd send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xca540ae1 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca68c832 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xca8ca6a2 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xca9345d3 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xca9f1b95 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xcab06a5d xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcad2a4be __folio_put +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb18cbcb dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xcb34fceb __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb43c602 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xcb5c9355 ping_prot +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb7ab2c0 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc91b07 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd73d27 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xcbf1620b __netif_napi_del +EXPORT_SYMBOL vmlinux 0xcbf3309f pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2b25eb call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xcc2c97e6 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc38531c always_delete_dentry +EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup +EXPORT_SYMBOL vmlinux 0xcc3e72d8 read_cache_folio +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc56a002 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xcc56e6d7 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc660009 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xcca01074 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xcca9879f acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xccac38f2 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xccae76cd xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xccb38241 netdev_printk +EXPORT_SYMBOL vmlinux 0xccb79c99 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xccc5ef64 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xccd11c87 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xccd3ebb7 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xccd820fb dev_remove_pack +EXPORT_SYMBOL vmlinux 0xccdc4f0a flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xcce255f2 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xccf91f6e dst_destroy +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 0xcd0b2515 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xcd1135ea netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd36c96e tcp_connect +EXPORT_SYMBOL vmlinux 0xcd394e33 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0xcd48542f default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xcd5431f7 bio_copy_data +EXPORT_SYMBOL vmlinux 0xcd6e6072 tcp_close +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd8ee26e sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xcd911b55 of_graph_is_present +EXPORT_SYMBOL vmlinux 0xcd963e09 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xcd9fc2cb qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xcdb2baaf sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xcdb38f71 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xcdc2f0f3 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdf63006 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xcdfec382 mount_single +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce363381 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xce4a866b import_single_range +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4dd0b8 trace_event_printf +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce6ecd7d cdev_device_add +EXPORT_SYMBOL vmlinux 0xce703c3c scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xce720f28 mtree_destroy +EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce7b4271 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xcea06d32 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xcea47186 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xcea7f04f get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcebf5890 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xcec0394f scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xcec42570 dquot_commit +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcef02117 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xcef04175 softnet_data +EXPORT_SYMBOL vmlinux 0xcef9576e param_ops_ullong +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xceff299e of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xcf050815 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0xcf09780b file_update_time +EXPORT_SYMBOL vmlinux 0xcf231862 iproc_msi_init +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2ddd6d of_get_parent +EXPORT_SYMBOL vmlinux 0xcf35d715 generic_setlease +EXPORT_SYMBOL vmlinux 0xcf377195 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf430ae2 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xcf4cdcf0 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf5a89cd jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xcf6c1467 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xcf6e5b8e folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0xcf9aa5e8 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd4978f __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcfd78ae2 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfd88b95 finish_no_open +EXPORT_SYMBOL vmlinux 0xcfde4d7a netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xcff587b8 param_get_ushort +EXPORT_SYMBOL vmlinux 0xcff7fdf7 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xd00ffcc2 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xd011c299 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xd023c829 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xd0281da7 d_alloc +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd05c58e4 __of_get_address +EXPORT_SYMBOL vmlinux 0xd0617c19 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd073306f netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08106da load_nls_default +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd0a452b0 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0b8bd86 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xd0bed28f blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xd0cfb81e gro_cells_init +EXPORT_SYMBOL vmlinux 0xd0d089a1 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xd0e96fa0 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xd1069e97 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xd10df455 key_validate +EXPORT_SYMBOL vmlinux 0xd112f77e configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd156cbd0 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xd15c0aac clk_bulk_get +EXPORT_SYMBOL vmlinux 0xd15f6796 md_error +EXPORT_SYMBOL vmlinux 0xd1613908 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xd1630a02 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xd16ed581 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xd193e07b zap_page_range +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd19dbd18 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xd1be6f7d rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1fcea4a aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xd20207b3 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xd2030e36 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd2123712 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xd21bfaf3 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd24f658d phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xd255509a md_bitmap_cond_end_sync +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 0xd268f2ca seq_file_path +EXPORT_SYMBOL vmlinux 0xd26d5ca2 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd2a49c15 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xd2bccdf0 audit_log_start +EXPORT_SYMBOL vmlinux 0xd2caca79 dev_add_offload +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 0xd2eeee0f xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xd304db6b twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xd309f138 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xd311745b get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd31da56f insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xd33c8b1c fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd378bd98 block_write_end +EXPORT_SYMBOL vmlinux 0xd378fae9 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd3852896 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xd3885b04 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd3a05e03 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xd3aa636a kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xd3ae01e5 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xd3b90bfa from_kgid_munged +EXPORT_SYMBOL vmlinux 0xd3bf6ecd xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xd3c54b5e netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xd3c9f183 blk_rq_init +EXPORT_SYMBOL vmlinux 0xd3d3b7fe fget +EXPORT_SYMBOL vmlinux 0xd3d6b322 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xd4064c7c nlmsg_notify +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd409cc68 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xd40d2968 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xd42f7fa9 ethtool_notify +EXPORT_SYMBOL vmlinux 0xd439ccfb folio_account_redirty +EXPORT_SYMBOL vmlinux 0xd4446b07 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xd455df01 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xd458cd8a fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4709fe6 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4980943 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4b30398 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xd4b938e7 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c6bb5b pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4e2820b dev_driver_string +EXPORT_SYMBOL vmlinux 0xd4e318d5 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xd4ecf04b wireless_send_event +EXPORT_SYMBOL vmlinux 0xd4f629b0 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xd5231242 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xd526307b inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52a064d kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd54d40fe mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xd54dd2cc disk_stack_limits +EXPORT_SYMBOL vmlinux 0xd56a7d1a scsi_scan_target +EXPORT_SYMBOL vmlinux 0xd57011e3 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xd57ea42b i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xd586d50b seq_write +EXPORT_SYMBOL vmlinux 0xd58f60e5 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xd5937032 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xd59a4fdf set_anon_super +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5b98c17 seq_release_private +EXPORT_SYMBOL vmlinux 0xd5bc0845 tty_hangup +EXPORT_SYMBOL vmlinux 0xd5bd9fc8 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xd5f84cd6 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60f4dd2 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0xd60fbf27 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xd61a89fd phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xd61d336c nf_log_set +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd6433463 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xd65fd35c get_watch_queue +EXPORT_SYMBOL vmlinux 0xd6684ac5 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd67d9109 I_BDEV +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd69523fc blk_get_queue +EXPORT_SYMBOL vmlinux 0xd69a399c sget +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6b4609f pci_disable_msi +EXPORT_SYMBOL vmlinux 0xd6cb4d93 kern_path +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70005ea seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xd70491cd uart_add_one_port +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd7105743 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xd71104b3 vm_node_stat +EXPORT_SYMBOL vmlinux 0xd7268fde import_iovec +EXPORT_SYMBOL vmlinux 0xd7339237 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xd7350744 inet_listen +EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd74151be migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd74bd7e3 posix_test_lock +EXPORT_SYMBOL vmlinux 0xd7529981 phy_stop +EXPORT_SYMBOL vmlinux 0xd762cecc inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xd77b7c7b simple_rename +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7a0dfd5 devm_rproc_add +EXPORT_SYMBOL vmlinux 0xd7b1d6dc pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xd7bd928c lock_sock_nested +EXPORT_SYMBOL vmlinux 0xd7bfe665 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xd7c2c5b3 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dd011f ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xd7dfdaab bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e69acd get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xd7e97c44 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7eb76e5 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xd7efa37a seq_putc +EXPORT_SYMBOL vmlinux 0xd7f31b8f dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd80474e6 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xd80caaa7 bio_add_page +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd81e014f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xd827ece0 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xd8530ced fwnode_iomap +EXPORT_SYMBOL vmlinux 0xd8589361 nd_btt_version +EXPORT_SYMBOL vmlinux 0xd88d0ee7 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xd89247f7 serio_open +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit +EXPORT_SYMBOL vmlinux 0xd8bccd0b folio_unlock +EXPORT_SYMBOL vmlinux 0xd8c652af mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xd8cc507f sock_from_file +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8e25e63 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd9034cd3 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd925e923 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9429516 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd9528105 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xd95aebb2 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98bf2ed xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd98ffa4c inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xd9a29be0 mount_nodev +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9aba931 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xd9b01a4f dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9bf6ee4 napi_complete_done +EXPORT_SYMBOL vmlinux 0xd9c488ba blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xd9c96674 amba_release_regions +EXPORT_SYMBOL vmlinux 0xd9d152dc tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0xd9d32b39 flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xda0629a1 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id +EXPORT_SYMBOL vmlinux 0xda1e005e netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda76b324 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xda893724 fqdir_exit +EXPORT_SYMBOL vmlinux 0xda93da11 genl_notify +EXPORT_SYMBOL vmlinux 0xda9beea7 of_device_register +EXPORT_SYMBOL vmlinux 0xda9d6f95 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac63c16 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdad26876 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xdaf110ff fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xdaf61183 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xdafa4189 param_ops_bint +EXPORT_SYMBOL vmlinux 0xdb100a28 alloc_pages +EXPORT_SYMBOL vmlinux 0xdb260bb5 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xdb2a1ba8 rproc_put +EXPORT_SYMBOL vmlinux 0xdb357b61 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xdb44b258 of_node_name_eq +EXPORT_SYMBOL vmlinux 0xdb4f5739 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xdb5e8f00 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6a05b2 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xdb70c8d1 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdbbb04d1 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xdbc7a503 module_refcount +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdc06c92d ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc38b28a mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc4007c4 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc6c236e kthread_create_worker +EXPORT_SYMBOL vmlinux 0xdc6c9408 seq_vprintf +EXPORT_SYMBOL vmlinux 0xdc6ca3db dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xdc8ec5ab cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xdc92c4f9 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xdc9a2271 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xdca4f225 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcaec865 lookup_one +EXPORT_SYMBOL vmlinux 0xdcb667a6 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xdcc6cd88 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xdcdad2ea ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdce6ca33 poll_freewait +EXPORT_SYMBOL vmlinux 0xdcea5b7d security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xdcefa9a7 vm_insert_page +EXPORT_SYMBOL vmlinux 0xdcf39631 configfs_register_group +EXPORT_SYMBOL vmlinux 0xdcf88fda blk_finish_plug +EXPORT_SYMBOL vmlinux 0xdcfb932f vfs_unlink +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd18dc4c md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd32e566 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xdd5807c6 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xdd5be2d0 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd67029e skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd9ec558 param_set_long +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddbb9d1f kern_path_create +EXPORT_SYMBOL vmlinux 0xddc437af xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0xdde810cc dns_query +EXPORT_SYMBOL vmlinux 0xddeb2d5f filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xde237a51 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde2c6cac key_unlink +EXPORT_SYMBOL vmlinux 0xde2e50e1 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xde3f5de6 tcf_block_get +EXPORT_SYMBOL vmlinux 0xde42ad85 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xde46fd62 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde59a260 param_set_short +EXPORT_SYMBOL vmlinux 0xde59d175 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xde5d6add __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xde5ff3c4 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xde67419e sg_split +EXPORT_SYMBOL vmlinux 0xde6e82e2 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xde7ffe86 misc_register +EXPORT_SYMBOL vmlinux 0xde82e136 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xde91bc58 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xde966664 key_type_keyring +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdee5166b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf184333 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2f20ce vfs_rmdir +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf4a8fb7 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf58be6b nd_integrity_init +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf6f9c07 napi_disable +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d49e6 neigh_lookup +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents +EXPORT_SYMBOL vmlinux 0xdf99e00d pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xdfa4a214 pci_iounmap +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xdff66450 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xdff69e97 phy_device_create +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xdffcb0de pci_request_irq +EXPORT_SYMBOL vmlinux 0xe00d7102 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xe029d3c2 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c6e26 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe03bd4b9 generic_permission +EXPORT_SYMBOL vmlinux 0xe03dfb84 md_register_thread +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe0518cad register_filesystem +EXPORT_SYMBOL vmlinux 0xe06141e2 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xe0633dd0 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xe067adbc genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xe073ec4e dquot_disable +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe080c9c8 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe092c543 vfs_setpos +EXPORT_SYMBOL vmlinux 0xe0981db3 config_item_put +EXPORT_SYMBOL vmlinux 0xe09a7fce acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b3ed3b rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0d8ca50 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xe0f66958 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xe11372ff remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1478a50 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xe15bf6d8 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xe15ca24c skb_condense +EXPORT_SYMBOL vmlinux 0xe160d564 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xe1aecd39 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xe1b48830 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xe1b96b23 igrab +EXPORT_SYMBOL vmlinux 0xe1bf25c3 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xe1cc302e blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xe1d11142 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xe1d803f3 d_set_d_op +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1ee7a1d fs_param_is_string +EXPORT_SYMBOL vmlinux 0xe1f3762f proc_create_single_data +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe22497d8 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xe22bc802 d_lookup +EXPORT_SYMBOL vmlinux 0xe233698f fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xe234d681 block_write_full_page +EXPORT_SYMBOL vmlinux 0xe249dcbd tcp_time_wait +EXPORT_SYMBOL vmlinux 0xe266b6a4 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe28762a5 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xe288a459 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up +EXPORT_SYMBOL vmlinux 0xe2ae8c2e of_phy_find_device +EXPORT_SYMBOL vmlinux 0xe2af5a4d udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xe2b42921 sock_no_connect +EXPORT_SYMBOL vmlinux 0xe2c52373 phy_loopback +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2dc1f34 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xe3092eda rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xe3154a66 drop_nlink +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe334dba4 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xe339dca8 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xe34d2ff0 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xe37f1d3f bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xe389cebe filemap_check_errors +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe39eb8da __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xe39ef813 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xe3b299f1 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xe3be1d16 discard_new_inode +EXPORT_SYMBOL vmlinux 0xe3c3a3ad skb_clone_sk +EXPORT_SYMBOL vmlinux 0xe3dcdae8 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xe3e04bb2 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f56e18 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xe3f5b48d nvdimm_namespace_capacity +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 0xe4105956 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xe430f1d0 bio_put +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe4392a10 _copy_from_iter +EXPORT_SYMBOL vmlinux 0xe439b286 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xe44e6585 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xe457b595 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xe4657608 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xe465bf3d dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xe4788103 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xe48e5828 fman_reset_mac +EXPORT_SYMBOL vmlinux 0xe49ca1e9 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4bf27c8 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe4c148ef xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xe4fb0469 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xe4fe478a end_page_writeback +EXPORT_SYMBOL vmlinux 0xe51622ea d_obtain_alias +EXPORT_SYMBOL vmlinux 0xe51f2060 mdio_device_free +EXPORT_SYMBOL vmlinux 0xe520f789 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52feb41 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0xe580554c cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5821319 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5b9893a tcp_req_err +EXPORT_SYMBOL vmlinux 0xe5c5b6c6 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5e8b3ec skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xe600ff1b pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xe616fea0 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xe64b9bdf call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe66aa846 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0xe694b35e build_skb_around +EXPORT_SYMBOL vmlinux 0xe69695e9 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xe6a5cc22 kernel_bind +EXPORT_SYMBOL vmlinux 0xe6ac4da0 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xe6b01b58 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xe6b89b3f flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xe6be1657 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6e20c56 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xe6e22612 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xe6e70c47 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xe6f211d2 __pagevec_release +EXPORT_SYMBOL vmlinux 0xe6f37a7c framebuffer_release +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe70a1fcc genlmsg_put +EXPORT_SYMBOL vmlinux 0xe71b27ff sock_gettstamp +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe7488eb2 vif_device_init +EXPORT_SYMBOL vmlinux 0xe75cdde6 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe76c6c53 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xe76cd348 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe77971f1 genl_register_family +EXPORT_SYMBOL vmlinux 0xe7908756 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a45bea scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xe7a7ac9d netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe7cd2503 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e435b0 security_path_rename +EXPORT_SYMBOL vmlinux 0xe801bf79 prepare_creds +EXPORT_SYMBOL vmlinux 0xe81495b7 dev_addr_del +EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xe82b77be get_tree_nodev +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe861db20 neigh_update +EXPORT_SYMBOL vmlinux 0xe87f3a26 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xe88cb7f0 cdev_alloc +EXPORT_SYMBOL vmlinux 0xe89c7094 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0xe8b0e707 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8ccf664 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len +EXPORT_SYMBOL vmlinux 0xe8e390bb sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xe8ed032f seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get +EXPORT_SYMBOL vmlinux 0xe905569b inet_recvmsg +EXPORT_SYMBOL vmlinux 0xe90649db reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9379d2e ptp_clock_register +EXPORT_SYMBOL vmlinux 0xe94f8546 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9579e88 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xe95a84ce netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xe95f1438 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xe964ceb3 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xe97c0781 vme_bus_num +EXPORT_SYMBOL vmlinux 0xe9843bcb cdev_init +EXPORT_SYMBOL vmlinux 0xe9874dd8 bio_reset +EXPORT_SYMBOL vmlinux 0xe998478b security_path_mkdir +EXPORT_SYMBOL vmlinux 0xe9aace08 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9b33020 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xe9c5dfd9 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xe9c92555 bioset_exit +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9ddaf62 set_create_files_as +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f44934 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea00d339 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xea0281a3 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea2e2f3e dev_uc_add +EXPORT_SYMBOL vmlinux 0xea37acf1 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea490e55 skb_seq_read +EXPORT_SYMBOL vmlinux 0xea5f5249 sock_bind_add +EXPORT_SYMBOL vmlinux 0xea629375 __fput_sync +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea8b8880 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xea9d2a71 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xeaa7c8f8 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xeaad4ed5 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeac22d62 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeade7589 param_ops_short +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb06d0df iget5_locked +EXPORT_SYMBOL vmlinux 0xeb0d469a param_get_charp +EXPORT_SYMBOL vmlinux 0xeb16c308 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xeb1acb39 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3d7f50 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb6072b2 bdi_unregister +EXPORT_SYMBOL vmlinux 0xeb654d55 cdev_device_del +EXPORT_SYMBOL vmlinux 0xeb6743c6 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba012b6 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xeba54edb __bh_read +EXPORT_SYMBOL vmlinux 0xebd462cf netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xebee2421 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0xebf27166 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xebfc4978 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xebfcb0f0 vfs_getattr +EXPORT_SYMBOL vmlinux 0xec0d6057 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec46db8a devfreq_update_status +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec6c13cc file_ns_capable +EXPORT_SYMBOL vmlinux 0xec6dd943 bdi_put +EXPORT_SYMBOL vmlinux 0xec710dd3 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xec7285bd register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xec767c55 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xec7b31eb tty_port_put +EXPORT_SYMBOL vmlinux 0xec9d5aef blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xeca0943f sync_blockdev +EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and +EXPORT_SYMBOL vmlinux 0xeca9e28f phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xecb3964a release_pages +EXPORT_SYMBOL vmlinux 0xecd05974 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xecd6b6ae __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecef6d89 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed121898 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xed1cf203 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xed467b8d ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xed4f00dd dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5ecfc7 cont_write_begin +EXPORT_SYMBOL vmlinux 0xed5f7ee6 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed76c6c9 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xed863e28 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xed93349a inode_insert5 +EXPORT_SYMBOL vmlinux 0xedb82876 set_bh_page +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc0003a call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc32361 km_policy_notify +EXPORT_SYMBOL vmlinux 0xedc5f36a dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xedd926f6 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xedf4abba of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xedfbe1ab vme_init_bridge +EXPORT_SYMBOL vmlinux 0xee0a4392 redraw_screen +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee50ffb0 dev_get_stats +EXPORT_SYMBOL vmlinux 0xee54c791 file_path +EXPORT_SYMBOL vmlinux 0xee558b84 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee627765 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xee683467 __devm_release_region +EXPORT_SYMBOL vmlinux 0xee6fbc76 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xee7520ad xfrm_state_add +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7d98ae max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xee7eb845 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee7eba29 udp6_set_csum +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 0xee979e30 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xee9b5eeb mntput +EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeaec125 genphy_read_status +EXPORT_SYMBOL vmlinux 0xeec39329 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xeecab865 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xeedb73dc flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeeec8663 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xef07cc42 blkdev_put +EXPORT_SYMBOL vmlinux 0xef0a7d9a iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xef1a58bf mr_table_alloc +EXPORT_SYMBOL vmlinux 0xef529170 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xef69803b _dev_notice +EXPORT_SYMBOL vmlinux 0xef6a55b3 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xef77c708 input_allocate_device +EXPORT_SYMBOL vmlinux 0xef790e31 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef8c06a2 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xef8e42c1 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xef961ca1 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xef988f77 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefc6de5e phy_get_pause +EXPORT_SYMBOL vmlinux 0xefca2c1f unix_detach_fds +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd26f45 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xefed02d5 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff00707 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xeff8db87 task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf013c753 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xf02741c1 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf038138d sock_create +EXPORT_SYMBOL vmlinux 0xf0415e35 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xf050e2bb mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xf078178d phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table +EXPORT_SYMBOL vmlinux 0xf0881fc5 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xf099269b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf09e6006 begin_new_exec +EXPORT_SYMBOL vmlinux 0xf0a8b06a pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xf0aa3e15 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xf0af132c phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0c0c35f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xf0e44292 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xf0e5899c skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0xf0ff4ee7 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xf0ffaf4c phy_device_register +EXPORT_SYMBOL vmlinux 0xf10a96f4 arp_send +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf1273cbb __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xf1345a4e prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xf13b805d jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xf1441a85 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xf17fd144 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf1892988 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf18a7e62 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xf18d5333 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xf191c692 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a386a0 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1bc0473 md_write_inc +EXPORT_SYMBOL vmlinux 0xf1d04401 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xf1d17596 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dbfbfc put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e3a08e __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20092c4 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xf228c6de tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xf229388a bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xf23b5cc7 fman_port_get_device +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24618b3 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xf24daeb8 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xf2517779 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf26d8bf6 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xf279db51 udp_poll +EXPORT_SYMBOL vmlinux 0xf289e770 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf2913c81 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf2c1faaf mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d113c6 fput +EXPORT_SYMBOL vmlinux 0xf2dba7d9 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f09fb8 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf32066e2 vme_slot_num +EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xf3360f53 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf347aa94 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0xf3655e48 update_devfreq +EXPORT_SYMBOL vmlinux 0xf3682b37 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xf369cd53 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf38ac122 bio_init +EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot +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 0xf3ac7d03 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xf3b1725c input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xf3c2fdcb skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf40fc6e3 __netif_schedule +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf4559239 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xf46c733a mii_nway_restart +EXPORT_SYMBOL vmlinux 0xf472d16f mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4757f5c neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xf486fefa sock_setsockopt +EXPORT_SYMBOL vmlinux 0xf496101a ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf4a59f10 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xf4a92998 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xf4aa468d tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5005b12 block_truncate_page +EXPORT_SYMBOL vmlinux 0xf503dd60 devm_ioremap +EXPORT_SYMBOL vmlinux 0xf50bdf56 module_put +EXPORT_SYMBOL vmlinux 0xf51d9153 tcp_mmap +EXPORT_SYMBOL vmlinux 0xf52611d2 dev_mc_init +EXPORT_SYMBOL vmlinux 0xf538c58a tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53d9ab6 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xf557a5d5 dump_skip_to +EXPORT_SYMBOL vmlinux 0xf5627b72 fb_get_mode +EXPORT_SYMBOL vmlinux 0xf56be2e1 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xf587e27c unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xf58e935e page_pool_destroy +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5d80759 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5f1e179 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xf6005d0b tcp_poll +EXPORT_SYMBOL vmlinux 0xf60cf756 inode_update_time +EXPORT_SYMBOL vmlinux 0xf6166143 skb_trim +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf62f8b1e tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xf6432cb6 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf6484a14 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf65e8978 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf67177fe add_to_pipe +EXPORT_SYMBOL vmlinux 0xf67d7b3d proc_create +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6a54dc8 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xf6aebb1b pcim_enable_device +EXPORT_SYMBOL vmlinux 0xf6b3727f jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xf6b64c0a __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xf6cee001 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f69968 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7021fa1 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xf702b01d tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xf71db194 devm_clk_put +EXPORT_SYMBOL vmlinux 0xf7242562 vfs_get_link +EXPORT_SYMBOL vmlinux 0xf7284f4f tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xf730019c qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73eef3f skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xf74f59b5 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xf751ae7b elv_rb_del +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf76d7e06 netlink_ack +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf78f216b nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xf7a1bc21 mii_check_link +EXPORT_SYMBOL vmlinux 0xf7a49c71 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xf7abd3f6 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xf7c78276 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xf7cec03b tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf7f35823 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xf7fe11b8 vme_lm_request +EXPORT_SYMBOL vmlinux 0xf801d525 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xf8058777 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xf8073dc6 md_flush_request +EXPORT_SYMBOL vmlinux 0xf809278c pagecache_get_page +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8416465 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf84d1693 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xf860603c _dev_emerg +EXPORT_SYMBOL vmlinux 0xf86ccac6 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xf86e9373 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xf8721793 ns_capable +EXPORT_SYMBOL vmlinux 0xf888d617 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xf8b411b8 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xf8b967a2 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xf8c7fb25 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8d82475 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xf8da92c8 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xf8e43bf8 __folio_lock +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8fb9816 regset_get_alloc +EXPORT_SYMBOL vmlinux 0xf8fd508e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf901f654 dev_change_flags +EXPORT_SYMBOL vmlinux 0xf90e3667 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xf913166f netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf91d432a user_path_at_empty +EXPORT_SYMBOL vmlinux 0xf925d72e bio_split_to_limits +EXPORT_SYMBOL vmlinux 0xf92d1676 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xf9318859 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xf93553b3 inet_sendpage +EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94551bc flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xf94a621b generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xf94b2441 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xf94c326c fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xf94c8ac8 netdev_info +EXPORT_SYMBOL vmlinux 0xf9570b29 inet6_bind +EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf95d9b01 phy_device_free +EXPORT_SYMBOL vmlinux 0xf964c24f jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf983adfe __mdiobus_read +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9cb7b6a ps2_drain +EXPORT_SYMBOL vmlinux 0xf9f31d4e d_alloc_anon +EXPORT_SYMBOL vmlinux 0xf9f8b5a0 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa2297b5 __kfree_skb +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse +EXPORT_SYMBOL vmlinux 0xfa541859 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa650c32 dentry_create +EXPORT_SYMBOL vmlinux 0xfa7da4ab iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xfa829124 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xfa984789 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xfaa52c86 brioctl_set +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfab757f8 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfadb1a82 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xfae4532b t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xfae4af41 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xfaed3434 kset_unregister +EXPORT_SYMBOL vmlinux 0xfaf17e78 pci_request_region +EXPORT_SYMBOL vmlinux 0xfafe8499 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb44e7e9 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xfb4e7952 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0xfb5a4de0 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb794342 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xfb817e8d qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xfb8a57b3 mmc_add_host +EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab60c6 of_device_unregister +EXPORT_SYMBOL vmlinux 0xfbab76bc finish_swait +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd1886e posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xfbdd8656 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe52f06 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbf83a94 set_binfmt +EXPORT_SYMBOL vmlinux 0xfc1010cc pci_free_irq +EXPORT_SYMBOL vmlinux 0xfc29712a put_fs_context +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc4c533f fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices +EXPORT_SYMBOL vmlinux 0xfc740330 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc8d6a42 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xfc976d5f gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfca09e2b tcf_idr_search +EXPORT_SYMBOL vmlinux 0xfcacd6ac rtnl_notify +EXPORT_SYMBOL vmlinux 0xfcae17f6 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcd577e8 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xfcd90540 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xfce6afe5 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf3570d iget_failed +EXPORT_SYMBOL vmlinux 0xfcf82ab1 skb_eth_push +EXPORT_SYMBOL vmlinux 0xfcfef5da free_task +EXPORT_SYMBOL vmlinux 0xfd086841 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xfd22da53 irq_set_chip +EXPORT_SYMBOL vmlinux 0xfd36c4d3 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xfd379824 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xfd3c0e7b sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xfd5a2986 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0xfd6bddc3 migrate_folio +EXPORT_SYMBOL vmlinux 0xfd71bf02 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xfd7d6c4a nf_hook_slow +EXPORT_SYMBOL vmlinux 0xfd8c1b3e sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xfd9a5fd9 tcp_read_skb +EXPORT_SYMBOL vmlinux 0xfdbc9643 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdccf258 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xfdd0e35a scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xfdd24b43 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xfde57a7f fb_show_logo +EXPORT_SYMBOL vmlinux 0xfdee79cf __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xfdf0183e tcp_check_req +EXPORT_SYMBOL vmlinux 0xfdf3e40f netif_device_attach +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0d0d20 vfs_symlink +EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe29352a mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xfe4640aa pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5414ef input_grab_device +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9aeb1b fs_param_is_path +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeae90a0 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xfeb3ebce kobject_add +EXPORT_SYMBOL vmlinux 0xfeb6d42d md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff0cb5a1 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff281d44 locks_free_lock +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff31911a bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xff5bc17e netdev_update_features +EXPORT_SYMBOL vmlinux 0xff5e8ffd dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xff64e3d8 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xff6668bd drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6d70f9 md_bitmap_free +EXPORT_SYMBOL vmlinux 0xff7ba644 bdi_register +EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xffa93d1e generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffdb9c6d f_setown +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL crypto/af_alg 0x0d174035 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x20b9f6c3 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x2299d66a af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x2d4f5c68 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x30b3d33a af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4013c385 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x444465ef af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x5fa5a37c af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x6494b88f af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x784d1a5b af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x9433d271 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x9ec6770e af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xab8fc0f8 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xaef556d5 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xc1e3ae2d af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xcf192d5a af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xe55ed89a af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xefa29040 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0x95ab49bd aria_set_key +EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xa45bdd3b async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9ed07ca4 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xff328954 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x21a04ba5 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3017156a async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1fe58b3a async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6649c148 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe3f05bb3 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfe4e8fc0 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x072b6483 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x464727ec async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9928298e async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xcdb5777a async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x8e0dff3e blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xf4bbf1e2 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1c83330b 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 0x31aef240 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x4f98cfd2 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6464f50f cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x6c03164c cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6f24236b cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x79c12fb7 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x917b7208 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x92b92aee cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xae7c5270 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xc2e12211 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xf3dd5c24 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf4eaa2c1 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xf9950603 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1ace7725 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x23537418 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x37e09e8e crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x39071e99 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x44b20558 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x44efb673 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4c2cfce4 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x56d26eba crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x57936065 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x68c25832 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7de92537 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x822718a1 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x95ed60b8 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdb16dc2e crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe56aa980 crypto_transfer_hash_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/polyval-generic 0x1936413e polyval_mul_non4k +EXPORT_SYMBOL_GPL crypto/polyval-generic 0x49dece42 polyval_update_non4k +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 0xe59be781 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 0x45c5c90a twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x346dcf4e acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x799cbd34 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xaee1c29c __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xb0c0cd0e acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xb7753394 __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 0x82331b9f __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xf36b7867 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 0x027ec147 linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x89b19c44 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x4909b2b5 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x940d1eeb regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xeb02a1a5 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x84884a50 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xbc614b8c __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xdf18a1d0 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xa7315511 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xbb301339 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xea248026 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xf6af9b8b __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x571fa587 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x87d7085d __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x1f507d43 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xb051da08 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5d736784 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x614e3ed3 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcd37226e __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf38aa44a __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x6738c87d __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xe7a10f55 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x004a72d5 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0816eb1c bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0da8e234 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x17ebe275 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1cc0a231 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2307789c bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x381aaac9 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3adccf63 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x51a62290 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x63fd31e8 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73e861e8 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x76f8e6f3 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e0240b8 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91862f43 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x93181eb8 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9c393748 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa1d90898 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac6a2d62 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad9865ec __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb84f78da bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf5655ec bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf8aa3d8 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca56d87c bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd12c5fec bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0d3268eb btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2fef2a72 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x472eee4d btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5c1f1a3b btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x851628be btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc395b546 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd5280619 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xde0432dd btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x01ce4532 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0acca854 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x183e521e btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x47186462 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x59648537 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6cd93d70 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ee9df62 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x979c88a2 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9d578dc0 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa05ec980 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc285ff2e btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc2ddb339 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc38ec4e8 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc3d12e45 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcfc60b9f btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdc483fb8 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xde6a0c08 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x464381d8 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x638b3488 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x645bd33b btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79aea111 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7e9fa6fd btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x87df2ea2 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb66fdd0e btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xba923715 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3e8e6d3 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcef5f836 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdea6c409 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x46349bf3 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x5827978c btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xd5a40c6e btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x05655cc2 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x44b28cd0 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbef7f4b7 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc7c59a2e qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcd7d7551 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0f383555 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1de6a9cd btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6da9fe7d btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x88dbc646 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x94ced542 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb48786b8 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x18496fab hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1e0b648b h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x29a947f9 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x67482325 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4827aef6 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x59f862ae mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6b7507d2 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6f619b56 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xa3277b5b __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xa3bc46bc mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xc615ff44 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xeee0785e mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0042d133 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0d1e9f21 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x14d85131 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x234788a3 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x26a7c9a9 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d9aff89 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x32ed9305 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x41ea7165 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x47beda16 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4e369283 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4eaa022f mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4fb649e9 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x53c65d97 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5b40534a mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6248a227 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x63bea84f mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6528977a mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x69de3e28 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7440a84f mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x77c74848 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7b5c93b9 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8a8d0024 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x92b4b1ba mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x94a8f7ae mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc33dbf28 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc42ec36e mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc78a273a mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcb803ee7 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd957574a mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xde2da4c6 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfba9ccaa mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0014efd2 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0ce33391 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x51c0340c __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa08f8152 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x3b862507 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xac9b6ebd __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x0601400d meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x0f4e5d3e meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x62ad335c meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x73341c8a meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x01210a59 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03351dae clk_rcg_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07935d8b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07e2aa8b qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ae351c4 clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ed823f3 clk_alpha_pll_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1d0f06af clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1de81c63 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ea782c8 clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f83275f clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f88365f clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f9ddb06 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x233e5373 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x28ec912b clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d293905 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x38229fba clk_alpha_pll_reset_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x407cd4e2 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45180f77 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45226263 clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x468b22ce clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46eb964b clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4a930432 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4caca0f1 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4f5a085b gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4fd4c46c clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5524687f clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x59eabda5 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c035f38 clk_alpha_pll_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c3e75ee clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64b8755d clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66580ca3 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6b8e2aa0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6d308251 clk_alpha_pll_fixed_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x70156ec0 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x708a435d clk_alpha_pll_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7319e51c clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7b87fe3e clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dfa4f12 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e69e953 clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x82afa55e clk_regmap_phy_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x88c0add9 clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8e4c395e clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x93bc2a64 clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x94c464a3 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x953b97b7 clk_alpha_pll_postdiv_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x980dc973 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9821a599 clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c1fb4be clk_rivian_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c401604 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa0755dc3 clk_alpha_pll_fixed_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa72d720f clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa94f252e clk_lucid_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa95ed447 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaea28295 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaf105ec4 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb3d93f1b clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8694bf5 clk_rcg2_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0126fe0 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0d2ecb0 clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7b797bf qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc84cd5f2 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc9cb9fbf clk_alpha_pll_zonda_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb2d25f8 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcc4f3fc9 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcc83b4b8 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2ec30a3 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd98fe91b clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdf871d64 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe4d191e1 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe5ddcf30 qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe8c0478b clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xec25535c qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xeec69605 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf2522383 clk_alpha_pll_rivian_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf3bf69c3 clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf439f21a clk_alpha_pll_agera_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf4844865 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf84b8d59 clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfafc1469 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfbd6578d clk_alpha_pll_hwfsm_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x151b01b9 sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x2aa1738a sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x3f695d49 sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x43d990d9 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x56de2c5a sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x57edf3c1 sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x5815f402 sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6ed16b1d sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x86927465 sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x87ea6216 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x90208d58 sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x98a4bcd3 sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xad7f9dcd sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xda443c01 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0b4a7a81 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x29811909 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e6ee742 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x32fc93cb comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3341836d comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x34b0957b comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x392addfd comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x416e6ed6 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4214a84f comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x439e1eb8 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x44a93d5f comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x54f0328d comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x592a28d5 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5a673134 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5d31711b comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5ffafc3f comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6484e29c comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x663256bf comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x68ed285c comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7bbce99f comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8a5597f1 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x91eb2207 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x930e771a __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x94290983 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9824c923 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa783e0f6 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb1337ce6 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9ad18f3 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9ce9076 comedi_driver_unregister +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 0xc24347ca comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc69512f8 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd92b7c76 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe87a3533 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe9cd692a comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfa754a2a comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfeb21688 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x594a1fd1 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x65dc5d4d comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x739cffde comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x812dec35 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x940085d0 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xaf6e1597 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd2b816d6 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe0580ff1 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0e2014d4 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x1d0c5a65 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2f3ead88 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9a594c01 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xd98baedf comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xeca4adc8 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xe7e54618 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x95155f1d amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xc4d7e0de amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xc53b04e6 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1c3e1247 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3ed75d40 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x42551e33 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x708c834c comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x71985788 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x76ee1a2c comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7b4d88cf comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7d381e72 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8d61e18c comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa3f48449 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xadaca2a7 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc1ff20b8 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd58dca6f comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x3524ee58 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa56c1f86 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xda3577a0 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x1e3e7bb2 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x09d586a2 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0b3c200c mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x39654352 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3af49310 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3b351b05 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x690f41ad mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x697f157a mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6e256a37 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7706d28b mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8c575eab mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x911b76a5 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9ec1a5f4 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa756d8cd mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xad65380e mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdd77be16 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe5684642 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x17a7fb92 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x6a61d6a8 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 0x0ba9cae8 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0ea3e2f8 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2208a925 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2cf874e0 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3f3995f4 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x47761cb1 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x548dcfec ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5ed28413 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6d4601f6 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7307e7ae ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x89a53329 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8a8d3837 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x992c27d5 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xccc1572c ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe42d055b ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf1209921 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0856f591 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2b4a133b ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6fc9ea63 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x77984112 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9c4f56f0 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb4c0a903 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x214ea310 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x63b34d0f comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9e6f989f comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9fdb732d comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa3d430b6 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xbf0b1d51 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xdc5160fa comedi_open +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 0x8e7df975 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x03ba23cf hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x05287d7e hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x079d207c hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x103e4bb8 hisi_qm_get_hw_info +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x19bf11af hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x22c0815f hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x288a9242 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x321fabcd hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3dd1a8c1 hisi_qm_regs_debugfs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x474fc051 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x479b6bb1 hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x575203d9 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x57c33a14 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5c47f81b hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5fa1ebde hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x601ce12c hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x621388c8 hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7d0ec57b hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x80c32b10 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x83109336 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x847e2674 hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x88d1949c hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8dab2012 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9315ee33 hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa0d6f8e3 hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa21abace hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb86c350a hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbf7416ab hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc033088d hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcd59cc66 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcd7dab44 hisi_qm_regs_debugfs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcf4c7880 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd7d123b7 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdae60314 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdfd0c8a4 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe48032ff hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xeb9a6e88 hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xed0cd8bc hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xee3afc13 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf1c9a73b hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf99b2811 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0xfd7aa8ea hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x92374928 hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0xc2d85b1e 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 0x9cfcab7a otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x00414223 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0167a7f6 adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05c36c19 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0881b9d9 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0b7dc44d adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0ef2acd4 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0f9b89ce adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x16c7e8ed adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1ba35dc2 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1c27b323 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x212fb3c1 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x280216de adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b9c9164 adf_exit_arb +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 0x3115aa06 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x47b73f8f adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x47f675e3 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x48203d07 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x48d61ae7 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4a2b8718 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4d661e25 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x52252df1 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x542b100a adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55b3898a adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x563b9e93 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6138ebb2 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6719710e adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68be9adf adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x697473af adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6a3532bd adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7104c4eb adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79a45b46 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7abc0f06 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x806ac54d adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84e0b404 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8d5becd1 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x93f85768 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98c9ef26 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9a5b1c92 adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa5a62e74 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb16d981a adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb41b8026 adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb6834b22 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb686dcfa adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb94626c4 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb2557e8 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf8d68eb adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbffb3347 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc0bd9bff adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc2df32e3 adf_gen4_handle_pm_interrupt +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 0xc8267a90 adf_gen4_ring_pair_reset +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 0xd317ec1b adf_dev_start +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 0xd65aa541 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd8fbab65 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe4552a04 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe80b6ae9 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe8df34e8 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xee6627d0 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf1d2b666 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf2dab7cf adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf92bed8f adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x154087b3 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa9943b00 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xb87cb74d dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x02f5fc35 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0840e8ad idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x28a449a4 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3796717b dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x684561a1 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x690ab057 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc2b1c3b5 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd87b4d33 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdcd90cd6 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3bbdf6f6 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3f4f72e8 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x5e157844 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6939c3c3 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x8b37b965 dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x92f7f4c8 dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xbc9fa9c5 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd177eb00 dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xee8bafee dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf6c7018a dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3d9a9688 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x51c62dd2 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5b43bcaa fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6109af0b fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6d041241 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x756b554d fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x83307e30 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x864a9393 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8e0fe232 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8fefb1f7 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x92f6fd25 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xabba0c10 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xba03234f fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbe93855c fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc6428006 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd1bda6ad fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfc9b21ae fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x46c5c7fc hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xd69c31d6 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x3a934a24 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 0x2227425a ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x4f6bb48f ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8085ae46 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x88d7c9b4 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x9ab3efb0 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x369e110b get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x9522a626 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 0xd3df684d stratix10_svc_send +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xe83e4471 stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xb950a4b9 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x06e90017 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2429788b __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2ca362c8 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2d59e47a dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x48d61afc dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4b4f3c42 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x606abe33 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6c9fddc0 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7ea05825 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x85a82955 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x88ad5dda dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8e4a7b90 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x964634b0 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa19d1f94 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa21c7050 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa31f408d dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa6b72398 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa8e28ef2 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbd005edb dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd56aa831 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd903f4b0 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe32944e0 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe909d131 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x01246366 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0db910f3 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x14ab7b2d fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x207faf7a fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4fd96068 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x55449ed1 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x61ed6ff0 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa601bf67 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd57b8f92 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0a34e43f fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0f9770b8 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1040364a fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x232f9e83 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2cbaa8dd fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3079d754 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x84bc99e3 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x84d946fb fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8a355599 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x991a7eac fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9d2f9b7b fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc90a735c fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf5790965 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x13061844 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1564a771 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2a7b0311 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8e2a8e50 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf8b2941a fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x40eeaa28 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4b171a16 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5ff66961 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x771ea519 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x91da017a fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9452914f fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xaaccf2fb fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcbd44153 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xdbe380ca fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf74e9933 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x32c2949f fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x52ba29ca sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xf090e4dd sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x052b7bc8 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x0f41a09f gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x36872895 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xcecf1ed6 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf6b2b619 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x12808896 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2f1718b6 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x81ef9a92 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x857fa940 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa873c7ce gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x5d0e4276 idio_16_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x6495f119 idio_16_get_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x68830314 idio_16_state_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x70e2b625 idio_16_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xae1139f5 idio_16_set_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x77bff056 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x96db19e2 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb95c572d devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xf12d99a8 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1ebe23fa analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2c170370 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 0x45531663 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5bf52d55 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x8f9f7b03 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb705d68e analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcad14199 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf5b82342 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2535c05c dw_hdmi_probe +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 0x28e55e12 dw_hdmi_set_plugged_cb +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 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 0x9a91da81 dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xbb2c09ab 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-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 0x565c7955 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xb92857fd dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x1a35b166 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x0894931a devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x1a57de20 of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x3a203997 of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x60210d47 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xe03fb9dc __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ab1a752 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0aca05e2 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x10aaeecc drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1c93b6ae accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x253bcd78 drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x27945fbc drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x36752186 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x369f90fa drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x40257979 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x507f89ec of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5e6c496f drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6257f618 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x753839d2 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x82b3391f drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8f080638 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9a432846 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9f1e58ea drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbf28a221 drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd6e56dfb drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde88912c drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe9c2e425 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf5756362 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x017ba6ad drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x10cffa15 drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x230d639a drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x358ba9af drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5f37910b drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x88b2c17b drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x8c4e45ea drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa45c8fe0 drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xbf596516 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xbfa64609 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xe62c0fdb drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf8659b9c drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x143513d7 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4c85067a drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x75e87581 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x80e75634 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbe5e23d3 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc38d397e drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc89158e2 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xda1d891f drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xddca4621 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe14abf3d drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x0ac55901 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x63ae87a5 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6a1e1047 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x88838a4b drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xaa650871 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xcc220b27 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd0a0afa4 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd610b4b2 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1f32fdcf meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xc6037f86 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xe6b4f135 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xee998992 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x1604fa6a s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xc9522891 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xd3da17f6 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x052308e7 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x1d4e5ba2 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x3e3c3064 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xaf23aa2f rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x30f1da6a rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x3f5b4a11 rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x4b9c3f63 rcar_lvds_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x6be617f6 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0x5adc8372 rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0xbf6a205a rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7039641f rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb1c5b898 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xeff3be58 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x54d31b7c ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xc7c466f1 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xcbd25108 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x0c12b676 host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x8e8ec06f host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x944c54fd host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x07a63b7a gb_hd_shutdown +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 0x1ad6e8ca gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1b2c2d8b greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x27894c83 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2b4f8333 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2cb979ec greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f952251 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3051e3f9 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4575c92f gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4bc105de gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4c6b0227 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x542367e1 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x592a03d0 __traceiter_gb_message_submit +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 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7f0bc600 gb_connection_create_offloaded +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 0x8cb38d98 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92b07754 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9626e346 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa1790735 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa3add695 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa76078d3 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaab87305 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaad45d9c gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xab74756d gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7571714 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb99def27 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9adc801 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc6165b3f gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd2bee103 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd37ecaeb __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3afa2bc gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd93c235b gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe005363a gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe04e8a2d gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe19cc206 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1fa4862 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeaf5845a gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed32cdce gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef895a74 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf0ef0d9c gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf35d7a89 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfc600310 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff10e2ea gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff906964 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/hid/hid 0x020dd52d hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x025681d4 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05e4b4be hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07a0844b hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c18ab7c hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e8a7071 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x280c55bc hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x337d4772 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e0d596a hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41d81c00 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4814115e hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ca7d53a hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e5d0174 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f592112 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x56876165 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a384c3a hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60044854 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6bccd7aa hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c84784c hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x71a8725a hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffd840 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x80ca6022 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x842cc07d hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a0117d7 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a66094a hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4773d7d hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9614893 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5de1964 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9b340e9 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc815d4d hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbdd15417 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe3f6aa1 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe9a91e9 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc9476725 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb38ab31 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0fa1efe hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd72b817b hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc2ded6c hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdec75b12 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe97aa528 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xebf456fb hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xedae1dbc hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeecb4b76 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf64b22ae hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf7a9c652 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb791aef hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfdb4872b hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe18226f hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe54cad0 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff4acb31 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8e20727c roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x14bbd8a8 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2022883b roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb21146a7 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb478ed4c roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd19e275b roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe02cd061 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0312a05f hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x041c32e0 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x196f7dd8 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x48e38a7c sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5d40ac3f sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8ced6775 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe3043be3 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xee0330c2 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfaba33d0 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x3f09b9e2 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x552dfb63 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x29bf6303 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x59744fff i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa5c87ed3 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc43e2cb7 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe1c7bdea i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x446295ae surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x52321928 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x6d13be1e surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0xaf1f1de3 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x20030d3f hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb3acb8dd usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0a9d2727 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1987f781 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1ba2ef13 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1e1621e3 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1e2bf572 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2f3d11dd hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x362ce398 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3ccc5a10 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x46a386f0 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x47008fcd hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x56d4e112 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x574cab2c hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6e97ed0f hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaf6596cd hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xba935a88 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc5211e9f hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe6ad083e hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf33cbd62 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x04dc19c6 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x09e716d8 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0bf91ec6 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a91fa52 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1e7c2e1f vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x29f4d98d vmbus_request_addr +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 0x3ba70a80 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x42000544 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4ad6425a vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b4b978f vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5111682e vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a1ecb6f vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x77a2f3df hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x800f4d33 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8aaddf27 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8e3bd775 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa0f87f9e vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xabab4fa9 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xabb095c9 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbb396901 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb1b5c2a vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd92ac0e8 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe00efbea vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe3357b14 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xec197d9a __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xee0fe2eb __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf34ffb8f vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf6dc1ed5 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf9f93618 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfc631c25 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/nct6775-core 0x10fc2ec4 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x43a75e5c nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x6a98180c nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x81c972e6 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x85a995df nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xed2ac246 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x28e5c308 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x382d990d intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x537eff19 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5acd5a15 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x73bc9cc9 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x77528d4f intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x843f4900 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9f2937bc intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd18fdd01 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5249222a intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xae72b0da intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xf1ecc67f intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4562cda3 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6a4d910a stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6bb89be3 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7b2505e7 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7d4ecf71 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7ddbe61c to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x99bb5354 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xba033e48 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd6a57e42 stm_data_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xbf056b45 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7d2bc55e i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc147240c i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc4fd505b i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xff42ad3a i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7a11ec85 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb35cca6f i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe0e1fa78 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe4220866 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2aa64b00 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x35e9b9d5 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x40181c63 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x446bfc18 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x48811374 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e2188cb i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x566c1d36 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6f64e8be i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x74ec2711 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x83b19423 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x90ada0d1 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x94e9bfc4 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc242474c i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc3ecccde i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc5875111 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc9abe0e4 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcdbb8115 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd6470cba i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd6cd91c9 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdec9d62d i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe088d61d i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe500edd7 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe886215b i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe910ca16 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf2f11b83 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf717e591 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x232b8d47 iio_channel_cb_get_channels +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 0x4d4bc685 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa464cb50 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0999c996 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x454f3320 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4a3928ce iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5e18f88d iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6ef794fd iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x76e591c2 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x77da40f8 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9f7bc0e6 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa5c87da0 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb2e3c8a9 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdeb66d02 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf067c153 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xe006409c 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 0x957f6af1 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xcbc9855f devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x7e0a02e6 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xc87e6a52 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x247ca432 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2cff3d6e cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2e8eaf71 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3935fab0 cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6368a9e3 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7162fd8f cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x74d3e08a cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8f7acfca cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa0956a91 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcedfb77b cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe82f14be cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x894c0577 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x8f93a62e bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb8c51d37 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x2d7c29e8 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01fb62f1 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x043c8d28 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d23036a iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1256a632 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x135086ec devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13f8992b iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x153b4677 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17f7ead0 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24a6ce7e iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28f8ddc0 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x29a7998e iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a01c32e iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2fac6554 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x314b18c6 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3468cd8a iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37c4028a iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3955ecc4 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x425db5b7 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x504d4658 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x53d1277b iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f9156f6 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6106e138 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x617b03fd iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x617ce0da iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a962133 devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f90df68 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75c14193 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7e30e8d4 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7e5f678a iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89cefe2c iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x936b1eea iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x978a92bc iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x997a54fc iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ea0edbe __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1b4562c iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5a62f57 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac0c6b6f iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb24880fe iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbaedc47e iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0b11628 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3fd31d0 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5b27cd5 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcdfcf0d6 fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6273a8b iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde0c4b5d iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xded3cfc2 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2e52c83 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7e657a1 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8ec8995 devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9db653c devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef7db9e1 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf088ca82 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf10263af iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa54ea20 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0d099cc7 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x444d21f0 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x617f4777 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8004de57 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9189e494 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xaed6668a rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbd7e400e rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcad38afe rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd0d48458 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdda75099 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe0d1c0bc rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe7fd2a13 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x33681d39 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x89fdf087 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x39886158 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13171b1c rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x198b5158 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2726b099 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2e85a7e3 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x403ff8d4 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x41028dfd rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x54b08341 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6589626f rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa249edea rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc6d333ef rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd345eb3e rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xec49ead3 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf40fad5d __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x317b7c37 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x368db4a7 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x415709b6 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x143ff412 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xff3bb560 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x3635f49a cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x975db07c cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3558f5e5 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x67d99377 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8344d34f tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8c54ccd5 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0440cc45 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x09022f95 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0d61ab0f wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x10dfb655 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2544c494 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4f845e5f wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x747e26a4 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa1e160d1 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa99f508b wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd1e2fde0 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdc75b6cb wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xed8e075d wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x84ea55d9 imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xbcee0347 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 0x6790d2f2 of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x91cf16a2 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xb9899c93 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xcb031ee2 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xdd31c3e1 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe819624b qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xfb718f06 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x04a57507 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x50695ff0 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6d637b20 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x72693327 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8794258a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x911e88f0 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9d005a04 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdbb4c49c ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe3fb8348 ipack_put_device +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1eeef985 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x64077d1c led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6686d29e devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7f8c0c75 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9377f19a led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa517a0da devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa8737061 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xce7921de led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x02d0eb7a led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5ba06096 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7fe247a4 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc61ba48a devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xee2f94e4 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x19b3dbd2 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2e401a4b lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x324dd5f3 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x64a16c59 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x67006a4f lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x788e3e8f lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8bebc5b4 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xafc9a343 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xddec2e45 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfada1486 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x06ec80f6 __traceiter_bcache_btree_write +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 0x13b56439 __traceiter_bcache_gc_end +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 0x2992a726 __traceiter_bcache_journal_entry_full +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 0x2be3c9f5 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3e8f9efb __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ed2ba0f __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40bdd561 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x63c196ef __traceiter_bcache_btree_set_root +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 0x80840c69 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81e7e4d9 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x85dc48ca __traceiter_bcache_bypass_congested +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 0x8af891b1 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8c0ea26a __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9bf62646 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xa40fb1e2 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4700522 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xadfb3c6f __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6124e84 __traceiter_bcache_gc_start +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 0xd6d08135 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde60269a __traceiter_bcache_request_start +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 0xe922316d __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xf27d7a2a __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf45ae0b6 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfa95e3e1 __traceiter_bcache_read +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 0x04b2a590 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x08a87d0f 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 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x38731eb2 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x477ecc13 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x47eff694 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x489fbee2 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 0x714ad486 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 0x8219e2fc dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x893a7d8b dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9748a863 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 0xb6cf5ef6 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb95068b5 dm_bio_detain +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 0xde04e32f dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe40bcc87 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe8f91121 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf17fb36e dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf79788e2 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 0x85b25937 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +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 0x5a5b8ba9 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc22f645b dm_cache_policy_register +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 0x0a535724 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x293ad8ed 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 0x0f8e6612 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1ac33d6e 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 0x5192ad78 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x567b28c1 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 0x875f88ec 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 0xb321d2e4 dm_region_hash_create +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 0x0dd9b127 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2bc1a8d9 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b6b3af5 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88998224 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9290e07a dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x932a6ffc dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9341b376 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9718cffa dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9955fef4 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9ced228c dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa29d4c0c dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2a74861 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdf3a4e7d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x15eafa49 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1e48deb9 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x258ffff6 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2de95900 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3614b44e cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3fa891df cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x54302467 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x544006fb cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5fa1cf11 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6a625a11 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6b06a4ba cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8eda3df0 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x98187677 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaa3dcadb cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc81a250b cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd963cebe cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe68dfeb2 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe7895458 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf5eb66ca cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfc041540 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0468c9e5 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1a850d6a smscore_get_device_mode +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 0x46a250fa smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x50ed9566 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x58318ac7 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x68631f8d smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6cc9fc79 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 0x83085431 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8e0bd933 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8e5456ba sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9242bdaa smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9bc87b84 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb16fbc1b sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbde394fa smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc6a61ee5 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcec3361b smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcfe0ba76 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4a738cc1 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7e83543f tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x80aaf962 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xa8a3f406 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb052969d tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbc315dd tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xcaede3e2 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe2169014 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe6f04b89 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe7ee5819 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x03413e9c 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 0x0cc5ecb4 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0d3bdb19 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0e1d6547 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x125d190f __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1e0bf3e0 vb2_core_reqbufs +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 0x2b9d30cb vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x493a2433 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b837474 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5a7ba38c vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5ffb0ec4 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x62e9e38c 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 0x653973b4 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x74aad166 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x812d1602 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x814e20ae vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83959296 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x87f13347 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8a9632d3 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa2079fb9 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 0xbc75652b vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbe233d52 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc82b0867 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcaf8f07c vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe87bb32b vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xef876776 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf0245b4a vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf4e51602 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6043e02 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xba80b0c8 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xfc07116f vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xb9810294 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x60cf1882 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x06735f08 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x15b1ad0f vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d56d270 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x22fe8a8a vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2dfd36a5 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2f77c829 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x32d07958 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x36375338 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3718abf3 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3903bc02 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3be41245 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3cb04173 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x44b71003 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x45026498 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x655585f9 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x70ca7f8e vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x91cf8692 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9262ad5d vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9448be37 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x99acde96 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa0760f21 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa94003af vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb20fe985 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb9352ebb vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc15956df vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc60f6a2c vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc9e3551c vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcdb2c46e vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd23e9a43 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd3286a68 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xddecf7ee vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xea71bc95 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf83baf1b vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf976c307 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x8e06ac62 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x095b5300 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x10045bdb dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xeb7f8918 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x1fc20ad7 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x1933f160 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x965c64e6 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x66972b2c mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x4f153d93 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x9ae3f094 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x8549bfb6 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x9d10a327 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x82511e54 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x10cbfd4b max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2fb35d29 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4aaba122 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7367bdee max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x847b5aa2 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc4f91586 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcac78c67 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcaf6b83f max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd07a274d max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd6f54ca5 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd9534ab8 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe7f1db39 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf6382eec max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0784b8e6 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0d67f2ea __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0e14e837 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1403d88b media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1cb411ff media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e4dc46e media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26c189a4 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2923ce56 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x33dfae73 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x35e485d5 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38865d97 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38fa3d90 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x39a0a586 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b96af29 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x481bbbec __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4dbb5013 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4ef316e5 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5257d074 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56795787 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c9085c1 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d658f97 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e4b9149 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x632596de __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64a2da5b media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64c00237 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x696b4709 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7159c944 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7231cc6d media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x74457861 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7514ab48 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77ba5ddb media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7a670f65 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fb6579a media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x80a8eb57 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x827ac896 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8de1b672 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e1d86a2 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95600657 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d94eb6e media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xabe3339f media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb39ab7e3 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8acfb15 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf1bb164 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc16157eb media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc322ca70 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcbc4b180 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcd1d628a __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcee50eed media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd24403a5 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfa58a0ad media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfbb9a32c media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfd107e23 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe98500a media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfeef3d86 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x12224a9b cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0f245a4a mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b165ca3 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x432baf2e mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4c18258a mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x65f67ad7 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f4c4d15 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x863b5f48 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x86c39a4b mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8c8296bf mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9103e09f mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa597f2d4 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaf26c9c6 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb69edef mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc468f080 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xca692d1c mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd406f0a0 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdc4731b4 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe1cde362 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xed4b9c08 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x024b97a0 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04af5498 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1b4744c6 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x20ff05ef saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2134b547 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3230a51a saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3bad61a9 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41fd7ca9 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4aaabd9c saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a27d607 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9a05844a saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9eca0811 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa0f73cfe saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa70a0f23 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaab197ef saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb729e7aa saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbf62103a saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc7726c72 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd3c80140 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1dc5a9b8 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x22219fed nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2c73c1ee nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x614c44a7 nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x67b5498d nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8256af38 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x866cbde1 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8ebc0a6b nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa1e7390e nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xbfecc885 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc2a47ecf nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xdb16db02 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf18aa19d nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf4ced739 nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x1ae844e6 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x76e329d2 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x90c06655 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x9135061c mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xf4aaa813 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x390b8237 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x8d71f375 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xbb008dc1 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xc810c1dd vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xd7b51626 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xeb21a15d vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xebfb89f2 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xf9371552 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0138c2c5 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x03c03c57 hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x04688b92 venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x05d36d70 venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x064defcf hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1c130f6a venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1df18877 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1ff7e327 venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x21693168 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x21a01dea venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x245a7e30 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x366d1910 venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3d4d16cd venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x41110ec6 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x439947e8 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x43f88a01 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4b010098 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x51ed4aa8 venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x52becc8b venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5ca8995f venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5d98dead venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5df0a894 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x613576a9 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x62ade0b1 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x62cd63bd venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6352f74c hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6771d9ba venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6d033b77 venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6e821196 venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6eaa8a20 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7807a73c venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7b0c2c24 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7f957e7d venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x836d3378 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8661ab5f venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x89929f8d venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8a597668 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8e438361 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8ee1e7af venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x91aedf1c venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x969eef41 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa80533dc venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa986f50c venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xac3a5ce5 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb1b58b1a 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 0xbb2c0115 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbd0ffb25 venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbe5df01b venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc915491d venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc9bec478 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcbc015c0 hfi_session_deinit +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 0xde0dacb2 venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe935af68 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeab982db 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 0x70d1429a rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x4ecc94d8 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x77c4ae96 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x98067651 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9974847b vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xb9c6a6ba vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xba827e3b vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xdf5acdab vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0f12e245 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x25551f3f xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2acc2f9d xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x438ad371 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x607ea105 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf6582c18 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfe71e108 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x765c3e9a xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8314770f radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xa927613c radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x05cb2041 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb3918eaf si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbb25abcf si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xcbd3903a si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xef4bef18 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2c87cb5b lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3bc70d08 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x475a0062 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x77ed694c devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7891b8a1 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x865690c5 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x92785bf6 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x94fdd7b6 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c1b7bd5 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d11d36d rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d442eef ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb467825b devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4f420fc rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc41a73fd ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd0db95c5 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1571753 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf0a62a83 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf4884905 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xe92b4139 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xae97996a microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xb4acb08a mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa24d83d6 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x2e5d53a0 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x16879a22 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x43150386 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa674d265 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x48716e73 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x167f3947 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe12c7eee tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x22287076 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x58b74544 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x758c27ae simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0e8ed234 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0ec45338 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19b7fcba cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4750f1bb is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b2c6113 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x527b8987 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5989759f cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x62eb16ed cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6bfd8d46 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8600ed38 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d4dfbd3 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93a2a1a5 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa6a36738 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xadc645bc cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb4a59344 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdeae9f4b cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdf37524d cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe0bfdbbb cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe7bdd165 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf3e36e9b cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x716da2e6 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xb7195c97 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x03e2a288 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x197451d8 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2e184b51 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70b7dc6d em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x724ed325 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x724f79ce em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x75b82c39 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8d77bdd2 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x99035565 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9b1b72b6 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa588bd2c em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa9ab1347 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb457b45e em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdaab0670 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xecda715b em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xedbce30f em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeefa7e41 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf31db1ca em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x613dce84 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x8c010217 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb46f3640 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb90419d3 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xcde9c842 __v4l2_async_nf_add_fwnode +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 0x1b4af4a6 v4l2_hdmi_rx_colorimetry +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 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 0x03fcf43e v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x91c04d6e v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x92b05c29 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x12478646 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x36f6d632 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x576d336f v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x75fe0b4a v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8ffa3e69 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa94068ea v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb16e7d84 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc9b075f9 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdec8e4aa v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfb1dc17a v4l2_fwnode_connector_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 0x1cf0afe5 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25673e99 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28dfbb53 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x38709b02 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3f25f7e7 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x479ad836 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4915698d v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49934abb v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4fef7fb9 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x528a9453 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56619b21 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56bbd0f7 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x571fca22 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c21fcbc v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63978193 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x72d1e8ea v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x778a3e21 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c55eebe v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x85d7905b v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x881aaf09 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x89df1999 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b09f717 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b64acd4 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x943e47c9 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa2238a8b v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa5af1dd2 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa7210acd v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab053f98 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0bc9df3 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb212b531 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb539c421 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb569143e v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8d5b76b v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2d8f690 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc469fa93 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce118b46 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd0e3a48d v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5a7cefb v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0661bd6 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe4471199 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe47a7212 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee627064 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf01a8e29 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa8c99b4 v4l2_m2m_next_buf +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 0x0397e458 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15c87180 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x21a6ade4 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3d76fafa videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x49b9cd92 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d4eb137 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4df7d7db videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53142971 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53620ae2 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x86c0a261 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8ea4f8d4 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95f62a3c videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a69e0fc videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa65b67dd videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xabf02df8 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8747bd3 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba9a0ed8 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc9204faa videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcc1b886a videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2a94549 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe188ff1d videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfa1f1aaf videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfa3dfadf videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xff476dac videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1268489d videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2af73295 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x53e94475 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x63cd6fd4 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3178b126 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x62d841fa videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x81c3a48d videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04785d13 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x051a86f3 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x075d57c7 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a1caf55 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ccb670a v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d6f9bf2 v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e6737f8 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f079a9 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x135fd9da v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x143f89f6 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25337c75 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26b19172 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cf08cbf v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e49aa99 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e528808 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x321dd6d8 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32716d01 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c102f4e v4l2_g_parm_cap +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 0x4ae0b53c v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fc2adff v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50fec3e0 video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57479215 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67591d20 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6fd57afa __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x745cd50d video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a722211 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d384736 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f622a62 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x897a91f3 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a0170fa v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a19d0ea v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e7d11d5 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92adc7b8 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x94f72376 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a072be8 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fe4ff18 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa37271fd v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3a49817 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4c90b03 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac520a13 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad8dc9eb v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb20ad33a v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8e47cff v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc3f301d v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc8c21ee __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc13794bb v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9c9e121 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc1c83b5 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce205f2e v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf625407 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf754a74 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd17cd4b0 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1b03c56 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4ce58f4 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdcf04aa4 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf4f9f0f video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1b5673c v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe400a9e6 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe46fe8fe v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe68da3f9 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe96a93d0 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb86cc77 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebf6b89d __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2972ad9 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3f3c941 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf7da2e02 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf9be154c v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/memory/omap-gpmc 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL drivers/memory/omap-gpmc 0xb67cbbb3 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3d31bd24 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x555466a2 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf3929a2d pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0ecfc702 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1a0219e4 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2676c07c arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dceec43 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4df7064e wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4eff3c38 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4fc92cb1 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5c05d0ba wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6b3202e5 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x77b89cd0 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7b692bb5 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7b75058f wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b6aa3e cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa02137e2 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa095e660 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb0a45273 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb263fbbd wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe237980 wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf39c933f wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf5574d50 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf6f5d7d8 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x0928a730 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x15e283e3 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x103df6fe da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x19639645 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2d9bafdc da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2fafaab3 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe88815e8 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xef7343ee da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfa37a0d5 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 0x229fd31a kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x42353063 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x52841d1c kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8a38e698 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x90e9eaf9 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xde51b8a0 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe5e0ea22 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfb755419 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2af18e6f lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4cfd7c34 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8af4e2e1 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x392c358c lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x69c4a749 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x747e9a8b lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xaac57c13 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcca30558 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf331fcaa lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfa1479a8 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4cef6b9b lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x56f69a11 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd6ccc778 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x02b5bc00 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x02b86040 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1f934b35 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1f9e9775 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x281250c8 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x281f8c88 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x30c72778 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x30cafb38 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x354808be cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3fa1e186 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4180a10c cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x418d7d4c cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x581710ce madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5ca65639 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5cab8a79 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6b274dc4 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6b2a9184 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x73f23a74 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x73ffe634 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8355e56d cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8b430bc0 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8b4ed780 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb7ad8f7a madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc40d9f60 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc87616cc cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc87bca8c cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdeefb29d madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf3695094 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0104a3c2 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x130b56aa mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x53b11d8a mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x804777cd mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd0591dd8 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfe41b61a mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x11db741a pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x17b4affe pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x216b203f pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4753fdc4 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6a3500d8 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7cdd5185 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7de44f75 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fea04c7 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9339eb1c pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9aca4dbd pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa9d9d59c pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdb68ce68 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x66065e74 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6ae9b824 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x190f1273 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5fcd4547 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x69a1d559 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd43c6658 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd5de1ff7 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x1e410ca1 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 0x02e05414 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a796b3a si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16c62893 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27092c43 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2be309e8 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x323d54eb si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3780219f si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x391829bb si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4534d30d si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4af806c2 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c7ce1a5 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ed2c5eb si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x531a2732 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a3f2d06 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5aab11c9 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d46996f si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e2a00ce si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x64d063be si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70474785 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x745b4e39 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x86714eae si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x927136d5 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa014c17c si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2f4caa1 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xca35f0c0 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf8af6e8 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd2964abb si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xddc08fd0 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdfa22c3b si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6e3ba46 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee4c2bdf si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xefc9a436 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1c8176c si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf59c547f si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0bde88a6 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x494b62f8 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6acdfa01 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xaffa18b4 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbc83893a sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xfee0e697 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x544c9f3c stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xff7f5d78 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x37e458b7 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x50d20fd6 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbe5ea51b am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe752655c am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x0e82393c tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x5de3bb64 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xa72a5204 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xbd3c7b1e tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd6d5a1a9 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xde8c541c tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf9bfdf26 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xcb730415 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0a6e5acf alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0c214c43 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1697e4df alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5d47fda1 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7106af78 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xafe3062e alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdd7b4592 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0863c6f3 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0d8a7aaa rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0dded9e1 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15115f26 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x248ab013 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2948cd14 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x33d454a2 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3df358a1 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4091cd13 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4b42e837 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5174b258 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5278fc1e rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7455297b rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7addb833 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x80f235a6 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8795deb9 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x893b8051 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa6d3068d rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb91f81c4 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbcab58a3 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd61c4251 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe9b0a198 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf01c43fa rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf501deb5 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0787e3a8 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x08f303ea rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x17cc7469 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x20285d72 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x36f43b6a rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x57d9af41 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5b9fef5f rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x76701b79 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x879aed90 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xacbda972 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcff91c9a rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd4e6b87e rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe3fba48a rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4b73f01a cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x94fa7716 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa5353eeb cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe9e3b466 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 0x0f01dada enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2a915667 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4f5b6e90 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x653c9dcc enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x718cf48e enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x80a4df06 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb1049722 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe5196d0a enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x13b41fa2 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x274eb39b lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x29ccb7ca lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x43de9e59 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4d5685f3 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x88289c64 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbba4c21e lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc9c90d39 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x5e3c878a devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x27b492c3 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x80049dca st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x2c612899 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x5a360296 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa9d08c34 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 0x29351931 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 0x3c497df9 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy +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 0xd6c4a45a 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/mmc/host/dw_mmc-pltfm 0x08efc04e dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x997900b6 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xb70ab31f dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x54372840 mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x6dc79ca7 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x827f7a2c mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xab8dc71b mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x9fd9eb7c renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xcd011f4c renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x028321fe sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x031f7cd6 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x03ffdc77 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0cd841b4 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14c23200 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x16ebd0fc sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21b631bb __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x273a17f3 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x373f44e0 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3ce1a6c1 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x429caa2d sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a2d56d4 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x594d2985 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59ba384f sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x63d005c9 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x643fb36a sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6c377ff7 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e5b69bb sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6fb5ea7a sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7c5994b9 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x847e4d02 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x863ce403 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8a4231e0 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d61e382 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8e7849da sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c90e0c4 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d7a8ab9 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xadc83907 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb34f74fe sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbbfb2131 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbec481e6 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc5fad902 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc77a46aa sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xced67d10 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd1eccc8a sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda171392 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdcc6197a __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe587e1b7 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe71afc1b sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe844f017 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe85be5da sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf88e57e3 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x70622fd2 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x91f85360 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9b8b498b sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xac84bb8a sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb0281354 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb7e87552 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc6d29687 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcee56912 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xeabe0d4f sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x34ffa4b2 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 0x64010880 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9d646870 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa089d5d7 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcf3deab7 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd33bdeb5 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xdfc3057f tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe24e7228 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe4fdcb3a tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2808f9a8 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3b129552 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x46e177de most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4c46cf0d most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x550c0bfa most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5b6e790b channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6b2eb527 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x80e7a214 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8320dfa8 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x94868ee7 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb4f33351 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xcc89a12d most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xcf3f7165 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf39a52a7 most_get_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6efd2e00 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x93e30b96 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xacca2e7e cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7f8e56e4 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8c779962 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf225d2b2 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x1db0ffe5 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6b72fe55 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x91b759fa cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd630ebf1 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x5908aa45 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xa080a889 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cff0b40 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e128535 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f8b7d01 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1410a812 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14d8a438 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a99aa9c mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24615030 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24e9f414 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2915e68d mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x29cdf95f mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ab04f2a mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2acdbb5e mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2b1cb4a1 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30f15d47 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a5883e2 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b1c7028 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x487d2299 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x493b269d mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a4975f4 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x546df71d mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64d22b57 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64f5a08f mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6784dbcb mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a395e91 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x74f04741 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83b6ef88 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88175a51 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88bc2522 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x98cacee6 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x991b3ee6 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d0598ec mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa3e285e3 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa62e48a8 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa82f878c mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8f4b78b mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xabc835c4 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xacc0547a mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xadb43be7 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb6adbea mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd349040 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc237221c mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc6e40b93 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc0d9d29 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xccd77e93 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd716b73 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb7599b0 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5c97b84 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee0db502 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee512064 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef442955 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf276f885 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3610cad __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa82eb6a register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff38df04 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2bab861d mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x38a51d17 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4f852f5d deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb0b44bd5 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbde5e7c1 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x07f1e02f nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x237e308f nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2504ff7a mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x329654e6 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3dc65be2 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x48570dcc nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x536cd0e8 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x589a7ce8 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5db39e4b nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5e7365ed mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6b83059e mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x77dcfc3e nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8743d290 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8d3c4598 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8db680f9 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9e91ad80 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa60dde7d nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaceed600 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc38038a5 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdad428ba nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdeea0fe9 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe98ed822 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf1ad579a nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf672cdd6 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfdd7ba52 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x4901a396 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x9664e5fd onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x578007f9 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x6a126775 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xfd70d3a7 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x8e52bf6a denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0534c600 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0a9f9cdd nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0b7554ba nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x20120ef4 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21b08bd9 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x296e7118 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x352fa30b nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x35e3899f nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3f58aa1e 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 0x66ab948f nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x68b9c123 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6be6d31d nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6c8e9c0d nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x76d58129 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x78cf6a5c nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x84bbc7bf nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8da3f1ef nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x95069065 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa164208b nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcf9eeb6d nand_reset_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 0xe67f0329 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xefb38079 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf50a1853 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf676633d nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xc17ad8d3 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9e96eaf8 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xc10ca270 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x10b0823f ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1fc5a364 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3321f935 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3417b930 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3d36a6e9 ubi_get_volume_info +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 0x84a9bcc8 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa0844a31 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaedfec72 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb1c4b3b4 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xca6e44f7 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd94ca946 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xed232717 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfa52c609 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd8bfc3f ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0f0320a2 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x12c30b2b mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1c4f151a mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5f641957 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7969ca65 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x804b8443 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x893e803a devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x96db9319 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xae2ed0ca devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbf7367e1 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc4cebe85 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd3510e5f devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd99ca4d6 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xef8fb3b0 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd33053d8 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd6ba4279 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x44836185 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6705eb86 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x91323cfb unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x978094b5 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xaf45a0b0 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbe6d4938 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x462739cc alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc27655cf register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xeb948114 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf27f11f3 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x03dc270c can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x19c4322c close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b07bdd5 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1c4aaf74 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1d52cc7f can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1ecdf58f alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23001e8e can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x233e95cb can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2c3caffd free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x35d6d1df can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x36a2369a of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x38400ab7 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x385aaa20 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x39c4ea40 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3eba75ae can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5727daf4 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5ebc62f7 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7a045b34 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b592cb6 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7bea103b can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x92b3419d can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xad9e7e49 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xafde8baa can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb146035f alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb3b5643d can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb653cc2a can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc9f08035 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xca23bf80 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdf711021 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf0664f08 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfe0531d2 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfe43932c can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x02f535ba m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4a129a8b m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x69db0855 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x79eca5f5 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8a7bd1a7 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa4804fe7 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdf1c34bd m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe24c0832 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0944a6a7 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x70cc02c1 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x728ecebe unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x93be213a free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x3bb95e1e lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x54bbd3fd ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x8b413594 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0f99f45a rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1cd1a899 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4ea52852 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x63e3e2b0 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7aff4a26 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x829698e7 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9278eece rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x978cf437 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9e871d08 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9ffa9577 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc1d1d769 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd344aeaa rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xb60b27b0 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xc7191725 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x3794c730 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x89eb84c7 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 0xda09c8e5 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x401a8a98 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5078673e fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x64bef235 fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x67e727ec fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x83948ee3 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x9c7c5542 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa64ae079 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa701fe62 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb97ce37b fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xcf1b22fb fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd5b46450 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x72af2fb8 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xa9fb1c8e i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x449143f8 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7183cf95 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7ceff3fc ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa5f96f80 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf3f7d706 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x2adc1197 otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x63aa9683 otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x86d7c038 otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x895f3d6c otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x015d0c2b mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ad168e mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04350096 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04ae279e mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06164286 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x073ba636 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07486245 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b807518 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0df499c7 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fd8d798 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x122b9f7d mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14476718 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e3f6df mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17575047 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e2b72dd __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed88d12 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x219125b1 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x254d494b mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26526214 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x270a764b mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x274a68d5 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ac519c4 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b5aad95 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c03d9e5 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x307194d7 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30ba2d9f mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3285c93a mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3308fc53 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3570113a mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35b4475c mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3971a5bb mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a153c1f mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e007183 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f4285cb mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f9e9373 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40ee249b mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x434e4d8e mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b77d656 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d9b259d mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e833fbb mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55029345 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x561b5c11 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a0135d4 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bfef74a mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c955bba mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cba0f1e mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d309e52 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5efa15d6 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bcd55c9 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dc86a1e mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dfad04e mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f9cf232 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7074b061 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70c24b15 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x750b6809 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7544c507 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78a73ee9 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a02cf56 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7adfb4d0 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b89cc57 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e814c7f mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f01f824 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f2249f5 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f6ab2bb mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80937313 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8393c296 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86672e20 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882b7495 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x887a24f5 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x892d8019 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aa37b2d mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cdc2839 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d3a155e mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d8fb86e mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f2edcfb mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ff4c698 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92b9ffb7 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96df2606 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9871d126 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99fbc79f mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a55460b mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c2b3586 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d76c1ef mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa125b3ae mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1fc8ef3 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa28dfc4f mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa323664a mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6932230 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa964fd9b mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9d1da3f mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa36c909 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafad795e mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1202b3b mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb346a5a3 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3d7b70f mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb962e5d5 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbda39f6e mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc042b79f mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1665cb7 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc191ec60 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc43d4ef2 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc61d18e8 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6614830 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaa607c5 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb8791ae mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd79e99d mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf22dd92 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd02655ae mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7c87fa6 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb9ba5fb mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0153c45 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe10140e2 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5e0d97c mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe81064d8 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeba097c9 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec26ad91 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf210989c __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2274fe0 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf607a2e7 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb99c22f mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfed16a06 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0218093f mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04efd008 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x053457e5 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0632ddf3 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06e2e7cc mlx5_query_nic_vport_qkey_viol_cntr +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 0x0a1730f2 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d5539f3 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d68a01a mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ede39ed mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fbefe37 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1099bd23 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10accf87 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12875904 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x151b688e mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x157cbe08 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x213fd940 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2eb9292f mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37e14a1d mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x454b9891 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a403258 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bf5f740 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bde4477 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c36d62f mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cf90ff5 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64a1997a mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66de0130 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x674a3696 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b965e2a mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76227801 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77aa345b mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c7ac6e4 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x892aa3ce mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a584e91 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c9f783a mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ec7e45d mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eed73fb mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92cef300 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x971d9d2f mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bdbb61f mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c9fb718 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fe3a63f mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa03b4458 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2308b28 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3cb50d4 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6534f66 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa742cbd6 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa982601e mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa986603c mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf633bad mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbace66ec mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc26517cd mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc815f32a mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9f788a4 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca0a6f18 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb59dc72 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb913c97 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1f163ba mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd98fefca mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda735ba2 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe52968e7 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5e67393 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6b428b9 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7e87f13 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf13c25ab mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5cc0cb0 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf824e528 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd384a6c mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa0cebb5d ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc2f75e32 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd4097652 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xed50a2bd ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x88319979 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 0x048f2c1c ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x151568ea ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19e559a7 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c304deb ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fe7ee8f ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25adfe6b ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x398c9f6d ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f1a0d79 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40ca3cfb ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x444ad4dd ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4509965f ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x689d9243 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x693fee1c ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x797cef01 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d00b481 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f5eb192 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83996d09 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x875632ca ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c986717 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90e44045 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x97d456f9 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9bc27340 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6c46e53 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae76d341 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1bec0c6 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc42043f ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc0811baf ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1155236 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc13858d3 ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc6f71121 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd09db914 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd37dd2a0 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea8fcdfc ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf15f74e9 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1b377ce ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7d6475f __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf86533b2 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9d0497f ocelot_port_get_default_prio +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 0x1936f0d1 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5f1826fb stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x851eedfe stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9096463d stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9c7401cd stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc20dc921 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2420e75d stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2efa8b1f stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8a8ea83c stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe920a6c7 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xece9b6f1 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x6ab9a4a1 am65_cpts_release +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x828c824a am65_cpts_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x88f300dd am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb60b988a am65_cpts_estf_disable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xc1e7d85b am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xd96c6d29 am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xe0cbdf78 am65_cpts_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x77fe5e35 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa0df6ae3 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xbf6cc27a w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xeab2338a w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x8aa9c1d8 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x540e4665 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7d126f8b ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x92eebb95 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb60bfe55 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xeb5b015d ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/macsec 0x8076d7ad macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x42731429 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xacd25716 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbd25b03f macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf73fd0b6 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x0d4bfbf2 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x34ec9912 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xcb0d02ec net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0x78b52458 alt_tse_pcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x352adae1 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7186cf0a xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x74612bf3 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9b75bbe3 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa2f3c14 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xbeacf00b xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc8cfba3b xpcs_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x143c835b bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16c80aba bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x18ef9032 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25e79918 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2b4d9db6 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31536234 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x41468522 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4618d3bf __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x48a5bc50 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a7c9946 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x52989a79 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x580eb22f bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c842e56 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x600b8cdf bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x75eb5f0b bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x806b1e18 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8fe5feda bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9bc46cdc __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa5f6b9af bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xac4d4b46 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaedd9030 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb097d778 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb09a2144 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb0bc5d83 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb5136468 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb58d2a46 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb7616005 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda342e0c bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe0c55432 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0de6451 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5dcdc29 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb8a9e60 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfce437a9 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfebbe9a5 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x30dc1f22 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x997aba3e bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop +EXPORT_SYMBOL_GPL drivers/net/tap 0x002ddb44 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x00de6e76 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x2452c64e tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x57b803e0 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x6ecbdf8a tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x78983474 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x95067fd8 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xbd751916 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xfeac0fed tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3bf0e708 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x57f31685 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xae05e254 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd1a7b964 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe2d0fbe1 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfbd64f2f usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfd41f0ce usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0b40c113 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x298e44e5 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x459b4b4b cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x651fac0a cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7c098291 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x81df70a3 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8863e7d5 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xae21011c cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb98f4300 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc6e9a1b7 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe243a387 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xb6c95d9f rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x45517d08 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5dd72afa rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x884d4706 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x960e23e7 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe0b4c72b rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xeab48817 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00ad84cd usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a685916 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0bcb50ab usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17bf3fc4 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1d190775 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2198b5df usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22256cb6 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22a3e822 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24d25b48 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27fc2135 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x370b0c8f usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b8fc5e7 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3dce71c7 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a6f262a usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5402add2 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f236adb usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6bd7cf26 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6f13680d usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7849d3e4 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x791cd15f usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79480071 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b08e286 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7f5f9f87 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8060d810 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9aaea90f usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c4d85e6 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e4dd5fd usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab6d41e7 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcc673c5d usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf018166 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd7d54c6 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec6fc10d usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe2096a9 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe5f8ad5 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x84be10b1 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd8402e28 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd8de797c vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xdf8ded4d vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xa3862e9d libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x148dec97 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f7cad9c il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b39d7a2 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc456b463 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7259ce8 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 0x00a983a8 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0bab4bcb p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x43e7e61e p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xab8f9a62 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbb610147 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdaba4f71 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdda5faaa p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf4cdb545 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf97d104e p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2a3d982c lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x36c6e247 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3bb410d2 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4b402a92 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x50e76aed lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x556d1f5e lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5f32f926 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6558efe1 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x66fd2a5c lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7f9b62a4 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fc4c1d3 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x93ebc484 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x988b4b31 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9d982450 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xae1afa44 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdfe7b822 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x49d85a84 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6bd07a19 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6fa59d20 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7565a159 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x823c5b4c lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9719e4f3 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc7a0c7a0 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd32a4a3b lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0fe7360d _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x117e2698 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2020cfea mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x29135569 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x387476d6 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43dba5d6 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x45b37686 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x46eb3eec mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5fbec8cc mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x63b3b7c3 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x690cd7c5 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6c09a3fa mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7951d2f3 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x889b2f30 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9863f62d mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa5d8d764 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb2fe9ee4 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbbad35bc mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf5e13aa mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc4e6636a mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcda4c28a mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe61ddcad mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf2fed6f4 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfb0883d7 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02e4abde mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03ddb5ee mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x055bf5ff mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0640156d mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07a5f4b5 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a541899 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13535b61 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15ce6860 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17444f24 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1993c83e mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f8ac718 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2706c4ac mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2845da90 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x292a0fb3 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3251c04e mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x370a1073 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38481a0c mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39ae7474 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3adf1788 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b471309 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d95c903 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e999d9b mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41732964 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b333f84 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x548e552e mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5499aa7d mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b25a0b0 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5dd32724 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5deb876e mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x61b979d3 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66af736a mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a4baaaa mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b00e2ed mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d828ba4 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x715feba0 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7600ed9a mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x761fed59 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x772fe9dd mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d99a6d6 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f545e8c mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x85fb33bd mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x869e52bf mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88190874 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88d613f2 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88db6548 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8aa204bf mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e6bded9 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x927d5a95 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x92a7ab29 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93f8c4e1 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94d45784 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94df367e mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94e926c7 mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9879dc54 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa049318c mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3071ba5 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5e70618 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6ce089e mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaadba14f mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaff6fff3 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb16840e9 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb2e242b4 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb64ee8ba mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6f9cadc mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd0918dd mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5e55e1c mt76_set_channel +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 0xc6904382 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc79daf86 mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc7a40839 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce0f7545 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce27d2c8 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce2dfea0 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd47db175 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9cbe275 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe004746d __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5e3b764 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7fa3613 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeab1ead3 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeac591a6 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6757972 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf682b920 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8e928ae mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb2be783 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfe2446f5 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xffbea9cb mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a7ae1c2 mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b5ad61a mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e6eb5d9 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x103001e3 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17e13696 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x187f7fe3 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b931412 mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c00152f mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x202f579f __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x23fe7910 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25ba0b45 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26d8436e mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29e14cdc mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x304b7f32 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x33119f7b mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x33366dfc mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3587a772 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x35f2f423 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b9641ea mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3fe42e90 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45e220af mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4669ede8 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4e03bfc9 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f9aff47 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x50c34143 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x556f9a29 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5fa13495 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6923a3f3 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e9a7cbb mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7091fadc mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ce309a3 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f18094c mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84dd94da mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x863c436a mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8652ed84 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x894d56c2 mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8b170df4 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8cde4800 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8ee3c8c6 mt76_connac_txp_skb_unmap +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 0x9489e5e9 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x974dc9d4 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ad66f85 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9fa1bfff mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa18fb530 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa8c9de7f mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa91d46dc mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb06c5d13 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb2e14760 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb974dfd0 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbdeef0f3 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbe9cac8d mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc92ce014 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9e09616 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca3e6d8f mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcaf0b0a5 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb03ee0e mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcddf246c mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcff14c4e mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd16bec85 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2a25290 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda6d9bfc mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdbf488f4 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe0aa8fc2 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe10b49e7 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe27bfffe mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe317652f mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe38f173f mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe419e3f0 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeb4ab7ab mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xebb6af70 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeccbdd2c mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed14b22b mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf27e2894 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa5726ad mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x184eb72b mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x47d075f2 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4939c092 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x51076265 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6c2af22d mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6e909a8a mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x881f2cae mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9c8a3349 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb6c0f027 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xba7f1dd8 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbf79d21f mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd3a84874 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdefc63f5 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe2241107 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xea58e7a9 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xffe64b3b mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1b012652 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x43640b09 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x44f1cbc2 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x54d111d5 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5f5a2f56 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x78ec289d mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x82a9addb mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9d90285e mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xaee1a818 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xafa4e376 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb643c20d mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc978e568 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd037698d mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xeea10a6f ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0832365d mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2be5cec4 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x313676e7 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3a74fdc1 mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3bb2a8c3 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x50602dde mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x640101fa mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6c7c43ad mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6ef73630 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x725e3278 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x764ef6ec mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x76f35d97 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fc945db mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9373d22d mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x941ed92b mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x99ddac3a mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9dc07cbd mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa7ce7e0f mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb0e70de1 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb1683c17 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc15e269d __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc1a567fe mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc59b106a mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc69cdfda mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd0001579 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd71a1893 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf105086e mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf3a03f23 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x7ef39014 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 0x4a3ca7bc mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x5cda0d18 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x883949f1 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x8af7f35e mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x30796094 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x408e31bf mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6cbc2aeb mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x703c74c9 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x739c6aa6 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x83949564 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf34f4129 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0410953c mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0927b4e6 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0aab112d mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x167d0b1e mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x192e4787 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x275c2a2a mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2eb53f0b mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x321b1413 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3cde91b4 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d513707 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ebfe959 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43997e3b mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4809941a mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48fb7f4b mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5328008f mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x554ce600 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x555787c5 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x568c0059 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59c16489 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a042eb4 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62371e0b mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b73b079 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c8b0a31 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x71abbb49 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7309d2cc mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x735f056a mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79e5152e mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ed4c2df mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81b482f9 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x881eae62 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8ff3a534 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c4ee20f mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9dcc5f8f mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ff1879f mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa1692fd6 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa39d9a96 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3e68edd mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6966849 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaba6c68a mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae1b27ca mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae37dda7 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf0cb2f8 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5537ebf mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5677cef mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8ce0996 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc01ac9b4 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc0b83a8c mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc368bdbe mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5d9abd6 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd51c1077 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd54e8a2a mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf1f3361 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0823be4 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe40f294d mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe4606356 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe98741bf mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xedf87fc4 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xefca63db mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf115308b mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2c01915 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2c56600 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf37c3af3 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf49e5b25 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4b61944 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf67dbb69 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd1e2cc1 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0d72807c mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0f5c5b60 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x58f88dba mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x85590ae3 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x86acbaae mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9afe2266 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa806d774 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf853c9b2 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x06fb8477 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1e3cd507 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3dc62413 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x475c50f3 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6c55e7dc mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x78255fc9 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9ce52e6b mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa5d5b59c mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa76efa7a mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xabec8e6b mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xac3b330c mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xadd78723 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb652fbc2 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc637ee16 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xce1a8875 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd96fde06 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdb765252 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xeabb690b mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf122b340 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfc597fe3 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0a0795aa mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x169e5028 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1d5986c1 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2372c9b6 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2b4ca62c mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3158527c mt7921_check_offload_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x359488eb mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5aedce66 mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x63d65091 mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6bfc404b mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6c5c1a99 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x771e5b30 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x86fd067b mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9a89839f mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa8608a9d mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xac8f3c74 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xafa981d6 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb20a45c3 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc67da80c mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd3849989 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd3e0ec73 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe2e930f9 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf49bce1d mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf7aa581a mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1acd114d wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3376b86f wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x795cce34 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x868b5ee3 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb2d0d65e host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xdffd73e1 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe27d4876 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4e7238ff qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8b18e68f qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9b363c03 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb0984a54 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc8986c78 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd6b7fed8 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0444e02e rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d3b5389 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1103fae7 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a109e45 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f044b52 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1fbfa2c7 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2010fd56 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b16332a rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e909fd8 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x416dde43 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43d4b4c5 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x44ab7a61 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4776072c rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54bf3476 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56778d33 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56b77b2d rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63fd068e rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64bc6b76 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d342e4a rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e0f3935 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x806611ae rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x81f13a71 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x846a3d37 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x849b471b rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x861b8e6f rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92f16a8a rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x95fba3b0 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9a8ad79e rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa2cf8270 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad623900 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad782991 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbbadd715 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbfc6623f rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc23f590b rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2d848ea rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc48246a7 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf0d7feb rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdcb0bdca rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf31fe0e rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8f0ef58 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf043e7a1 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf3a92edd rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf464400c rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf4902aeb rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x195e3de9 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2801e27f rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2bcf3541 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 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x424acad8 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x46596119 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x50a9a755 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5a230d0f rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x740fc28b rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7cec0ac6 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x915cfa81 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92a0170c rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xaae52828 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc1802337 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd42b5236 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xefc857cf rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf03f390b rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x04a93ef9 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x06d1e373 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1024e605 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13d43ae5 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17436878 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18e32c95 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a5135f3 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f058128 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f2b728c rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x217cef82 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x229a4caa rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x291d4298 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x298baf0d rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2d565c12 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30eeee85 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3394b9cc rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38499f58 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e650e53 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4d7e0368 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51c4a3ca rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5e32d693 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f29add3 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5fe3b6f6 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c21170a rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6d263d24 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ddc798b rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73d857b8 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ef75829 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x91b56f1d rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9fc78d23 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa22c544c rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa28818fd rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa6302b1c rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb473a504 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb8a3bf0c rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd8ad834 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc123ff81 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc1833978 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd4584f6 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcdafb4fd rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd17f48d1 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd454b25c rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd97b8e5a rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdab064c5 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe951de0f rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa9e4a84 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfbf6e14f rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x59954a7e rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5a962f68 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xab295d90 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc3845a6c rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc706f181 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x187d0622 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xa3cbac28 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb9db69f0 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1592f2e8 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1f933cbd rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x22ae1881 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2811add5 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2be8f7ef rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x310f3437 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3d75c92d rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x576ee428 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x942f5293 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9d24c178 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xca25b3f7 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xce3d079f rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd5b6e044 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf4375001 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf59e1fc5 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfcd945c7 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17e88c4b dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa508b726 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa880c489 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe907ed5e dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07efe53b rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x15c89e94 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x19ae7273 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x24fcb4cc rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x270f91e9 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x27d3b2d0 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x39d4ae95 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c24a91f rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x43d6d085 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4599ad1c rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4969e31f rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b12f251 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7529eeb8 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 0x8c4c4537 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8dd5faf0 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa024377b rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1324e14 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc07a39c4 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe01f5062 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe210b568 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe6ad67d6 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf09aa051 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf299e901 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf2a7fed6 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf947aa10 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b77b1bf rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e3dedb4 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1780607d rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1bfb387e rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c422c98 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29f4da8e rtl_tx_mgmt_proc +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 0x3a5632cf rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f2336ee rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ad8674a rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6aad8822 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c20d736 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79876a45 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x896d2fe3 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90b15137 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7ddf028 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5a5799b rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5c2aff9 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbe809e6 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbdfde053 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf393739 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd034e6da read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1561c07 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbdec9e3 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc7e4dfc rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe21b1d2a rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8d01fc4a rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9688d3d3 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc59ad5e3 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd8864609 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xef838280 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x07f313a3 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9ee697bb cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe6264f67 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf0875aef cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x120cf9d1 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x406f6584 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcfb6d74d wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04471d8d wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x085c3a8f wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0880d48c wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09e67771 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a2b41b7 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ce348cd wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ff705b2 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19e2c946 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ce7cb77 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a08ec36 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2cad1fe2 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2da0a7ef wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x34944b39 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x358f8ed0 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x399f5a57 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4224a1de wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4467f3cd wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54a70cfc wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c5ddf53 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62984e95 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x690bff44 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x795f4524 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82332612 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x868a2443 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88c0016d wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ce843af wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x95770d6b wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x980744a0 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9909531a wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99608808 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3a4ae0e wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5b40dbd wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa8e8649 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5af29f9 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7928a87 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbac6f8d9 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcbf8bbda wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcdebe006 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd669cd59 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd782347c wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7bd52d4 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeebf1328 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc4cc95a wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x85dafaf1 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x98b9c532 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xddc2193a nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf44c3f02 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2908f596 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3226860a pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4296f658 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5a790c72 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6ae5b56e pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa5a94d6b pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfeb4c1ef pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2b3705bd st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4183bf9d st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4deb5ab8 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x541436d2 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x594c3122 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6c9b558e st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc9ebc4a9 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf74aec9e st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x5c9e997a st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x8cce0df3 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa2b3a44c 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 0x5f0213b2 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x8c12cf77 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xce54b147 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 0x501f3de4 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xdb4aa718 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0ffaa6bb nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1b3dabc8 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x24f1badf nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5e4b4811 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6a060a81 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7498de97 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7e6d9aa6 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7eb1c1cb nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8ae9d0a2 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x976703c0 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa9d66555 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x21e609f7 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xe68fa314 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x04f06d3b nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0542fd10 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x304e6dec nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7ba9f4a4 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8b1bb64f nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x953dbb0d nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc426fae0 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc59bc258 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xde397913 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe7ca14da nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf7cf9007 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6d4167c3 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req +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 0xf8828565 iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xfb6ecca3 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x38744348 arm_cspmu_sysfs_event_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xcd380fbf arm_cspmu_sysfs_format_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xef8b65b1 nv_cspmu_init_ops +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x12f5eb2a hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2269cd5a hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x36ce6b37 hisi_pmu_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 0x48c23678 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6d3cb074 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x777edef3 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x83cbaf36 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8689586d hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9abef52a hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa5398d36 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xadb67eb5 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbce00f91 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbf4d9001 hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xdb9cbb3f hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xdbcf5535 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe90dc60a hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf0793af5 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xc27652a8 sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x13eaeb80 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3868de41 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x39458c1e tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3ddf1313 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3e3ea4d4 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4c31dfa6 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5452e9bc tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5860ee17 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5b4ca62d tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x605297c1 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6b64e594 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x87a1fb11 tegra_phy_xusb_utmi_pad_power_down +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x92607487 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9d698d38 tegra_phy_xusb_utmi_pad_power_on +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xab890cbd tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb9520e4f tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc1937eb8 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc6c462dd tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe67626ed 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 0xc20ec4e0 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xd78da63e mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xe7f602d1 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x50504aa3 lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x7fd7b8ea lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x92b125a4 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xe9c74b79 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 0x05727986 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x080bdbd0 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1cd18d68 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1e1460bf __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x225c204c ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3862d834 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5147d68b ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x52cbd719 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x53829757 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5e073ac7 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x66a98361 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7545aeff ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7ddfe649 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8511fc3c ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x89057999 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x91fcee55 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x927839b6 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa60f92ad ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa9a6a48f __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa9bb688d ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xadd5f1e5 ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaf96f811 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbde7f282 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc5bee200 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xce718fd4 __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe36576c9 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe5e4f8d9 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe860313f ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf1754757 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf24940be ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf6de063f ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf8881d93 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x8d5c965a 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 0x44701b3b devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x5f3d927a devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xddf6b5ce reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xf3ccbc35 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x0daacac5 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x8060a509 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xc52dd83b bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x1a3088c9 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb54652c0 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xea6da290 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x382c7efe ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x60c60799 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6e3fd630 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x81ec46a4 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x83d0da88 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb2d1da26 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc595f94f extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xfa68911e ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x02b80026 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5461f43b mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb06f4d15 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc8d36d5e mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdabd2de9 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x6bde388c rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1e4fc282 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6f3f77be wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8434b2f9 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa35dc8fd wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xce4bd16f wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf03f3bb6 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x3d9a64d8 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2506c06f scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x3090432d scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6c17fb82 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x724e899d scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x92e898ea scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa7b33192 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xd8c0700c scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x01750bc0 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x0dc81f9b scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x87f67215 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xa5386c2a scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xaf71caf2 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x21989555 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x29e516b0 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3f0448ab qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x97fbd5f6 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x9837d025 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xafff989c qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc93fe635 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xde1e9530 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x0166f313 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x194d8703 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6a8a6df2 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7f3728e2 qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb006f410 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb32858a7 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc832c21d qcom_q6v5_prepare +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 0xb5f7656c qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x4dc60ddd 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 0x0bae1d31 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x7c0a9b43 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04ad4735 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x187302a2 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2173e5fb cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x276051bb cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a764710 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35f54460 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37805c62 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x391d4e3b cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4a6329ae cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4caa2811 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4fa3092b cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52efe3b3 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x566e0774 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a595dcf cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b0f757b cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c6db649 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c717f55 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x600dc064 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60691d9f cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65a751b2 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6700ece5 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70f13686 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c06a28a cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7cf6b383 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8244d6f2 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88452fb8 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8eaeef54 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9733ff84 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99d99604 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c08541a cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c47b123 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f5595d8 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f632930 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0a6dbf7 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0752c58 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7dde713 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8fc5fc1 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcba7d8f3 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xddfbb4e8 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0ca7e35 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe11b9b9d cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe86a8c1c cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4305274 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8758602 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x142fda0d fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2242aa3a fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5486ff1a fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x578005a2 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x597bf872 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x62376e7d fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6b594334 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7d4ff5fd fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x88b18de6 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x97ca27a2 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb9e8f00e fcoe_fcf_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 0xc4751fe1 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xca8f0a57 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd37b5878 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdf1563a9 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfcdc9378 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x345c36b3 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x3b970c99 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x08649e51 hisi_sas_get_fw_info +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 0x45dadb73 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x58ffd013 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x67869c1a hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x67ecdaa5 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x69072371 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6cd3b37e hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x718628c7 hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7355bf90 hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8489b37d hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8c4fa402 hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8de69eba hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8fada4bd hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x90a56d9a hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x992843be hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9c44f2e6 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xaa943b7e hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xac6be125 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xaea45102 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 0xb673e43e hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc0f3f02e hisi_sas_host_reset +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 0xc496d6c8 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe315830c hisi_sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 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 0xf97c4318 hisi_sas_phy_bcast +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf9b51258 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0d3e08c0 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6037224e iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7e23d9ba iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x899acafc iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9b3a857c iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb98e3eb0 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xde0577d7 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x662c6b8b fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x006fd576 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x075bfe75 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c4d2dd7 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e265500 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10e88fce iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x125d8cc8 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19498b0d iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a999068 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d341558 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28554c3d iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c68cbac iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c70a390 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f7c5b96 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x357ad227 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37705fac __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38b8e3d7 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5bfc233a iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c4ed5a9 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6cad3ce0 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73efca3f iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7816363e iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a467201 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a89506e iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ac5e45a iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x90c394c3 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91c2651f iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92a8cf6f iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9cac80f9 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9df7c77d iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fbfe49f iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3f32445 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa61c0d26 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaea69208 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4fa9d8a iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb56166e4 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6b149ae iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb92682ac iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbcadbbab iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2958f69 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3d8c815 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce2eabbd iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf13b785 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd0289fa iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd691190 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe144fb2d iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe61efa59 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeaecb46d iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec63d59e iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x13a23196 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x14fcab12 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x43fd8efa iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4f179a94 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54298bc4 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5bc11bf8 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x66b7bc96 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7d47a7b1 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x86737378 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x93f40622 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa775a425 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaffbe2c5 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbda14446 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc5d04be8 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd3292de7 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf0b373f iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf1b49562 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x017d6635 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x028affbe sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x269f9027 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x272684d8 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2dafbe3b sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f38e852 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35e60937 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3df3303c sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3fc618cf sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48d46276 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c50924a sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4cadf022 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53e7ae25 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54ce47de dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x59988892 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6285924e sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67b411b7 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x777d5ea5 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78fa7dfa sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7da6ac54 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f8aa6e2 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8038927c sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a5fcf3c sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e995eea sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab0dc998 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xad3b87cd sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae4478f1 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaea37140 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb2dbe384 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3988dcc smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc9e31eeb sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc970cc9 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2082016 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4ae0179 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8b61878 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf79922c4 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x747bb0d3 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x042130c6 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05ede287 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1695821d iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b98dae0 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c779fda iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1dcf2259 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ea7746d iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x214fce92 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29002b7f iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31c58db3 iscsi_conn_login_event +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 0x5c3207c2 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cdc9c86 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dfb12d5 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e656b7b iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63889e05 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a663640 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e2548be iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f37c460 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f7a9e1d iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x711907bd 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 0x71d39b5d iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75491ac9 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ab281a9 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cf916fd iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80d72595 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 0x875eb9a0 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c583b52 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d59cb4b iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95b29857 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae2b757f iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf340694 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb56b22a8 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5edc760 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7320a81 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba3318c3 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd0183e0 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd1d7919 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd85cc65 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce6c71e7 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3b3d867 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 0xe3cc4414 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea68d614 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xedd28e5e iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefacb26a iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf09416b8 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf218d598 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf24e18c9 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfaaa70e7 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8dba609b sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa5b93726 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf0c88087 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfa1ee7b0 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 0xeb488e48 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4e5871a5 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x77c07221 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x937603d2 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb78ee464 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfc2d6bb1 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfd61d056 srp_rport_del +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x05982562 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3a3a3b4c siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3e2dd881 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x658ad811 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7f124b10 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd9da7160 siox_master_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x210968fe slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3d6e0a06 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3de2f2df slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54afe133 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5d7a4254 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5d8f4e48 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x82c05032 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x831d7df9 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x83412834 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x85531e26 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8cfc9143 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x98693062 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9eda77dd slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa15bd703 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb875faf1 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbba75ae4 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbe36bac8 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbf73d275 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc39df6f0 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd031a627 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd1060f54 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe0dd9fa1 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe1b4991a slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xef1a1984 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf1815b45 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfa3f479a slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x44824e83 meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0261cd01 dpaa2_io_store_next +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1b7c4023 dpaa2_io_service_rearm +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2ea89927 dpaa2_io_service_pull_channel +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2f10852c dpaa2_io_service_select +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3f8992eb dpaa2_io_service_release +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x4994345c dpaa2_io_store_destroy +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 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 0xa6cfb6f7 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xe0111c57 dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xf87e7f28 dpaa2_io_service_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x21b1de6d gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2737c88b apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x51ec9f2f apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x690a1d8a gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x71398cba aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xc37e14e9 gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xdaee4016 gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xf2851541 __apr_driver_register +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 0x1bd2c7e9 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x49eb7593 qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xdd9097cd qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xf272c6e9 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1fdd3d59 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7d1f4cf1 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb435c5ce __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x499cc21d sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x39a454d9 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x84030972 bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xa17a84cc bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xc4fcbcbd bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x019ccd75 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1f8200d3 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x90fa5c61 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9a3a3433 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcf74a9ec spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe920b274 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x391aa4e7 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x731bcb32 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xcfcd3629 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11e76bdc spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x211b2244 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2370d49d spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x297dff39 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32fc5206 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x38db1ac0 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x47b2d72f spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4d3cbc3c spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x530b94d1 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5c99c9c3 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x75a48398 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4db962a spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaea24654 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaef6c1d8 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0464cc2 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb3d18b1a spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb57887f3 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc76b1c2e spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf3196aa2 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x769f2745 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1d05ceb9 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1fab0d28 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x30e44f94 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x40a746ad anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x56ff5f85 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x63d63d74 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x808f458a anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x83494a91 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x89880a04 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9734b898 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbcdd42b4 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe81f0437 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf33f8556 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 0x5437a785 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xbcc09f74 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe253f828 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf4e92444 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2de24502 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x36282fa5 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x376428b1 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4341136d gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7afa7477 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa7141114 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xadacec90 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb9f714af gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc6650c81 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd8c5d058 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe17eb742 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe2773ba0 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf8c1882e gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1ccfc59a gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x24e09142 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x324f4166 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x33c09dd3 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x35db3211 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x907b9087 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa88c7b14 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb2e1ff5c gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc8a31b90 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe416636a gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe7ac43d9 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xec088072 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf7d9bb66 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x1f60e5e5 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x3cb73aca gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xcd585a6a gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xd5e68a16 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x3b8b7aa6 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x80b489af gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x57dd3fb1 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x00ee6945 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x29ac3438 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2c971af9 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3410ac4f imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x39567f75 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3a77f5de imx_media_capture_device_next_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 0x534ba9e1 imx_media_find_mbus_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x549d5cdd imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x56117f1b imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5aff4dd6 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6890a053 imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7436f006 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x753c4a80 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8f6a14d7 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x99312324 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9fce9022 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 0xb8525a69 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbc72d176 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbcfb4309 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbdf71a08 imx_media_capture_device_remove +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 0xe0038a51 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe2f92472 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe7ceb5d3 imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0024c10e amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x02da106a amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0fc5f529 codec_hevc_fill_mmu_map +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 0x16250293 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x17931858 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1df850f4 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2db19487 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x50ac78dd amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x53708b30 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5b41c3da amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5db71430 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x66a5348a amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x785a6e2e amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x78682528 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc035c2ea amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc18ee2a9 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcac5abca amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcd3f9b2b amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd319c3f9 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xea314914 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf32fa677 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x0f3140da nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xa83d317a nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xf58e9bce nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x366f486b vchiq_mmal_component_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x3e8666d5 vchiq_mmal_port_parameter_get +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x3fda251d vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x40914f9c vchiq_mmal_port_connect_tunnel +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 0x9abfe858 vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa515ec03 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 0xbce24fa5 vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc19655e9 vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc397fd1f vchiq_mmal_port_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc5791864 vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc9c26f87 vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc9ee224f mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xcd092984 vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x218be452 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3b387247 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x730f019a target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xab35ace2 target_submit +EXPORT_SYMBOL_GPL drivers/tee/tee 0x056acfb6 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0c429b7c teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0e5aecab tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0ff149cd tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3fc60bc7 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x42b36d5e tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x71a43d65 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x789c855a tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x79020f5e tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d494c42 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8dbb1a2f tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa8109c46 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa920800b tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xaeb87570 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xafc9bb3d tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb68c05b3 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcbdcdeba tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcf0ce0e1 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd4517615 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe86bde12 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf3f1beec tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfd6789a4 teedev_close_context +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0975c2cf tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0da126e6 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0fc5c8bc tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x211f24fb tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2b566a56 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d93cc2f tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d9a1e50 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3fa3059b tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e4a84cc tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4f41ed96 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5260c6af tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x53674e25 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5ad5565b tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5f8ad096 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x66c6653c tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x67f98791 tb_ring_alloc_tx +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 0x848375aa tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8cd20685 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9c40f9b8 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa98d12eb tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb65f2ff2 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb90389e7 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcc595911 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd1fcefae tb_xdomain_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/ufs/core/ufshcd-core 0x13fbfa84 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2497e8b2 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x430698c3 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x552641fe ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5d286d8f ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x60fdd101 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x64b778f3 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x75689943 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x84d4d248 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x87e9a3b8 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8e25edcd ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x97392529 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9c130420 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9cd044f5 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb1237fda ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xba24cf49 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xba69355b ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc88630a4 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcda6fa25 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcf323416 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd17a84c9 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe3b4765a ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xefc2de89 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfec6e848 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xff702818 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x0d404474 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x29ba05b2 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 0x7a0460ff ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xf4fa15b2 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/uio/uio 0x148c3f03 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x212221c9 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5c54b341 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xa287dceb uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xba92a284 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xbe91cda0 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x234b2e3c cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x46c2a042 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4c77ac60 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6308fb8e cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x70164150 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x903de8c6 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa3de9fd7 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xedeeb7b6 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xfe1d54ba cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1792762b hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5c6e61db ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x91bcd849 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9fd6b1ec ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x02234f26 imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x321746b4 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5109e674 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5ca982db imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa1334373 imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc3ac9c54 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0c7b4914 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x697db1ee ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x80230740 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x954dbc96 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb6b8d924 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc7b33ecf ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0348658b u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x23177c24 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2b76b2c9 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x61154e4d u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x71526caf u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x78301f3b u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7ba71e4a u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x866cbe5d g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc2bcfa2b u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc6b3b28a u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd008bd8b u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd1e43915 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdb2cfd24 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xedfda980 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf04f0504 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x17b96141 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1a339a3c gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x221dcaa7 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x25129e94 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x30bd0239 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3938fdb1 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3f821622 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x43e11877 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62bea9a7 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xac8c73ce gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xae88821a gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd78d5038 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdc9cb1c6 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xddab6860 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe9d265e9 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xed77afca gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x632c38ea gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x9a00854c gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb7f1d853 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe31c7b31 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x231e8d5c 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 0xa9275f45 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x00bd1953 fsg_store_forced_eject +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 0x21d5699a fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2b22bc53 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 0x42132831 fsg_common_set_cdev +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 0x4abdc725 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4c1a617d fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4e8f29ec fsg_show_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 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 0x826a11dc fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x82c98659 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x85cdef4a fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x924e2444 fsg_show_removable +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 0x98fc448d fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0xb1da94d5 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 0xbf688301 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xee88014b fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf139db35 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf1e586a9 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf478d2c4 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1e71ab22 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x308628af rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3384a578 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x385f8d07 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4202d09c rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x686729ef rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7bbdfdd6 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbb9ee6fd rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc05bcf68 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd1225220 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd8de31cd rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe6b1684f rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xed6e9149 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf2ac457a rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf3bc33ff rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02a12992 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x08402cc4 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0bd58014 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x178bf7ef usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28224cc9 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d9e2d60 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e23cc39 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35f90d03 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x415e18c2 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x42fce70b usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45520e62 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58307ece unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5febaecd usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x70c08d26 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x88c75689 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cc5ba51 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ff85c0c usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ae5ae4b usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7e4379b usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa3439fc usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac2a8d4f usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2c53a05 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb40ddf19 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbbcbdabf usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcb99da13 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd99cd1c2 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe1faf09d usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe7ff97bd usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebfbd645 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4f85128 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5948261 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x10d96ffb free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x13f1fbc9 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3c7f066c gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4fb4216e empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x62791371 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xba8c375f udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xebb500ff udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xeea04418 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf08f4c4a udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a91bf17 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0e7c3c12 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x21b9724e usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x23921a5c usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2901cd82 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3565deb0 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4b4263c0 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x51bde0d6 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5a7c3918 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x625dbec4 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x680a261c usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x857b3fcb usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882a4cbf usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8d153c15 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8d1b1e0d usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8f80a6a2 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4ae2033 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa6bf1873 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaeef5a84 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb02984bd usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbc0de1cc usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcab1ab71 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce67db63 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd84ddae7 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe8e1fa1f usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xebbd1888 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeef94712 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf664df17 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf6f03b45 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x9d838e92 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x60f9893c ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xbac434f0 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x01c1b293 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x06deeaab usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2a495739 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x39c6cd99 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3baa2504 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x454dea06 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5f60d63f usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7a989f3a usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9ecd19ad usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x06b3a5d2 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0845d1ad musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x10a93997 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5f39d1b0 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5f4be95e 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 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe01c95a4 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2c2e340e usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x53db709d usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6da2000b usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xbb930e01 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd4e76171 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x739344c2 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x11499d05 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x2ffca0be tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x469b3292 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xacfb3734 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x9daa9f60 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x037ac9b1 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0cddb0b8 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x115b5271 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1238aa03 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x43021f04 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x63a97414 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7d264944 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b07c65e usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8be869b2 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa1fa0f3b usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa9c69af9 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb89e84e4 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbbd60d8b usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc84097a3 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdb1f04bd usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe50f8afe usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe7795622 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xec045dae usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf849bb08 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfb78a7c9 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x6b3d676c dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xa482d77d 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 0xfb3bdfe9 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x26ce23ff 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 0x082617dc typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0938e2a7 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ea22a26 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x12befe73 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x19b4f2c4 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29c2531d typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2f8e04ef typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x35ffe3c1 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3c878701 usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x401a9532 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49ef735d typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54654126 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x56c43a50 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x578e70d6 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57a4c8ae usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59dbb291 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5aeee86e typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x61c820f9 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63b92c11 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x69a7090c typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6aba5ba7 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b8432e6 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6db8a765 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7018c227 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x715ab511 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x75b58971 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x76e10dd5 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77a6df7a typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7816672c typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x819ef0dc typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x893cb390 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ba6cb7c typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8cf418f2 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e25cf11 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ea0e5ac usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x960667cc typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x99ad16c3 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a5d74a1 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9ce047c6 typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa0221654 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa1cf7ec0 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa46775f4 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa4919c0b typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7d7585e typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa95b3567 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa9a1eece fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaa134d29 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb280e00a typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbbe1a53d typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbf659509 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc78aef54 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc8852a05 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcf4f60d1 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd196ac0c typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd20a42cc typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd72f0a38 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1127888 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe542e358 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe858aa44 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe9a2c801 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea1cde57 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeb30ac5c fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xebb91c2a typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec02ac47 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec2d94d7 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee5099de typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf26668c9 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3cef0a3 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe557d77 usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfeb21c5e typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x03ff7e9a ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x723daf6c ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x79f59946 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8012393f ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8de4dc2a ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x90f8565b ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb646b54b ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb9708037 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbf24d18c ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x01815f1f usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0709bd21 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x087f55d5 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0c78530c usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1a8f5bff usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x24a9b90f usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2f582caa usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x313a60a8 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6dc3f619 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x71dc5b8c usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x919d8ced usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x996b4e02 usbip_recv_xbuff +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 0xebde8dbc usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2c6ee583 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7370a6bf vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x82847d5d vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x904622b6 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x95f07b83 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb3c596b7 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc82c64a3 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd7c00f0d _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdbb22097 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe188c485 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe6e7f9a6 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x5952f0b1 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x05b552fd vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1db0d9bc vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x30e0b863 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x30e21e1a vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3a5a060a vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3c96fa30 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x43b56b94 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 0x5d8ed0d2 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5ee24bd3 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6de07321 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8156e94a vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x826b5b16 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x97fb1489 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb74a9493 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc5ccc0ae vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcb39f04c vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd58ae5bb vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe5150b17 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfa29a5d1 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x09ebef10 vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x30c63bcb vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x3a765225 vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7272586c vfio_platform_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x759a6ade __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x98d0d385 vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa9ab8234 vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xacc49a44 vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xcd2772be vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd376d2c3 vfio_platform_write +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x18b1f710 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x26951190 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x27330e6d vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x456716f0 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x54bd2ffd vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5cec3025 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5ff0ac84 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60672d68 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7bd521db vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8b672477 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x92dc3484 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9f596528 vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xabff2075 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb4590c12 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb7f15a26 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb90c60f6 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbcee3b2a vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4164d6e vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdad08303 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfa9e6c3e vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfb55c2bf vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02e5091a vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04e0e535 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0547d063 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ed26bf0 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f0708df vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1574eb82 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d2b62c2 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1dd3739d vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a358616 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x330aa838 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36a68551 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x391291f5 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a809ceb vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e2e0604 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3f25a5db vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x42ee609a vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4abdf82e vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50c54b72 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b495f10 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5fb37571 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d9efd7b vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fe67861 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x720a9ccf vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x75ceaaf6 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x77e6866f vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d81f733 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81fcda24 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f19c62d vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x946cd0f6 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c7df8ca vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa534aae3 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaca8619d vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xace76337 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaea196c0 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1ac3ec1 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe66bf975 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2a6e301 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf67ac6b1 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf869fd6b vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa281b15 vhost_add_used_and_signal +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 0x0171356b ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x09243d38 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x101ebb92 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6c858cd2 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa1312400 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf6e6bc04 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf82f705c ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xe0e96c9e fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x0b36989e fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd7b45a81 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6e96d849 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7f1427ad sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x078ad09c w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x352b639c w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x48760dd9 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4b9871ff w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x51b894fc w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7aa8f936 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7b8d2c36 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x987c48fd w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd72c608a w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe5e94a84 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xecd11fae w1_next_pullup +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x18abc80b xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb364e2d9 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xcf3b268c xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe8905aad xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xf1882836 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x7226f368 xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x8f374e08 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x34543a41 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3987d0b3 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7dba9749 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b 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/lockd/lockd 0x0c8c8330 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x89b34088 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xac2d417c lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc293198b nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc4ee49b5 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe5d991c5 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe96560f4 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00c8f9eb nfs_kill_super +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 0x04613eab nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04bb863a nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0649beff nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06a8aeb4 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06af5579 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0925f43d nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09a518c6 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a487121 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10a2d0ab nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10baeaca unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16e16c0f nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18991043 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18d0f8d8 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18f989b4 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19bda2e9 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bbb60df nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2055efba nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22000ca6 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23535930 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23a51d6e nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24474c14 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cea59b9 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dc4bb0f nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ff58312 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ffacbf0 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32f343c8 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34e4f07a nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3547e7d4 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3607b140 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36333472 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x388b49bd nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b43c5c6 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3becbf78 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x406ced5f __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40852a6c nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4252e82e nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x445264e5 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47059fd5 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x493debfd nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bf22ec4 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d8706a1 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54443ea0 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54afcb2c nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b2f53e3 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5baf8f5d nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bb645cc nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c19cb06 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c6df06d nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c9a95ac nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cea292b nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x634078e6 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63b8c08e nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64e92646 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6815c8e9 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6afada26 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b1a4657 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c4a21ed nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f48a2d5 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ff692ca nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x712e3bd7 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7135c46b nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x744540a5 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74dca9f8 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x796383aa nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a4b161e nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a9616e9 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b1c0226 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7baad991 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fdd2e54 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8256468a nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82839ea0 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82a138dc nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832f9c0d nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83eae275 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85832ea9 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85fc8df1 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x870f8d92 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x883f18f3 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a79c18f nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ac100b7 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8afb0c05 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b761c66 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ed3a67b nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x912d68db nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x918f0eca __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94e0ee28 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9818b141 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a5836bb nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c1d3014 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c2ecd8b nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9db1c559 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e959d21 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1d80643 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa67b2fd0 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8a708db nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa9287aa nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab866afa nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac958e6c nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae636e98 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb241670e nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2dbe500 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4a88ad5 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9d5ab8c nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbac38a66 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbadc2806 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbcba649 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc078d113 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0a7fa29 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc19960e7 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3e0e53a nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5738c96 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc60191eb nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc65cda36 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc942a7e6 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca34df51 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc2c9171 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd07efe71 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5e466d9 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd85d987f nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdba19342 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0be4d14 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0fbdcfe nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe671bd94 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe774eccf nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaf2e98c nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb6f5926 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee9676b7 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5117b18 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf65f5c56 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8a376c2 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9fff305 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb87eb04 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbbb4b2f nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcac511a nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff4cbb11 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x6b671510 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0424780b pnfs_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 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0afb76b1 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c960608 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e9fb9b2 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f13b942 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fbc359d pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff73a2a nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1045cb9f __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1108c099 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13eda6b3 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1803d736 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1de1091c pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1dfb213d nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x221b7430 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23aae26a pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2576a53d nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28572457 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3219f6bd nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32d15441 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3520925e __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36bd1d35 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x394ce65b nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a3de246 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a7798f1 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b51f1c8 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d7712f7 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41a49e20 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x420026b5 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ccb6995 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f1484c1 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x530bde8c pnfs_free_commit_array +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 0x5ac524b3 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x602f888e pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6061415a pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60cd9d82 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61ae6fd8 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62b142bb __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63d6ede0 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67683335 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67cc89a0 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a642986 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b52076d pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7236fda9 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 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x805c8b10 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x838b8dca pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x863cc660 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b5ab82b pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cc8f3ff pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d0cc631 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f5ef71b __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x900811b3 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90b35e1f pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91384bfa nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x927b8d57 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2051c86 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2a759b4 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa352f2d8 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3dbb7aa pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5eba10a pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa700cddd pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa906f820 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa995f86b __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab24acbd pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaee0908a __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2147a5b nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb48e3b70 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8806e52 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe279a8c nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ad2e90 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc537c9cd nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb298ebd nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce3f9ad4 pnfs_error_mark_layout_for_return +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 0xd62d752f nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6fbc8f3 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd811ea00 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde68d110 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe01dcde6 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +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 0xf3bfa3f3 nfs4_put_deviceid_node +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 0xfdbf1809 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0db6b02d opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd43e296e locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe315cad8 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x25c30505 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x58b6c597 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe7aba845 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xfa6d8293 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x1577e49f nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1f610731 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7543fbd1 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x96a4c618 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa234efef o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_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 0xc10a7608 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xceda1fed o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xef7f54b7 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x009fe5b7 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x254ad96a dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6a6c1611 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7c758897 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 0xe4e53c2b dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe782e6c5 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 0x145c66cf ocfs2_plock +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 0x71ba4105 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x888a85d0 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xeaaafde9 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x464dfddd unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xe2361550 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x07e06011 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x78aadd60 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 0x35afdafd notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x3be50ec8 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc +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 0x58555f02 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa1745cfe lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x37f4922e garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x3e4030a4 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x77c5a79c garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x853ce01a garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xd9bb8eb5 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xdd5e8fec garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x290538bd mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x368fbac5 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x43a95547 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x67363710 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc593eef0 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xe4059ced mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x2fe62290 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xfd3094c8 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x8b41fd25 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xc8771dbe 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 0x598018e6 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 0x383d3dff l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x47abeb0f l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x687cec87 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x91fd4fdc l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x94212547 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa75940d9 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe2b46ef9 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeea092a0 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfc0e945c l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x98e060e2 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1b96dfb5 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2554df9e br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x335c4540 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3fd4b2be br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4b6fda37 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4d2181b1 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f7d4fe1 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5126d283 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5fd0207b br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x60e84424 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6274d3ab br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6553a150 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x681ff71f br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7806b5b3 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7ae3ddac br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7cc31737 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x96f0e94f br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x97bb5292 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9d852b57 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa6e01f5c br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb715752e br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc6bfb6c2 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd698ba81 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xebf65334 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf53ee136 br_mst_enabled +EXPORT_SYMBOL_GPL net/core/failover 0x04c0d4e2 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x1ea184e0 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xa337df0e failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05de7b94 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d412265 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e73f40c dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21204b99 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x271a9330 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37cb3118 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdc472c dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ebd6bfd dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5786d056 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5df5a699 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b27f73b dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x77b75603 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7892ded8 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d1fdc07 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x922ab18c dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x984e495a dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98dc6f68 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3bb2940 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaef1d381 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb30482a3 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5a6c1e1 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe41e687 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3072115 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4083dd7 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc862d53e dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xce447cc9 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xce913556 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd884eec4 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe57d85b1 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe999b1bc inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef7fa dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb2da734 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2b37153e dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x341a0565 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4e4d1847 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4f6c7a02 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x55ed057d dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb8821aa4 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x00b9418b dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1213324f dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1f9429c4 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x26e8ccb9 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2727b19b dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x34287e92 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x354990d3 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x358f893e dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3b944e38 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4356507c dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4d99f99b dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5100956f dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x52f91ada dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5db3d739 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x70ce38d1 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x72fe42e3 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7503e3af dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8680c0b8 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x881ee03f dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95138983 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9c6d5e1f dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa70d44d6 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6d35561 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcca76d7f dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcec9079c dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xda0254ec dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdba472a4 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbe2fddb dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdca526d9 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xef8afc4d dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3263a2fa ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x70a28cf4 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x79e243db nl802154_scan_event +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe1f5db5d ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf9cac5f0 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ife/ife 0x397c5b45 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x501d10c7 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 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa5502559 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe97cdc1c esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xeafd3071 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x2719148f gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe98b47e3 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x08049ae9 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x236da4c7 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2defe123 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x629b8c28 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7015951d inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x927594d6 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbc008c96 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd061ff59 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdce45693 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1c5fd325 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x017c419c ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x04e4c64e ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x217eadd7 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x47f3656b ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x568e5762 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6acd8c98 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6bdf6826 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6f51bdc6 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7cc9c7a6 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x82f81f46 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8321528d ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x867dce7d ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x93aaa266 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9d0e8681 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f7f0141 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc87faca7 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd1d1461d ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x7ab94485 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x56e81815 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x14b41eae nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x14b32470 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x157506d2 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x51e7665d nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x667d2a84 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x67e52f3a nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x86b48b0f nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc96f583e nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x94a057ac nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x82347bd2 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb6d4f1d1 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb92e0011 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x4fdfe172 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7ea368d5 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x362de3b0 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xac37efec tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbff80817 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc6b783d2 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfc99c95e tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x57cc101d udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7449b0f0 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8e7284c1 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x995d5ae4 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9d7369fb udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xae3f9a14 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xafc2f25b udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc8ebaea9 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x44d473ea esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc80188b8 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdc188ab4 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb247a5e5 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc3a407cd ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc9da86da ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x3daa9157 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc57b4118 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xceadbed0 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x4f8935e2 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x23d5ece4 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x362954de nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x414a4245 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x42885bfd nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x91769590 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd582320c nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd88ace45 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x13c7f6c5 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x19c09be2 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1ddc1cb4 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4d7c72c8 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7829701e nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xece04507 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0742ae7e l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c4d13a2 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x25cfd725 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a8d8880 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4154168c l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5ad07141 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ad85c70 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6fd95f2a l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72eb4ea7 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7b1d71a4 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x881a49bf l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x896dcdfd l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9d675485 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa184c670 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb622a91e l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb79d74e2 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb840a049 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcb6f6b44 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4a10ea0 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf26eddf0 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf464d1c5 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xc2fc82c4 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xb1d753e7 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x10c64438 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x12e31f57 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x148d6673 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1a0faa1b ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1a5c6339 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x26386fd3 ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x37876126 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3936bb07 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39687188 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b596de9 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x76767243 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x832e7d75 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x853d0e22 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x90214dcd ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9466876b ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xca41dd0a ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcf8f0600 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd554de10 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde3fe705 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeab6a1bd ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2fd55c6 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6569d12 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6e7a512 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfbdbf16c ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfbe0f96a wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x061f1e0a mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3c4501d5 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x78fe6f87 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa8bddc66 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe711ef3e mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0d962049 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1a41f5e2 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1be2589b ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x23682fff ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x305ca044 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x30788375 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x426a8cf5 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4f291eaf ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x69bd4cd2 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 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x88012bbc ip_set_add +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 0xab0382f8 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb58cf3c4 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb689cddb ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xba8e430a ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc057b90e ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xddc63f59 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe7c62f9c ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xef1dc311 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf05db19e ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0ca60424 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3eda4a3a ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3f6bf255 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xef6b2233 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x53728206 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7fa5ed9d nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x82521f9a nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x925a0295 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe7e5dcc9 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x6357036d nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7f9afb9a nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xc703ec0d nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x79d9209a nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x85f5f73d get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x884c4610 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0b75f7d5 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x04e93849 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2a5b4c79 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x480a074f ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7aac0059 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb48dfcdc ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc0f11e43 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf026efd6 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x109c5c68 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x15b81e58 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x12b38f7c nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x48bc920c nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xdc2c143f nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x21b5819d nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5532107a nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5b78c99f flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5ce1a27e flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x76e0dc6e nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x77c99ee0 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8032894c nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x87c5edef flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8b93f8f5 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8cd51861 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8ede0b8b flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x95ecaa17 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xafa37649 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcbb63b7a nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd9e215d2 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe0d3ea71 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe58fa3db nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1748c0c8 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1ef70ff0 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2e022982 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2fb57bb4 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x64608fbe nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x741a3a86 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x848ca009 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x873eeb28 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x87e3fd9b nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8c091c36 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8c220a56 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9bc292a0 nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbf382003 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcd33b785 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd7576263 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd15b704 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf1130a40 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf4f5c9c2 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11f04633 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x12a235b6 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3e17a0d6 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x46406d9b ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x732b6322 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x82162aa8 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x976df162 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9bb4641d nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcd29391d nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd033b69f ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd48b77a8 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x032b9b5e nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x039d65fb nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06d3c49b nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16cc70f1 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46051359 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x480ae8a7 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4b33b847 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c2c43da nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d0d6226 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d179161 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5066359c nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51bfedbd nft_unregister_flowtable_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 0x6a1e484e nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a472221 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d49ff42 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ea8198f nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71ca45f4 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7206c603 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x780965f9 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x802e0f98 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84dbc034 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a130642 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f0d24ac nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e239c90 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaa8f32d1 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xacb083af nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb876991b nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb9d6bf0d nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe7a2db9 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0605dc8 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3d27ac8 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd82cdbc9 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde033041 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe839ec0f nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb855b93 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xec1dd245 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf30d4718 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4ef838a nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa114b2e nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfe0bc704 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfebd0c24 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8b87aa89 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbdd8d1ee nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf1c83c3b nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x353e2052 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5241fd4b nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x191dec4a nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x25bf9a7e nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8589c999 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb73a8e7b nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xdc9c633e nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4611d310 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7774092d nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfd3ca540 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x13d349de xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x17d52bcb xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20576765 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c9a853b xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46967f25 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x48e18b20 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x547cb608 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x54eb3013 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x607cafff xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x65684dd8 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6b1e589c xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6bc3eff1 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x732e5eb1 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x75280832 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x760695d4 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76183883 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7cf69df2 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa2418dd7 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xabdecd88 xt_request_find_table_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 0xcc687032 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce61e3aa xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9629d4d xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9d65104 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x325a8fc4 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd8c20fb5 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5a89e9d3 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x743d27a6 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9906f5fb nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x203d73c7 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb12a4483 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd6c29968 nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x06604ada nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x79db7757 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0b9e5af1 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x263fd659 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8139106f ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x88c007db ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa453cd1d ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc2a2e518 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x9cbaf900 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x9d1795a2 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xa87e6c97 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xb387440b psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x088ae790 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 0xccb3bc95 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe4c1082b qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x003ee302 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x04dfcee0 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x259b9bb0 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x31af4f84 rds_conn_create_outgoing +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 0x46c93309 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x57401499 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x58bac1a3 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x5ac9a1bd rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x695b9a7f rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x7111258f rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x7814b595 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7bb1c593 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x8845413d rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x9a0f1395 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0xa23df38d rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xa3e7e02b rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xa4173dc4 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xb3f73813 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb65f1484 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xd196fc16 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd1e5142a rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xd763952d rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xdc9ed1e6 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xe55e60de rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xe7b25e32 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xf48633c7 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf8720356 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xfd73d2d1 rds_trans_unregister +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x88782c96 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x91f024c6 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x303b4983 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x77ffb2d0 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x792cb794 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7e7fd99f sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x1e56c4f4 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x239d15c3 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x2c33523b smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x525de59d smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x5efa4de1 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x714869e0 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x786b3460 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xaa6190c2 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xb83e70fe smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xf757e88a smc_unhash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x24d1102f svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3656309b 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 0x836c8016 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcd4529d1 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x016567db xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04af61ff xdr_shift_buf +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 0x067911a1 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0784236c xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x082eaeef rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c42de4 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d8f3735 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f834d70 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x117e4351 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1401307b sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14dfbef1 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x154cfa47 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15d765af svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15f8f236 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16d6611f _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17078526 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb81017 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bc5c026 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f67a997 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20b19110 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23204a73 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239e3a6b xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23c9fce2 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24facf6c xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x272dc409 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x278f7da9 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27b4e689 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b123f1d svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b633229 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c065eb4 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e9705a0 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fcbd705 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31105cc3 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32201d90 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32c1c179 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33da74db xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37717319 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a678c5 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37f1a2aa svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b63547 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b6eaf48 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d6fa3d1 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d701207 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ec630fe rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3feb1d56 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x429a6537 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42f9b357 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4370c6eb rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x472390f0 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x487ce98e sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488d7d4b rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49412268 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0294e7 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b37b770 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c020591 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d1c335f svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8593f8 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50224b08 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5040fab1 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51b12ed1 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51d1333e xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5420d8ab rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54b77b91 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f763f8 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56c93e67 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a36097b rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cba50f3 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f02e8df rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f11eb1e xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb19a17 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6027c3f3 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641254e7 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x647d26af xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x656359a7 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6783c816 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67d8c303 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67e65b4d rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6821cd5f xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6837ec51 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x684e9edd xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e529a9 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6950530d svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69d8cb87 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a7a9dbf rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bd96595 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bf598b6 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5cdaff xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d7364e3 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eb36b4b cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f143cbb sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f6ff738 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fc2a097 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x704b26be csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7050aaa4 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7152e4ef rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c8c4ea rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72151d29 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e6d41e svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73e23df7 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74e49e4a xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75665a47 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x766dcbeb auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7720a343 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7746024e rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f86d29 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78694127 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c4f3970 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dd1c3c5 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dfca057 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80a9590d rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8389d5f3 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x846a2bd3 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85fbfa3e svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86794856 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8afd7072 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bd6b6a1 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d131569 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e651787 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd19731 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x926a7e96 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x930e8877 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93a97155 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ef0ef8 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x942c6277 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x942cdd00 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x952a77a9 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95de1436 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x961a0257 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96f460a2 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96fff260 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x973126c2 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x973eae9b sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9756e1de rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b49945 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98e18c6e rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99d4f02b xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a23209d rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a420667 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b0bf49c xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b244306 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b507158 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cec35dc svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d366e26 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eaec1ae svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0a48889 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0b01055 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa43670f3 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4cb9f5c rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4f7bb9e rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa50de609 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa74b3bfa svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaa9ee3e svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab563a40 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaba8e8ee xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac1701c7 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac73ebfe rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadbad815 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb08a37db rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1f92afc rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb209502d rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb28e03b1 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb29a7bd0 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2f6250c rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb50ef49a xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6616dc0 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7d4e277 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb87d34fa xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb00c281 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb6097c7 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbcecbee svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcf7362e rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe8e59b0 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfa0b18e xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0476cc2 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0cf819f xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc28de0bc rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc44df6bd rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc492b549 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4db0b90 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5116f60 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc68eedb6 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc717d572 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9488e4a rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca2d06eb rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccdf1567 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce69343a xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcff23fb2 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcff4a6e9 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd08c1fc5 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0d273d6 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd27c26a6 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4251366 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd57048c4 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5a5a1b5 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5d893a1 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b50bf1 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9f34588 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb5a9bad sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc8a19ba xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcf87f14 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd87ef8e xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddcb8127 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe003f35f rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe079c125 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0b4a4cc svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0be0179 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1c2f900 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2629129 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2930f6e rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7053cfb rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe847daf9 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe87a15f5 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea1d1374 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea206762 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecf82680 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed8e6639 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeab2bb4 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeed8494a rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef20604f xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0929e79 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf18d09f8 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf30cd1c2 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf33a9445 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c46425 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf40d5c64 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf50a96bc sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5f436b4 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6b8d70c cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74232c6 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7764a21 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf79c92e8 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf88f8e68 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9428b0d xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb59bf8d rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/tls/tls 0x4da1e9e9 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x6b633c8e tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xbafd5d0c tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xc7d50f8f 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 0x04572188 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a383bd7 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x169ed818 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17d466de virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a14faba virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25e127f8 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b74e057 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68ee2529 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e3ebc63 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74288221 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x742da63a virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fec03db virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83b77092 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x933be583 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x97396092 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa3f14b9d virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa68b039f virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa85e0dba virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1030d10 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb3e15b69 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb70efcdb virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb899fcc5 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb99566ee virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca008479 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca648c7c virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca84aeda virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcf47a413 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdc4644ab virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2ce47b0 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe5cac531 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb57a9a3 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7c4a7d7 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfc9ea00f virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfe0c031e virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x11896e06 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1ffcb56e vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c34c1b0 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x33f95503 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3523c51d vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42963e6b vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42ad161a vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f60e8bd vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x501d6303 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x52fba552 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5d51687d vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70242419 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa516ca4a vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf4a234f vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc916dd2d vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcf978753 vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd3b158ec vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdf74e707 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe1330129 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe431ec44 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe826d36b vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0940eea3 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0eb1a3f1 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1e4c00c2 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2e69af01 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3980607c cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x54a82cfe cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5ed939e7 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x69e8fa6a cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6eb8bdbd cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8892c679 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8f43e66f cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9770da5f cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc9312c60 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd0bb7b65 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd0e879c6 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe92a72ad cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x07ad999d ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1844bdea ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3eb49fe8 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf72e2c0e ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy +EXPORT_SYMBOL_GPL sound/ac97_bus 0xc0ac3ea1 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 0x0b498e7d snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x1b676b14 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x3744de3e snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x66655023 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x667c46f6 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x6b74d9cb snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x6b778664 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x6e9e5561 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x70f720e5 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x852c8744 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x8da60951 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x8ec2655c snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xa44ba238 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xd3aed92c snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xdb08d4fe snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xe3d3914a snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xe9d7bb04 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 0xff4e30bd snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x37b51a2a snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xe70bc33a 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 0x2ad0ec07 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x40aa70ec snd_pcm_stream_lock +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 0x694e5498 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x821a4c60 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x897f318a snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8a836a53 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9d61a387 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9e158fb8 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb57b9e24 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc7593d87 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcb579172 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd4658e1a snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe69178a9 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xec83a7e1 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0bafbd48 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x25d51d65 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2872dc62 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2963bfb6 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5763268d snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x664747b4 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6fd16a1d snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7adeb6da snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa5995075 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xaff8a176 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc1f1e1e7 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe321d3e5 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x19c8cc64 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xadae997d snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x08d9565b amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x290f370b amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3cdb94d7 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4713dae7 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6d9e0de5 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x821cf34e amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa8393456 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaf25e170 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc75d3319 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd02c6bf2 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd61e27d9 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe18b6acf amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf63d1c85 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0810ab52 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0ca1ad4c snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x134d9a70 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1b154d55 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2c3dccea snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x38c34d63 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3b05afa1 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4418faef snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x484470f6 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x49baa83b snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x53da94c0 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x55e16de0 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x604f837d snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x64f1794f snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6c63be66 snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x80bca51f snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x83df623e snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x84b3babf snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8a97c24b snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8b1245a9 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x92cceed8 snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x989614f8 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9d746138 snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xabf851a1 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xade6e315 snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb5d26108 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbe089cbb snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbed942e9 snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd0ddfbe3 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe4374c55 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe9607988 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05920239 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x087a40cb snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08aac403 snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fb68c1e snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13399310 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15e0b09b snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x168385ac snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16acf685 snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b548f28 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1dd5221a snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f252683 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2814ba2a snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2aa56624 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d8189ad snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2da6631b snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e7d3a2a snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x334b04e0 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x339e6ec3 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x359c16c9 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a84867b snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b438975 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b9a86fd snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ff3bfe1 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x409e61c9 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48283b7f snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49479927 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c8082ce snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4de821d4 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5166f1d6 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54b473cb snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66150178 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x692a7ecb snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c7a1627 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c8bca01 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d1f46d0 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ded7ddb snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x863ec0bc snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x886930ed snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ab226cc snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8da23b56 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91a1195e snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x932d0d37 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x954f6a90 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x955874a1 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c4fc3a5 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c8c9a83 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f061578 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f610a96 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fcd486f snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2b9ff3b snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa30680e5 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6180616 snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6ef47ce snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa18ce93 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab8e5c38 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xace0a10b snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0a4c819 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb52e1462 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5c94a30 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7042b6c _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb752fbc5 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8a18058 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb99fe905 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbae6158f snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd7f5c39 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc06f1dc1 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3e9c227 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc448f250 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc76fe1e5 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcae424a1 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcba9d2f9 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbd1e9fa snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd45f7d71 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbd27b90 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddd5f4aa snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddd90431 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3a60034 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe41644ee snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5844bb6 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7e218af snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed63d682 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed9b6396 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeda51b3b snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xede93af2 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef579449 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0df62fa snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf12d890a snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf56465a9 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf641b80f snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8ea2d22 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa16f4a6 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb23a8c0 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1cb4f098 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x53115a90 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x53388b82 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x62f4e7b8 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x38e43531 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4985e3e0 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x97308043 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa54b8dac snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa73ca3a2 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa7e22ca5 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01503003 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02a4cf9e azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0315b564 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x035bdd2f azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03e08da0 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04050e1b snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x040de4e4 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05ee9169 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06ca4a2b snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09d14fba snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c870ce8 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e6fa4bd snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f8b9bde snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x109a8234 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13f737d5 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x155ce849 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1785a8a4 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17ddcbe8 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c3304b1 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e0833a3 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e9e594f snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23684aaf snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x246ef889 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cb88936 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e1f5193 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34612f7f snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x347a502f snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x371efd36 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38f3ad7e snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3951fec7 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3965d235 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3eabe01b snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40615328 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x407be5e1 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4099ab90 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41f6669a snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4255bb4f snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42bae19b snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45108ccb snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c4570f0 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4feefdf0 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51c5865d snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55fd636e azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x579213f3 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59d1fc0e __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ceb089b hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f913978 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60290e68 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x627c524d snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64195375 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64fd8f83 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bd9750d snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bfc6929 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e95ff97 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6eeff0f2 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70099b9c azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73cdd69c snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x756be36a snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76a241bb snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79240b3c snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7da21f5b snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e58bae5 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8098aa84 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8187aa82 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83a1cf19 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d0a5b55 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d1ca6b1 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ee04b1d snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94251dcb snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x954e978f snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97498e3e snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9763dda7 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97af78c8 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97ebfe03 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x992044dd snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99a33b13 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a008684 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c980e79 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ce83b03 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9df1c5a8 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fda2ba0 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2967b60 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa37b9a5d snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa709409c snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa85c02dc snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacbd8484 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafbe5728 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1da66e8 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb68083b0 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8071859 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb84286d1 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba8a33d0 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbacef9a7 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbba8cc7d snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd022832 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf5ec415 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc15176cc query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc219f562 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2b4dfed snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5c73e05 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc620d0fc snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e25086 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9c1b193 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca781d95 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb769792 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfc5e366 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd222be96 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2758197 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3456e1f snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd62f2205 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9371128 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda654ab1 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdadc716f snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb25bd96 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb86c709 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbd7a245 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe08b58f9 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe16fa9f2 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5192411 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7044bf4 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb5c34fd snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefd53c30 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2ade859 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf32960bf snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf58759de snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7f89bd3 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9bc3c30 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc324a0b __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd674e1c snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1f85a46b snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22ee7114 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22f56c63 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x23d896c1 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31b3d833 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3d623d4d snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5a4809a8 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x634f605e snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x67bba76c snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6ade7549 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x72a0c8c7 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x72c39852 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 0x77db23b1 snd_hda_gen_fix_pin_power +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 0x87746cb3 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ff28804 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa89ed5fa snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xac5a3d1a snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb5dd199 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc161777c snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcc766a6b snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdf8a1db8 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x265ad022 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 0x095df938 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x43cdc265 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xace80d4a adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1af3be29 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x286cda37 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3708041e adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3a3f53cb adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8183e9cc adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8961cb4a adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb466fdaa adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd47c18f0 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd5b53825 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf0d34552 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xf3fe8a2f adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x240d551b cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x45d5d395 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xf04a94df 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 0x143e6e58 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1f5323fa cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2981ed13 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3304c06a cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3a4e5bdb 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 0x501f3ad1 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x728b8c2e cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x752d659d 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 0xad3dcdbf cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xde639d19 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe571f490 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe64a3c0e cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf1b3778d cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4d31c13b cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd5c4f7af cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x03456848 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2fb73d5f cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7270e361 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x75bd0b12 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa9e5c1fb cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1e690575 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3fbbc95e cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5c6437f1 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-es8328 0x686626fa es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa70dd0a4 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xc056552b hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xf1b32fbd snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xf9cfb65f soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x5cda2dac lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x8ebf99ca lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x22ca435d max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x191d63bf soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x4facda64 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa305e41c soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe0f430c6 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x0a49b5b5 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x97838414 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x9eea7228 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xccf6943b mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x05779d9d mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x5e028db2 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x6b0b0227 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x9ebf7a28 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xe266eaa8 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 0xea8b0c3d nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2ef97ae3 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc0e866f7 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xecc471ec pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa9db47b0 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xc758cadf pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x32a84731 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xdc5b9c1a pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1cc8b7d1 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x60e573c2 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9c1b0084 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb0c3f860 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1d99b219 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4308e2b1 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7456a3f8 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xdbf8673b pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x07cfdb8e rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x17c1e689 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2e37857b rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x54f6d1d4 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa895b2b0 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcbcc2b72 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x09369365 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x95b51dc3 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xb273d081 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x05a58c33 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x8635fa19 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 0x0d18594a rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x35ac26b4 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4ed035bb rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5917cc7e rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5c9d5d13 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6de9c954 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x78aaaad5 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7bf6aa52 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x84835255 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8e9dd5ba rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x90c11151 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 0xe6057398 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x977fdd45 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3489a037 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x59225be4 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x864e34c5 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x96d1f424 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa0e4033b sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x492c4145 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xf4fa1c09 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x9b7e4a8f src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xb66bf3ac src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x42bb8d30 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xaff5a950 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe634cf3d aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x6822db62 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x3ae4d972 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 0x495c789a wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x56fe4344 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa2ef8e6c wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xacd7c2ff wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xff184e44 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1042574e wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x109bb275 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x10f0fe94 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x23492349 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x28cdfa3a wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x29309d77 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x36810145 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3be9329c wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x45d18093 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ead1275 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4f7798f6 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5380306d wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x61c85ecd wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6accb0e7 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x77156df1 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9119e21a wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa8235027 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaaeddcd3 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb1c690e9 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb16f1fd wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe6428dcf wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xeab5a215 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xebaf3a9d wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xefe0ab2c wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf9b11bd2 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0ec2c33d wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2a4d8411 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x4dcf02f5 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 0x7413611e 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 0x7d2fdb23 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa567b650 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xbef36b3c wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc914861f wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x3dc64373 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x57594c8f wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x71a93968 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7d46d5d2 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7fda1316 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8b427476 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xf678db5d wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xb1144739 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x40867569 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xcceb5879 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xd1de92a6 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xa32667d1 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 0x38b98a4e audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x12191c75 audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x251c11f3 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x8d2067d5 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xc11d511f audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0709aa58 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x09a938c0 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x13e13a72 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1f09a1aa asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1f97b43c asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2255696b asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2ad4a152 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2d75f2d1 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x50ebabc6 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x55f24414 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5cec4697 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5d1fca06 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6c923fa7 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x94463931 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaece37be asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb7fb787a asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc9d22e04 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdd454425 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xde1fe4fd asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe7a95c33 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf7c01bab asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfc70e38f asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x19c66d7b mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x23e9e51a mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2696f343 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x288be61e mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2fbd35e2 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x326ad022 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x53bf7b37 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x59d51233 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5f34ad0e mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x701d420d mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7cb7af1c mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x837b0b5d mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x906f8236 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x97b74757 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa2fc70bd mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xacb8bcd1 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb2ab873c mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc59d9c1d mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc6926278 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xde12f58b mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe32c1e94 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe5628665 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe951f046 mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe9f4dc5c mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xef48cba6 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf35fd26d mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf7503b8f mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8995035 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0x409be7c8 mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x3a71cb07 mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xa3dad19d mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xc0214f33 mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xcf9b63a6 mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x4b1adab9 mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xbb0f45d1 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xc52ce1d0 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x00c8cd66 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x11412c85 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8f46e105 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa6773c4e axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc1a7cd71 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcb7c618b axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcc1f3253 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe4e8def9 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfab93761 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x122ca0b5 axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x251a15ee 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 0xef4a0d56 axg_tdm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x2e6ae0b3 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x0317c6ce meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x11788def meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x6ee65bf0 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x771c736b meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x84099c75 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8c5ed75b meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x911ae11c meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe787b1e0 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x28644951 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5420b0c6 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x57fcf04a meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5bc8c31f meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xbaf5344f meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc8903369 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x148408f9 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x46750870 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x8dcb8225 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x38132086 q6afe_set_lpass_clock +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 0x8f5a5483 q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/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 0xd42750e0 q6asm_audio_client_alloc +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 0x6b5dc722 q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xea1c39a1 q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xf0d4e930 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 0x0a499a19 q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1ac2b03c q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x270db1ec q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3ab4f528 q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4c09fe26 audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x50be0309 q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x553a8cfd audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5ec61195 audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5f8cbcee q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x68ff4704 audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x69085252 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 0x835673f4 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x83c36e26 q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9be80e89 q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9f1e6293 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa442feb0 audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xaba9a816 audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xba878507 q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xca60bddc q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcedae1a0 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe374557f q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf7c15485 audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x2db4725a q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x406a6e2c q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xbab0554c q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x21cdf1c2 asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x3ae6d16d asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x418eea53 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4e5794ab asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x658ab5a6 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x9201efde lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa8772b03 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x0eeae95d asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xcae56964 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x42e58f5a qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x6b261913 qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x933486bb qcom_snd_sdw_hw_free +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x9c197d6c qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xe7955d9d qcom_snd_sdw_prepare +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 0x00c5f3c0 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x014fe7af snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x023448c8 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0296cd7c snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x040457f2 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0471f812 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x099f293e snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e6a8f8 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a137ead snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b72e0ab snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c366e16 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c80bd3f snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d0589b3 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d636854 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f9bc33b snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1039ae66 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10af396a snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1290afca snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12c3c757 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x154737b2 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16f3f2d8 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1740b7bf snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19b11592 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b0de0fc snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b26187d snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bc8c875 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bd51c72 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c092574 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c2ff220 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e099616 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f286f66 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21f8ff9e snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22242de3 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22341520 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23fc625e snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28997e51 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28cf4ea9 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29c71ba8 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b28218d snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bf28ec1 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cc7ae9d snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cef7df3 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d7671af snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dce88d3 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e002d0a snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3038c1f2 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x304eab86 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33f56a5b snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x364be381 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3926b3f8 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c09d3fa snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d9e354b snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ec1f9dd snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f86686e snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x400fa6b7 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4263a5e5 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42f286ac snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43313688 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4381c512 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45b94fe0 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x466d4412 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46e34775 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47385b14 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x473adda9 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47d1a745 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48d45f92 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49da72fd snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a0099a5 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aaeb8e8 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4adb3508 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d294c65 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4df5ebd0 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50593b3e snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x509bc91b snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52436f77 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52bfacfc snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x543f9058 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54e09759 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x565c7339 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x565df09d snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5896edff snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58a2139d dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a2e7b72 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a906d01 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5baf842d snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cb6e13a snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e6f90a3 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f7a236a snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x621c146b snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x629a67e9 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x657c06f5 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6694c8c9 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x670197b7 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x672a160e snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x675e04c5 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69969791 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c539ece snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c938257 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e7f4198 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fd7261a devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71bbfc80 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72c9a6c6 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x768b7ac2 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x768bc8f4 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x775df2f7 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77d9968b snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79e87ab7 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a4f7635 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b211850 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c30bdda snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c3880cb snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e798d99 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f8a7bea snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x810e32ac snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8136ab7e snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8217a1f9 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8266b648 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82941ac5 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82d72f5a snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83b2cf99 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83d97737 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83f037a2 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x842677ce snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x891fd914 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a77c946 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d80c0a8 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fef6fe3 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90fb16f6 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92e1c318 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9353f2b4 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93e03017 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9720f8af snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97961960 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97bf802b snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98d15830 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e02dbf7 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e0ca42f snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f5d92ab snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f74d947 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa13288df snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4d2c27e snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa61fefe4 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa696c61a snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6dc98ae dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa74e810f snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8325ed6 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa987b9d4 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabfd2adc snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf191984 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1e6a5a4 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2ebf0f2 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3a0c640 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4280fba snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f33482 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb78ce057 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7ee6f04 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9dcf2c3 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbac26c3e snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbacb6f98 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbae7f1a4 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc1561ec snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc557836 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcc52807 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbef35a99 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf08fbeb snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf94d880 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfce46c8 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3fe914f snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4fbae15 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6c8480f snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6d71f7f snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc84f5d7c snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc876b459 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8d5d0b4 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca705285 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc7a985b snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd214c7b dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd67f9c1 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdccc4b6 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf5c07d4 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd30cfd11 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd663a3f6 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7775266 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7f6811a snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd814f1d0 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda5a92a7 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda8324c8 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb2cee85 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbaf049a snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf579192 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0f5afe6 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe101794d snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3907b22 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe421ddcc snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe67c2995 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7211282 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe75eca48 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe854078e snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebb89ab8 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee5d9973 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef2be1e7 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef458918 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0e7e92a snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2214cb2 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf227c235 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6176ff0 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6585dc1 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf834299e snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf873babc snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa226110 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa2ac543 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb1b5d67 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe6d8e72 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x30d38366 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x85d9a73d snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x91209ce6 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb264e83d snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xefac654d 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 0x42cce6b6 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xf8a724c4 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x46f8b546 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x584ccd82 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x80e97aea tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb333c170 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xbcf01f1d tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd15df707 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xdeaf42a4 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe8102246 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xedc8399f devm_tegra_pcm_platform_register +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 0x9ead96ae edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x4ad45afa sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x8abeb173 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x012e2723 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x05fb402b line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x12a0eede 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 0x2b7e6875 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x37b9364b line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x39b1ae6c line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4cd7fa28 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4e1629d4 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x66208126 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x89d68788 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x96d4d522 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa42502d3 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaf39a3f3 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbf2c2ca4 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe8b7b29e line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfff93c34 line6_init_pcm +EXPORT_SYMBOL_GPL vmlinux 0x00016a95 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x00088376 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x002044f3 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0028ba5b cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x002c2b3e sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x00316d49 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x00408a01 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0040c5bc vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x004a69b2 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x004fa62a tty_ldisc_receive_buf +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 0x0063b9ec devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x007a7a56 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x008013d3 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x00813147 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x00944741 __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x009c57bc fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x00b101d0 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e0c23c destroy_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x00e7a0a4 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x00fa230d nf_connlabels_put +EXPORT_SYMBOL_GPL vmlinux 0x010e46ea fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x01138c82 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x011fbdab preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x012b16d2 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x012f004a xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x01351caf fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x0138e09f of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x013e886d dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x0141d501 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x01455edc alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x014a5496 nf_ct_expect_put +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x01565b73 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x015d8cd9 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x01761ffb kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x01762dec usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x0176fa69 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x01796148 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x0179c621 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x017ba5c1 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x01850555 nvme_auth_generate_key +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01935006 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x0193b2b3 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x019e9efa irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01acc0d2 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x01ba448c spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01c9f0bf regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x01d83ef9 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x01de2e1c shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x01de756a gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e56633 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x0201bb47 nvme_complete_batch_req +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x0214f83c regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0228f6a5 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x0235382f devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023baee5 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x0242d05c fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x026c29d8 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x02922fe6 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x02a35b98 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02d272f2 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x02dbd727 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x02e0832c regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x02eb8a37 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x030b60d7 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0316cf8b extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03281d31 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x032cd825 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x0332042d tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0354ae5b scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x036326f8 pinctrl_generic_get_group_pins +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 0x0373766a sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x0375746f wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x037af331 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x0396ca09 nf_ct_untimeout +EXPORT_SYMBOL_GPL vmlinux 0x039d9d39 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x03a3489e __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x03ab4df1 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x03ada385 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03e29601 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x03ebc26e nf_ct_kill_acct +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04049aec pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x040d57d3 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr +EXPORT_SYMBOL_GPL vmlinux 0x04165161 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x041c229e usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x0429951e sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x042dc95c usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x044237c3 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x044e114d stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x045179b5 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL vmlinux 0x0458a563 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x045e9292 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x045f21aa nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046ee002 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x0481e29b iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x04836db5 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04952086 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04a6ea85 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c2fbf1 regulator_get_drvdata +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 0x04dc17b9 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04fa8df4 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x05061caa bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x051642cb crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x052480ee nf_conntrack_free +EXPORT_SYMBOL_GPL vmlinux 0x05264c8f proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x052754d6 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x0536b336 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x054b2815 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x054b909a devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x054baaae devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x054df040 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05527dbf tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x057918f4 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x0584940e pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058d98ac screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x0599f5eb rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05a39eb5 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x05a78c0e virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x05acb555 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x05c1f58e mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x05cf722c __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x05e2bdf7 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x05e4199e __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x05f0b98e rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x05fc1db2 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06052cfb tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x061239cd crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x0615f88c xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x061a5f91 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x061db1df md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0627c809 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x062b47d8 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain +EXPORT_SYMBOL_GPL vmlinux 0x06364266 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065f8af2 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x0668d00a iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x066a6094 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL vmlinux 0x067e84ff dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0680e54d tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x068e22f0 meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x069152a9 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x06952e47 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x06995fe9 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x06a3dafb list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06ccf996 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x06d9e4fe pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x06eae24b xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x06ef2c94 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x0706b641 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x07090603 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x071a4952 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x071baee0 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074c5365 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x076185ef clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07661c18 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x07685214 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x077e91cb blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x07833e1d kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x078d51b5 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x07ad808f switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b2d4b4 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07bf658b devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0x07bf67d2 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x07d913c8 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x07f57bb2 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x080aa0ac sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL vmlinux 0x082becc2 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x082f66fb regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x08322162 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x0839048f wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0842055d dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0x08446e0f pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0x0847edcd raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x085e35f0 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x0881e771 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x0898e946 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08c4d74b mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08d1b9a5 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x08dd9e8c xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x08e07eaf device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x08e81a47 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x0902e059 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x0904024d ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x0905a5fd fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0909c767 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x090ca4d6 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x090fc937 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x09195a77 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x091fbace regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0925e83f of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x0941d0f5 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x0944fe38 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x09508cfb switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x0953c065 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x095693a4 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x09587a42 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0960b715 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x097b9577 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x098b51c9 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x098f0964 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x099181a4 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0992dd7b devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09bfa4ef devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x09da03d1 mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0x09e31e1d crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x09e83031 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x09ea29d0 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL vmlinux 0x09f26aee iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x09f2adfd sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x09f3d652 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x09fd883d __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x0a0b977c skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x0a268ab9 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x0a275cd4 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x0a2d6a27 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x0a2eaa10 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x0a3127fd soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x0a35db2f inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0a3a88b0 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a5e4ccb sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x0a6df0b8 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a861ee8 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x0a9c0182 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x0aa7eaa6 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x0aaab742 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full +EXPORT_SYMBOL_GPL vmlinux 0x0ae2551e follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x0aed1b58 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0af634d0 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x0af6991d wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0af7123c usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0a503b mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x0b0fccd6 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b43eb54 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x0b4a02af led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b597af8 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x0b5cd0ba devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b6ec19c lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x0b80299f cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled +EXPORT_SYMBOL_GPL vmlinux 0x0b912638 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x0ba9a768 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb6b9f8 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL vmlinux 0x0bc6bd9f mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x0bf2a9bc usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf50844 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x0bf54800 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x0bf909f4 stmpe_dev_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0c0628de nvme_mpath_start_request +EXPORT_SYMBOL_GPL vmlinux 0x0c1893aa __nf_ct_change_status +EXPORT_SYMBOL_GPL vmlinux 0x0c1afee0 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c2fb386 disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0c408dba extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x0c45865d ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x0c4a45e7 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x0c51a1d7 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c71373f crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c84153d pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c844b61 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8f7eed devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x0cba8bf3 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc2d432 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ccdc375 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x0cceae6f pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0cd5c0c1 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0cd68cd4 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x0cdef758 acpi_dev_gpio_irq_wake_get_by +EXPORT_SYMBOL_GPL vmlinux 0x0ce04529 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x0ce37ace xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0cecbadd icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x0cf9855b of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x0d11b409 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x0d1f4e32 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x0d1ff9c1 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x0d2aa238 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d34c8f3 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL vmlinux 0x0d3cabca dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d3fe749 ata_ehi_clear_desc +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 0x0d4f0f7e mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x0d51ce63 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x0d5a21f5 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d6f9344 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x0d84c3ed mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d8d2cc1 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x0d932cbb of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x0d9d4408 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x0dc12f2e class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0dcce691 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x0dcf1607 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x0dd77956 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de86950 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0x0dea95d4 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x0dfcd2fc __percpu_init_rwsem +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 0x0e33847a pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x0e3854a2 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x0e48191a platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x0e4fccc4 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x0e56ac4d gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6b0732 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e728ad9 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x0e731cb8 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x0e85300a power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x0e87d32e subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x0e9417f5 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x0e9f0e7a nf_ct_seq_offset +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0ea6c43c usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x0eac4c0d ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ebe9b95 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0eeb0fcc device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x0ef67b30 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x0f02041d fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x0f166c9a blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1d0f40 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x0f2311dd of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x0f2b6b7c acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x0f2d8205 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x0f40f7b3 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f848922 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x0f91c8c6 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0fae5797 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x0fb0be2c ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fc765e0 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x0fd3a087 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd5fad1 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL vmlinux 0x0fd6329d rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0fe3cc90 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x0ff13f0c tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x0ffd4852 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1004606f blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101f6234 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x1020e7c7 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x103c6328 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x103f0a23 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x1043f72a sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x10517817 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x10583ab9 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x105b671f device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x10609a66 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1069b5ce __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL vmlinux 0x106cffd5 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x10708105 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x1090811e devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10e9f179 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10efa7c3 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x10f7aa19 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x10fa8a10 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x110d2d3b uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x1117cde4 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0x11216df7 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x112f0c0b iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x113b6a89 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x11533c61 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x116e2b75 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x117a239d __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x117aca71 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x117bed95 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x117d8f86 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x118d3f2b hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x1190f1fc of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x119a2ff4 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x11ae8eb2 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x11b0ad41 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x11c38a78 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x11c74961 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x11cf97ff __phy_modify_mmd_changed +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 0x11ea150d rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x11ed5c5d od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x11eee1f2 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x11f9e3b7 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x11fc517b ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp +EXPORT_SYMBOL_GPL vmlinux 0x120c6514 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x120fbc63 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL vmlinux 0x12191a80 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12259890 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x1230aeff pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x1231e241 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123813c4 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x124598ba k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x1253b7ba phy_create +EXPORT_SYMBOL_GPL vmlinux 0x126052dc phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x12611077 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x126ef3b2 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x12a106a4 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x12b71b72 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x12bc29e8 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x12d02954 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x12d113db spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x12de3ee9 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x12ed763c xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1300b89e find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x1315a1f1 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1330650b l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1345ad82 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x134b78ac ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x134f56e2 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x13552018 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x1356b320 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x1359dcad xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13633feb nf_ct_remove_expectations +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x136e1b40 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x1372e85c vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x138a3dfe dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13921c86 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy +EXPORT_SYMBOL_GPL vmlinux 0x13b1862e regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x13b47ab4 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x13b69996 meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x13b85473 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x13b9858a fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x13ddd838 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x13e9b91e dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x140103ff __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x14027b88 devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x1402e848 io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x140d01ec i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x141eeb0e dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x1433cda2 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x1434d68b i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x14354891 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1448fa3b device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x145b849a tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x146848c7 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14749d28 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x14776113 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x14817f19 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x148b5a66 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x148ec569 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x14918fad preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14c9da02 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x14ddd8a2 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x14e93ded skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14ec6f68 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14f1113f bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x14ffbb4e pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x1504540d meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x150bc34b ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x151a9590 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x15221b54 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1522636d virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x152a1840 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x153d86c8 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x153ee569 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15543e7a crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x156ca271 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x15744b9c of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x15876b87 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x1597625f bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15ada946 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b32601 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave +EXPORT_SYMBOL_GPL vmlinux 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15c73cd7 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x15cbc28a fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x15cd0854 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1631150b dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x1632c4f7 put_device +EXPORT_SYMBOL_GPL vmlinux 0x163ace97 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x163af544 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x163de0de fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x16415a9a nvme_stop_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x164c0a26 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x166314fa ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x166577c4 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x166c58f8 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168fafd7 tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169850a8 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x169f1e3d rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x169f3a88 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x16a4952b regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x16a8d629 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x16bf5a43 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x16c4ed22 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16de2a0c netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16ed64c8 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16f3a3f6 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x16fcfd5b edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1722ca1a bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x1725dd20 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x172ed326 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x1732a477 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x174f2641 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs +EXPORT_SYMBOL_GPL vmlinux 0x175d95c2 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x175fa0dc pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17603fc4 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176a195c fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x177d1791 mtk_clk_register_gates_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x1788561a tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x17a36de4 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x17a5a691 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x17cd7510 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x17cfdae8 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17eabab9 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x17eb7ac1 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x17ee8167 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18039a66 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18106a1e kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x1826dd83 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x18433b52 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x18458e41 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x1876de27 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1886653e adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x1893a90d device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x18ab4dc3 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x18c24cd7 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x18caf7ad sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x18e121a3 nf_ct_expect_iterate_destroy +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 0x18f49afb spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fe83c5 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x190906f6 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x1910e2dc __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x1915f723 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x191bcf13 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x191d5eb5 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19231c98 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x1932b428 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x194b7c15 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL vmlinux 0x194dea9d sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x196a2ba8 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x19766ed2 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x19900202 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x19938089 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1997c69a regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x199bc6d0 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a5c9ad switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x19c830f4 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x19ce85d3 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x19cff304 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x19dbdcd1 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x19e029db lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x19f91803 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x19ff8f6f netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x1a040300 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x1a095930 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1b982a pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x1a365ad2 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x1a4ab50b ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x1a541110 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x1a5f16d5 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x1a6790bd usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a770817 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x1a807827 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a9da458 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x1aa57800 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1ab5a790 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x1ac109c3 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad82c67 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1afb0c2c firmware_upload_register +EXPORT_SYMBOL_GPL vmlinux 0x1b048064 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x1b1a32d9 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x1b1a5e83 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x1b1a5f5f housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x1b339a1a devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x1b367bd8 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1b56fd9a ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b613c27 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x1b65d71c pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x1b7dbcd4 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba2919e mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x1bbbf6f9 mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x1bbeb78d gpiochip_irq_domain_activate +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 0x1bcdddaf pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x1bd0ba4e iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x1bd33d7d inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x1bd3e8f1 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1be1e389 blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x1be4966b eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x1beb0177 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1bf20412 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x1c0e42b7 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x1c1ed856 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c233868 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x1c2dd952 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1c2f772f acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x1c40a73c of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c56f49b fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5d8ee1 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x1c73ff88 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1c77ad0a check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c79f2a9 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c85a81f mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent +EXPORT_SYMBOL_GPL vmlinux 0x1c8aedbe usb_bulk_msg +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 0x1cd1372c l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x1cd8515b hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral +EXPORT_SYMBOL_GPL vmlinux 0x1cde8016 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x1cf5e8e9 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x1cfa537f dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x1cfd7a86 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d19bfd7 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2c8ce9 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x1d2d415f handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x1d2ede4d crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x1d33073e lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d3b270f nvme_auth_transform_key +EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1d464b55 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x1d48121e pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x1d4addef bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d73cc28 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x1d855154 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d9d1a61 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x1dae90be of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x1db08aef ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1dbd9df5 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x1dc8cfb6 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x1ddf7ba6 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id +EXPORT_SYMBOL_GPL vmlinux 0x1e213975 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x1e287474 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x1e288c83 zynqmp_pm_force_pwrdwn +EXPORT_SYMBOL_GPL vmlinux 0x1e2aa670 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x1e2d882f pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1e304a85 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e46a210 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x1e49b981 device_move +EXPORT_SYMBOL_GPL vmlinux 0x1e4d878f syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e52fa3d key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e54c3ee nl_table +EXPORT_SYMBOL_GPL vmlinux 0x1e610235 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x1e69e84d devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x1e6bb5c6 of_clk_parent_fill +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 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1e9c9009 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebb0301 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec475a8 mtk_clk_unregister_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x1ecfa3ec balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ee05c82 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x1ef0d75e pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1ef60154 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1efaa752 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x1efd088d sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1f0f1a08 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x1f11d913 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f1e4493 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f47a20a ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f56940c fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f977f91 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb30450 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x1fb8ce49 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x1fb91a63 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x1fbde80d nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1fc7fc79 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x1fcd4c43 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x1fd40c91 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1fe5161a skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe97cde xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x1fecf73a regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x1ff4ccba xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1ffbe361 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x201d3777 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x2030069e __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x203838cb pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0x203acc7b sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x2049f18d unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x204dd2e7 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x2050a874 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x20567622 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x2059559d mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x205d05e4 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x207ae187 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp +EXPORT_SYMBOL_GPL vmlinux 0x20aad9a1 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x20aed936 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x20bab0f8 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x20c7087f dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x20d47c17 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x20d991a2 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x20d998d4 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x20e8650c dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x20efc5cd regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x20f50419 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x20f770b5 nvme_auth_wait +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x20fef1f7 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x20ffb4d4 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x21045aed pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2107ea3c __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x210bdc04 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x21116529 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x2116dffd __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x211c19da nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy +EXPORT_SYMBOL_GPL vmlinux 0x214852a0 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x214a27e9 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x215227a3 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x2153bba2 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x218cbaa2 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x21947caa skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x2198da69 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x21a18f7e devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21aa425b usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b7a37e led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x21bf91ee page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x21c186ef pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21ca8318 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x21cc7ceb nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d473e9 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x21d9f177 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x21e8115f of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x21eb120b usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x21ec95eb bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x21ef822d regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x21f44c6b xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x21f551a5 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x21fe605b devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x2201eeb1 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x2203ffe4 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x2221ce14 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x2223c766 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x2239de76 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x2243bfa4 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x224a19d6 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x224b2fb4 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2251d5ab ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x22534671 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0x225eda09 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2277206c platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22b07bf8 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x22b58da0 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x22baebcd hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x22beb87f fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x22c03150 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x22c93269 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22d9569a rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x22de7c46 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x22dee6c3 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x22e5d1de nvme_auth_augmented_challenge +EXPORT_SYMBOL_GPL vmlinux 0x22e64bd9 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22f3cde2 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x22f916c1 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x22fe9684 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x2314d894 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x2326dcf8 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x23380e5d sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x234d8ff8 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x235222e8 nfnetlink_set_err +EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x235a2db1 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x235cdd19 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x2384bbe5 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x239003e1 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x2398982f crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x239dfee3 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x23bf9457 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x23cfda2e clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x23dbfe3a power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x23e56e25 ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x240876f6 devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x241d85c5 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x242f3bcc __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x243d3eb2 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x2448c001 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x24490368 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2465eaee nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x24692f24 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x24725cfc tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x2474dee2 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x24804d0b genphy_c45_pma_baset1_setup_master_slave +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 0x2491f624 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x24a25c17 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x24a9d0b0 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x24aba784 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b65774 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x24b701fd crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x24b91e51 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x24cc57dd fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24df3309 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x24dfca7f usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x24e5fb2c pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25280cc2 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25384bef cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x253edcd9 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x25611dbe irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x256467e3 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x257347dc crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs +EXPORT_SYMBOL_GPL vmlinux 0x258592a1 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x259d4e70 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x25a696d7 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x25aea400 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x25b29385 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x25b7b295 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c2918b sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x25e2b739 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25ea0dda dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x25f5322b acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x26080ad2 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x26172b69 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x261f6ac3 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x262eda82 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x26326ecb i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x26329614 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x26377776 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x264951b0 imx_get_clk_hw_by_name +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 0x266b8099 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26847788 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x26868bb7 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x269f22dd ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26aa3911 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26afff43 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x26b46e16 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x26c01c29 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x26c3f14f mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x26c82d65 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x271fa93e class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2725eecb mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2734a046 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x2736471e acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2738f2a2 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x274265ca fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x2750ae57 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2755f14d led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x2756a46b pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x275aae7b dm_put +EXPORT_SYMBOL_GPL vmlinux 0x276b8bc6 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x2770d2a7 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x277d438e skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x277df16e of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x279e830b dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x27b6a160 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27ed1a6a __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x27ed29f5 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27ff6f5d extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x280c7eed device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x280e15ef devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x2812a4b3 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x28135195 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x281a2020 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2841a3d6 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x284709a5 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x285507fe dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x285d2555 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x287bae44 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x287fa7df register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL vmlinux 0x28a2adee fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x28a9abb8 gnttab_alloc_pages +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 0x28b33b25 virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x28b42608 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x28c86b8d tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x28dc143f rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x28e7fe02 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL vmlinux 0x28fb79bd regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x2904f6bf dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x29154a63 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29401374 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x296682b0 zynqmp_pm_get_rpu_mode +EXPORT_SYMBOL_GPL vmlinux 0x2966b65a platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x296b80f2 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x296fa3fa pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x2977f2f4 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x29846cf4 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x2986c0df fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0x298ec1b2 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x299489d3 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x29a401f2 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x29abc233 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29d78483 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x29d7f16f i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x29df6e4e virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x29e409e9 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x29e5d330 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f01e50 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x29f45498 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x2a2463ad inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x2a29cf3f gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms +EXPORT_SYMBOL_GPL vmlinux 0x2a3ee8a2 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2a45211e virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x2a4b2b13 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a5f314a attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a6acf9f iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x2a71d703 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a894e8a devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x2a8d7f1e fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2aa7b158 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x2aab25c0 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2ae57b59 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x2aeea698 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x2af75bde wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2af96dc9 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2b0ae665 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x2b0e5626 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b11f3f9 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x2b164336 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2b2cbb1c devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x2b3686f3 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b47b072 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b669f11 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b6e8d3b ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b820761 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x2b84d506 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read +EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2ba20287 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x2bab9a96 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x2bac9b50 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2bb29402 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x2bb590fe acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x2bbf39d3 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2be1af2b usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x2be238f5 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x2bf02437 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x2c04ef56 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x2c0964c7 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2c09f84e fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x2c0b0760 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x2c0ce332 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x2c186209 ping_common_sendmsg +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 0x2c40b460 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x2c535b02 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features +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 0x2c7dc24d inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2cfd8a3b serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1b650d gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x2d1e11d9 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x2d235317 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d2da69d trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d350f45 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2d3944be pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d52b8b9 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d91494b dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x2da7c7f7 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dc2bb39 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x2dcefca6 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x2dd58109 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2de92961 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x2dec259d security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2ded3989 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0e7953 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x2e1da232 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x2e229375 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e27138e platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2e306ea3 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x2e32595d of_css +EXPORT_SYMBOL_GPL vmlinux 0x2e589c9e reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2e5c5a64 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x2e64af2e inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e6d5662 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x2e80c326 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x2e810d32 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x2e884d2b nvme_host_path_error +EXPORT_SYMBOL_GPL vmlinux 0x2e967932 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2ea77f7a tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2eaea10c gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebb7d38 nf_ct_expect_init +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec1b5de shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x2ecf4878 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2ed73ee5 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2ee82cb0 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x2eea0a1b ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x2eec2d35 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x2ef5a06f inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x2f0d1b93 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f171283 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f21c19c skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f496f71 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0x2f5a2bf2 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f98fa60 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2f9bd229 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2fb90287 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x2fbd4c18 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc87dc2 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x2ff3916e evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x2ffc69bc devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x303967ed serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x30439785 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x3057cc1f power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3073bb26 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x307752a2 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3079fa09 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x308cdba0 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x30996ac2 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x30a1f0d6 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x30ab7ebd component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x30d07e34 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e4bb1a ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x30f541fe request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x30f76884 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31116ab9 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x311d4d71 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31291774 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x3132a42a iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x31337d5b clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x3150356f gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x31524922 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x3155bc78 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x315c58d1 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x3169b264 __inet_lookup_established +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 0x318b1743 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x318c61e3 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31ad8e87 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x31b0d25f rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x31b54bfc kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x31b7fc01 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x31c0c7b3 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x31c4f836 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31d72047 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x31da9c3b anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x31dc7bd0 nf_ct_get_id +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31df4cb2 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x31ec2075 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x31f0f033 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x31f26e7b regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x31f67831 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x31fa9b5e nfnetlink_unicast +EXPORT_SYMBOL_GPL vmlinux 0x3201fc11 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x32093209 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config +EXPORT_SYMBOL_GPL vmlinux 0x322af484 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x3236d69c mtk_devm_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x323c7f03 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x326a45a1 mtk_pinconf_adv_pull_get +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 0x329377cb crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x32a8dd0b dw_pcie_link_up +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 0x32c5caf4 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x32ca6ddd cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32df7020 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x32e95aea iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x332159da cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x33232435 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3332c2bc vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x333e65c0 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x3342b99f device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x3347e588 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336f043a led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x338747be balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x3387678c validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x338a484a dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x33975d55 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x33b59357 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x33b5e8e4 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x33bdaef2 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x33d6c996 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x33d75aaf sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x33f1a097 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x33f4dd77 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x341fae07 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x34246ac8 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x3425602c edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x342cf574 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x342fdf14 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x343b1609 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x343bff38 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344a0adc fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x3455e52b to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x34627c57 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x3465803c serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x3470e2e4 apple_rtkit_start_ep +EXPORT_SYMBOL_GPL vmlinux 0x3471a0c6 of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x347f14e6 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x3483516c dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x348dca6d led_put +EXPORT_SYMBOL_GPL vmlinux 0x348e122f param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x348f0d3b file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x349b7bd5 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34af61dd sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x34b4d5d3 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x34b83cb7 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x34bba0a9 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x34bd98ed vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x34cfe1a4 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x34db73fa tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34db8487 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x34ffd3ec ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x350504c3 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3512e3b1 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0x352a454b devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353340d1 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x35391d93 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x354916ae scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x354931e3 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x35503ff4 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x355260da serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x3553f2b9 percpu_up_write +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 0x3576611b mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x3576711e sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x357726ef cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider +EXPORT_SYMBOL_GPL vmlinux 0x35b1388b phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d43ec2 nvme_cancel_tagset +EXPORT_SYMBOL_GPL vmlinux 0x35da89e4 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x35e5cb1c crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x35f7a638 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x360ecc58 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x36112092 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x361b00cb nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3644c14f regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x367641cb filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x368fed9e iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x36964864 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36b3f2cc blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x36bd9889 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x36cb4f8c devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x36ce9b54 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash +EXPORT_SYMBOL_GPL vmlinux 0x36dda44b rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x36dfe9eb clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x36e01f78 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x36f43261 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x371bec76 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x371dd397 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37209c10 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3736cb43 blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0x37370a85 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x37479155 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x374ed51d dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x3751cbf6 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0x376b8939 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x376f4d57 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x3775c25b k3_udma_glue_tx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x377a902f k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x37879c27 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x3787eeaf ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x378ba329 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x378c6cdc rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37a8ba56 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x37aef5b5 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x37b0f955 mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0x37b44a66 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x37b78a4a iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x37ba30e0 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c42d1b kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x37de5486 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x37f49943 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x37f5aeab crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x37f734b3 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38026aa5 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x38143f07 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x381ed260 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3826cc77 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x382a8a11 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x382ad42c devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x382cd966 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x38374457 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x38381bb0 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x383941ad percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x384ff6fd vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x38589f20 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x386c151d usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38760327 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x388f8838 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x389c3af6 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x38a757e1 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38ade45d nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x38af990d cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0x38b0bf90 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38b21d02 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0x38b2c156 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x38b2cc87 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x38b4d57d of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x38b9bb51 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x38c1ac36 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38cfcfd8 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x38d1d0d4 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x38d3a71e dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ec00e6 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x39043719 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x390c5405 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x392e2261 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x39350408 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x393e4329 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x393f70e8 nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x39435832 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x39513f33 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x39530a23 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x396cf3e0 device_del +EXPORT_SYMBOL_GPL vmlinux 0x397a72bf dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3983699b vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x39871664 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x398fc1a2 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x39954c83 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x399d9ac8 nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39bf302a uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39cdd8cc kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e52f4e __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x39eb5b4e clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x39fcc2ac devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x39fe013e securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x3a018889 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL vmlinux 0x3a0290a7 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x3a058f67 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3a0aacea usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3a0e8b21 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x3a1dfa4d clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a263197 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x3a4589b2 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a513186 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a63ab8d pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x3a6789c7 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x3a679265 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x3a71b643 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a78892f gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x3a829162 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x3a84fb98 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3a95ccc2 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9ccc2e regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3ac5173d ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ac892a9 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3acedeff serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x3ae9aead tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x3af74175 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b0b701a devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3b0bde77 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x3b235f9b ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x3b32bd15 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b64ea8f mmput +EXPORT_SYMBOL_GPL vmlinux 0x3b6aa3b8 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b7cded1 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x3b852e79 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x3b94e741 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba49ae0 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x3bae113a devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x3bc2e454 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x3bc76728 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3bda5617 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x3bdaad16 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3be48f69 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x3be4cf52 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf7ce86 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x3c0d0deb pci_doe_submit_task +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c12b274 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c201980 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c3cc0b7 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x3c43d3b8 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x3c4dc6cd fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x3c523c56 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c60f6b4 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x3c640ea0 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c692334 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x3c6f7c8c scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x3c825c51 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3c8d1dea regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x3c9c991b nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL vmlinux 0x3cab78f9 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x3cb5a7b4 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x3cb76818 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x3cc4b625 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x3cc788e3 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent +EXPORT_SYMBOL_GPL vmlinux 0x3ccdd31f nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd2ce9b pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3cd97f06 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x3cdbc4f8 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x3cf134b5 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x3d0861a2 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x3d0a6008 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3d12e80e get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3d13ef30 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x3d150b50 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x3d221be3 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x3d33be94 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x3d35fb20 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3b9dee nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL vmlinux 0x3d4e1208 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d57ec73 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x3d669401 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d6c05f9 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d904bb2 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da6e238 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dbaf40f usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x3dcddff2 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x3dd9d078 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x3ddcc3f2 ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3de1746f __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x3de7ae24 fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df1cf01 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x3df95cb6 device_create +EXPORT_SYMBOL_GPL vmlinux 0x3e0839de ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x3e1fb889 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x3e389001 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x3e406680 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x3e48a1b2 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x3e4e022c devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x3e55237e rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x3e5e94e8 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x3e61acbe edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x3e67c09e meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule +EXPORT_SYMBOL_GPL vmlinux 0x3e851ffe gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3e920e0d crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x3e9764c3 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x3e98250e inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ec60721 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put +EXPORT_SYMBOL_GPL vmlinux 0x3eef742b nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efb9e70 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x3efeb0e6 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x3f049829 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x3f1462ef sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x3f1c4f65 apple_rtkit_is_running +EXPORT_SYMBOL_GPL vmlinux 0x3f202213 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x3f24c3dc blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x3f2fd22a dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x3f3460aa devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3f3a174a phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL vmlinux 0x3f3c2b4c cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f5854f4 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x3f72ac98 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f87a3bd dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x3f899865 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb21748 nvme_auth_negotiate +EXPORT_SYMBOL_GPL vmlinux 0x3fb8936e devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x3fc67129 ahci_host_activate +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 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x40057466 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x401db224 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x40246eea anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402ded04 debugfs_lookup_and_remove +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 0x40477f9b generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x405e9524 balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406b4aca bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40718c3e devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4073cd26 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x40796523 rockchip_register_softrst_lut +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x40872e44 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x4095c06e ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40ab2c88 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x40af8e04 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x40b0d8e7 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x40b1ed14 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x40b1edee rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x40c29a8a blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x40c538d5 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x40ca792a pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x40d06a01 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x40ed5e3a task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x40f028b3 zynqmp_pm_set_rpu_mode +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f149c5 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x40f746bd sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x40f821e5 crypto_register_instance +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 0x4108799c spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x411e5c95 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x413003e9 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x41321beb ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x413903a4 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x4139dee3 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41418d1e acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x4148f3ff simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x414cbecf ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x415854e9 mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x415a93ae pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x415e4ba6 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x41690d7b tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x417c2978 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41872bb3 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41916cb6 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41b6c612 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x41b7fd78 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x41b89dcc fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41c46b71 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x41c6eae7 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x41d44db8 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x41d8fe4d ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x41de189a devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x41e1ad45 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x41e5686b serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42181eb8 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x421e5d6c tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x421e934a tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x42296b17 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x4235fe24 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x42410b90 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x425a7604 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x4260b555 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x426bba12 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x4274aa0b sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x4280d370 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42864ebe tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x428a3873 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x428ca5d5 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42aaf9b3 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42dcbf00 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x42e5b06f crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x42e8f12d ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x432e18db vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x43301f9f sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0x4332375e virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x43403a0a usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x43458129 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4352c778 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x435ea085 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x43739469 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x4376ae22 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438b723a pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x438d3018 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43986025 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x43a797ab max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43b07c7a __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear +EXPORT_SYMBOL_GPL vmlinux 0x43e0a1fc security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x43e10d34 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x43ea5131 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x43f34872 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43ff9371 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x43ffbd0e msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x4413f461 zynqmp_pm_request_wake +EXPORT_SYMBOL_GPL vmlinux 0x441acc76 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x4422ac24 zynqmp_pm_set_tapdelay_bypass +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x44570999 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4461da20 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x44652288 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44665ffc crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x446f28d9 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x44792149 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x447d327f of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44862d90 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x449908a9 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x449c3372 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bd21ef mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44ebe3b1 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x44efcb5f scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x44f2d91d __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x44f48491 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x450166e0 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x4502dd3f fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x452534f3 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x452e1a2b percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x45357e59 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x45474780 __traceiter_devlink_trap_report +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 0x457d925a __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x45839a10 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x458beac4 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x458e50d8 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a0eafd crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45b9bb4f fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x45e959ad tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x4603830c subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x460697ff gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x460de322 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4615fb3c bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x46191915 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries +EXPORT_SYMBOL_GPL vmlinux 0x4628ddd7 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x462feb7a switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x463247e7 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x463e2626 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x464a2966 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x46568afd xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x4659e7cf xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x46770bbc pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x4677fa76 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x467a52b7 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x4681ac6f of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468b41c6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x469c1353 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x46a085a8 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x46c0eef3 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL vmlinux 0x46cdecb5 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x46d1eca5 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x46daa9ce extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap +EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x46f54fd8 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4700d912 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x47036dcb __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x47101364 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x471c2770 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47254202 apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL vmlinux 0x4728f552 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47291120 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x473136a7 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x4742fe73 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4751ad3c xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x47563b8a pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47642c53 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x47664c98 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x476ad1e2 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478a00c6 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x479045df gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode +EXPORT_SYMBOL_GPL vmlinux 0x4799ae8e gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x479dd884 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c84a6c irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x47ce8881 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480872d6 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x4809c91b blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x480fbd34 dax_truncate_page +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 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x482e6521 meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x48315845 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x483937ae dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x483c6cb9 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x484285b4 fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x4842d9e9 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x4847d705 pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x487f78b8 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x489bbb4b nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a84c25 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x48aff44e mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0x48bb610b rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x48bc83a1 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x48c1fdb9 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48ced842 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x48d3f98a blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x48fa69f1 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x48ff149d led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x4915288e wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4916d246 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x49293ca4 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x49335f93 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939cc1e cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x49406c1b is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x49435332 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x494e5dee tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x4953c70c fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x495a3bb4 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x49684c94 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x496b13f4 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49a52461 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x49b62676 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x49c493d6 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x49c4e39d dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x49c524bb usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x49ccd2ff scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d2937a regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x49e745e2 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f4e9bf sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x49f5014d sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x49ffd060 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x4a05e7b1 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x4a0d9111 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4a0f8f21 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4a1741c2 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a53da74 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x4a5aadbf pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x4a5f6f9c blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4a63cd00 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x4a711c96 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4a7dc181 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x4a94465f rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ab6e387 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL vmlinux 0x4ab88555 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x4ad52383 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4b15d0bb power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x4b2904a6 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x4b3094a6 nvme_unfreeze +EXPORT_SYMBOL_GPL vmlinux 0x4b4081f1 buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0x4b4cecd4 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4b52789b xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x4b52b7b3 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b5d2f9a kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x4b623119 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x4b6bc4a9 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4b73a3d8 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x4b814181 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x4b8ab4f3 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x4b8ebb65 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4ba0807c acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x4bade2df rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x4bc19392 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x4bc59d24 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x4bc64d35 phylink_create +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bcfa90d fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be64845 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x4bede1e7 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c009c81 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x4c0fc923 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x4c26d52c iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c4773b0 mnt_idmap_owner +EXPORT_SYMBOL_GPL vmlinux 0x4c4cda2c iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x4c53ed47 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x4c548f42 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c5d8adb fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x4c601c7b xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x4c67877f bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x4c6e8190 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4c7624dd apple_rtkit_wake +EXPORT_SYMBOL_GPL vmlinux 0x4c7a47f6 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c8fbdb0 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x4c969578 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4caf45b3 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb33fc6 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cbc9c02 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x4cd9c21d ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x4cf86c4c gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0072cd wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x4d0ff9c0 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4d10fc78 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d47494b scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x4d56954b of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x4d5bcd55 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x4d5e3206 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL vmlinux 0x4d63d269 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x4d6a4898 dpbp_open +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 0x4d8e18c8 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4d913745 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4da2abb6 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x4da2f2f0 nvme_init_request +EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db33d2d spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de4bbb2 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x4dee4b3f regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x4dfc856b iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e00620e wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4e0e8dcd msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x4e0f2f1e phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e2f3c90 mtk_mutex_enable_by_cmdq +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e42b2fc nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e4ef514 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e64ee7e pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e9224c1 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x4e9ab065 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x4e9f304e bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4e9f4abc arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0x4eab69ba __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4ec998e4 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4ec9e0b2 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4ecaadd0 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed3469f device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x4ed830e2 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x4ed9f380 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ee92d00 iov_iter_get_pages_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4ee9b9b3 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x4eee4aa6 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4eee9b13 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x4ef3311e sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f0a6b11 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x4f22fe46 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f303d83 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4f36eb06 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x4f3e7d52 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x4f431ea4 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x4f4945ac nf_nat_helper_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f4b6f24 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x4f51f8a3 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4f57591d acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x4f5fa0fa sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f760316 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f761f0b kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x4f825106 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x4f93a1c4 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax +EXPORT_SYMBOL_GPL vmlinux 0x4fb8e7c9 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x4fb9b1a9 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x4fcbe3f9 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x4fcce507 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe5a3d7 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x4ff0a857 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x4ff65da5 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x4ff8c3de blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x4ffbbcd7 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4ffced55 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5023d37a ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x502b2b58 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x5033f88f devm_apple_sart_get +EXPORT_SYMBOL_GPL vmlinux 0x50359bab nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x504e8f69 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5066ba5e mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x50686075 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x5073a116 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x5076aec2 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x507ab13b pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x50843982 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x508880ee nvme_init_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50969cdd ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x50a04194 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x50a33e52 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x50a3a3b4 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x50c88cd8 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x50d0a108 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50eacb73 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x50ee4b0c tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x50f2ee87 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x50f7a9b2 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fe3f02 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x5104ee95 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x51078822 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x5108643a gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x510a9b79 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x5110c318 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x51166259 dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x5125b391 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x513b3135 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x5143c92d nf_ct_delete +EXPORT_SYMBOL_GPL vmlinux 0x51464642 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x514825a1 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x51485102 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x5153b4cc ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5165afa9 print_tuple +EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x518187c4 mtk_register_reset_controller_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x51972014 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51a0800b usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a64de0 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x51aa7adb dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x51b66906 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x51d0830e paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51d1eb96 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x51dc824e encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x51ea2d47 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x51fc6cc0 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x51ff063f espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522bc7a8 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x523515a7 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x524c854e dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x524e4608 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x527b2c88 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x527ee12d k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x527eff93 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x52a0d2ea sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x52a31fcf gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x52a59b31 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b600bb gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d0e9b3 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x52d4dc2a dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x53150d5c badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x532b788c srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x533a2ce8 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5343dc7c pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x53503272 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x5363dba2 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x53860fbc cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x538824ad driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x53a578df led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x53a7fe83 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53cccfa2 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x53d64c07 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x54013188 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54051486 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x54176b5d platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x5419887f ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x5419d460 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541e7108 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5425758d thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x5434f056 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5437424a nvme_sync_io_queues +EXPORT_SYMBOL_GPL vmlinux 0x5437467d iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x5441cf3a vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x5446ee84 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x547cd218 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x547e193f ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x548345f8 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54960576 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x5497de00 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x549a854f usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a58e1d sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x54a59792 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x54ba0bee tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x54c31fb1 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x54ced8ca udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x54d19638 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54e685f3 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x54edb0af max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x54fd85bb mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x551a3a66 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x551a9392 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x552735dd __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x553066c3 scsi_internal_device_unblock_nowait +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 0x555000f4 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x55676465 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x556a0d57 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55724e4c usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557d05ad cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x558d9b15 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x5594a505 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x559c44c8 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x559dc9b7 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL vmlinux 0x55aa0be2 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x55ab0952 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x55ac1d77 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x55b42bef usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x55b9ce29 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x55c3f7ed mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55d8c844 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x55d91921 alloc_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x55dcfb5e pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f62349 mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x55f91bd7 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x5616cee9 crypto_register_ahash +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 0x563a42b9 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56450962 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x5650c7fa serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x56638f03 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x56a288f9 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x56b26a0a __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x56c1ca1a tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x56e31eca tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56eaaa28 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x56f52eee sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x57114683 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x57126a71 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x5729e378 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x574e475e vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x577e3347 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579908a1 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x579a0521 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x579db4f5 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a92469 mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x57bc46cd usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x57bea89e device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x57bfe44b of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x57d38273 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d84c5b regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase +EXPORT_SYMBOL_GPL vmlinux 0x57eadb98 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0x57f40ea5 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57fa359f usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x57fd9fdd mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x58002616 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x58101d38 nvme_disable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x5814dde7 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x58193c5e __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x581f2d52 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x5820a2c1 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x58245a28 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x582589ff of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause +EXPORT_SYMBOL_GPL vmlinux 0x582d3663 mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x58349b22 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x5834f6ff meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x583a4726 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x58418175 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x584386cc __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x584f5e46 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5876ed70 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587b6d76 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5882dd90 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0x588528c4 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x58c268b4 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x58cdb549 devm_apple_rtkit_init +EXPORT_SYMBOL_GPL vmlinux 0x58d9be6b thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58ddb5ec transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58dfec80 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x58e17734 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x58e1ad42 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x59235b5c __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x5949cb92 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index +EXPORT_SYMBOL_GPL vmlinux 0x5961c5df pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59689b7a pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x5970827b vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x5970fb7a apple_rtkit_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x597a3913 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x597adbdc xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598906eb pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x599d2769 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59a52473 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x59a64ec0 nvme_start_freeze +EXPORT_SYMBOL_GPL vmlinux 0x59addee2 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59ca8594 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59ec5574 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str +EXPORT_SYMBOL_GPL vmlinux 0x59f0a36e addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x59fd5221 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x5a01945b regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5a026cc2 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a186df3 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x5a18734d of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5a1cfc4b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x5a23031e iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a2b13dd vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0x5a434bb0 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x5a440a08 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4f97a2 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x5a50b3dc dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x5a617704 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x5a6a4b9b fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a81379e fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x5a86f002 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aab86a8 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x5aafc2b2 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab46b8b fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x5ad01dbe xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x5ad6114e clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5ad8a7d5 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x5ad9e6d6 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x5ae147fd pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x5ae1cd03 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x5b109335 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x5b1a5d31 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b3afb15 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x5b3f8d3b tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x5b4fbea2 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x5b52827c sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x5b5fbb21 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x5b656977 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b7642f6 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x5b9371e6 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bbe2707 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5bc2b5aa regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bcae6de __spi_alloc_controller +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 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 0x5c118bd0 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x5c12ba94 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x5c171001 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x5c1cd578 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x5c257c06 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x5c2e571d gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c405843 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x5c4a7745 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x5c4d2ef9 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x5c5064bc xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5e3321 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x5c75a8f7 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x5c7b313e fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c8563d0 apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL vmlinux 0x5c883326 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x5c955415 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x5c9c70cd clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x5ca6bb42 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x5cd088f0 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x5cdfb0b1 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x5ce34700 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x5d0cd982 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d711601 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x5d71224d mtk_pinconf_drive_get +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 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL vmlinux 0x5dc72ba7 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x5dcc5da4 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x5dd31bcf clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x5dd93fdb genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x5de06d63 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5debfcd9 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x5df06952 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x5df32e79 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x5df62c7a ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x5df77018 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x5dfab70e device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x5dfc631e alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x5e0fa5d4 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x5e167896 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e4c8bd7 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5e5c5a devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e7939f1 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7c36c7 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x5e7e588f mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e85c68a devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eb18db6 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ecc09c7 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x5edd7dde ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5eea0cd1 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x5ef7e5e4 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x5efce50a blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x5f0b47ba imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f25106e nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5f26135f security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x5f2cc280 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5f4ba8a7 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x5f5065a6 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x5f62f1d5 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x5f6aff34 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f6fa27b pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5f816820 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x5f886671 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x5f8acd5e __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f95f4ee devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5fa019b4 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x5fa21904 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5fa5d3e4 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fb92b1e blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x5fbed116 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x5fbfe04f nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x5fc6732c nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5ffca3b1 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60160d38 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x6028318f of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x6029087a iommu_dev_disable_feature +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 0x60482d94 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x6050c8a1 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x605157ec gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x605e6263 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x60758aaf debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x6079b372 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609a2207 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60ac299a __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60ae6539 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x60bf36bd user_update +EXPORT_SYMBOL_GPL vmlinux 0x60d7eebf wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x60d9c85d fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f427a5 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x60f86e7e rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x610148f0 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x61082492 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x6120a130 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x6121e3e1 bsg_register_queue +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 0x614ca282 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x615f8794 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x61624d6e pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x616cd168 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618af0ff cpufreq_register_driver +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 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f7f417 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x61fa43aa psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x61fba6d1 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x61fd506d vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x61fdb0ae tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL vmlinux 0x62179459 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622e7301 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x622f3fe8 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x623778bb mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623a6e64 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x624060f9 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x626097d5 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x628443a9 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x6284757e skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x62849753 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x62871449 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x62945053 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x62a0faa5 devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x62b29882 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c5947f virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x62ca78d2 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x62dc1667 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x62f9df40 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x62fc53bd devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x62fe504e dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x6301538c clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x6310db1a sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6312e0c1 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63157d34 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631b7cc7 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x63206ace pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x63371e14 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x6337eecb dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x63437b9b dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x6349fa43 k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6356ea6a edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x63584c6f tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x63662fa8 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x6377ad7f vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x63835f16 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x63971f19 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x6397b090 nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63cfe0e9 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x63db79b8 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f2f18d rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x64207f10 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x642e9234 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x6432440d ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate +EXPORT_SYMBOL_GPL vmlinux 0x6440f283 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x6447d67b of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x644a7be3 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x645314dc usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x6455def2 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x64645045 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x64679a15 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x6468cbc8 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x646b9e61 generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x64a1a5ce phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a81f11 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x64b36d09 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL vmlinux 0x64d634ed __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x64d6b5e3 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64eb36e6 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x64fe0cd1 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x6502f4e4 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x6511c994 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x651ad081 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x652afb4a fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6535a0c3 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x6542e68d gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x6544dd1d raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x65498574 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x65516be7 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain +EXPORT_SYMBOL_GPL vmlinux 0x65601c51 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x6579681c reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x657e506f led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x6588551f pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x658a5abe nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL vmlinux 0x658d8b12 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x658fcd34 ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x65ac6153 user_read +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65c66b8f unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d77291 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x65e27a46 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x65e8dcf7 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x65fad878 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x660777b6 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x660d6264 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x660f293b md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x661083bd crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661638e7 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x6630abf3 mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x6659e200 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x665a85bc switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666d2e0f debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x66825062 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6684ad13 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x66a04d20 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x66a43956 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x66abc08c wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x66c51c37 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x66c60245 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x66c7ccec devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e61f6d page_endio +EXPORT_SYMBOL_GPL vmlinux 0x66e8b5b0 phylink_caps_to_linkmodes +EXPORT_SYMBOL_GPL vmlinux 0x66eb6c04 clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x67044561 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices +EXPORT_SYMBOL_GPL vmlinux 0x670cd11c fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x6720f6ac get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x67254656 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x67369204 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x674c5bc1 nvme_auth_hmac_name +EXPORT_SYMBOL_GPL vmlinux 0x674ff8ea dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x67539a42 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6754e714 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x67607a23 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x676e37d2 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x676f544a rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x677e27c2 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add +EXPORT_SYMBOL_GPL vmlinux 0x678ab383 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a3c6fb dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x67ac9441 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x67b6a339 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x67cb155c bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x67d62887 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x67d7609f pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x67d8e1e4 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67f30519 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x67f35c55 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x67f7df4d irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x67f8f210 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x6807ee63 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x681366a5 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x681ae2af dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x6822de1a firmware_upload_unregister +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x6847bb2a fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x684bd46b dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x6867d17b init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x686cd921 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x6886ab2f dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x68887339 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x688ec598 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x68922078 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x68923600 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68980d1d ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x68a06c63 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x68a297af nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x68a338ea phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68a61c3f pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x68b0ef37 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x68b1f8b0 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x68b2b068 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x68b2fd80 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68cc12a1 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x68ce13b7 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x68d6820d extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x68dab26f xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0x68de7ef9 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x68e09540 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x68f4dfee nvme_get_features +EXPORT_SYMBOL_GPL vmlinux 0x68fa0c16 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x68fc8967 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL vmlinux 0x6902840b virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6912f0ce rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x6920269b tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x692b94f5 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL vmlinux 0x69465f0d fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x695657ba task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x6969b78d __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697c5367 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69842dd8 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x698489d1 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x6985dbe3 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x698edfc3 zynqmp_pm_set_gem_config +EXPORT_SYMBOL_GPL vmlinux 0x69975ab2 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x699da38a led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x69b11a7f da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x69bdd101 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x69c68a63 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d84426 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x69e30b65 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a06b587 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x6a077ebe nf_ct_expect_find_get +EXPORT_SYMBOL_GPL vmlinux 0x6a08a25c aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x6a093659 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6a148acd pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a157e1b cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x6a176c3b devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x6a1773ee virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x6a36a51f nf_ct_helper_log +EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a3aa281 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x6a40a47e tun_get_socket +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 0x6a58d822 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x6a5f7a6d rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x6a705408 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x6a7216b5 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x6a83657c dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function +EXPORT_SYMBOL_GPL vmlinux 0x6a962bd7 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x6a9ec20e dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab19b02 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x6ab446dd nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x6ab48c5f serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6abfad16 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6ad5b9d4 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x6ad9b664 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x6adadbb4 nvme_auth_free_key +EXPORT_SYMBOL_GPL vmlinux 0x6af35459 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x6af9b1f1 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x6b0185b3 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6b0b8dde clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b26edb2 tty_init_termios +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 0x6b3c5bf7 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version +EXPORT_SYMBOL_GPL vmlinux 0x6b4069a1 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x6b40d9a4 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b5057fb ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6b56f63b pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x6b6f2790 split_page +EXPORT_SYMBOL_GPL vmlinux 0x6b6f5b63 mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b78da78 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b7f7cf6 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x6b89005b fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x6b8b85a8 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x6b914684 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x6b93f533 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x6b970981 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x6b9a0cc9 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +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 0x6bd90dd1 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x6bdab280 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x6bdb6b86 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6be3b99e evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x6be48733 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x6bf90138 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x6c03d992 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6c0d513b __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c22ca6f fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x6c2738ea platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c404c3d phy_put +EXPORT_SYMBOL_GPL vmlinux 0x6c49a83c i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5e8a05 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca694c2 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x6ca83c88 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x6cb73c39 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6cc2d260 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x6cd3327b rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x6cde883e ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6ce4e295 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x6ceb613e ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d0897bf __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d259d20 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3947d4 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x6d3b3afd debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6d402d7e zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d46d3a7 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x6d52b515 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x6d57e656 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x6d6c812f fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8ab781 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x6d96931e irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6daac182 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x6db58518 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x6db82d37 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6dba2a1c sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc63858 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x6dcc182e of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6de380eb dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6de5af91 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x6df08a03 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +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 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e4f8774 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x6e56bd7a gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e63251f smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x6e6a125a phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x6e7521b4 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7a78a9 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6e87388a irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x6e91ee1b nvme_auth_digest_name +EXPORT_SYMBOL_GPL vmlinux 0x6e921260 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6ead83c6 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6eb58658 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ebf6491 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x6ec13031 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6ed64c7c pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x6edae888 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x6ee7043e tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x6eea73e0 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f190cda __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f3cad00 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x6f3f5958 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x6f48c506 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6f4ddfeb of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x6f52fe4f wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x6f5777c3 pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0x6f659c3e mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x6f67cb36 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x6f6892ce inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f6c275b crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x6f6f8a98 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f819b22 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fb0f3fd devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x6fc314b7 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffb227c devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700e8f97 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x701e028d devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x70325780 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x70423efb zynqmp_pm_set_sd_config +EXPORT_SYMBOL_GPL vmlinux 0x70645c44 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x707e370c tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x7080637f __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x70863f9d mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x70867e5c input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x70882f64 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x708a33f8 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x708ce97f acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x7093cd5f bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x709d6c14 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x70a1cae6 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x70b297ea nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL vmlinux 0x70bc66f1 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cc4eb8 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d44ebd rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x70de7b37 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x71007f1d crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x71073933 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710f53b3 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7111fc3b ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x71188f34 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712b09a0 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x713956d7 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x713b5372 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x715d1770 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716e28b4 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71946617 clk_register_hisi_phase +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 0x71aa6374 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x71b57444 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71d05192 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x71d85584 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x71df5301 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x71e641d9 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x71fa9fe1 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x720189b0 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7216c54c nf_ct_acct_add +EXPORT_SYMBOL_GPL vmlinux 0x72379888 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x725614b7 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x72608fc8 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x726e311a sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x726f9792 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x728316c6 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7286d1de perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x72946be9 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x729aee4f devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72c5354c usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d8dd32 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x7301fda0 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x731bcb2f vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x7327664d irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x7331a86c clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x733c9abe dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x73577187 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7361ed75 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7362a661 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x736917f4 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x736e5e84 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x73862703 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x73924d18 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ab01a6 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x73b17e7f __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x73bd2953 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d5e684 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x73d7e9ba dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x73f2f80a blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x740e3e25 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x740ee714 nvme_sync_queues +EXPORT_SYMBOL_GPL vmlinux 0x74239780 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x742c7234 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744ec847 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x74574852 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x7463f0ce lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x747b29a7 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x74813d64 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x7485204a dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74a556af device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x74a80987 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b9d1be usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bf0cad vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74ca04fa decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x74d2f6a4 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area +EXPORT_SYMBOL_GPL vmlinux 0x74d7c303 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74f25d9e nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x7503e8ee fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75189410 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL vmlinux 0x7522c36b __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7533641b sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7534596b mtk_mutex_write_sof +EXPORT_SYMBOL_GPL vmlinux 0x753bb7bc divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x75434088 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x75453b83 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x754aff76 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x754df1d2 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x755835fc sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x755c12a1 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x756f7101 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x75896ec9 i2c_acpi_new_device_by_fwnode +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 0x75b01f32 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x75bd2047 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x75be2735 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x75be843e ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e65b46 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ec0bfd tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x75efff5c __class_create +EXPORT_SYMBOL_GPL vmlinux 0x75f9b4bf ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x7609df6f elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x760d7f64 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x760f8095 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x7612c978 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7627f8e7 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x762f6644 vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7632a2f6 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x763b584a regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x763f54ea dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x764ba923 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x764dd53c mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x76517f4c usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub +EXPORT_SYMBOL_GPL vmlinux 0x76579805 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x76630322 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7671d80f netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7673f4a3 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7675ac1c pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x767d3e8a __nf_conntrack_confirm +EXPORT_SYMBOL_GPL vmlinux 0x767dac0e kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76867299 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x768b09ee spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x769f216c devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x76a2aff5 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x76a67254 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x76a9c19d gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d8e962 usb_deregister +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 0x7702f765 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL vmlinux 0x770b715e pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x771859ae __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x773351a1 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x773cae2b pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x77420552 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x775184cf of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775d4ee8 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x775f6905 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x77780a54 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x777c74f3 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x777d18e4 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x77817fc6 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x7798e4c7 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x779cda29 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77bfcc1a blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x77c13f53 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x77c43614 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x77d266d3 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x77e5b2eb wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77e77bb5 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77ee33dc sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x77f3088b iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x7803bd8d raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL vmlinux 0x781247d1 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x7830ebc1 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x783fb995 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786a8c27 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x7871ed12 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x787c522c dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x788fe130 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a5ca43 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x78c1a60c ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x78c23f7a tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x78cbcbd6 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x78d57b87 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78ea1103 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x78f12007 nvme_wait_reset +EXPORT_SYMBOL_GPL vmlinux 0x78f49ee1 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7901599e nvme_auth_free +EXPORT_SYMBOL_GPL vmlinux 0x7903458b gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7906484b serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x79104847 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x791eb6b8 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x79226819 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x793a6669 nf_ct_remove_expect +EXPORT_SYMBOL_GPL vmlinux 0x793f98bc __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7940e0e7 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x7946854e regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x79469027 fat_detach +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 0x7958a396 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x796bcb4b __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x797c5bd9 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x79829583 mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7994c334 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x79a390bb sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x79b31418 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c78c4b start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x79d04667 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x79da90e3 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x79dbf770 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x79dea216 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e9a715 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a24269a tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x7a26d3f0 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a5fe98e fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x7a629c83 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x7a71260e nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8ba85b __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x7a971806 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aad8392 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b171660 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x7b29d765 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x7b3cd1d7 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b566143 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b726840 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7b77be6e pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7b78479c ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7b84a8b4 pci_ims_free_irq +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 0x7bb0ec2c thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x7bcc422b usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7bd34137 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x7bd75022 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x7be46eb9 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7bfcb671 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x7c05ea15 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x7c0ebb0c ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x7c0f8126 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x7c13ac51 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2d4c54 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x7c3d5ce8 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c59fec2 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x7c5a255a pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c755793 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x7c805513 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x7c891a44 nf_conntrack_find_get +EXPORT_SYMBOL_GPL vmlinux 0x7c8f8e9c phy_configure +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 0x7c9d5418 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb23cc7 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cc9aed8 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7cdcb494 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7ce503ab crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x7ce91996 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf8b7be bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0c3c05 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d1f496d fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x7d33c386 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d505f22 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7d55b77e regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d6886cd rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7d6afd86 of_device_compatible_match +EXPORT_SYMBOL_GPL vmlinux 0x7d6ccdfe pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x7d7182b1 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x7d772be5 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x7d810ff6 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x7d83fb37 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x7d8bbd7b xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x7db58d82 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x7dbc1de8 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x7dc1bcfa ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddced1c crypto_register_aeads +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 0x7e00a5a9 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7e0b054d onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x7e11ee26 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x7e167c71 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7e1e8c56 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7e327e96 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6abee6 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x7e6f7765 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e85f92a vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb0e4a2 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb67b36 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec160fa ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7ed10d08 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x7ed340df pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x7edb3b87 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL vmlinux 0x7ee15756 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x7ee3b520 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7ef5ef55 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ef6bb81 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f0748ec nf_ct_l4proto_find +EXPORT_SYMBOL_GPL vmlinux 0x7f1ae6d4 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL vmlinux 0x7f214a77 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x7f2ca260 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x7f3c73bd regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7f536ea9 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x7f5421df xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x7f67fef9 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f79b8f7 nf_connlabels_replace +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f7e57b1 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f8f4697 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7f9c335b i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fae56f2 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fbb054f pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7fd4d60d fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x7fe09d29 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x7fe7fca4 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x8008d95a fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail +EXPORT_SYMBOL_GPL vmlinux 0x802051dd watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x80210ac2 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x802ecf90 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x803236a8 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x803e7fbc devm_thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80472bf2 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x806a00e9 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x806aac32 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x80737204 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8076f237 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x807703e9 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x8080bb51 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80962517 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x80ae7283 vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c52081 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d1a9e1 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x80d597d0 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d84c58 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x80d98abe skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x80dae6b5 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0x80f26927 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x80f68ec0 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x8110a4ad of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81378f51 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x813e194c gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x81430432 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x8143a7d2 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x8149a1a6 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8157b2a4 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x815b50f6 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x81603372 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x8169fbcb pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x818f3ed1 dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x8190dc83 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x81966f49 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81a85c79 nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine +EXPORT_SYMBOL_GPL vmlinux 0x81bd1664 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x81cc5b45 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81e57018 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x81e5fd2b ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x81f165bc irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f73b46 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x81f8a11d nvme_set_queue_count +EXPORT_SYMBOL_GPL vmlinux 0x820413d3 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x82195c13 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x82246558 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x82318412 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x823c95d2 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x823f122a fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8246b531 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x8246de1b devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x8259ae3c perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL vmlinux 0x826b4399 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x826c6832 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL vmlinux 0x826f4b73 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x826fd98f phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82b1afe2 nvme_cancel_request +EXPORT_SYMBOL_GPL vmlinux 0x82b52e51 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82c8407e gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x82cace80 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82f4faa3 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x830687eb regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x83076f67 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x8314c17e __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8315edfe eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x832968e4 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x83385270 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833b4775 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x834d8a08 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x835029da devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x83701fe9 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x837fa0cf bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x83953b04 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x839e0d1d ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x83af27d2 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x83d3a58c fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x83e0774f driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x83e495f5 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x83efb269 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x83f31521 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x83f7ab7e fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x841016ee tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x84142655 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x8429e03e get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x842b75ea usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x844616be __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x844fafd8 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8474c41d device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x847b6fcd regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x847f0843 pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x8481ef7b fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x84974344 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84b53bb0 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x84b93421 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x84cdb608 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x84d3a3c7 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x84e3f273 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x84ee516c scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x8504b5cd power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x8505f96c percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850827f7 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850cc3b5 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8531d7ec iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x853e30df crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x85489a0c devm_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x8557da5a usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x855848b6 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x856f65db phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x858af67c ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x859b1ff6 phylink_validate_mask_caps +EXPORT_SYMBOL_GPL vmlinux 0x85aa1c26 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x85c0b393 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x85c2bbc1 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x85c86f6e security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x85d61896 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x85da3b14 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL vmlinux 0x85e1089c ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x85e1127d pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f1aaa7 acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x85f1ac5c tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x85f346c9 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x86078ac5 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x860845d2 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x860bef42 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862437a3 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x86389dc5 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x863d9897 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x86472178 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865bf8b5 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8662b47c fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x86758b2e usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867911a4 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8679e0e2 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x867b45e4 meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868b29a9 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x869f660c da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x86a5a8c5 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x86aa6388 usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0x86ad1f59 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x86af5097 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86bd9a5c governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86cc680d misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x86e2f9a1 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x86e618ca inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x870b400e rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87117ac4 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x8715e1d2 pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0x871d3d3a thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store +EXPORT_SYMBOL_GPL vmlinux 0x872c37da sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x87359f15 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x8741cf32 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x874c684f stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x8752bc8e sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x8755bc30 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x87593f1b usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x87599b92 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x87607771 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x87685327 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x87985625 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x87acee9f nf_ct_helper_init +EXPORT_SYMBOL_GPL vmlinux 0x87c75c9a spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x87ec861c pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x87f3418c blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x881d6442 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x883dc201 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x883e8189 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x8840b453 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x8857866f inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x887af7a9 dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x887b0d7c nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL vmlinux 0x888251fb usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x8889a074 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x8897d728 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x88a0a1ea blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x88aa2158 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88cb1a05 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88d1c54b scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x88d5b7e7 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x88e52a50 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x88e9e96b fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x88ed7373 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x89107c43 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x8911c196 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x8914a943 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x89232f95 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892aa5ad dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8939afc9 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89503497 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x8957aaf5 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x89652cf0 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x89751d97 nfnetlink_broadcast +EXPORT_SYMBOL_GPL vmlinux 0x8978867a regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8980ecc3 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x8988c9ed __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x898c59d5 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x89946def tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8999ce54 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x899d0186 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x89a7f5f4 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x89ab2835 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +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 0x89ceaa4a devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e6b63e device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x89e9fd8d of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x89f10d1b nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x89f57dba blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x89ff85ab inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8a0a04b1 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x8a0a60ce serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x8a0b5c45 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a15bce8 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x8a2a8378 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a2cc922 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0x8a2deab0 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8a3ed72a __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a440818 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a5a496a platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot +EXPORT_SYMBOL_GPL vmlinux 0x8aa470cd vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x8aa5ec65 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x8ab2cd2b set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x8aca29cd scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x8acfbfed __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x8ad18119 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x8ad42bb7 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x8ae1836f netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x8ae3c6ea pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x8ae8d109 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8b012c57 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x8b10cbe2 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b16d6c8 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x8b17bbff proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x8b19027c of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x8b1caabb subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x8b3269aa transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x8b35752f sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x8b3b60d2 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x8b3e2de8 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc +EXPORT_SYMBOL_GPL vmlinux 0x8b43bc8a dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x8b486550 nvme_complete_rq +EXPORT_SYMBOL_GPL vmlinux 0x8b583e4f crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b6ecd9b kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b7fdacc ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b91d86c __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x8b94aa36 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba3653e acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8ba73040 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x8bb0fb7d synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x8bb5fdcc set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x8bb7ccfa of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x8bb91172 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x8bbd8019 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x8bbdee7e edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x8bc09bc8 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x8bc41571 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x8bd1783b vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x8bd846b7 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0x8be25458 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x8be4b8e4 usb_get_descriptor +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 0x8c0b0bef vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c0fef98 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x8c11076a irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x8c236298 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8c25efe2 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x8c29d5da spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x8c2dca64 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev +EXPORT_SYMBOL_GPL vmlinux 0x8c55003b hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x8c5feba8 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x8c69a07a fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c974426 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9cfad3 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x8cb00f1c cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable +EXPORT_SYMBOL_GPL vmlinux 0x8cbc780b pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8cca88c1 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x8ce25fdf kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8ce321b5 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x8ce6695e ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x8ce97187 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x8cfc49fe sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x8d0332b5 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x8d0a4c7b fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d107f3d gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x8d205e22 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d26bbcc tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d323791 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d40f192 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8d451ab1 phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x8d74a510 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8d7b09fd watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d88eed9 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8d908623 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8db969b3 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dda26ad dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x8ddad45f device_add +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8de71c1d crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x8de8ffee device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x8decd23a pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x8df5ce89 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x8dfbc4a5 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x8e0b0c66 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e0c4a8c irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8e15161b bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x8e431cad anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4ca3f0 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e521fff kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x8e5e21e8 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x8e679aaf xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7701da adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8e7af482 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e8a3b8f irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x8e935db3 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ea2835c dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eadb87c attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x8eb14874 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x8ed54f65 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x8ed560a9 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x8eddd52d pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x8eebf415 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8efbec07 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f0c5290 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x8f15d26f modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8f182da1 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x8f1c4eaa subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8f238228 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f31114a gpiochip_line_is_persistent +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 0x8f3e9c75 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x8f49b0b1 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8f4f43d6 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x8f55fa13 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x8f5e90e2 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x8f625a68 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x8f630f2b devm_of_icc_bulk_get +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 0x8f7e664c dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x8f866f4a dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8f8ae385 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x8f8f7166 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x8f95c410 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x8f9d784c device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8fa9b912 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fb6b257 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x8fbfe731 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fd2830e clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8fe1a63e kvm_get_kvm +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 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL vmlinux 0x8ffff914 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x90223679 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0x9022942b rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x902c04e2 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x903917bf xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904e1643 md_run +EXPORT_SYMBOL_GPL vmlinux 0x90608988 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x9063cae1 fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x9070925e nvme_auth_extract_key +EXPORT_SYMBOL_GPL vmlinux 0x9072e1d4 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x90759053 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x909498e5 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x90960174 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io +EXPORT_SYMBOL_GPL vmlinux 0x90bf4315 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90de450b pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x90de53d4 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x90f75287 rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0x90fd4c9e unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x9108e40c icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x91112b32 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x91194084 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x911d3ca7 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x915572df fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x915cda0f acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91ae5739 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL vmlinux 0x91b167c4 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91bd043f wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x91c162e5 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91db812b __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x91deec19 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91ecd6ec hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x91f39ded usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x91f61573 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x91f72b2d power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x92018896 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x9203c8d9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x921305c5 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x923389f6 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x9236a94d __nvme_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x923aaf9d md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x92403fc5 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x9284614f mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x92980e1d device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter +EXPORT_SYMBOL_GPL vmlinux 0x92a1cce7 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x92b47af8 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92c0736b blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d5c8c2 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x92d78198 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92de87b0 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f86ed8 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x9301a1a2 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x930e322f tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x9314e5ec fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x932db0c5 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x933c7302 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x933fd1db usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x935eae9a gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x93642f7d fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x936e9b8b strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x93808d33 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x938274da tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x938b66a2 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x93aea335 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x93b6b7f7 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x93c123e2 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x93c72acf __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d84d67 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93fc4684 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x93ffbcd6 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x9400b4f3 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x94073666 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x940fb826 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x941d679a pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9428327e ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x942b1673 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x9430b170 __of_phy_provider_register +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 0x945b89be dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x94620ca7 devm_clk_get_enabled +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 0x9474f902 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x947e354d dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x948ef3e8 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a1872d mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x94a87e7f fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94ed69f3 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94f088fa skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x95026aea blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9503ea98 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950ddfbb kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951d2c3c irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x951e8414 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x95204588 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x95238b07 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x952ae984 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x95350a60 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x953878cd pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x95391512 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x953f838d md_start +EXPORT_SYMBOL_GPL vmlinux 0x95414a06 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x9546915f blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9547a8bb __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x954b0715 platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x954d1f62 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x954e9182 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x95583e9d __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955e21a7 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x957d1f17 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x95813c2f usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958953c8 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958fd597 nf_ct_bridge_register +EXPORT_SYMBOL_GPL vmlinux 0x9592249e msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x959b76d0 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x95a4a704 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95e70534 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x95ea06a1 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f22730 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x95f2ae1e __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x95f34f76 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x95f5a7d0 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9604a125 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x962032c7 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x963ad7eb edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x963ca902 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9640faf7 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x965286cc iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x9653340f vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x965426a6 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x9654cded hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96695128 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x966add2f ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x966efcec usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x966fbad7 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x967210aa md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x96784043 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x967c5ab2 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x967fa07f PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x96814bfe blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x969a7aaa crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x969adca4 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96ad1a7d gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x96b32ed4 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x96b508ea usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset +EXPORT_SYMBOL_GPL vmlinux 0x96d5665e spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x96dbe412 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x96f27f16 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x97055c4d dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x9709c6f0 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971923b9 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x972f3d3d __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x972fdd41 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x973702d3 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9755ad40 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x975dd634 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x975e881d pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x9761427e __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x978c4cea auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x97a228c6 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x97a7affc do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x97af7daf wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x97dc489a devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e00519 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0x97ed9c42 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x97f01970 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x97f9bdb5 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x9800692b acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9810c5a2 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x9811d6ad regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x9812c13f devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x982650a1 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x9826a3a5 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x9826b1f5 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x982f6668 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x983205ca devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98344ce6 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x9837b832 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x9846c23b virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x98496303 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x984eb77e devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9851aef0 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9867398f fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x987641ce copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987d7b92 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x987e8a78 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x987ea96e netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x9897b0ec tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x989c4cfe device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x98a9b19d nvme_delete_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x98b29496 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98d28c93 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x98dd0fa5 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f80735 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x98f826e5 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x99159e13 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x99195635 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x991e603c regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9923f7f3 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x992f2530 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x99442126 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x9951c841 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995d4548 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x9986760c usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x998a9aae __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998fcbf2 clear_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x999b08d1 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x999dd2dd ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure +EXPORT_SYMBOL_GPL vmlinux 0x99ae6321 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x99c9d4e2 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x99d21e85 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x99d32054 rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x99e2d855 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f4aaff extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x9a03f965 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x9a0854b7 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a23b76c unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a34c664 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x9a35aaac wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x9a3d391c nf_conntrack_helper_register +EXPORT_SYMBOL_GPL vmlinux 0x9a4c97bb irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5a03de vcap_chain_id_to_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9aaa685a clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac623f0 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find +EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule +EXPORT_SYMBOL_GPL vmlinux 0x9ad35c36 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x9ad72394 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x9ad80f28 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9ae74f42 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9afb7b1b pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x9afef992 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x9b0a136f led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b0ed41d virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x9b146903 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9b2cf22d serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x9b2d2c16 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x9b2f5f17 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x9b3442a8 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x9b3dfaf6 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5ab367 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x9b60029f crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6a3bc8 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b6f6bc4 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b73420d dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9b752102 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x9b8f3202 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x9b90660d __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9ba0b128 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba90930 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x9bb87d3b locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x9bc6b34d pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x9bcfa5aa i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9becad92 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c216119 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL vmlinux 0x9c26a29a trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x9c2e5187 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x9c2f504e cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x9c3382f3 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x9c347617 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x9c35c2d6 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x9c392df1 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c459945 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x9c4b20c9 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x9c6c0621 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7103d5 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c94777a led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid +EXPORT_SYMBOL_GPL vmlinux 0x9c98deaa __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location +EXPORT_SYMBOL_GPL vmlinux 0x9ca9262c sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cbc452a imx8ulp_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cd94c4e virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9ce05629 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ce34844 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x9ceb009b devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9ceefd12 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cfa7210 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d16c25c blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d331c57 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x9d5c5d50 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL vmlinux 0x9d61fd1c get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x9d7b4aad sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x9d7e5c1a pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x9d8b9374 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9da2e966 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x9da38be3 pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x9dc26d17 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x9dcc2139 of_msi_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x9dcd583f spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x9dd2a4cc trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x9de2f0bf devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x9de72165 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x9de7dcb3 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9df16180 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x9df849d7 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x9df8deb5 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e20702a clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9e2e89c9 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x9e3f1b0f __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x9e41ea64 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0x9e44e892 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e516e21 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x9e61a482 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x9e65fc08 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9e686edd of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x9e6bb157 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9e821faf tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x9e8b34f5 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9e8eb093 dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0x9e8f3629 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9e936746 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9e93f050 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9eaadd6b get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x9eaf7b67 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x9eb19704 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edf5214 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9eec56df gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x9eeccf5e rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x9ef2c7b2 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x9f0affa1 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x9f17bf68 dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x9f211b31 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x9f2b3cc4 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9f2de753 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL vmlinux 0x9f2e44f3 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x9f3edd2b devm_platform_get_irqs_affinity +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 0x9f615886 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9f693a00 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x9f8a2931 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x9f8d3f15 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fa9f6c0 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x9faa6b59 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x9fb0f4ef dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fcbd6ba ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fdc3518 blk_freeze_queue_start +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 0x9feff55e attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x9ff0dde9 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x9ff1bf10 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x9ff5c77f folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01f21f6 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0xa03fa7eb locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0464f3f mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa061d00e is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa06617ff cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa07338a4 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xa0750f34 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa07ac3e8 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0xa0ba4239 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0c4cf2b rpi_firmware_clk_get_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xa0c55553 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d74e27 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa0dfbc6b mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xa0e1c58e ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xa0fc990c sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa0fcdc8d crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xa0ff95c1 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xa105c324 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xa10ce43e irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1159bf0 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xa11b7300 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xa1391455 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa1490258 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xa152d319 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa176283a devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xa18b75b7 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xa1944cb2 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xa19add4b disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xa1a08cd8 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1d0b2c6 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1f036ff fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa211d9bc dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xa21e21c2 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa230fd06 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xa2348ffe devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa23640be nf_confirm +EXPORT_SYMBOL_GPL vmlinux 0xa246ac55 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xa2495a5f device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xa24fe3a7 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa25cf0ec ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xa2684f40 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa28f40bd __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa29cbc67 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0xa2a9577f gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b8179d power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2bf2af7 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xa2bfce48 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0xa2dcb6ff unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xa2e05ced handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e9738d debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa3308b2b vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xa33ab94e dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa348c354 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa34f42f8 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xa35d342a vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0xa363393c debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xa368b343 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa3762ef2 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xa382c7c1 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa3879ce1 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xa3997dc3 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a7e237 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c0c24b invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xa3ce971e thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3e8304b driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f6fde9 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xa402b788 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41333bb folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xa41d3ff7 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xa4213da2 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xa42be99e nf_ct_netns_get +EXPORT_SYMBOL_GPL vmlinux 0xa4324da0 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa45b26c3 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4923b64 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xa49824b0 usb_acpi_set_power_state +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 0xa4d644cb regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xa4de0572 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa4f8957e pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xa4f9e615 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa5070a40 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xa511b6ac wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xa51675ed icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa518a540 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xa520048b pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa537ef76 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xa53a875f meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xa53d2106 __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0xa549ddcc acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa54c0bdb genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xa55bc898 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa55db800 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa5620b11 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xa57407dc devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev +EXPORT_SYMBOL_GPL vmlinux 0xa57bcc5f rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa57febff __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa58827b6 dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0xa5895cb0 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa5978de9 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL vmlinux 0xa5a21c6b devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa5b05735 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xa5b219b9 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xa5b3fc24 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa5b9936f usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5cc5fb1 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa5cc858b nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e22014 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xa5ef0de4 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f453fc dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xa6045b4c dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa613809a cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xa6157e5c relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xa61c6825 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa6324a55 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xa6366723 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xa63cbe6a __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0xa63cc89d skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0xa64c0c06 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa66fa7b0 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xa67d376c blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xa67ec887 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xa684a2e0 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xa689c57b device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk +EXPORT_SYMBOL_GPL vmlinux 0xa6a9f904 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa6ae5a67 sk_attach_filter +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 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6dcf4fc dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eb6eb8 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6f82686 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xa6f86608 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xa6f97d23 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xa6fabc36 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xa7071940 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70f61c0 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xa7100ef9 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0xa71fe589 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa72dd105 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa73274e7 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7368aaf kick_process +EXPORT_SYMBOL_GPL vmlinux 0xa73c3b08 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0xa766c913 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa79a6553 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa7b675ba usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xa7b767d3 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xa7d4be2b to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xa7d6f6c9 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xa7f6c9a7 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xa7fa3e38 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xa805cc0c usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xa82dfcba tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xa836460e thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0xa839fb7e devm_thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0xa83f044b ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0xa84afe55 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xa8518ec5 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85fc9be phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xa8660005 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xa8694c48 tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0xa87a54d2 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa8802f88 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next +EXPORT_SYMBOL_GPL vmlinux 0xa88bb32b wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xa895929a __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a3170e clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8a7a490 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xa8fa1663 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa90e4433 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa910e904 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xa92880c9 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xa92cfee3 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9386130 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xa944d905 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xa94b5353 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xa95582c1 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa956ffde power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa96c50fd tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa98309b2 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xa992a2ec attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9ac9ccd pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xa9bc2b98 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xa9bfc09b fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xa9d120f5 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xa9d39679 mtk_clk_simple_remove +EXPORT_SYMBOL_GPL vmlinux 0xa9ddb2d5 fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0xa9f72c4e nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xaa052d1b i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xaa0ba8e8 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0xaa14648a ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xaa161fb8 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xaa29d0dc vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xaa2c0f68 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xaa47ddf7 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xaa4d92a7 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xaa62465f skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xaa670446 acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa8621cc dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xaa8638ed acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xaa946b6c acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xaaa59c1e regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab053fb iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0xaaba93c6 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xaabdbfb2 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xaac575eb fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0xaaccac40 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xaad4b039 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xaadb223b gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xaadd634d __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xaadfb827 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xaae4712c key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xaaf68213 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xaaf9f4f7 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab0ff87e ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab21bc58 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xab2f9854 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xab48bace icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xab4960eb devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab4d10c7 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xab521aa1 mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0xab57212a xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xab7e1e90 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab917ce9 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xab949f2b nf_conntrack_helper_put +EXPORT_SYMBOL_GPL vmlinux 0xaba309ae inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xabb3695e cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xabb677bb __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xabbaa24f tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xabc31e33 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xabd4c3d7 nvme_complete_async_event +EXPORT_SYMBOL_GPL vmlinux 0xabe1c2f6 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xabf76380 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xabfbb949 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xac0e2c43 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xac0ec157 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xac2614c5 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xac3c0c79 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xac3e0c4e inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xac448246 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xac44d771 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xac461176 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xac5cf9c3 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xac63edc1 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xac6bad19 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac950136 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xaca41a45 mtk_mmsys_ddp_dpi_fmt_config +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacbe5fbd rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacccd371 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xaccd1545 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xad096cc4 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad287ca1 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad4fac3f get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xad5b1489 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6e7d65 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad941a94 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xad9cde74 ahci_platform_find_clk +EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xada06fc7 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xada2d87b fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada3ed8f __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xada7c33f wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xada7fb77 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xadaa9d9b bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xadb0893f pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xadca3651 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xade8a261 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xadf9c1b3 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xae02e3d0 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xae0c3af6 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae151e01 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xae1c79fe hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xae2258ce reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3aeab3 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xae3b81e5 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xae55ca3f devm_of_phy_get_by_index +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 0xae6cb79c pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xae72d8c1 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xae747e75 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7c2673 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xae8dd9e4 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xae9a8ba5 thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaea7048e nf_ct_expect_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaebd51ed kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xaed79364 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xaed8661f md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xaedb2236 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xaee9d335 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf3cc269 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xaf3ed93e srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf401684 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xaf40f879 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xaf56fc70 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xaf5aae52 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf838884 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf92d826 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xaf9fef8f genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafbcfdb9 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL vmlinux 0xafc89928 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xafd0381c regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xafdc2d0d devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe8c88b regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xb02708d7 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0419687 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb04e23a8 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07cb51e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb08ad7d4 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb08e0a6a ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xb09193b0 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb09553de vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xb0964865 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xb0aefeb4 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb0b23cfb debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0b8ca38 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xb0c12104 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d37898 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb0d623f4 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0ee51ba usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xb0f1bf93 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xb0f41b46 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xb1021951 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xb10599dd mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb112007f ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb12e365c tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0xb144f635 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xb1462393 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xb1471356 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb14aa3de handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xb1568ed9 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb15e96d5 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb17047f6 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xb178501c fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xb17f68b3 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xb18b8567 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xb1a34ffc ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xb1b83a9a hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1cdcbd1 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xb1e20b28 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1eada4b mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb201e536 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb20c6594 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xb211f104 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xb219335d page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb228d619 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb23059a3 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xb23073bf mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0xb23c4cc0 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xb23db07d posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24a6e65 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb253a1e8 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb2585e08 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xb2636a0c gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26fd2ef unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xb2704b30 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xb27328d8 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xb273d84d component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xb283d50e fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2953792 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xb2bf7473 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c1b392 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xb2dee52f hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e8d7ef dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xb2f17f08 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb2fe8db2 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb3010491 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xb3021ef3 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30ee423 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xb335050a devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xb3374001 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xb33ea5e9 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0xb341b6c2 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xb343ce71 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xb34cc54a pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xb34eb076 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xb352fd31 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xb3592a2f tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xb35acbfd ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xb36ce353 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xb36e450e iort_get_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0xb3730f5b sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb377e841 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb3783467 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xb38da735 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0xb39356f5 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL vmlinux 0xb3a173a5 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xb3a2dea3 apple_rtkit_quiesce +EXPORT_SYMBOL_GPL vmlinux 0xb3a48b54 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xb3bedf07 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xb3cb5e6f dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xb3ceb4f0 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xb3f532e4 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb3ff9f3b fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0xb405da67 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb41c0dc6 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xb41e1019 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0xb42075c5 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xb43754c1 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44152d7 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb44dcb9c of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb453bee4 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xb46dce0c bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb46e7474 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event +EXPORT_SYMBOL_GPL vmlinux 0xb48f8db5 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xb4b70fc3 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xb4b88852 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd0adc sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xb4c736a1 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4cb34be devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xb4e01fe1 bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0xb4e07216 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xb4e30812 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4fd4159 fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb507ef94 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list +EXPORT_SYMBOL_GPL vmlinux 0xb51db6f7 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb52f8d52 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb53434f9 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xb5356f83 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xb54a460d debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xb54ca315 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0xb5588343 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xb55c9a8f mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul +EXPORT_SYMBOL_GPL vmlinux 0xb56888ee ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xb57c6fa2 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xb59e702b mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xb5a08c73 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5ae2a91 spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0xb5b26be2 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5c7ec10 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xb5d8c950 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xb5e1dabe class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb5eba170 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xb6062055 apple_rtkit_poll +EXPORT_SYMBOL_GPL vmlinux 0xb6064564 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb6064c72 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xb61c26a3 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xb61d98f7 vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb6358fea clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xb63a59d0 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xb63e533a ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb6568a1b __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xb65e6b08 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0xb6653fd9 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xb66722ee ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xb66b127a iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67d10de skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb689d4a0 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xb68cebd2 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xb698a31e rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb6a0a653 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb6a7a511 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xb6b0df03 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xb6d20594 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6d562bc vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0xb6dba0ee blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f68025 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xb6fe26d9 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xb7093b16 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xb712b4dd nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL vmlinux 0xb7193d5f bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xb729d748 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xb72c005c of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb7618f58 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xb76fdeef devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb7993e3e iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7b17711 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xb7b2f078 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xb7b34c50 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb7b62241 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xb7c25f6f dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7d3e335 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb80ed08f fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0xb8187431 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb826c38f br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb8329e89 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xb84dd8ff ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb8673b83 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0xb879a656 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xb87c093a xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb897a99d fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a788e3 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xb8a97b46 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xb8b17f2a gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb8b3ac9a pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8b97fec __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8eed0d5 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f60bdb of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb9249b04 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xb92509cb inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb94ad104 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xb9545f0e nf_ct_tmpl_free +EXPORT_SYMBOL_GPL vmlinux 0xb959de36 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb9686275 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xb96ba169 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xb96bda3d bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xb96dcfb4 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xb977fc54 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98ea535 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xb99579b9 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0xb9a6474e trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0xb9abe2a8 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xb9b08928 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xb9b11d33 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xb9b6072c devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb9b87513 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bb4588 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c299c8 dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xb9c38de4 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c94fc9 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xb9ce13bc power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d3bbd5 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xb9d78c6e vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0xb9e4bb04 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb9ecbf5f devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xb9ed0d65 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xb9feeabc rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xba14e4ea nfnetlink_subsys_register +EXPORT_SYMBOL_GPL vmlinux 0xba174f12 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba282bf6 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba33d3ba nfnetlink_send +EXPORT_SYMBOL_GPL vmlinux 0xba3e0946 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xba4f8524 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xba5f886f regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xba716ee0 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xba7831cc regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xba8bc4dd devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xbaa3eecf amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xbaacd13c thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xbab5f6dc mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabfc55b of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbac3522a __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xbad16255 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xbaec16a4 apple_sart_add_allowed_region +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf516ef rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf85b1e of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xbaf9984e device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb055638 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xbb08b22a devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb1f1b5d dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xbb220ab9 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb278684 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xbb3c190e mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbb440ad9 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xbb5b24e1 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xbb5e0471 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb67cb3b spi_sync_locked +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 0xbb821520 nf_ct_netns_put +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb947bc4 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xbb9781eb ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0xbbac120f vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0xbbb40070 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbd1c11c serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xbbddeb67 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xbbe2771f pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbf82b6f zynqmp_pm_set_tcm_config +EXPORT_SYMBOL_GPL vmlinux 0xbbfdad1e extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbbff2976 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xbc0ebd11 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL vmlinux 0xbc1ca93c clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xbc2584fd __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap +EXPORT_SYMBOL_GPL vmlinux 0xbc374e18 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xbc3e6eb6 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc61962d pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7d5954 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xbc87a1b3 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xbc8a7f48 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xbc95d795 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcb74a5a nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcccbec7 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbcd45805 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcffad58 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd07e00b fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xbd0f6bd1 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xbd2daf19 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd58a136 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xbd6a5ab6 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xbd798f6a clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd85b115 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xbd8edf94 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbda0ccf2 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xbdae9436 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdc1b97d screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xbdc2c399 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xbdcd3074 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xbdd947d0 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbde414d6 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xbdec7523 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xbdf58001 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0xbe221149 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe38e3ac acpi_device_fix_up_power_extended +EXPORT_SYMBOL_GPL vmlinux 0xbe3d28cf mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xbe421f39 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe5d6df4 regmap_get_val_bytes +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 0xbe8898de of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xbe88ceba ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xbe91d9af __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbe9454d3 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xbe9508c0 tegra_mc_get_carveout_info +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9c8137 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbe9e1657 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea6c24a tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xbeacbdaf alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbede0288 apple_rtkit_reinit +EXPORT_SYMBOL_GPL vmlinux 0xbeebcc1e rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xbf03dcf2 k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0ab857 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf3e2096 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf403872 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf495b40 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xbf523b3f fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xbf550723 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xbf55b6e6 icc_put +EXPORT_SYMBOL_GPL vmlinux 0xbf5f149d sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xbf6513a8 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xbf67355f regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xbf6a149e dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0xbf6fca95 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xbf7c25f9 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbfa2bd8f clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xbfa4263f tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xbfb43d3f blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xbfb9863e kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbd76d3 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbfbf9ead firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xbfc32929 acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0xbfcb1492 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xbfcce981 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xbfcffdcc kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xbfd4a971 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xbfdf62a7 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe61aa9 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xbfe674e8 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xbfe829ad i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xbfebed87 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xc01d6c30 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xc02750c3 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xc0410c52 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate +EXPORT_SYMBOL_GPL vmlinux 0xc04ea6fb __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xc0584cbe gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc05e38f2 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xc067c885 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc068ab3f __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xc06c5ab2 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc074f1f7 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xc07d7cb9 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc0828d2b gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc083ba47 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc098888f iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc0994fca dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xc0999dd3 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xc09e48e7 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base +EXPORT_SYMBOL_GPL vmlinux 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0be6edd clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc0beeb06 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc0d7205a nvme_set_features +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0df8bf5 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL vmlinux 0xc0e41cf6 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc0efe945 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0fe51f1 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xc1001864 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10d5a50 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc117f76a iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xc122686c nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc12d2b26 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xc13214d2 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc13d86ef of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xc1486293 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL vmlinux 0xc14c7516 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xc150fcc7 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xc15ea6ad phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xc1674a08 apple_rtkit_boot +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 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL vmlinux 0xc194191a of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc1a136e0 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc1aae7ea firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc1b77f6f bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xc1cef3bb ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL vmlinux 0xc1d40bbd of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xc1d7e245 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc1d8b7ec pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1e2fd40 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xc1e5303b sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc20fe8fd cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xc211b200 nf_nat_helper_register +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0xc23b08bb dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc25aaaf9 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc25daf76 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc269fb46 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc278c8b0 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc28a0118 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2b46e02 clk_hw_round_rate +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 0xc2d87bec of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e76115 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xc2f0432b rpi_firmware_find_node +EXPORT_SYMBOL_GPL vmlinux 0xc2f8686d pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xc2fe5d27 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xc301ffd2 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xc317906a of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xc32a396d pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xc332284e crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xc33f6bde sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3446872 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xc34977b3 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xc34e4a47 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc37cb73c trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc388df68 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xc39484a6 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xc3a01bb6 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc3a5557d nvme_setup_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc3c1e6da devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c674c7 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xc3c97eda __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xc3cd6929 dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0xc3d82a8c kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xc3d9de87 vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0xc3dcaf04 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3ec5097 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xc3f0bb7b ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL vmlinux 0xc4112bb4 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc420333a usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc43d165f bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc4400db2 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xc4474dc2 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc44a7302 phylink_generic_validate +EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config +EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc44d70c3 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xc451ee8c gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc46ee7a4 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xc4706029 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc472c0bb of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc49698a7 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc49d434e pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xc4a098ae ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4b456c8 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc4ba7713 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc4c9a140 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xc4cd2249 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xc4cd8bc5 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xc4e06aff fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xc4e4d8b3 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xc4f0669d __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f24f5b vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xc509a574 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xc50dc8b5 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc51c0b3a kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xc51cbf2f regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc5487f52 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xc5498a6c skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc564a756 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56da259 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5773276 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc57bbd2a mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xc57f835f kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xc58550a9 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58a9be9 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xc59da3c0 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xc5a25efd usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5bdaeb9 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xc5beddb2 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xc5ceb9c4 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xc5d28382 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xc5d31dd1 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xc5ddbbb9 of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc5ecd090 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xc5f14859 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc60a8adf __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6245bde cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError +EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xc62d36af __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xc644eb36 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xc653cf52 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6562a0c devm_hwmon_device_register_with_groups +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 0xc6704444 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xc675006d virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc679a279 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc688c6e7 mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc68defba folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xc69751a3 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69ad694 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69ec59b icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ad0400 devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xc6b4833b sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xc6b51a47 nf_ct_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc6d96afc crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6eff143 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xc6f4248d input_class +EXPORT_SYMBOL_GPL vmlinux 0xc6f782ad sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xc6fb5538 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xc6fee8c6 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xc6fef1fe crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc706afad __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc739cbe6 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc757bf0e nvme_change_ctrl_state +EXPORT_SYMBOL_GPL vmlinux 0xc75b92fc __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xc7662697 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc78c6ff1 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc79380a6 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xc79bba44 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7abc4bc k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc7aee7f9 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xc7bb5292 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7cf0e90 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc7dbfb31 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc7df3705 pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7f60a8e usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc8093a13 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0xc809f447 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc80bd8af sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc817950a mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xc8241b6e __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc8307f60 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xc8363d8b rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc84c7381 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xc84e5a3b nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8512c13 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xc858ac79 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc892a200 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets +EXPORT_SYMBOL_GPL vmlinux 0xc8a1d170 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xc8b0c5c8 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xc8b1ec35 nf_ct_add_helper +EXPORT_SYMBOL_GPL vmlinux 0xc8c8889d crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xc8c8c946 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xc8d831c0 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xc8d9b884 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xc8ddc2f4 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8de76c8 mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0xc8e3fad5 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xc9074a73 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xc91a9657 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc92fc58f alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc935f7ee ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9406773 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xc9431bd9 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc959d825 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc95b4226 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc964c3d5 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc97a6dd6 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc987e4ea imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0xc992aa69 iort_put_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0xc993b533 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xc99dcd06 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xc9b47974 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xc9b5d74b __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xc9bb48ac nvme_auth_dhgroup_name +EXPORT_SYMBOL_GPL vmlinux 0xc9c29555 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9eb89a0 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9eea280 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xc9f86747 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fc3715 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca283ac1 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xca32a9ae dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xca439967 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca4884d6 fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName +EXPORT_SYMBOL_GPL vmlinux 0xca6dfb56 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca822d88 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0xca92fc49 mtk_clk_unregister_dividers +EXPORT_SYMBOL_GPL vmlinux 0xca9640b1 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xca971671 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaac5543 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xcaac7787 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabfe132 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xcac0bdae restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xcac568da pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcaca1647 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaefa312 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcb0e3ca8 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb379513 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xcb39603c nvme_auth_hmac_id +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb73e442 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xcb89b72c public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xcb9fbfd0 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xcbae5fb2 dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0xcbbbc97e netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xcbd11278 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xcbd4ca6a devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xcbdaaaf4 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xcbde8659 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc1b9e34 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xcc1e9710 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc2fb75c kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xcc3147c3 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc4ca253 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xcc4e72a0 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xcc507110 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xcc55133a clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xcc6e94f9 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xcc734eaf nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc810ca9 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc92fbe0 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc95102f ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xcca2f66f __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xcca77a89 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xcca84515 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccb47aad phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL vmlinux 0xccba2e9b cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xccc9f8aa genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd449b4 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccddf8ea scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xcce2e945 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcce5d360 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd0aa0ab thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd0f0f2b devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xcd2317dd mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule +EXPORT_SYMBOL_GPL vmlinux 0xcd3a8576 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd49cecc nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xcd51e32d crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xcd5b248b devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd6e917f usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd756c72 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd79cd82 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xcd7c0e83 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd950358 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xcda3181c pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xcdaf14a6 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb90b07 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xcdc3c800 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xcdc65df0 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde1fdaf regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdf7b27f blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce1032f1 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xce114807 rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xce1b124d dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xce213ab4 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay +EXPORT_SYMBOL_GPL vmlinux 0xce317c7e mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xce49bd07 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0xce58c0a2 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce7a152b genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xce7abebe ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xce8a6939 __nf_ct_expect_find +EXPORT_SYMBOL_GPL vmlinux 0xce8b99d1 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xceac0b58 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcecd38b0 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xced98323 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xcedffbd3 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee7834a irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xcef4a615 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xcefb992c ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcf3e4967 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xcf523c2e pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xcf5286f1 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xcf59f824 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xcf6db978 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcf6e0d32 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xcf72eecc mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0xcf7a4689 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xcf8250d2 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xcf949d7a kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xcfa2c169 mtk_clk_register_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0xcfa31899 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0xcfa729a9 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xcfaa1a91 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xcfac28af ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xcfb1da3a __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xcfbd7c52 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xcfc20342 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7ab7c devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfd975f4 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xcfeee55c ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xcff29f51 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xcff6b30b usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xd00290f1 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd00c48a0 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xd00e9328 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xd0149973 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0xd0196f09 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0xd01dabc4 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xd024f688 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd02c554e ata_port_freeze +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 0xd0568eab tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06a487c regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xd06bc2d0 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd06c5e52 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0b31ae3 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xd0bd0aeb regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c6782c bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d196f2 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xd0d3eb90 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0dd68b8 icc_get +EXPORT_SYMBOL_GPL vmlinux 0xd0dffc93 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd108703c icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xd115c5ca mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xd120186c regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xd12f110e ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd13a3ad8 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0xd13e4af8 dma_fence_unwrap_next +EXPORT_SYMBOL_GPL vmlinux 0xd141aed4 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd14b767e usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xd14f121c pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15c9ba1 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd176586b ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xd176e434 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xd183fb0d kill_device +EXPORT_SYMBOL_GPL vmlinux 0xd193570b pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd19eb573 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1b0bbea lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xd1b5b371 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f35c89 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b582a tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0xd24a52e2 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd2574df3 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2758740 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd28aee2e mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xd2911818 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0xd293fe36 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd29c23c6 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xd2a0d116 mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xd2a14a63 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xd2a45c16 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xd2a6d670 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2aad3bb dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xd2ac1522 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0xd2afecdd usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xd2b05af8 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b9280e dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xd2c4dd64 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xd2cf007f icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xd2d723f4 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2dcf284 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd2ef6a40 phylink_mii_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd2f3c601 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0xd31985f5 badblocks_exit +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 0xd324e782 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xd32a065a devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xd33986c8 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd35b0fdb nf_conntrack_in +EXPORT_SYMBOL_GPL vmlinux 0xd3602c98 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xd36517d6 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd36b5f52 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd36e9ed5 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xd3714a04 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 +EXPORT_SYMBOL_GPL vmlinux 0xd398926a crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xd398cf2a nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b3b419 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd3ba4f7d phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xd3bceb18 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd3cb6989 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd3d3c8c1 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xd3e5a706 bio_iov_iter_get_pages +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 0xd3f1ecf3 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xd3f45237 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xd3faadbc pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41d8536 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xd423e071 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd43958f7 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd43bcf3f xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xd449c0fb phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44b9e5d scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd456b183 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xd4606cde __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd47b94e5 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xd489287b debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4939f2a __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xd4a335a5 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4ab954e crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4be2f93 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c33ed8 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xd4c6ebce max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4d24599 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xd4d7e84a ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xd4ddb92e nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL vmlinux 0xd4e0bb2d trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd4fd3ff1 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL vmlinux 0xd50e8516 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xd5154625 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd534d164 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xd534dea7 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd53d160f ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd53e33f8 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd5489915 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55e8dd3 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd56258ba dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xd5640337 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd5656d20 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop +EXPORT_SYMBOL_GPL vmlinux 0xd583a7a1 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL vmlinux 0xd58f2276 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59beaad gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xd59c5fb6 component_add +EXPORT_SYMBOL_GPL vmlinux 0xd5a48865 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xd5a73603 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5a94e06 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xd5aaf8a4 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xd5b7dee9 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xd5b919b0 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xd5c4ce5d sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xd5c79cdd __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xd5ccac94 power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0xd5d449d2 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xd5df468b fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xd60cb97c vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0xd6102e9f ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xd61cb444 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xd621560f disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd6234672 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xd6246493 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xd629b498 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xd6380c77 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd656ffe1 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xd65a2333 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd665d601 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd675d6ff udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xd689c7aa device_register +EXPORT_SYMBOL_GPL vmlinux 0xd69209e0 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xd695639a sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xd6a86294 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xd6de9965 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xd6e5f9da nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL vmlinux 0xd6ecfd33 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xd6f050ef led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xd709f449 devm_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0xd70b6817 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xd70ed7c9 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xd7183714 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xd723d0f9 devm_rtc_nvmem_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 0xd7350dc1 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xd741f7dc kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xd743d7bc kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xd753e95b nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd75aaf47 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd7661b93 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd770474c pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd781149a regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xd78b5d15 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xd791c03c transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd7a7fde0 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd7aa2f76 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xd7b072a7 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xd7b1b785 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xd7baf685 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d1fca0 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0xd7d31d61 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7db2e6c finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd80d699b vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xd815084f pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xd84178a0 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xd8485ac0 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd862f45e irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xd873db3b pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd8793d52 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd888be1c fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0xd88defca __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0xd89d53e5 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xd8a3d9f1 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd8a81389 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd8cd19a5 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd8cdf68b genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xd8d02908 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd8d0aedd dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xd8d30ac8 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8da7116 nf_ct_change_status_common +EXPORT_SYMBOL_GPL vmlinux 0xd8e0ec74 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xd8f9ceb3 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd903f419 phylink_get_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd9075cf1 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0xd9077f25 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9135e65 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd918a65d srcu_torture_stats_print +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 0xd939b471 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xd9454d4b cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd948853e pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xd94b54a3 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xd94cf83f gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd9568cb0 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd95b977e bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xd964ee48 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96fb52e kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xd9753622 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xd97b9b89 acpi_cpu_get_madt_gicc +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9a20929 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xd9a2bf1d sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xd9a96cfa iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xd9aaf999 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9df843c pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e3f3de xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xd9e6f631 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xd9ef171d spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9fb4990 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda04b215 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0c1335 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0d1713 vcap_rule_get_counter +EXPORT_SYMBOL_GPL vmlinux 0xda12c864 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xda1ee45b __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda321c4d rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xda35fa78 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xda3ce338 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xda3d6e7d uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xda43c22e device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xda50ffb2 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xda5b1e11 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xda5c7473 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xda6036b2 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xda6ed357 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xda76cf23 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda82ed96 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xda8da8b1 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xda8df3a3 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda9b58cb kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaacd911 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0xdaae8a64 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xdab02b0e generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdace1049 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xdad002e5 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xdaed4fea access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb010ae8 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xdb01567b usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xdb10f959 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xdb158876 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xdb297765 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xdb2b3ac1 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xdb392a5c irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xdb493a2f dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0xdb4ba5ca dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xdb537b1b free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6a878f devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0xdb6e9576 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset +EXPORT_SYMBOL_GPL vmlinux 0xdb73f03e securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb95d59c irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdb96e92d fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0xdba19960 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xdba43290 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL vmlinux 0xdbab3bfa do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xdbb415a4 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xdbb533ea __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xdbca8a5b relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xdbd14387 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xdbd16970 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xdbd5fd8f dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe391eb genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf07f9f dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xdbf46847 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbffc059 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc139c13 k3_udma_glue_tx_get_hdesc_size +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc347bd1 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc436c82 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc48988c dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xdc521064 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xdc541478 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xdc567889 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xdc5ae0e5 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc63ad44 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6680c2 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc67762e serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xdc74db69 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xdc761290 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xdc79187c gnttab_page_cache_init +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 0xdc88edb4 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9a7ca9 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xdc9edd7e clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca2cf56 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL vmlinux 0xdcc1b422 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xdcdc4a5e serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xdcde6b3a ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err +EXPORT_SYMBOL_GPL vmlinux 0xdcf5b965 nvme_wait_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdcf6d365 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xdcfa27a3 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd15087d usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xdd245973 mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0xdd35726b spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xdd439064 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd4e69ea regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd7a1308 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd886c38 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xdd89f879 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xdd937cc9 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdda11e97 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xddb4e952 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd7e4c2 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xddda5a42 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xdde4b650 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xdde60fde sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xdde67624 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde0b655d fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xde0c29b6 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xde13d0d6 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xde16ac95 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde18706a vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xde1ea97b crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde38eacd pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xde4eac12 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xde4fe2bf hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde507965 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xde5ab244 vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0xde5f1deb wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xde65574b tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xde6f1237 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde707c51 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xde70c210 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xde8a1fec dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xde930260 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdebd7bda regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xded37353 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xdee646a4 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf058d2c led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xdf07f4b1 dw_pcie_host_deinit +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 0xdf1912b1 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf21770c ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf267f4b sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf28834f cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xdf2ab5ac mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf44ffc7 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xdf487c2a class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xdf6c78d9 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdf78f6d7 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xdf8ec660 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xdf9bad62 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xdfab976a of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xdfb1d113 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0xdfcaffc3 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfee49a1 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xdff08334 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xdff54d8e irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xdff82f49 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdfff5fca virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xdfff88c3 bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0xe004635c serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xe01c753b __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe025a269 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe033208a ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0xe03d570b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xe03fcbe0 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xe04262e9 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xe042ef2a pci_p2pmem_find_many +EXPORT_SYMBOL_GPL vmlinux 0xe04abf8e bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xe054daa5 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0751a93 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xe08dc955 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xe09631d6 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xe09b84a5 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xe09c70f0 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xe0a5cca4 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xe0a855cb led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe0a9d6b1 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xe0aad226 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b79c99 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c81862 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xe0ceacfa fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xe0d58e8c pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0f4c36d nvme_reset_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xe1009aaf regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1117938 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0xe1146630 pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0xe11b9bee component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xe13485d6 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xe1358296 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe13eb2bf clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xe14083fb dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1814f2a pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xe18381f6 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe18fb62b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe190d30a nvme_remove_namespaces +EXPORT_SYMBOL_GPL vmlinux 0xe1a55bc3 of_regulator_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1b3038b ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1cd3b45 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xe1dc9aef transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe1defd5d akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe1e0215f pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe1e8d239 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xe217cc64 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xe226f626 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe23472f8 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xe240bdbc task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe25d38dd tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xe27978ab device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xe2944798 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe29490d6 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xe29bdd66 pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0xe29f21e0 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xe2ac5f4a uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b75027 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xe2bbf2a7 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe2c3899f crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xe2c6bd31 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xe2c8d41d do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2ce372e ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xe2ce978d __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature +EXPORT_SYMBOL_GPL vmlinux 0xe2da106a tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe2e8be8c rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xe2f746eb meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xe311ae79 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe311f3f1 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xe31bdb34 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xe3209845 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xe34d3de4 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xe35080d3 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xe35be2f4 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe35cf639 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xe362a84f iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xe36ac736 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe3993144 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0xe39cb582 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe39dfb46 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe39ed7a8 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xe3a476a6 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3a9bec0 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b5f36c i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3da8faa crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xe3dab2f7 nvme_start_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xe3e0616c crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3ed5cdf cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xe3f6756d acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xe3fe332a acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xe402e8be nf_conntrack_count +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe40c228f __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL vmlinux 0xe4183902 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xe421a2f3 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe456c29d crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe45b808c xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xe46e5cee __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe495022e dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49a42c5 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xe49cd147 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xe4a02efb qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL vmlinux 0xe4ae0ece pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b5aef9 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4cb6ada spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xe4cdaae2 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xe4d3234a acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xe4d3729e of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xe4d3746b ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xe4db71b8 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4e0ed84 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e85fa1 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xe4e8cafc screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xe4f7c5ad clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xe4fb88cd devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe5087429 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xe50dd292 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xe5285a68 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe53df47d blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xe547ea50 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xe54ea423 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe550d483 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe555c61c irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0xe564da9c kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0xe56612c0 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58c8ec2 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5b941bc pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c1ab54 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xe5c35e6a blk_add_driver_data +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 0xe5ec0d5b ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe5ec2ee2 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xe5ec7aee fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe60b8bc2 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe6433889 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xe643c8b9 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xe649a1b4 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xe65093e0 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xe65f518e acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xe668f520 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xe6714bf5 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xe6735da4 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe67cdd9f xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xe685b719 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xe68c5417 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xe69e0681 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe6a039cd get_device +EXPORT_SYMBOL_GPL vmlinux 0xe6b287dd icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log +EXPORT_SYMBOL_GPL vmlinux 0xe6b94a41 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0xe6ce9a99 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe6dd6b09 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6e73fa8 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xe6e97e94 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xe6f10e38 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f731bf wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6fc55f1 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xe6fd07be perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe707e1d5 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe70eb704 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xe72d4654 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xe7381282 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75d88cb nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76a50f9 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0xe76ffae0 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe7743ba0 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate +EXPORT_SYMBOL_GPL vmlinux 0xe7a0a56d kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xe7a0f726 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xe7a872c6 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xe7b7c52f dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0xe7bc0389 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xe7c05d49 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xe7c11574 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xe7d175f5 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe7d1bd11 mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0xe7d5dbc3 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7dc5136 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xe7e53d96 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe7e8d7b8 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xe7eb3869 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xe7fbd115 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe80077d0 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xe80ef807 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe8105b60 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xe815a6bf of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe815d3dd acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xe816351a dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81a879b device_attach +EXPORT_SYMBOL_GPL vmlinux 0xe82f20c8 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xe84b1e63 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8509483 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85b0fab shake_page +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe86879d0 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe893ec5b iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xe89650a4 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0xe89dbafc nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL vmlinux 0xe8a85a32 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xe8b47d9b clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8da103a irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xe8e1d0a4 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xe8ef3433 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xe90876eb crypto_register_acomp +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 0xe9224041 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe93b9621 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe944f511 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0xe952cdfd vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe95b876f class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe9646310 i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0xe97e1c8c regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xe980b75c transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe9a103f0 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xe9b100e5 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xe9bfc9e7 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe9c26294 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9d7e569 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xe9d95b6f nf_conntrack_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe9dfe5cb dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xe9ec63e3 nvme_try_sched_reset +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xea0040cc serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea12907b nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0xea2f679a unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3e338c devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xea4b329b clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xea4c07f8 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea53e6a8 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xea761f91 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xea77d6e6 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea8abd1a nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0xea910ee0 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xea994aa2 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xea9cc01f extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xeaa1cb45 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xeaa3133d blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xeaa828a1 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xeaa832c3 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xeaa8a092 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xeab5b4cf devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xeabe7fbf crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xeacbbd21 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead16ba5 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 +EXPORT_SYMBOL_GPL vmlinux 0xeb0008c9 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xeb0f010a devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xeb1a9049 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xeb2d6734 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xeb3b694e fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xeb451208 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xeb54ad98 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb7ac95a fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xeb86899e iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xeba30283 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xeba7e147 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xebaaf8ab pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xebb3860e inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xebd3c582 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL vmlinux 0xec109277 apple_rtkit_send_message +EXPORT_SYMBOL_GPL vmlinux 0xec25c39f sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xec3093e1 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xec3512de regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xec35717c __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xec3caf95 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xec3d55d7 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xec4521f4 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec58cdff ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec699828 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xec706b90 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecbf32d1 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xecca6d82 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xeccfa069 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecdc4413 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xecea52d5 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xecef057d bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xecf0beeb crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xed02422f dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xed062583 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xed0a9e3b nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xed159b18 imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0xed1da63a ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed319fe0 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xed327a15 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xed34f166 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed3a05f3 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xed3ca952 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xed4de43e edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xed5311c8 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xed546766 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xed5f26a5 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xed61c49a kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xed65298b devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed910b6a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed937fcc device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xed961e5e crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xed9a194c iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xeda27c46 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xedb84c37 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xedc97793 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd35764 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xeddad308 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedf42f9c dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0xedf5a331 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xee0a8384 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee24ea76 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xee2c40b2 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee465c9f __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xee4ac237 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee520cda clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0xee5e3bef battery_hook_register +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 0xee6c7358 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xee74f9f8 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xee85529a dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xee888ab0 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xee8efa89 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xee99352e __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xee9a4394 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xeea0d13b debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xeeb19f71 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xeebb8e27 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xeec6ebb1 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xeec72e8d __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xeec90701 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xeecb5ed3 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xeed63409 acpi_find_child_by_adr +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 0xeef68434 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xef038360 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xef081efd device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xef15de58 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xef169434 of_genpd_remove_last +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 0xef3561e3 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xef3d1b98 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef5d55cc platform_device_register +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 0xef7610ac nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL vmlinux 0xef76de9c sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xef85c9fa rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xef869986 component_del +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef945ee8 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xef94ecde vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xef9953a8 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xef9c30f0 mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa8f9f8 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xefad88ca fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xefb2c5eb ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xefc05233 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xefc6b132 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xefc98b29 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xefd2e5fa wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xefdd15e9 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xefff1c4e bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xf009f97a pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xf021dabe devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xf0229bf6 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xf0257e65 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf040cb46 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf059f248 mtk_mutex_write_mod +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf06214b7 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0895497 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xf08a51be usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xf08b72d5 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0911cac of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf09e042f ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xf0a49257 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xf0a7464b bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0xf0aa22f8 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xf0af0f39 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xf0bc9803 kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0xf0c02e48 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xf0c5cc59 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf0ccf2d4 nvme_auth_dhgroup_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf0d3ef23 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf0d60672 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xf0da97de skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xf0ddc108 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted +EXPORT_SYMBOL_GPL vmlinux 0xf106868a ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xf1084d82 mtk_clk_register_dividers +EXPORT_SYMBOL_GPL vmlinux 0xf10cbf50 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf12b41b9 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xf133de4d vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf14da2e3 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf14e700b sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xf156149f wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf1591064 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xf16fdd9f blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xf172ed96 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf18a79d9 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf18b4bee edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xf18b562f fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xf18b78a1 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xf194a113 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xf19ede86 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xf1a5267e ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xf1c2021f dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0xf1c55074 devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0xf1dd801f pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xf1f667ba stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf1f6a86d debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xf1f9b87f raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0xf20d3d29 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xf216403b devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2176837 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2253fbc apple_sart_remove_allowed_region +EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0xf23d3b8e dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xf23fd075 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xf25f5171 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf267636a class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xf274ca69 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xf27ce86f tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf286899c badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xf28bd398 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2ae684c sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf2b0ee14 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b81a62 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xf2b81ce4 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xf2d94c2d led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xf2e2e81c nf_ct_frag6_gather +EXPORT_SYMBOL_GPL vmlinux 0xf2eaf601 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported +EXPORT_SYMBOL_GPL vmlinux 0xf3083a1d phylink_destroy +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 0xf326661d bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf32d7f44 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33c3de5 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xf34740a7 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xf35111b0 iomap_dio_rw +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 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c655ec vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xf3cf9181 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xf3f77cb6 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0xf40d278b gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xf4103124 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xf41301d1 nvme_auth_stop +EXPORT_SYMBOL_GPL vmlinux 0xf420a09e gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf42e451d trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xf431b190 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xf43e354a root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf4756e34 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4c057f9 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d807f1 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xf4dd2dd4 fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xf4de9778 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xf4ec38a3 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xf4f1a639 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xf50392f8 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xf510ca0b inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xf5132aee crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0xf5448825 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf556a4de ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf562bf0b crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xf57ee030 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xf592ea7d mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a162fb __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a6a4e0 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xf5c7cb3f meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5e597a3 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf60837b2 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xf613731d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xf61b007f scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf621fa7e acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf62c645f relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xf63109bd imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0xf6451123 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf64c7650 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xf658d48b acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xf662c8b9 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf668cc5f fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xf67c2fb8 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf69adace iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xf69b1ea7 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf69cf147 phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6ad58b6 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf6bbddfa ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c0e154 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xf6c17a76 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c77bc5 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6caf3d4 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xf6d077f4 dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f5c95a balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xf70b972e register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xf728ee2d sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72b024d qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7399107 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xf73b597f i2c_bus_type +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 0xf74bf70f skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf750e927 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf763767f devm_regulator_bulk_get_enable +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 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7bb9af4 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7bdc56d da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c7ec92 nf_nat_helper_put +EXPORT_SYMBOL_GPL vmlinux 0xf7ccf7a0 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xf7e25bc5 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf7ec4824 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xf7ed1617 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xf7ed27c6 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf7fbdb0b phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xf7fcc3db otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xf80eabba tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf81139ea sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xf8127fdd irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0xf81a7e26 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf8206c99 vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xf82f010a phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf85333ba nvme_enable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf8571a3a xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xf86436a9 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xf86da638 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf8968c6f rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf8983197 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xf89e0c0c __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xf8a29d11 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xf8a61e5c pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xf8a7de8a crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xf8b00e56 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0xf8c87ffc nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xf8cc6027 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf8ce05b4 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xf8d7f974 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xf8e04199 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf900d48c regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf900e3b1 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xf901eed0 strp_init +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf926a606 phylink_mii_c22_pcs_decode_state +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 0xf976819a of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xf9889e74 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xf990ded3 __irq_domain_add +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 0xf9e9b503 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xfa019ef1 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xfa03639a xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xfa0f9bc1 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xfa172ce1 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option +EXPORT_SYMBOL_GPL vmlinux 0xfa276851 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xfa285eb6 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xfa328729 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa5abe53 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa702a6a mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xfa7e2d13 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xfa80d846 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xfa81d43a hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfa856549 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xfa8898f9 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfa9426b8 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xfa94e186 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xfaa4bfbb ti_sci_get_handle +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 0xfad4d9a4 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfade73c3 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xfaf50371 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xfb1429e1 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xfb17efbc devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xfb1fec14 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfb200540 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xfb2205b7 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb45ea29 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xfb5d1ffa clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xfb5d3ea5 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone +EXPORT_SYMBOL_GPL vmlinux 0xfb664ba8 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xfb6b44df usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb837f1a find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xfb900513 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb90b277 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfb95efce gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfba0daa5 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xfbb5d33e usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbfdce6 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xfbc022cc init_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0xfbcaac61 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xfbcef4ea powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xfbd8c8a2 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xfbe86f0b __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfbf57fd3 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xfbf8dc29 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xfbfa4051 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0bfc54 pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc35dfcd pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xfc3881fc gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4070fd inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xfc41dd7b to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xfc44a05b nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xfc48500d pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xfc53d148 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xfc69b98d usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xfc6ea8a6 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfc78db30 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfc7c22a9 ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfc956469 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xfc992ac1 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xfcb70b9c devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc108b6 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xfcc18f2f platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcd12575 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xfcd934fc spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xfcec55e9 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xfcf3ecb4 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfb4f55 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfd098908 nf_connlabels_get +EXPORT_SYMBOL_GPL vmlinux 0xfd0e89c7 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfd14fe3a proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xfd1c557d device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xfd1f972a inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd309343 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfd4695e4 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xfd488e29 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xfd4c201e __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xfd5c95df regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd62a50a mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event +EXPORT_SYMBOL_GPL vmlinux 0xfd683ff5 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd86db82 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfd8eca00 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xfd911add dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xfd933a32 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc28085 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xfdce5957 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xfde7bc62 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdf1637f devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfdff73f1 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe120f39 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0xfe194cdf mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xfe197343 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xfe1bee3c bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xfe1fbf82 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3aeea9 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xfe3f7ea7 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfe4147c0 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xfe42491c __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xfe4665c7 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4cdd41 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xfe518bee kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL vmlinux 0xfe742c02 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xfe87b864 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe8f843a nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xfe914871 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfe9eb1dc amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfea145ab clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xfeae8d20 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xfeb1909a dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed737b7 iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfedbd989 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee4d794 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0683de check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1b4eab virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff379c95 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xff3efefa virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xff41ffd5 nf_ct_helper +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff451244 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xff5f7286 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xff6674bc sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xff76ab9f fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff7e537c ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff83f579 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order +EXPORT_SYMBOL_GPL vmlinux 0xff94d633 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xff9ba803 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xff9dc71b dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xff9f6480 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xffa6decf vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffbaaf8a nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0xffc4aba4 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xffc5430b phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffc8bef5 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xffd166d7 netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0xffe063ae iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xffe2e8ca devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xffe9063c iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xffebe92e irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xffef4d73 simple_attr_open +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 +FW_CS_DSP EXPORT_SYMBOL_GPL 0x031a4f5f cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x03eaf7c7 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0779e219 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x13e20b47 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x18095dc7 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x466c5a2b cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x483edc95 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x52c49181 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5c5242ce cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x74ad3b25 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x812b358a cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x82b4b68e cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x8a21b53e cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9d979572 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e7d38a3 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xaa3da115 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb63c1776 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb68ff5aa cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xc10bae46 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xd8ecb6b3 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xea34c575 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xea380e56 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xec234c36 cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xfd9aef32 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x119e3b7f hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x9f13600b ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xd4750fa2 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x6b7e2c29 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x728a8406 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x6c30af61 ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xb16d42f1 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x72b4c441 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xdeee8b60 ad7606_probe drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x19e7190a __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xf7346d97 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x188ae253 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1d0d9557 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x41f6885e __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x44cae4a6 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7883e40f __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7deb97a9 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8ac40551 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8f8a52e9 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9220220e adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xfa9555a2 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xd6b0bc86 __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x0451df4b devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x37d8c7ab adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x5950c2d3 adxl31x_chip_info 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 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1d8d09c adxl314_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf507228b 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 0x4d2f5e0f adxl35x_chip_info 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 0x91864b24 adxl355_core_probe 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 0x6d187dd1 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x605c1caa adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xa6566725 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x2449b9c8 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x298d2175 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x3d8dd30a ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5362884a ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x69a15fab ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8af99eff ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x95dae93e ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9a1228c2 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xd756c2a8 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xeb65116d ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x68c4d972 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xeb6b34be bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x05cda081 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x6014d52e bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xdbfa8b8c bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xff76ace6 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x15e9e957 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x521b094b bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x5447f018 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x99d8709f bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xdebb4241 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0xd210d511 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x286356fd bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x32197b3f bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xd838b69c bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xdfb302b4 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x6b7a1607 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0xc77bb835 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x6d640125 bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x8236b7c4 bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x87e2dc47 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xbedc2f53 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xcd4a9bdc bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xd6e74b8d bno055_probe drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x47674bf8 fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x68976523 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xf4e93e5a fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x18fea8d0 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x6be2dfa5 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xba203c15 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xea4806b2 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x0271dc0f hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x44cf5fb2 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x49741ce4 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x71b6edf5 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7899a544 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x83e0ddeb hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x87c3e1ee hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x940e1527 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9761dacd hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa589a917 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa87bd555 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xb4ab71ff hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x89a89073 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x95587c96 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xb36f2acb hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xfc28159e hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x26a63d8d hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x68467bd5 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xd279c316 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x75dbe432 hts221_probe drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xa36614bf hts221_pm_ops drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xbf1feb61 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xecd280fb inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xef397dc4 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x442663a8 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0x60a5e63e kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x1d45c19b kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xc8708a41 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xd0ab348f kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x130b60bb st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0x5de9a717 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +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 0x0f801da4 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 0x3a4b1a08 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x3d6df23c ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x40801e33 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 0x5532856b ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7eb6935f ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x93cc8420 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xbace498d ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xfa621fa4 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x777ec238 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xb126fe8e mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xda5ab45a mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x02e2aa99 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x12cf45f8 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x166e1d7e mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1e47cb76 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x203179c4 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2893f5e7 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4e17a7f4 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x633dc2e0 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x6ab8e2e2 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x763e4f51 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x8347821f mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x87ff0824 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x97c996cc mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa0730f72 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xc0a4e71d mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xeef7229d mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0x62b1a9f3 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x9113b4fa mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x31e38113 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x42f25e50 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x4838326c ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0x90b45f7e ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x49324994 rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0x8da8495b rescale_process_offset drivers/iio/afe/iio-rescale +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x147f27ba 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 0x1eea7aa0 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x3ff54be6 scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0x817e2a1a sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x2f7be487 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x463e6236 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x46c4939e ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x6f850e71 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x90b6db55 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xc9ecd594 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xeeec34e2 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xef52b950 ssp_register_consumer 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 0x17b02be9 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x20bd6eeb st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x23e0710a st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x28859e30 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2bf7d3b4 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2bf93dbb st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x509b1a91 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x514729c1 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x7c528ab3 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x8efe9a84 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x960a4ac8 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xa4fe9eb8 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xa7e271b1 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xa95df2f1 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xadb1af02 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb09749eb st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xb2087df1 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb6f363a5 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xb7862cbb st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb946fe34 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xbba659f8 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0xc16fd130 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xd1b0f029 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xed44a425 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf25546bf st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xfbdf701d st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x88990c7c st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x118d7feb st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0xaa0af63a st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x12add3b0 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x1c1d82f7 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x5dafbc67 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x6f212cb9 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xa9bc0b34 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xdbe99469 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IOMMUFD EXPORT_SYMBOL_GPL 0x161bf5c1 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x198511af iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x1ff17e6b iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x53f77f4b iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x62ba03c8 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x6a7d79b6 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x82962f1b iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x84e30091 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xd34c29d3 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x3cd86ef1 iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x029a9c2b iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x02ab1dc7 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x07696f19 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x07d40535 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0b54705c iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0f44c563 iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1207d6a4 _iwl_dbg_tlv_time_point 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 0x160b73ef iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x180fd9ee iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x19e5353a iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1b34a063 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1e9e0ae3 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2452023e iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x25c6c10a __iwl_crit 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 0x2bb9fe25 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2c3bbcf0 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2e6188d3 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2f6f000c iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x33ae8df5 iwl_force_nmi 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 0x35d4a85b __iwl_info 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 0x3bd268e6 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x402c30c1 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x466a6d50 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x47453539 iwl_sar_get_wgds_table 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 0x4cf53889 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x50e319d9 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5443d4a9 iwl_cmd_groups_verify_sorted 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 0x5ce4d8d7 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5ec79bcd iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5fecab88 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x61a1a6d0 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x63314bc5 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6a24e570 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6c78bc8c iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e197945 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6f528564 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x70dd3e39 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x772c162b iwl_finish_nic_init 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 0x79dab214 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7a7df289 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7ab9e6d1 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7cd45e0b 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 0x82c2b8a4 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84620a5b iwl_fw_runtime_init 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 0x8cb75408 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8d318dc2 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9652b59d iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9682f4aa iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9e7949af iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9ed0b07b iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa256fc67 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa298a773 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa5bc27d8 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa8c81817 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaa1b3e77 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xadb4a613 iwl_sar_select_profile 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 0xb3f10203 iwl_fw_start_dbg_conf 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 0xc120781c iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc1633584 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc465d7da iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc470789f iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc89d228c iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcc894748 iwl_write_direct64 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 0xd2a4800b iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd51241bd iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd7f6ee59 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdbdda900 iwl_acpi_get_ppag_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 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 0xed99867e iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xee203c1a iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xee782893 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xefe4992d iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf031c58e iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf139c6d0 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf5c53fa8 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf67b7582 iwl_configure_rxq 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 0x304e0c85 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x699e98be ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x043634ba mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3b43baa2 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4c0df0ad mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x60010020 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x64a8df03 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7d8830f9 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa055753b mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbe13ba06 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd6de25f1 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdeb01492 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xea0689a5 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeea7f4fb mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf1f9c4c6 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf474f934 mcb_alloc_dev drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x8b4b5f24 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x929a8205 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0xcac45e1a ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0735ec9b nvme_ctrl_from_file vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x41ed5e48 nvme_put_ns vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4b5225c6 nvme_find_get_ns vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x58693fbc nvme_command_effects vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc2b38821 nvme_passthru_end vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd1ed1eb8 nvme_execute_passthru_rq vmlinux +PECI EXPORT_SYMBOL_GPL 0x06a5ac57 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1f1c722f peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2c041545 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x33ad8877 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3d8d7c91 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x41d0fc87 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4237d5e5 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4312129b peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4332fb97 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x50277bb3 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5ec2861c peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x759be103 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x83c28db5 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x875f9cf7 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9cb3bff5 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9e144d2c peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xab1f8b13 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc8fa8afc peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcbf77b7d peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd9a10b36 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xda04b4a8 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdc488f46 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdfb2fca8 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe20ffbe5 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe5988c75 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe81ec84e peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe95a3117 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf733437a peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf94e7ff4 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x04b6210d peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x0fd1224e peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x2c3409e1 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x7e6b10a6 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x83ff3dc4 peci_temp_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x035f6447 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1d6b62c0 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2049ecaf pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x32090e5c pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x37187152 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3f53e01d pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x44e809f7 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6af864d7 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x76654d5a pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9ad1e9e1 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xac6c0d74 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xaf619b97 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb07824b0 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc0ae154c pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc67869cd pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd0eb450d pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd229ea5d pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xda0b4b87 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe41b6f7c pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x09d8db1d sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x77fbf41a sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7ba92dc1 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xeee7acdc sx_common_read_event_config 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 0x43a36269 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x4847aed5 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x9c85ef79 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xce392840 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x1f6416d2 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xf1027a31 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xfc7fa8b0 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x221fbcde cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x4cb144b6 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xbec5d2e9 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 0xa9d020e2 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xeae8e1ae cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xfa1c2dd5 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0153cee2 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x1b92a33b cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x5cec10ea cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x678941c6 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x709bbfd2 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x9874a3d7 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xaa7b3be7 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb50f7eb6 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xdda7b69f cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe227d20c cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xeb2c0ee9 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x4ff18cda sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x8f801cea sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x03a9065f sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x3df081ba sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x49db0e05 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 0xd4085bfb sdw_intel_probe drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x49ff7363 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x50eb6b2e dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x54e6bf81 dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x55e6740a dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x77c48c12 dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x96db836d dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa0740071 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb7d8521a dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xfd83ba29 dw_spi_dma_setup_generic drivers/spi/spi-dw +SUNXI_CCU EXPORT_SYMBOL_GPL 0x079708d7 ccu_gate_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x0a9707d3 ccu_mux_helper_get_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x0c64ee0e ccu_sdm_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x14438263 ccu_frac_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x1f23b840 ccu_nkmp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x3e362444 ccu_frac_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x45837646 ccu_sdm_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x50165be0 ccu_mux_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x517768aa ccu_sdm_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x5cddbcc6 ccu_nm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x61abda39 ccu_mux_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x6668446b ccu_phase_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x7279ee3e ccu_mult_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x78f84917 ccu_helper_wait_for_lock vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x831d58e6 ccu_gate_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x844f1c47 ccu_mux_helper_set_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8a845fdb ccu_nk_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8bdea961 ccu_nkm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8e63463a ccu_frac_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x923edf17 ccu_sdm_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x976fa968 ccu_mp_mmc_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x98224ec7 ccu_reset_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xad1062ab ccu_gate_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xb945e40c ccu_pll_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xba365240 ccu_sdm_helper_get_factors vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbdb5d83e ccu_mux_helper_determine_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xc4608f36 ccu_mux_helper_apply_prediv vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xce9edc4f ccu_frac_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd050ca65 ccu_sdm_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd27db71e ccu_mp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe49056d8 ccu_div_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe70cc090 ccu_frac_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe8601e96 devm_sunxi_ccu_probe vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xeb47a9b9 ccu_frac_helper_set_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf66eb443 ccu_gate_helper_is_enabled vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x0a4e84f2 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1ba9d6a7 usb_stor_bulk_srb 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 0x229c00c0 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x249e9b90 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2b12e3c6 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2e5d6481 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x339cce7a usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x47e1eb0b usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5b9fcf5d usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5d0259e8 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6b6bbb17 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7b7920f0 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x891de5c4 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x93808d4c usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9b2b8200 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa67d9d76 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb803ac30 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xba4f03c4 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc1a4e96d usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc3bce329 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd67c8072 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe41dda4d usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xef734460 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf3f4c71b usb_stor_suspend drivers/usb/storage/usb-storage --- linux-gcp-6.2.0.orig/debian.gcp/abi/arm64/gcp.compiler +++ linux-gcp-6.2.0/debian.gcp/abi/arm64/gcp.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 12.2.0-17ubuntu1) 12.2.0 --- linux-gcp-6.2.0.orig/debian.gcp/abi/arm64/gcp.modules +++ linux-gcp-6.2.0/debian.gcp/abi/arm64/gcp.modules @@ -0,0 +1,7364 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_bcm7271 +8250_em +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 +BusLogic +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 +ad4130 +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 +ad74115 +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 +adf4377 +adf7242 +adfs +adi +adi-axi-adc +adiantum +adin +adin1100 +adin1110 +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 +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_dwc +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 +alibaba_uncore_drw_pmu +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 +anx7411 +anx7625 +anybuss_core +ao-cec +ao-cec-g12a +aoe +apbps2 +apcs-msm8916 +apcs-sdx55 +apds9300 +apds9802als +apds990x +apds9960 +apple-admac +apple-dart +apple-mailbox +apple-mfi-fastcharge +apple-soc-cpufreq +apple_wdt +appledisplay +appletalk +appletouch +applicom +apr +apss-ipq-pll +apss-ipq6018 +aptina-pll +aqc111 +aquacomputer_d5next +aquantia +ar0521 +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 +aria_generic +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm-cmn +arm_cspmu_module +arm_dmc620_pmu +arm_dsu_pmu +arm_mhu +arm_mhu_db +arm_mhuv2 +arm_scmi_powercap +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 +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-phy-ptp +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 +bno055 +bno055_i2c +bno055_ser +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 +brcm_u-boot +brcmfmac +brcmfmac-bca +brcmfmac-cyw +brcmfmac-wcc +brcmnand +brcmsmac +brcmstb-avs-cpufreq +brcmstb-usb-pinmap +brcmstb_memc +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 +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 +camcc-sm8450 +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +can327 +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 +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-mt6795-apmixedsys +clk-mt6795-infracfg +clk-mt6795-mfg +clk-mt6795-mm +clk-mt6795-pericfg +clk-mt6795-topckgen +clk-mt6795-vdecsys +clk-mt6795-vencsys +clk-mt8365 +clk-mt8365-apu +clk-mt8365-cam +clk-mt8365-mfg +clk-mt8365-mm +clk-mt8365-vdec +clk-mt8365-venc +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-versaclock7 +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 +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_hps_i2c +cros_kbd_led_backlight +cros_peripheral_charger +cros_typec_switch +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 +cyttsp5 +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 +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-sc8280xp +dispcc-sdm845 +dispcc-sm6115 +dispcc-sm6125 +dispcc-sm6350 +dispcc-sm6375 +dispcc-sm8250 +dispcc-sm8450 +display-connector +dl2k +dlhl60d +dlink-dir685-touchkeys +dlm +dln2 +dln2-adc +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9601 +dma-axi-dmac +dmard06 +dmard09 +dmard10 +dmc520_edac +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpaa2-console +dpaa2-qdma +dpaa2_caam +dpdmai +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_buddy +drm_display_helper +drm_dma_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-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 +dw100 +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-tegra +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-npcm7xx +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 +emc2305 +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 +erdma +erofs +error +esas2r +esd_usb +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 +fit2 +fit3 +fixed +fjes +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +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-msm8909 +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-sm6375 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gcc-sm8450 +gcc-sm8550 +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-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-idio-16 +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-latch +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-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-sc8280xp +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm6350 +gpucc-sm8150 +gpucc-sm8250 +gpucc-sm8350 +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_bcm4377 +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hctr2 +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 +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-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-pxrc +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-topre +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-vivaldi-common +hid-vrc2 +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +himax_hx83112b +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_ptt +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 +hns3_pmu +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +host1x +hostap +hostap_pci +hostap_plx +hp03 +hp206c +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +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 +hynitron_cstxxx +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-elan +i2c-hid-of-goodix +i2c-hisi +i2c-hix5hd2 +i2c-i801 +i2c-imx +i2c-imx-lpi2c +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mchp-pci1xxxx +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-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-rzv2m +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 +ibm-panel +ibmaem +ibmpex +icc-bcm-voter +icc-bwmon +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-lcdif +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 +imx8mp-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx8qm-ldb +imx8qxp-adc +imx8qxp-ldb +imx8qxp-pixel-combiner +imx8qxp-pixel-link +imx8qxp-pxl2dpi +imx93-blk-ctrl +imx93-pd +imx93-src +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-m10-bmc-sec-update +intel-nand-controller +intel-qep +intel-xway +intel_qat +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 +iommufd +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-imx-mu-msi +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 +kcs_bmc +kcs_bmc_cdev_ipmi +kcs_bmc_npcm7xx +kcs_bmc_serio +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 +kionix-kx022a +kionix-kx022a-i2c +kionix-kx022a-spi +kirin-drm +kl5kusb105 +kmb-drm +kmem +kmx61 +kobil_sct +komeda +kpss-xcc +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz884x +ksz8863_smi +ksz9477_i2c +ksz_spi +ksz_switch +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 +lattice-sysconfig +lattice-sysconfig-spi +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 +libcurve25519 +libcurve25519-generic +libcxgb +libcxgbi +libdes +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libwx +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 +logicvc-drm +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 +lt7182s +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 +ltrf216a +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 +max11205 +max11410 +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 +max30208 +max3100 +max31722 +max31730 +max31760 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +max6621 +max6639 +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 +mchp_pci1xxxx_gp +mchp_pci1xxxx_gpio +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_ddr_pmu_g12 +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-spi +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 +msa311 +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 +mt6331-regulator +mt6332-regulator +mt6357-regulator +mt6358-regulator +mt6359-accdet +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6370 +mt6370-adc +mt6370-backlight +mt6370-charger +mt6370-regulator +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 +mt7996e +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8186-mt6366-da7219-max98357 +mt8186-mt6366-rt1019-rt5682s +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-cci-devfreq +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-svs +mtk-uart-apdma +mtk-vpu +mtk_dp +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 +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_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +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_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_osf +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_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 +ngbe +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 +npcm-rng +npcm750-pwm-fan +npcm_adc +npcm_wdt +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-apple +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_mtk-efuse +nvmem_qcom-spmi-sdam +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmem_sprd_efuse +nvmem_sunxi_sid +nvmem_u-boot-env +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 +ocelot-soc +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-gpmc +omap-mailbox +omap-rng +omap2_nand +omap4-keypad +omap_elm +omap_hwspinlock +omfs +omninet +on20 +on26 +onboard_usb_hub +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 +ov08x40 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov4689 +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-ebbg-ft8719 +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-jadard-jd9365da-h3 +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-nv3051d +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-epf-vntb +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-altera-tse +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-imx8qm-lvds-phy +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-mipi-dphy-analog +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson8b-usb2 +phy-mtk-dp +phy-mtk-hdmi-drv +phy-mtk-mipi-dsi-drv +phy-mtk-pcie +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-combo +phy-qcom-qmp-pcie +phy-qcom-qmp-pcie-msm8996 +phy-qcom-qmp-ufs +phy-qcom-qmp-usb +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-snps-pcie3 +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 +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-apple-gpio +pinctrl-axp209 +pinctrl-bcm4908 +pinctrl-cy8c95x0 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-imx93 +pinctrl-ipq6018 +pinctrl-ipq8074 +pinctrl-keembay +pinctrl-lochnagar +pinctrl-lpass-lpi +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-mdm9607 +pinctrl-meson-s4 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-mt6779 +pinctrl-qcm2290 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc7280-lpass-lpi +pinctrl-sc8180x +pinctrl-sc8280xp +pinctrl-sc8280xp-lpass-lpi +pinctrl-sdm660 +pinctrl-sdm670 +pinctrl-sdm845 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm6350 +pinctrl-sm6375 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8250-lpass-lpi +pinctrl-sm8350 +pinctrl-sm8450 +pinctrl-sm8450-lpass-lpi +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pinctrl-zynqmp +pinephone-keyboard +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +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 +polynomial +polyval-ce +polyval-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 +pse_regulator +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-clk +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-omap-dmtimer +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 +pwr-mlxbf +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 +qat_4xxx +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +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-rradc +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-sm6350 +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 +r8a779f0-ether-serdes +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 +reset-tps380x +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 +rk817_charger +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 +rswitch_drv +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5120 +rt5120-pwrkey +rt5120-regulator +rt5190a-regulator +rt5759-regulator +rt6160-regulator +rt6190-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-nct3018y +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-ti-k3 +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 +rtq6056 +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_8723du +rtw88_8821c +rtw88_8821ce +rtw88_8821cu +rtw88_8822b +rtw88_8822be +rtw88_8822bu +rtw88_8822c +rtw88_8822ce +rtw88_8822cu +rtw88_core +rtw88_pci +rtw88_usb +rtw89_8852a +rtw89_8852ae +rtw89_8852b +rtw89_8852be +rtw89_8852c +rtw89_8852ce +rtw89_core +rtw89_pci +rvu_af +rvu_cptcommon +rvu_cptpf +rvu_cptvf +rvu_mbox +rvu_nicpf +rvu_nicvf +rx51_battery +rxperf +rxrpc +rz-dmac +rza_wdt +rzg2l-cru +rzg2l-csi2 +rzg2l_adc +rzg2l_mipi_dsi +rzg2l_thermal +rzg2l_wdt +rzn1_wdt +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +sa2ul +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +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 +scmi_power_control +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-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-neon +sm3_generic +sm4 +sm4-ce +sm4-ce-ccm +sm4-ce-cipher +sm4-ce-gcm +sm4-neon +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc_diag +smd-rpm +smem +smipcie +smm665 +smp2p +smpro-core +smpro-errmon +smpro-hwmon +smpro-misc +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-ext-core +snd-hda-intel +snd-hda-scodec-cs35l41 +snd-hda-scodec-cs35l41-i2c +snd-hda-scodec-cs35l41-spi +snd-hda-tegra +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel-sdw-acpi +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-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-es8336-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-apple-mca +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-cs42l42-i2c +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42l83-i2c +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-es8326 +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-utils +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hda-codec +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-mt8186-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-qcom-sdw +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-rt1318-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-sc8280xp +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-src4xxx +snd-soc-src4xxx-i2c +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-tas2780 +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-ope +snd-soc-tegra210-sfc +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-ti-edma +snd-soc-ti-sdma +snd-soc-ti-udma +snd-soc-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-wm8961 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-wsa881x +snd-soc-wsa883x +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-imx8ulp +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 +sp887x +spaceball +spaceorb +sparse-keymap +sparx5-switch +sparx5-temp +spcp8x5 +speedfax +speedtch +spi-altera-core +spi-altera-dfl +spi-altera-platform +spi-amd +spi-armada-3700 +spi-axi-spi-engine +spi-bcm-qspi +spi-bcm2835 +spi-bcm2835aux +spi-bcm63xx-hsspi +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-microchip-core +spi-microchip-core-qspi +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-pci1xxxx +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-sn-f-ospi +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-wpcm-fiu +spi-xcomm +spi-xlp +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spl +spm +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 +ssif_bmc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st-vgxy61 +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 +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-csi +sun4i-drm +sun4i-gpadc +sun4i-ss +sun4i-tcon +sun4i_tv +sun50i-codec-analog +sun50i-cpufreq-nvmem +sun50i-dmic +sun6i-csi +sun6i-dma +sun6i-isp +sun6i-mipi-csi2 +sun6i-rtc-ccu +sun6i_drc +sun6i_hwspinlock +sun6i_mipi_dsi +sun8i-a33-mbus +sun8i-a83t-mipi-csi2 +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_hub +surface_aggregator_registry +surface_aggregator_tabletsw +surface_battery +surface_charger +surface_dtx +surface_gpe +surface_hid +surface_hid_core +surface_hotplug +surface_kbd +surface_platform_profile +svc-i3c-master +svgalib +switchtec +sx8654 +sx9310 +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_none +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_rtl8_4 +tag_rzn1_a5psw +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 +tc358746 +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_mt6370 +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_div64 +test_power +tg3 +thc63lvd1024 +thermal-generic-adc +thermal_mmio +thmc50 +ths7303 +ths8200 +thunder_bgx +thunder_xcv +thunderbolt +thunderbolt-net +thunderx-mmc +thunderx2_pmu +thunderx_edac +thunderx_zip +ti-adc081c +ti-adc0832 +ti-adc084s021 +ti-adc108s102 +ti-adc12138 +ti-adc128s052 +ti-adc161s626 +ti-ads1015 +ti-ads124s08 +ti-ads131e08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +ti-am65-cpsw-nuss +ti-cal +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-dlpc3433 +ti-ecap-capture +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 +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 +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_tis_synquacer +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps546d24 +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 +tps65219 +tps65219-pwrbutton +tps65219-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 +txgbe +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ublk_drv +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucc_uart +ucd9000 +ucd9200 +ucs1002_power +ucsi_acpi +ucsi_ccg +ucsi_stm32g0 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-hisi +ufs-mediatek +ufs-renesas +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 +ums512-clk +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 +vcpu_stall_detector +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 +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 +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_snd +virtio_vdpa +virtiofs +virtual +virtual_ncidev +visconti_wdt +visl +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +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 +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 +xctr +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_r5_remoteproc +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 +zr36067 +zram +zstd +zunicode +zynqmp-aes-gcm +zynqmp-dpsub +zynqmp-fpga +zynqmp-sha +zynqmp_dma +zzstd --- linux-gcp-6.2.0.orig/debian.gcp/abi/arm64/gcp.retpoline +++ linux-gcp-6.2.0/debian.gcp/abi/arm64/gcp.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED --- linux-gcp-6.2.0.orig/debian.gcp/abi/fwinfo +++ linux-gcp-6.2.0/debian.gcp/abi/fwinfo @@ -0,0 +1,2174 @@ +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_sjt_mec.bin +firmware: amdgpu/aldebaran_sjt_mec2.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_4_dmcub.bin +firmware: amdgpu/dcn_3_1_5_dmcub.bin +firmware: amdgpu/dcn_3_1_6_dmcub.bin +firmware: amdgpu/dcn_3_2_0_dmcub.bin +firmware: amdgpu/dcn_3_2_1_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/gc_11_0_3_imu.bin +firmware: amdgpu/gc_11_0_3_me.bin +firmware: amdgpu/gc_11_0_3_mec.bin +firmware: amdgpu/gc_11_0_3_mes.bin +firmware: amdgpu/gc_11_0_3_mes1.bin +firmware: amdgpu/gc_11_0_3_pfp.bin +firmware: amdgpu/gc_11_0_3_rlc.bin +firmware: amdgpu/gc_11_0_4_imu.bin +firmware: amdgpu/gc_11_0_4_me.bin +firmware: amdgpu/gc_11_0_4_mec.bin +firmware: amdgpu/gc_11_0_4_mes.bin +firmware: amdgpu/gc_11_0_4_mes1.bin +firmware: amdgpu/gc_11_0_4_pfp.bin +firmware: amdgpu/gc_11_0_4_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_0_ta.bin +firmware: amdgpu/psp_13_0_10_sos.bin +firmware: amdgpu/psp_13_0_10_ta.bin +firmware: amdgpu/psp_13_0_11_ta.bin +firmware: amdgpu/psp_13_0_11_toc.bin +firmware: amdgpu/psp_13_0_4_ta.bin +firmware: amdgpu/psp_13_0_4_toc.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_7_ta.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/sdma_6_0_3.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_10.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_2.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: 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/brcmbt4377*.bin +firmware: brcm/brcmbt4377*.ptb +firmware: brcm/brcmbt4378*.bin +firmware: brcm/brcmbt4378*.ptb +firmware: brcm/brcmbt4387*.bin +firmware: brcm/brcmbt4387*.ptb +firmware: brcm/brcmfmac*-pcie.*.bin +firmware: brcm/brcmfmac*-pcie.*.clm_blob +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/brcmfmac43439-sdio.bin +firmware: brcm/brcmfmac43439-sdio.clm_blob +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/brcmfmac4355-pcie.bin +firmware: brcm/brcmfmac4355-pcie.clm_blob +firmware: brcm/brcmfmac4355c1-pcie.bin +firmware: brcm/brcmfmac4355c1-pcie.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/brcmfmac4364b2-pcie.bin +firmware: brcm/brcmfmac4364b2-pcie.clm_blob +firmware: brcm/brcmfmac4364b3-pcie.bin +firmware: brcm/brcmfmac4364b3-pcie.clm_blob +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: brcm/brcmfmac4377b3-pcie.bin +firmware: brcm/brcmfmac4377b3-pcie.clm_blob +firmware: brcm/brcmfmac4378b1-pcie.bin +firmware: brcm/brcmfmac4378b1-pcie.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: 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/adlp_guc_70.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.bin +firmware: i915/dg1_huc.bin +firmware: i915/dg2_dmc_ver2_08.bin +firmware: i915/dg2_guc_70.bin +firmware: i915/dg2_huc_gsc.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_guc_70.bin +firmware: i915/tgl_huc.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-BzBnj-b0-fm-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-fm4-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-gl-b0-fm-b0-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: mediatek/mt7996/mt7996_rom_patch.bin +firmware: mediatek/mt7996/mt7996_wa.bin +firmware: mediatek/mt7996/mt7996_wm.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/ga102/acr/ucode_ahesasc.bin +firmware: nvidia/ga102/acr/ucode_asb.bin +firmware: nvidia/ga102/acr/ucode_unload.bin +firmware: nvidia/ga102/gr/NET_img.bin +firmware: nvidia/ga102/gr/fecs_bl.bin +firmware: nvidia/ga102/gr/fecs_sig.bin +firmware: nvidia/ga102/gr/gpccs_bl.bin +firmware: nvidia/ga102/gr/gpccs_sig.bin +firmware: nvidia/ga102/nvdec/scrubber.bin +firmware: nvidia/ga102/sec2/desc.bin +firmware: nvidia/ga102/sec2/hs_bl_sig.bin +firmware: nvidia/ga102/sec2/image.bin +firmware: nvidia/ga102/sec2/sig.bin +firmware: nvidia/ga103/acr/ucode_ahesasc.bin +firmware: nvidia/ga103/acr/ucode_asb.bin +firmware: nvidia/ga103/acr/ucode_unload.bin +firmware: nvidia/ga103/gr/NET_img.bin +firmware: nvidia/ga103/gr/fecs_bl.bin +firmware: nvidia/ga103/gr/fecs_sig.bin +firmware: nvidia/ga103/gr/gpccs_bl.bin +firmware: nvidia/ga103/gr/gpccs_sig.bin +firmware: nvidia/ga103/nvdec/scrubber.bin +firmware: nvidia/ga103/sec2/desc.bin +firmware: nvidia/ga103/sec2/hs_bl_sig.bin +firmware: nvidia/ga103/sec2/image.bin +firmware: nvidia/ga103/sec2/sig.bin +firmware: nvidia/ga104/acr/ucode_ahesasc.bin +firmware: nvidia/ga104/acr/ucode_asb.bin +firmware: nvidia/ga104/acr/ucode_unload.bin +firmware: nvidia/ga104/gr/NET_img.bin +firmware: nvidia/ga104/gr/fecs_bl.bin +firmware: nvidia/ga104/gr/fecs_sig.bin +firmware: nvidia/ga104/gr/gpccs_bl.bin +firmware: nvidia/ga104/gr/gpccs_sig.bin +firmware: nvidia/ga104/nvdec/scrubber.bin +firmware: nvidia/ga104/sec2/desc.bin +firmware: nvidia/ga104/sec2/hs_bl_sig.bin +firmware: nvidia/ga104/sec2/image.bin +firmware: nvidia/ga104/sec2/sig.bin +firmware: nvidia/ga106/acr/ucode_ahesasc.bin +firmware: nvidia/ga106/acr/ucode_asb.bin +firmware: nvidia/ga106/acr/ucode_unload.bin +firmware: nvidia/ga106/gr/NET_img.bin +firmware: nvidia/ga106/gr/fecs_bl.bin +firmware: nvidia/ga106/gr/fecs_sig.bin +firmware: nvidia/ga106/gr/gpccs_bl.bin +firmware: nvidia/ga106/gr/gpccs_sig.bin +firmware: nvidia/ga106/nvdec/scrubber.bin +firmware: nvidia/ga106/sec2/desc.bin +firmware: nvidia/ga106/sec2/hs_bl_sig.bin +firmware: nvidia/ga106/sec2/image.bin +firmware: nvidia/ga106/sec2/sig.bin +firmware: nvidia/ga107/acr/ucode_ahesasc.bin +firmware: nvidia/ga107/acr/ucode_asb.bin +firmware: nvidia/ga107/acr/ucode_unload.bin +firmware: nvidia/ga107/gr/NET_img.bin +firmware: nvidia/ga107/gr/fecs_bl.bin +firmware: nvidia/ga107/gr/fecs_sig.bin +firmware: nvidia/ga107/gr/gpccs_bl.bin +firmware: nvidia/ga107/gr/gpccs_sig.bin +firmware: nvidia/ga107/nvdec/scrubber.bin +firmware: nvidia/ga107/sec2/desc.bin +firmware: nvidia/ga107/sec2/hs_bl_sig.bin +firmware: nvidia/ga107/sec2/image.bin +firmware: nvidia/ga107/sec2/sig.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/tegra234/vic.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/gr/sw_veid_bundle_init.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/gr/sw_veid_bundle_init.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/gr/sw_veid_bundle_init.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/gr/sw_veid_bundle_init.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/gr/sw_veid_bundle_init.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/a619_gmu.bin +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-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-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/rtl8188fufw.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/rtw8852b_fw.bin +firmware: rtw89/rtw8852c_fw.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: 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 --- linux-gcp-6.2.0.orig/debian.gcp/abi/version +++ linux-gcp-6.2.0/debian.gcp/abi/version @@ -0,0 +1 @@ +6.2.0-1006.6 --- linux-gcp-6.2.0.orig/debian.gcp/changelog +++ linux-gcp-6.2.0/debian.gcp/changelog @@ -0,0 +1,26536 @@ +linux-gcp (6.2.0-1007.7) lunar; urgency=medium + + * lunar/linux-gcp: 6.2.0-1007.7 -proposed tracker (LP: #2019838) + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync getabis + + * Computer with Intel Atom CPU will not boot with Kernel 6.2.0-20 + (LP: #2017444) + - [Config]: Disable CONFIG_INTEL_ATOMISP + + [ Ubuntu: 6.2.0-23.23 ] + + * lunar/linux: 6.2.0-23.23 -proposed tracker (LP: #2019845) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - debian/dkms-versions -- update from kernel-versions (main/2023.05.15) + * Fix flicker display problem on some panels which support PSR2 (LP: #2002968) + - drm/i915/psr: Add continuous full frame bit together with single + * Kernel 6.1 bumped the disk consumption on default images by 15% + (LP: #2015867) + - [Packaging] introduce a separate linux-lib-rust package + * Update I915 PSR calculation on Linux 6.2 (LP: #2018655) + - drm/i915: Fix fast wake AUX sync len + - drm/i915: Explain the magic numbers for AUX SYNC/precharge length + * Computer with Intel Atom CPU will not boot with Kernel 6.2.0-20 + (LP: #2017444) + - [Config]: Disable CONFIG_INTEL_ATOMISP + * udev fails to make prctl() syscall with apparmor=0 (as used by maas by + default) (LP: #2016908) + - SAUCE: (no-up) Stacking v38: Fix prctl() syscall with apparmor=0 + * 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() + * 5.19 not reporting cgroups v1 blkio.throttle.io_serviced (LP: #2016186) + - SAUCE: blk-throttle: Fix io statistics for cgroup v1 + * LSM stacking and AppArmor for 6.2: additional fixes (LP: #2017903) + - SAUCE: (no-up) apparmor: fix policy_compat perms remap for file dfa + - SAUCE: (no-up) apparmor: fix profile verification and enable it + - SAUCE: (no-up) apparmor: fix: add missing failure check in + compute_xmatch_perms + - SAUCE: (no-up) apparmor: fix: kzalloc perms tables for shared dfas + * Lunar update: v6.2.12 upstream stable release (LP: #2017219) + - Revert "pinctrl: amd: Disable and mask interrupts on resume" + - drm/amd/display: Pass the right info to drm_dp_remove_payload + - drm/i915: Workaround ICL CSC_MODE sticky arming + - ALSA: emu10k1: fix capture interrupt handler unlinking + - ALSA: hda/sigmatel: add pin overrides for Intel DP45SG motherboard + - ALSA: i2c/cs8427: fix iec958 mixer control deactivation + - ALSA: hda: patch_realtek: add quirk for Asus N7601ZM + - ALSA: hda/realtek: Add quirks for Lenovo Z13/Z16 Gen2 + - ALSA: firewire-tascam: add missing unwind goto in + snd_tscm_stream_start_duplex() + - ALSA: emu10k1: don't create old pass-through playback device on Audigy + - ALSA: hda/sigmatel: fix S/PDIF out on Intel D*45* motherboards + - ALSA: hda/hdmi: disable KAE for Intel DG2 + - Bluetooth: L2CAP: Fix use-after-free in l2cap_disconnect_{req,rsp} + - Bluetooth: Fix race condition in hidp_session_thread + - bluetooth: btbcm: Fix logic error in forming the board name. + - Bluetooth: Free potentially unfreed SCO connection + - Bluetooth: hci_conn: Fix possible UAF + - btrfs: restore the thread_pool= behavior in remount for the end I/O + workqueues + - btrfs: fix fast csum implementation detection + - fbmem: Reject FB_ACTIVATE_KD_TEXT from userspace + - mtdblock: tolerate corrected bit-flips + - mtd: rawnand: meson: fix bitmask for length in command word + - mtd: rawnand: stm32_fmc2: remove unsupported EDO mode + - mtd: rawnand: stm32_fmc2: use timings.mode instead of checking tRC_min + - KVM: arm64: PMU: Restore the guest's EL0 event counting after migration + - fbcon: Fix error paths in set_con2fb_map + - fbcon: set_con2fb_map needs to set con2fb_map! + - drm/i915/dsi: fix DSS CTL register offsets for TGL+ + - io_uring: complete request via task work in case of DEFER_TASKRUN + - clk: sprd: set max_register according to mapping range + - RDMA/irdma: Do not generate SW completions for NOPs + - RDMA/irdma: Fix memory leak of PBLE objects + - RDMA/irdma: Increase iWARP CM default rexmit count + - RDMA/irdma: Add ipv4 check to irdma_find_listener() + - IB/mlx5: Add support for 400G_8X lane speed + - RDMA/erdma: Fix some typos + - RDMA/erdma: Update default EQ depth to 4096 and max_send_wr to 8192 + - RDMA/erdma: Inline mtt entries into WQE if supported + - RDMA/erdma: Defer probing if netdevice can not be found + - clk: rs9: Fix suspend/resume + - RDMA/cma: Allow UD qp_type to join multicast only + - bpf: tcp: Use sock_gen_put instead of sock_put in bpf_iter_tcp + - LoongArch, bpf: Fix jit to skip speculation barrier opcode + - dmaengine: apple-admac: Handle 'global' interrupt flags + - dmaengine: apple-admac: Set src_addr_widths capability + - dmaengine: apple-admac: Fix 'current_tx' not getting freed + - 9p/xen : Fix use after free bug in xen_9pfs_front_remove due to race + condition + - bpf, arm64: Fixed a BTI error on returning to patched function + - KVM: arm64: Advertise ID_AA64PFR0_EL1.CSV2/3 to protected VMs + - niu: Fix missing unwind goto in niu_alloc_channels() + - tcp: restrict net.ipv4.tcp_app_win + - bonding: fix ns validation on backup slaves + - iavf: refactor VLAN filter states + - iavf: remove active_cvlans and active_svlans bitmaps + - net: openvswitch: fix race on port output + - Bluetooth: hci_conn: Fix not cleaning up on LE Connection failure + - Bluetooth: Fix printing errors if LE Connection times out + - Bluetooth: SCO: Fix possible circular locking dependency sco_sock_getsockopt + - Bluetooth: Set ISO Data Path on broadcast sink + - drm/nouveau/fb: add missing sysmen flush callbacks + - drm/armada: Fix a potential double free in an error handling path + - qlcnic: check pci_reset_function result + - smc: Fix use-after-free in tcp_write_timer_handler(). + - net: wwan: iosm: Fix error handling path in ipc_pcie_probe() + - cgroup,freezer: hold cpu_hotplug_lock before freezer_mutex + - rtnetlink: Restore RTM_NEW/DELLINK notification behavior + - net: qrtr: Fix an uninit variable access bug in qrtr_tx_resume() + - sctp: fix a potential overflow in sctp_ifwdtsn_skip + - RDMA/core: Fix GID entry ref leak when create_ah fails + - selftests: openvswitch: adjust datapath NL message declaration + - udp6: fix potential access to stale information + - selftests: add the missing CONFIG_IP_SCTP in net config + - net: macb: fix a memory corruption in extended buffer descriptor mode + - skbuff: Fix a race between coalescing and releasing SKBs + - ARM: 9290/1: uaccess: Fix KASAN false-positives + - ARM: dts: qcom: apq8026-lg-lenok: add missing reserved memory + - arm64: dts: qcom: sa8540p-ride: correct name of remoteproc_nsp0 firmware + - power: supply: rk817: Fix unsigned comparison with less than zero + - power: supply: cros_usbpd: reclassify "default case!" as debug + - power: supply: axp288_fuel_gauge: Added check for negative values + - selftests/bpf: Fix progs/find_vma_fail1.c build error. + - wifi: mwifiex: mark OF related data as maybe unused + - i2c: imx-lpi2c: clean rx/tx buffers upon new message + - i2c: hisi: Avoid redundant interrupts + - efi: sysfb_efi: Add quirk for Lenovo Yoga Book X91F/L + - block: ublk_drv: mark device as LIVE before adding disk + - ACPI: video: Add backlight=native DMI quirk for Acer Aspire 3830TG + - drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Book X90F + - hwmon: (peci/cputemp) Fix miscalculated DTS for SKX + - hwmon: (xgene) Fix ioremap and memremap leak + - verify_pefile: relax wrapper length check + - asymmetric_keys: log on fatal failures in PE/pkcs7 + - nvme: send Identify with CNS 06h only to I/O controllers + - wifi: iwlwifi: mvm: fix mvmtxq->stopped handling + - wifi: iwlwifi: mvm: protect TXQ list manipulation + - drm/amdgpu: add mes resume when do gfx post soft reset + - drm/amdgpu: Force signal hw_fences that are embedded in non-sched jobs + - drm/amdgpu/gfx: set cg flags to enter/exit safe mode + - ACPI: resource: Add Medion S17413 to IRQ override quirk + - tracing: Add trace_array_puts() to write into instance + - tracing: Have tracing_snapshot_instance_cond() write errors to the + appropriate instance + - maple_tree: fix write memory barrier of nodes once dead for RCU mode + - ksmbd: avoid out of bounds access in decode_preauth_ctxt() + - riscv: add icache flush for nommu sigreturn trampoline + - HID: intel-ish-hid: Fix kernel panic during warm reset + - net: sfp: initialize sfp->i2c_block_size at sfp allocation + - net: phy: nxp-c45-tja11xx: add remove callback + - net: phy: nxp-c45-tja11xx: fix unsigned long multiplication overflow + - scsi: ses: Handle enclosure with just a primary component gracefully + - thermal: intel: Avoid updating unsupported THERM_STATUS_CLEAR mask bits + - drm/amd/pm: correct the pcie link state check for SMU13 + - PCI: Fix use-after-free in pci_bus_release_domain_nr() + - PCI/MSI: Provide missing stub for pci_msix_can_alloc_dyn() + - x86/PCI: Add quirk for AMD XHCI controller that loses MSI-X state in D3hot + - cgroup: fix display of forceidle time at root + - cgroup/cpuset: Fix partition root's cpuset.cpus update bug + - cgroup/cpuset: Wake up cpuset_attach_wq tasks in cpuset_cancel_attach() + - cgroup/cpuset: Make cpuset_fork() handle CLONE_INTO_CGROUP properly + - cgroup/cpuset: Add cpuset_can_fork() and cpuset_cancel_fork() methods + - drm/amd/pm: correct SMU13.0.7 pstate profiling clock settings + - drm/amd/pm: correct SMU13.0.7 max shader clock reporting + - mptcp: use mptcp_schedule_work instead of open-coding it + - mptcp: stricter state check in mptcp_worker + - mptcp: fix NULL pointer dereference on fastopen early fallback + - selftests: mptcp: userspace pm: uniform verify events + - ubi: Fix failure attaching when vid_hdr offset equals to (sub)page size + - ubi: Fix deadlock caused by recursively holding work_sem + - i2c: mchp-pci1xxxx: Update Timing registers + - powerpc/papr_scm: Update the NUMA distance table for the target node + - sched/fair: Fix imbalance overflow + - x86/rtc: Remove __init for runtime functions + - i2c: ocores: generate stop condition after timeout in polling mode + - cifs: fix negotiate context parsing + - nvme-pci: mark Lexar NM760 as IGNORE_DEV_SUBNQN + - nvme-pci: add NVME_QUIRK_BOGUS_NID for T-FORCE Z330 SSD + - Linux 6.2.12 + * RFC: virtio and virtio-scsi should be built in (LP: #1685291) + - [Config] Mark CONFIG_SCSI_VIRTIO built-in + * Dell: Enable speaker mute hotkey LED indicator (LP: #2015972) + - platform/x86: dell-laptop: Register ctl-led for speaker-mute + * Debian autoreconstruct Fix restoration of execute permissions (LP: #2015498) + - [Debian] autoreconstruct - fix restoration of execute permissions + * Lost display on built-in monitor after suspend (LP: #2001599) + - drm/i915: Generalize the PPS vlv_pipe_check() stuff + - drm/i915: Try to use the correct power sequencer intiially on bxt/glk + - drm/i915: Extend dual PPS handlind for ICP+ + - drm/i915: Reject unusable power sequencers + - drm/i915: Print the PPS registers using consistent format + - drm/i915: Fix whitespace + - drm/i915: Improve PPS debugs + * [SRU][Jammy] CONFIG_PCI_MESON is not enabled (LP: #2007745) + - [Config] arm64: Enable PCI_MESON module + * sched: cpumask: improve on cpumask_local_spread() locality (LP: #2008824) + - lib/find: introduce find_nth_and_andnot_bit + - cpumask: introduce cpumask_nth_and_andnot + - sched: add sched_numa_find_nth_cpu() + - cpumask: improve on cpumask_local_spread() locality + - lib/cpumask: reorganize cpumask_local_spread() logic + - sched/topology: Introduce sched_numa_hop_mask() + - sched/topology: Introduce for_each_numa_hop_mask() + - net/mlx5e: Improve remote NUMA preferences used for the IRQ affinity hints + - lib/cpumask: update comment for cpumask_local_spread() + - sched/topology: fix KASAN warning in hop_cmp() + * Fix E-star testing failure with RTK 8852BE (LP: #2012019) + - wifi: rtw89: 8852be: enable CLKREQ of PCI capability + - wifi: rtw89: release RX standby timer of beamformee CSI to save power + * vmd may fail to create sysfs entry while `pci_rescan_bus()` called in some + other drivers like wwan (LP: #2011389) + - SAUCE: PCI: vmd: guard device addition and removal + * Lunar update: v6.2.11 upstream stable release (LP: #2016879) + - dm cache: Add some documentation to dm-cache-background-tracker.h + - dm integrity: Remove bi_sector that's only used by commented debug code + - dm: change "unsigned" to "unsigned int" + - dm: fix improper splitting for abnormal bios + - drm/i915: Move the DSB setup/cleaup into the color code + - drm/i915: Add a .color_post_update() hook + - gpio: GPIO_REGMAP: select REGMAP instead of depending on it + - Drivers: vmbus: Check for channel allocation before looking up relids + - ASoC: SOF: ipc4: Ensure DSP is in D0I0 during sof_ipc4_set_get_data() + - pwm: hibvt: Explicitly set .polarity in .get_state() + - pwm: cros-ec: Explicitly set .polarity in .get_state() + - pwm: iqs620a: Explicitly set .polarity in .get_state() + - pwm: sprd: Explicitly set .polarity in .get_state() + - pwm: meson: Explicitly set .polarity in .get_state() + - ASoC: codecs: lpass: fix the order or clks turn off during suspend + - KVM: s390: pv: fix external interruption loop not always detected + - wifi: mac80211: fix the size calculation of ieee80211_ie_len_eht_cap() + - wifi: mac80211: fix invalid drv_sta_pre_rcu_remove calls for non-uploaded + sta + - net: qrtr: Fix a refcount bug in qrtr_recvmsg() + - net: phylink: add phylink_expects_phy() method + - net: stmmac: check if MAC needs to attach to a PHY + - net: stmmac: remove redundant fixup to support fixed-link mode + - wifi: brcmfmac: Fix SDIO suspend/resume regression + - NFSD: Avoid calling OPDESC() with ops->opnum == OP_ILLEGAL + - nfsd: call op_release, even when op_func returns an error + - icmp: guard against too small mtu + - ALSA: hda/hdmi: Preserve the previous PCM device upon re-enablement + - net: don't let netpoll invoke NAPI if in xmit context + - net: dsa: mv88e6xxx: Reset mv88e6393x force WD event bit + - net: ethernet: mtk_eth_soc: fix remaining throughput regression + - sctp: check send stream number after wait_for_sndbuf + - drm/i915/huc: Cancel HuC delayed load timer on reset. + - net: qrtr: Do not do DEL_SERVER broadcast after DEL_CLIENT + - ipv6: Fix an uninit variable access bug in __ip6_make_skb() + - platform/x86: think-lmi: Fix memory leak when showing current settings + - platform/x86: think-lmi: Fix memory leaks when parsing ThinkStation WMI + strings + - platform/x86: think-lmi: Clean up display of current_value on Thinkstation + - gpio: davinci: Do not clear the bank intr enable bit in save_context + - gpio: davinci: Add irq chip flag to skip set wake + - net: ethernet: ti: am65-cpsw: Fix mdio cleanup in probe + - net: stmmac: fix up RX flow hash indirection table when setting channels + - sunrpc: only free unix grouplist after RCU settles + - NFSD: callback request does not use correct credential for AUTH_SYS + - ice: fix wrong fallback logic for FDIR + - ice: Reset FDIR counter in FDIR init stage + - raw: use net_hash_mix() in hash function + - raw: Fix NULL deref in raw_get_next(). + - ping: Fix potentail NULL deref for /proc/net/icmp. + - ethtool: reset #lanes when lanes is omitted + - netlink: annotate lockless accesses to nlk->max_recvmsg_len + - gve: Secure enough bytes in the first TX desc for all TCP pkts + - arm64: compat: Work around uninitialized variable warning + - net: stmmac: check fwnode for phy device before scanning for phy + - cxl/pci: Fix CDAT retrieval on big endian + - cxl/pci: Handle truncated CDAT header + - cxl/pci: Handle truncated CDAT entries + - cxl/pci: Handle excessive CDAT length + - PCI/DOE: Silence WARN splat with CONFIG_DEBUG_OBJECTS=y + - PCI/DOE: Fix memory leak with CONFIG_DEBUG_OBJECTS=y + - Revert "usb: xhci-pci: Set PROBE_PREFER_ASYNCHRONOUS" + - usb: xhci: tegra: fix sleep in atomic call + - xhci: Free the command allocated for setting LPM if we return early + - xhci: also avoid the XHCI_ZERO_64B_REGS quirk with a passthrough iommu + - usb: cdnsp: Fixes error: uninitialized symbol 'len' + - usb: dwc3: pci: add support for the Intel Meteor Lake-S + - USB: serial: cp210x: add Silicon Labs IFS-USB-DATACABLE IDs + - usb: typec: altmodes/displayport: Fix configure initial pin assignment + - USB: serial: option: add Telit FE990 compositions + - USB: serial: option: add Quectel RM500U-CN modem + - drivers: iio: adc: ltc2497: fix LSB shift + - iio: adis16480: select CONFIG_CRC32 + - iio: adc: qcom-spmi-adc5: Fix the channel name + - iio: adc: ti-ads7950: Set `can_sleep` flag for GPIO chip + - iio: dac: cio-dac: Fix max DAC write value check for 12-bit + - iio: adc: max11410: fix read_poll_timeout() usage + - iio: accel: kionix-kx022a: Get the timestamp from the driver's private data + in the trigger_handler + - iio: buffer: correctly return bytes written in output buffers + - iio: buffer: make sure O_NONBLOCK is respected + - iio: light: cm32181: Unregister second I2C client if present + - iio: light: vcnl4000: Fix WARN_ON on uninitialized lock + - tty: serial: sh-sci: Fix transmit end interrupt handler + - tty: serial: sh-sci: Fix Rx on RZ/G2L SCI + - tty: serial: fsl_lpuart: avoid checking for transfer complete when + UARTCTRL_SBK is asserted in lpuart32_tx_empty + - tty: serial: fsl_lpuart: fix crash in lpuart_uport_is_active + - nilfs2: fix potential UAF of struct nilfs_sc_info in nilfs_segctor_thread() + - nilfs2: fix sysfs interface lifetime + - fsdax: dedupe should compare the min of two iters' length + - fsdax: unshare: zero destination if srcmap is HOLE or UNWRITTEN + - fsdax: force clear dirty mark if CoW + - dt-bindings: serial: renesas,scif: Fix 4th IRQ for 4-IRQ SCIFs + - serial: 8250: Prevent starting up DMA Rx on THRI interrupt + - ksmbd: do not call kvmalloc() with __GFP_NORETRY | __GFP_NO_WARN + - ksmbd: fix slab-out-of-bounds in init_smb2_rsp_hdr + - ALSA: hda/realtek: Add quirk for Clevo X370SNW + - ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook + - x86/acpi/boot: Correct acpi_is_processor_usable() check + - x86/ACPI/boot: Use FADT version to check support for online capable + - KVM: x86: Clear "has_error_code", not "error_code", for RM exception + injection + - KVM: nVMX: Do not report error code when synthesizing VM-Exit from Real Mode + - KVM: SVM: Flush Hyper-V TLB when required + - mm: kfence: fix PG_slab and memcg_data clearing + - mm: kfence: fix handling discontiguous page + - coresight: etm4x: Do not access TRCIDR1 for identification + - coresight-etm4: Fix for() loop drvdata->nr_addr_cmp range bug + - counter: 104-quad-8: Fix race condition between FLAG and CNTR reads + - counter: 104-quad-8: Fix Synapse action reported for Index signals + - blk-mq: directly poll requests + - ftrace: Mark get_lock_parent_ip() __always_inline + - ftrace: Fix issue that 'direct->addr' not restored in modify_ftrace_direct() + - fs: drop peer group ids under namespace lock + - can: j1939: j1939_tp_tx_dat_new(): fix out-of-bounds memory access + - can: isotp: fix race between isotp_sendsmg() and isotp_release() + - can: isotp: isotp_ops: fix poll() to not report false EPOLLOUT events + - can: isotp: isotp_recvmsg(): use sock_recv_cmsgs() to get SOCK_RXQ_OVFL + infos + - ACPI: video: Add auto_detect arg to __acpi_video_get_backlight_type() + - ACPI: video: Make acpi_backlight=video work independent from GPU driver + - ACPI: video: Add acpi_backlight=video quirk for Apple iMac14,1 and iMac14,2 + - ACPI: video: Add acpi_backlight=video quirk for Lenovo ThinkPad W530 + - net: stmmac: Add queue reset into stmmac_xdp_open() function + - tracing/synthetic: Fix races on freeing last_cmd + - tracing/timerlat: Notify new max thread latency + - tracing/osnoise: Fix notify new tracing_max_latency + - tracing: Free error logs of tracing instances + - iommufd: Check for uptr overflow + - iommufd: Fix unpinning of pages when an access is present + - iommufd: Do not corrupt the pfn list when doing batch carry + - ASoC: hdac_hdmi: use set_stream() instead of set_tdm_slots() + - ASoC: SOF: avoid a NULL dereference with unsupported widgets + - iio: adc: ad7791: fix IRQ flags + - io_uring: fix return value when removing provided buffers + - io_uring: fix memory leak when removing provided buffers + - scsi: qla2xxx: Fix memory leak in qla2x00_probe_one() + - scsi: iscsi_tcp: Check that sock is valid before iscsi_set_param() + - nvme: fix discard support without oncs + - cifs: sanitize paths in cifs_update_super_prepath. + - block: ublk: make sure that block size is set correctly + - block: don't set GD_NEED_PART_SCAN if scan partition failed + - perf: Optimize perf_pmu_migrate_context() + - perf/core: Fix the same task check in perf_event_set_output + - tracing/synthetic: Make lastcmd_mutex static + - zsmalloc: document freeable stats + - mm: vmalloc: avoid warn_alloc noise caused by fatal signal + - wifi: mt76: mt7921: fix fw used for offload check for mt7922 + - wifi: mt76: ignore key disable commands + - ublk: read any SQE values upfront + - drm/panfrost: Fix the panfrost_mmu_map_fault_addr() error path + - drm/nouveau/disp: Support more modes by checking with lower bpc + - drm/i915: Fix context runtime accounting + - drm/i915: fix race condition UAF in i915_perf_add_config_ioctl + - ring-buffer: Fix race while reader and writer are on the same page + - mm/swap: fix swap_info_struct race between swapoff and get_swap_pages() + - mm/hugetlb: fix uffd wr-protection for CoW optimization path + - maple_tree: fix get wrong data_end in mtree_lookup_walk() + - maple_tree: fix a potential concurrency bug in RCU mode + - drm/amd/display: Clear MST topology if it fails to resume + - drm/amdgpu: for S0ix, skip SDMA 5.x+ suspend/resume + - drm/amdgpu: skip psp suspend for IMU enabled ASICs mode2 reset + - drm/bridge: lt9611: Fix PLL being unable to lock + - mm: take a page reference when removing device exclusive entries + - maple_tree: remove GFP_ZERO from kmem_cache_alloc() and + kmem_cache_alloc_bulk() + - maple_tree: fix potential rcu issue + - maple_tree: reduce user error potential + - maple_tree: fix handle of invalidated state in mas_wr_store_setup() + - maple_tree: fix mas_prev() and mas_find() state handling + - maple_tree: be more cautious about dead nodes + - maple_tree: refine ma_state init from mas_start() + - maple_tree: detect dead nodes in mas_start() + - maple_tree: fix freeing of nodes in rcu mode + - maple_tree: remove extra smp_wmb() from mas_dead_leaves() + - maple_tree: add smp_rmb() to dead node detection + - maple_tree: add RCU lock checking to rcu callback functions + - mm: enable maple tree RCU mode by default. + - Linux 6.2.11 + * Lunar update: v6.2.10 upstream stable release (LP: #2016878) + - thunderbolt: Limit USB3 bandwidth of certain Intel USB4 host routers + - cifs: update ip_addr for ses only for primary chan setup + - cifs: prevent data race in cifs_reconnect_tcon() + - cifs: avoid race conditions with parallel reconnects + - zonefs: Reorganize code + - zonefs: Simplify IO error handling + - zonefs: Reduce struct zonefs_inode_info size + - zonefs: Separate zone information from inode information + - zonefs: Fix error message in zonefs_file_dio_append() + - btrfs: rename BTRFS_FS_NO_OVERCOMMIT to BTRFS_FS_ACTIVE_ZONE_TRACKING + - btrfs: zoned: count fresh BG region as zone unusable + - btrfs: zoned: drop space_info->active_total_bytes + - fsverity: don't drop pagecache at end of FS_IOC_ENABLE_VERITY + - cifs: fix missing unload_nls() in smb2_reconnect() + - xfrm: Zero padding when dumping algos and encap + - ASoC: codecs: tx-macro: Fix for KASAN: slab-out-of-bounds + - ASoC: Intel: avs: max98357a: Explicitly define codec format + - ASoC: Intel: avs: da7219: Explicitly define codec format + - ASoC: Intel: avs: rt5682: Explicitly define codec format + - ASoC: Intel: avs: ssm4567: Remove nau8825 bits + - ASoC: Intel: avs: nau8825: Adjust clock control + - lib: zstd: Backport fix for in-place decompression + - zstd: Fix definition of assert() + - ACPI: video: Add backlight=native DMI quirk for Dell Vostro 15 3535 + - ACPI: x86: Introduce an acpi_quirk_skip_gpio_event_handlers() helper + - ACPI: x86: Add skip i2c clients quirk for Acer Iconia One 7 B1-750 + - ACPI: x86: Add skip i2c clients quirk for Lenovo Yoga Book X90 + - ASoC: SOF: ipc3: Check for upper size limit for the received message + - ASoC: SOF: ipc4-topology: Fix incorrect sample rate print unit + - ASoC: SOF: Intel: pci-tng: revert invalid bar size setting + - ASoC: SOF: Intel: hda-dsp: harden D0i3 programming sequence + - ASoC: SOF: Intel: hda-ctrl: re-add sleep after entering and exiting reset + - ASoC: SOF: IPC4: update gain ipc msg definition to align with fw + - ASoC: hdmi-codec: only startup/shutdown on supported streams + - wifi: mac80211: check basic rates validity + - md: avoid signed overflow in slot_store() + - x86/PVH: obtain VGA console info in Dom0 + - drm/amdkfd: Fix BO offset for multi-VMA page migration + - drm/amdkfd: fix a potential double free in pqm_create_queue + - drm/amdgpu/vcn: custom video info caps for sriov + - drm/amdkfd: fix potential kgd_mem UAFs + - drm/amd/display: Fix HDCP failing to enable after suspend + - net: hsr: Don't log netdev_err message on unknown prp dst node + - ALSA: asihpi: check pao in control_message() + - ALSA: hda/ca0132: fixup buffer overrun at tuning_ctl_set() + - fbdev: tgafb: Fix potential divide by zero + - ACPI: tools: pfrut: Check if the input of level and type is in the right + numeric range + - sched_getaffinity: don't assume 'cpumask_size()' is fully initialized + - nvme-pci: fixing memory leak in probe teardown path + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM620 + - drm/amdkfd: Fixed kfd_process cleanup on module exit. + - net/mlx5e: Lower maximum allowed MTU in XSK to match XDP prerequisites + - fbdev: nvidia: Fix potential divide by zero + - fbdev: intelfb: Fix potential divide by zero + - fbdev: lxfb: Fix potential divide by zero + - fbdev: au1200fb: Fix potential divide by zero + - tools/power turbostat: Fix /dev/cpu_dma_latency warnings + - tools/power turbostat: fix decoding of HWP_STATUS + - tracing: Fix wrong return in kprobe_event_gen_test.c + - btrfs: fix uninitialized variable warning in btrfs_update_block_group + - btrfs: use temporary variable for space_info in btrfs_update_block_group + - mtd: rawnand: meson: initialize struct with zeroes + - mtd: nand: mxic-ecc: Fix mxic_ecc_data_xfer_wait_for_completion() when irq + is used + - ca8210: Fix unsigned mac_len comparison with zero in ca8210_skb_tx() + - riscv/kvm: Fix VM hang in case of timer delta being zero. + - mips: bmips: BCM6358: disable RAC flush for TP1 + - ALSA: usb-audio: Fix recursive locking at XRUN during syncing + - PCI: dwc: Fix PORT_LINK_CONTROL update when CDM check enabled + - platform/x86: think-lmi: add missing type attribute + - platform/x86: think-lmi: use correct possible_values delimiters + - platform/x86: think-lmi: only display possible_values if available + - platform/x86: think-lmi: Add possible_values for ThinkStation + - platform/surface: aggregator: Add missing fwnode_handle_put() + - mtd: rawnand: meson: invalidate cache on polling ECC bit + - SUNRPC: fix shutdown of NFS TCP client socket + - sfc: ef10: don't overwrite offload features at NIC reset + - scsi: megaraid_sas: Fix crash after a double completion + - scsi: mpt3sas: Don't print sense pool info twice + - net: dsa: realtek: fix out-of-bounds access + - ptp_qoriq: fix memory leak in probe() + - net: dsa: microchip: ksz8: fix ksz8_fdb_dump() + - net: dsa: microchip: ksz8: fix ksz8_fdb_dump() to extract all 1024 entries + - net: dsa: microchip: ksz8: fix offset for the timestamp filed + - net: dsa: microchip: ksz8: ksz8_fdb_dump: avoid extracting ghost entry from + empty dynamic MAC table. + - net: dsa: microchip: ksz8863_smi: fix bulk access + - net: dsa: microchip: ksz8: fix MDB configuration with non-zero VID + - r8169: fix RTL8168H and RTL8107E rx crc error + - regulator: Handle deferred clk + - net/net_failover: fix txq exceeding warning + - net: stmmac: don't reject VLANs when IFF_PROMISC is set + - drm/i915/pmu: Use functions common with sysfs to read actual freq + - drm/i915/tc: Fix the ICL PHY ownership check in TC-cold state + - drm/i915/perf: Drop wakeref on GuC RC error + - platform/x86/intel/pmc: Alder Lake PCH slp_s0_residency fix + - can: bcm: bcm_tx_setup(): fix KMSAN uninit-value in vfs_write + - s390/vfio-ap: fix memory leak in vfio_ap device driver + - ACPI: bus: Rework system-level device notification handling + - loop: LOOP_CONFIGURE: send uevents for partitions + - net: mvpp2: classifier flow fix fragmentation flags + - net: mvpp2: parser fix QinQ + - net: mvpp2: parser fix PPPoE + - smsc911x: avoid PHY being resumed when interface is not up + - ice: Fix ice_cfg_rdma_fltr() to only update relevant fields + - ice: add profile conflict check for AVF FDIR + - ice: fix invalid check for empty list in ice_sched_assoc_vsi_to_agg() + - net: ethernet: mtk_eth_soc: fix tx throughput regression with direct 1G + links + - ALSA: ymfpci: Create card with device-managed snd_devm_card_new() + - ALSA: ymfpci: Fix BUG_ON in probe function + - net: wwan: iosm: fixes 7560 modem crash + - drm/nouveau/kms: Fix backlight registration + - net: ipa: compute DMA pool size properly + - bnx2x: use the right build_skb() helper + - i40e: fix registers dump after run ethtool adapter self test + - bnxt_en: Fix reporting of test result in ethtool selftest + - bnxt_en: Fix typo in PCI id to device description string mapping + - bnxt_en: Add missing 200G link speed reporting + - net: dsa: mv88e6xxx: Enable IGMP snooping on user ports only + - net: dsa: sync unicast and multicast addresses for VLAN filters too + - net: ethernet: mtk_eth_soc: fix flow block refcounting logic + - net: ethernet: mtk_eth_soc: fix L2 offloading with DSA untag offload + - net: ethernet: mtk_eth_soc: add missing ppe cache flush when deleting a flow + - pinctrl: ocelot: Fix alt mode for ocelot + - Input: xpad - fix incorrectly applied patch for MAP_PROFILE_BUTTON + - iommu/vt-d: Allow zero SAGAW if second-stage not supported + - Revert "venus: firmware: Correct non-pix start and end addresses" + - Input: i8042 - add TUXEDO devices to i8042 quirk tables for partial fix + - Input: alps - fix compatibility with -funsigned-char + - Input: focaltech - use explicitly signed char type + - cifs: prevent infinite recursion in CIFSGetDFSRefer() + - cifs: fix DFS traversal oops without CONFIG_CIFS_DFS_UPCALL + - Input: i8042 - add quirk for Fujitsu Lifebook A574/H + - Input: goodix - add Lenovo Yoga Book X90F to nine_bytes_report DMI table + - btrfs: fix deadlock when aborting transaction during relocation with scrub + - btrfs: fix race between quota disable and quota assign ioctls + - btrfs: scan device in non-exclusive mode + - btrfs: ignore fiemap path cache when there are multiple paths for a node + - zonefs: Do not propagate iomap_dio_rw() ENOTBLK error to user space + - io_uring/poll: clear single/double poll flags on poll arming + - io_uring/rsrc: fix rogue rsrc node grabbing + - io_uring: fix poll/netmsg alloc caches + - vmxnet3: use gro callback when UPT is enabled + - zonefs: Always invalidate last cached page on append write + - dm: fix __send_duplicate_bios() to always allow for splitting IO + - can: j1939: prevent deadlock by moving j1939_sk_errqueue() + - xen/netback: don't do grant copy across page boundary + - net: phy: dp83869: fix default value for tx-/rx-internal-delay + - modpost: Fix processing of CRCs on 32-bit build machines + - pinctrl: amd: Disable and mask interrupts on resume + - pinctrl: at91-pio4: fix domain name assignment + - platform/x86: ideapad-laptop: Stop sending KEY_TOUCHPAD_TOGGLE + - thermal: intel: int340x: processor_thermal: Fix additional deadlock + - powerpc: Don't try to copy PPR for task with NULL pt_regs + - powerpc/pseries/vas: Ignore VAS update for DLPAR if copy/paste is not + enabled + - powerpc/64s: Fix __pte_needs_flush() false positive warning + - NFSv4: Fix hangs when recovering open state after a server reboot + - ALSA: hda/conexant: Partial revert of a quirk for Lenovo + - ALSA: usb-audio: Fix regression on detection of Roland VS-100 + - ALSA: hda/realtek: Add quirks for some Clevo laptops + - ALSA: hda/realtek: Add quirk for Lenovo ZhaoYang CF4620Z + - xtensa: fix KASAN report for show_stack + - rcu: Fix rcu_torture_read ftrace event + - dt-bindings: mtd: jedec,spi-nor: Document CPOL/CPHA support + - s390/uaccess: add missing earlyclobber annotations to __clear_user() + - s390: reintroduce expoline dependence to scripts + - drm/etnaviv: fix reference leak when mmaping imported buffer + - drm/amdgpu: allow more APUs to do mode2 reset when go to S4 + - drm/amd/display: Add DSC Support for Synaptics Cascaded MST Hub + - drm/amd/display: Take FEC Overhead into Timeslot Calculation + - drm/i915/gem: Flush lmem contents after construction + - drm/i915/dpt: Treat the DPT BO as a framebuffer + - drm/i915: Disable DC states for all commits + - drm/i915: Split icl_color_commit_noarm() from skl_color_commit_noarm() + - drm/i915: Move CSC load back into .color_commit_arm() when PSR is enabled on + skl/glk + - KVM: arm64: PMU: Fix GET_ONE_REG for vPMC regs to return the current value + - KVM: arm64: PMU: Don't save PMCR_EL0.{C,P} for the vCPU + - KVM: arm64: Retry fault if vma_lookup() results become invalid + - KVM: arm64: Disable interrupts while walking userspace PTs + - KVM: arm64: Check for kvm_vma_mte_allowed in the critical section + - usb: ucsi: Fix ucsi->connector race + - libbpf: Fix BTF-to-C converter's padding logic + - selftests/bpf: Add few corner cases to test padding handling of btf_dump + - libbpf: Fix btf_dump's packed struct determination + - drm/amdkfd: Get prange->offset after svm_range_vram_node_new + - hsr: ratelimit only when errors are printed + - x86/PVH: avoid 32-bit build warning when obtaining VGA console info + - Revert "cpuidle, intel_idle: Fix CPUIDLE_FLAG_IRQ_ENABLE *again*" + - Linux 6.2.10 + * Lunar update: v6.2.9 upstream stable release (LP: #2016877) + - interconnect: qcom: osm-l3: fix icc_onecell_data allocation + - interconnect: qcom: sm8450: switch to qcom_icc_rpmh_* function + - interconnect: qcom: qcm2290: Fix MASTER_SNOC_BIMC_NRT + - perf/core: Fix perf_output_begin parameter is incorrectly invoked in + perf_event_bpf_output + - perf: fix perf_event_context->time + - tracing/hwlat: Replace sched_setaffinity with set_cpus_allowed_ptr + - drm/amd/display: fix k1 k2 divider programming for phantom streams + - drm/amd/display: Remove OTG DIV register write for Virtual signals. + - drm/amd/display: Fix DP MST sinks removal issue + - arm64: dts: freescale: imx8-ss-lsio: Fix flexspi clock order + - arm64: dts: qcom: sc8280xp: Add label property to vadc channel nodes + - arm64: dts: qcom: sm6375: Add missing power-domain-named to CDSP + - arm64: dts: qcom: sm8450: correct WSA2 assigned clocks + - arm64: dts: qcom: sm8450: Mark UFS controller as cache coherent + - power: supply: bq24190: Fix use after free bug in bq24190_remove due to race + condition + - power: supply: da9150: Fix use after free bug in da9150_charger_remove due + to race condition + - wifi: mt76: do not run mt76_unregister_device() on unregistered hw + - wifi: mt76: connac: do not check WED status for non-mmio devices + - efi: earlycon: Reprobe after parsing config tables + - arm64: dts: imx8dxl-evk: Disable hibernation mode of AR8031 for EQOS + - arm64: dts: imx8dxl-evk: Fix eqos phy reset gpio + - ARM: dts: imx6sll: e70k02: fix usbotg1 pinctrl + - ARM: dts: imx6sll: e60k02: fix usbotg1 pinctrl + - ARM: dts: imx6sl: tolino-shine2hd: fix usbotg1 pinctrl + - arm64: dts: imx8mn: specify #sound-dai-cells for SAI nodes + - arm64: dts: imx93: add missing #address-cells and #size-cells to i2c nodes + - NFS: Fix /proc/PID/io read_bytes for buffered reads + - xsk: Add missing overflow check in xdp_umem_reg + - iavf: fix inverted Rx hash condition leading to disabled hash + - iavf: fix non-tunneled IPv6 UDP packet type and hashing + - iavf: do not track VLAN 0 filters + - intel/igbvf: free irq on the error path in igbvf_request_msix() + - igbvf: Regard vf reset nack as success + - igc: fix the validation logic for taprio's gate list + - i2c: imx-lpi2c: check only for enabled interrupt flags + - i2c: mxs: ensure that DMA buffers are safe for DMA + - i2c: hisi: Only use the completion interrupt to finish the transfer + - scsi: scsi_dh_alua: Fix memleak for 'qdata' in alua_activate() + - nfsd: don't replace page in rq_pages if it's a continuation of last page + - net: dsa: b53: mmap: fix device tree support + - net: usb: smsc95xx: Limit packet length to skb->len + - qed/qed_sriov: guard against NULL derefs from qed_iov_get_vf_info + - xirc2ps_cs: Fix use after free bug in xirc2ps_detach + - net: phy: Ensure state transitions are processed from phy_stop() + - net: mdio: fix owner field for mdio buses registered using device-tree + - net: mdio: fix owner field for mdio buses registered using ACPI + - net: stmmac: Fix for mismatched host/device DMA address width + - thermal/drivers/mellanox: Use generic thermal_zone_get_trip() function + - mlxsw: core_thermal: Fix fan speed in maximum cooling state + - drm/i915/fbdev: lock the fbdev obj before vma pin + - drm/i915/mtl: Disable MC6 for MTL A step + - drm/i915/guc: Rename GuC register state capture node to be more obvious + - drm/i915/guc: Fix missing ecodes + - drm/i915/gt: perform uc late init after probe error injection + - drm/i915: Fix format for perf_limit_reasons + - drm/i915: Update vblank timestamping stuff on seamless M/N change + - net: dsa: report rx_bytes unadjusted for ETH_HLEN + - net: qcom/emac: Fix use after free bug in emac_remove due to race condition + - net: usb: lan78xx: Limit packet length to skb->len + - net/ps3_gelic_net: Fix RX sk_buff length + - net/ps3_gelic_net: Use dma_mapping_error + - octeontx2-vf: Add missing free for alloc_percpu + - bootconfig: Fix testcase to increase max node + - keys: Do not cache key in task struct if key is requested from kernel thread + - ice: check if VF exists before mode check + - iavf: fix hang on reboot with ice + - i40e: fix flow director packet filter programming + - bpf: Adjust insufficient default bpf_jit_limit + - net/mlx5e: Set uplink rep as NETNS_LOCAL + - net/mlx5e: Block entering switchdev mode with ns inconsistency + - net/mlx5: Fix steering rules cleanup + - net/mlx5e: Overcome slow response for first macsec ASO WQE + - net/mlx5: Read the TC mapping of all priorities on ETS query + - net/mlx5: E-Switch, Fix an Oops in error handling code + - net: dsa: tag_brcm: legacy: fix daisy-chained switches + - atm: idt77252: fix kmemleak when rmmod idt77252 + - erspan: do not use skb_mac_header() in ndo_start_xmit() + - net: mscc: ocelot: fix stats region batching + - net/sonic: use dma_mapping_error() for error check + - nvme-tcp: fix nvme_tcp_term_pdu to match spec + - mlxsw: spectrum_fid: Fix incorrect local port type + - hvc/xen: prevent concurrent accesses to the shared ring + - ksmbd: add low bound validation to FSCTL_SET_ZERO_DATA + - ksmbd: add low bound validation to FSCTL_QUERY_ALLOCATED_RANGES + - ksmbd: fix possible refcount leak in smb2_open() + - Bluetooth: hci_sync: Resume adv with no RPA when active scan + - Bluetooth: hci_core: Detect if an ACL packet is in fact an ISO packet + - Bluetooth: btusb: Remove detection of ISO packets over bulk + - Bluetooth: ISO: fix timestamped HCI ISO data packet parsing + - Bluetooth: Remove "Power-on" check from Mesh feature + - gve: Cache link_speed value from device + - net: asix: fix modprobe "sysfs: cannot create duplicate filename" + - net: dsa: mt7530: move enabling disabling core clock to mt7530_pll_setup() + - net: dsa: mt7530: move lowering TRGMII driving to mt7530_setup() + - net: dsa: mt7530: move setting ssc_delta to PHY_INTERFACE_MODE_TRGMII case + - net: mdio: thunder: Add missing fwnode_handle_put() + - efi/libstub: Use relocated version of kernel's struct screen_info + - drm/amd/display: Set dcn32 caps.seamless_odm + - Bluetooth: btqcomsmd: Fix command timeout after setting BD address + - Bluetooth: L2CAP: Fix responding with wrong PDU type + - Bluetooth: btsdio: fix use after free bug in btsdio_remove due to unfinished + work + - Bluetooth: mgmt: Fix MGMT add advmon with RSSI command + - Bluetooth: HCI: Fix global-out-of-bounds + - platform/chrome: cros_ec_chardev: fix kernel data leak from ioctl + - entry: Fix noinstr warning in __enter_from_user_mode() + - perf/x86/amd/core: Always clear status for idx + - entry/rcu: Check TIF_RESCHED _after_ delayed RCU wake-up + - hwmon: fix potential sensor registration fail if of_node is missing + - hwmon (it87): Fix voltage scaling for chips with 10.9mV ADCs + - scsi: qla2xxx: Synchronize the IOCB count to be in order + - scsi: qla2xxx: Perform lockless command completion in abort path + - smb3: lower default deferred close timeout to address perf regression + - smb3: fix unusable share after force unmount failure + - uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS583Gen 2 + - thunderbolt: Use scale field when allocating USB3 bandwidth + - thunderbolt: Call tb_check_quirks() after initializing adapters + - thunderbolt: Add quirk to disable CLx + - thunderbolt: Fix memory leak in margining + - thunderbolt: Disable interrupt auto clear for rings + - thunderbolt: Add missing UNSET_INBOUND_SBTX for retimer access + - thunderbolt: Use const qualifier for `ring_interrupt_index` + - thunderbolt: Rename shadowed variables bit to interrupt_bit and + auto_clear_bit + - ASoC: amd: yp: Add OMEN by HP Gaming Laptop 16z-n000 to quirks + - ASoC: Intel: sof_rt5682: Add quirk for Rex board with mx98360a amplifier + - ASoC: amd: yc: Add DMI entries to support HP OMEN 16-n0xxx (8A43) + - ACPI: x86: Drop quirk for HP Elitebook + - ACPI: x86: utils: Add Cezanne to the list for forcing StorageD3Enable + - riscv: Bump COMMAND_LINE_SIZE value to 1024 + - drm/cirrus: NULL-check pipe->plane.state->fb in cirrus_pipe_update() + - HID: cp2112: Fix driver not registering GPIO IRQ chip as threaded + - ca8210: fix mac_len negative array access + - HID: logitech-hidpp: Add support for Logitech MX Master 3S mouse + - HID: intel-ish-hid: ipc: Fix potential use-after-free in work function + - m68k: mm: Fix systems with memory at end of 32-bit address space + - m68k: Only force 030 bus error if PC not in exception table + - selftests/bpf: check that modifier resolves after pointer + - cpumask: fix incorrect cpumask scanning result checks + - scsi: target: iscsi: Fix an error message in iscsi_check_key() + - scsi: qla2xxx: Add option to disable FC2 Target support + - scsi: hisi_sas: Check devm_add_action() return value + - scsi: ufs: core: Add soft dependency on governor_simpleondemand + - scsi: lpfc: Check kzalloc() in lpfc_sli4_cgn_params_read() + - scsi: lpfc: Avoid usage of list iterator variable after loop + - scsi: mpi3mr: Driver unload crashes host when enhanced logging is enabled + - scsi: mpi3mr: Wait for diagnostic save during controller init + - scsi: mpi3mr: NVMe command size greater than 8K fails + - scsi: mpi3mr: Bad drive in topology results kernel crash + - scsi: storvsc: Handle BlockSize change in Hyper-V VHD/VHDX file + - platform/x86: int3472: Add GPIOs to Surface Go 3 Board data + - net: usb: cdc_mbim: avoid altsetting toggling for Telit FE990 + - net: usb: qmi_wwan: add Telit 0x1080 composition + - drm/amd/display: Update clock table to include highest clock setting + - sh: sanitize the flags on sigreturn + - drm/amdgpu: Fix call trace warning and hang when removing amdgpu device + - drm/amd: Fix initialization mistake for NBIO 7.3.0 + - net/sched: act_mirred: better wording on protection against excessive stack + growth + - act_mirred: use the backlog for nested calls to mirred ingress + - cifs: lock chan_lock outside match_session + - cifs: append path to open_enter trace event + - cifs: do not poll server interfaces too regularly + - cifs: empty interface list when server doesn't support query interfaces + - cifs: dump pending mids for all channels in DebugData + - cifs: print session id while listing open files + - cifs: fix dentry lookups in directory handle cache + - x86/mm: Do not shuffle CPU entry areas without KASLR + - x86/fpu/xstate: Prevent false-positive warning in __copy_xstate_uabi_buf() + - selftests/x86/amx: Add a ptrace test + - scsi: core: Add BLIST_SKIP_VPD_PAGES for SKhynix H28U74301AMR + - usb: misc: onboard-hub: add support for Microchip USB2517 USB 2.0 hub + - usb: dwc2: fix a race, don't power off/on phy for dual-role mode + - usb: dwc2: drd: fix inconsistent mode if role-switch-default-mode="host" + - usb: dwc2: fix a devres leak in hw_enable upon suspend resume + - block/io_uring: pass in issue_flags for uring_cmd task_work handling + - usb: gadget: u_audio: don't let userspace block driver unbind + - btrfs: zoned: fix btrfs_can_activate_zone() to support DUP profile + - Bluetooth: Fix race condition in hci_cmd_sync_clear + - efi: sysfb_efi: Fix DMI quirks not working for simpledrm + - mm/slab: Fix undefined init_cache_node_node() for NUMA and !SMP + - efi/libstub: zboot: Mark zboot EFI application as NX compatible + - arm64: efi: Set NX compat flag in PE/COFF header + - fscrypt: destroy keyring after security_sb_delete() + - fsverity: Remove WQ_UNBOUND from fsverity read workqueue + - lockd: set file_lock start and end when decoding nlm4 testargs + - arm64: dts: imx8mm-nitrogen-r2: fix WM8960 clock name + - igb: revert rtnl_lock() that causes deadlock + - dm thin: fix deadlock when swapping to thin device + - usb: typec: tcpm: fix create duplicate source-capabilities file + - usb: typec: tcpm: fix warning when handle discover_identity message + - usb: cdns3: Fix issue with using incorrect PCI device function + - usb: cdnsp: Fixes issue with redundant Status Stage + - usb: cdnsp: changes PCI Device ID to fix conflict with CNDS3 driver + - usb: chipdea: core: fix return -EINVAL if request role is the same with + current role + - usb: chipidea: core: fix possible concurrent when switch role + - usb: dwc3: gadget: Add 1ms delay after end transfer command without IOC + - usb: ucsi: Fix NULL pointer deref in ucsi_connector_change() + - usb: ucsi_acpi: Increase the command completion timeout + - mm: kfence: fix using kfence_metadata without initialization in + show_object() + - kfence: avoid passing -g for test + - io_uring/net: avoid sending -ECONNABORTED on repeated connection requests + - io_uring/rsrc: fix null-ptr-deref in io_file_bitmap_get() + - Revert "kasan: drop skip_kasan_poison variable in free_pages_prepare" + - kcsan: avoid passing -g for test + - test_maple_tree: add more testing for mas_empty_area() + - maple_tree: fix mas_skip_node() end slot detection + - ksmbd: fix wrong signingkey creation when encryption is AES256 + - ksmbd: set FILE_NAMED_STREAMS attribute in FS_ATTRIBUTE_INFORMATION + - ksmbd: don't terminate inactive sessions after a few seconds + - ksmbd: return STATUS_NOT_SUPPORTED on unsupported smb2.0 dialect + - ksmbd: return unsupported error on smb1 mount + - wifi: mac80211: fix qos on mesh interfaces + - wifi: mac80211: Serialize ieee80211_handle_wake_tx_queue() + - nilfs2: fix kernel-infoleak in nilfs_ioctl_wrap_copy() + - drm/bridge: lt8912b: return EPROBE_DEFER if bridge is not found + - drm/amd/display: fix wrong index used in dccg32_set_dpstreamclk + - drm/meson: fix missing component unbind on bind errors + - drm/amdgpu/nv: Apply ASPM quirk on Intel ADL + AMD Navi + - drm/i915/active: Fix missing debug object activation + - drm/i915: Preserve crtc_state->inherited during state clearing + - drm/amdgpu: skip ASIC reset for APUs when go to S4 + - drm/amdgpu: reposition the gpu reset checking for reuse + - riscv: mm: Fix incorrect ASID argument when flushing TLB + - riscv: Handle zicsr/zifencei issues between clang and binutils + - tee: amdtee: fix race condition in amdtee_open_session + - firmware: arm_scmi: Fix device node validation for mailbox transport + - arm64: dts: qcom: sc8280xp-x13s: mark s11b regulator as always-on + - arm64: dts: qcom: sc7280: Mark PCIe controller as cache coherent + - arm64: dts: qcom: sm8150: Fix the iommu mask used for PCIe controllers + - soc: qcom: llcc: Fix slice configuration values for SC8280XP + - mm/ksm: fix race with VMA iteration and mm_struct teardown + - bus: imx-weim: fix branch condition evaluates to a garbage value + - i2c: xgene-slimpro: Fix out-of-bounds bug in xgene_slimpro_i2c_xfer() + - dm stats: check for and propagate alloc_percpu failure + - dm crypt: add cond_resched() to dmcrypt_write() + - dm crypt: avoid accessing uninitialized tasklet + - sched/fair: sanitize vruntime of entity being placed + - sched/fair: Sanitize vruntime of entity being migrated + - Linux 6.2.9 + - [Config] ppc64: updateconfigs following v6.2.9 stable updates + * Lunar update: v6.2.8 upstream stable release (LP: #2016876) + - xfrm: Allow transport-mode states with AF_UNSPEC selector + - drm/virtio: Pass correct device to dma_sync_sgtable_for_device() + - drm/msm/gem: Prevent blocking within shrinker loop + - drm/panfrost: Don't sync rpm suspension after mmu flushing + - fbdev: chipsfb: Fix error codes in chipsfb_pci_init() + - cifs: Move the in_send statistic to __smb_send_rqst() + - drm/meson: fix 1px pink line on GXM when scaling video overlay + - clk: HI655X: select REGMAP instead of depending on it + - selftests: amd-pstate: fix TEST_FILES + - ASoC: SOF: Intel: MTL: Fix the device description + - ASoC: SOF: Intel: HDA: Fix device description + - ASoC: SOF: Intel: SKL: Fix device description + - ASOC: SOF: Intel: pci-tgl: Fix device description + - ASoC: SOF: ipc4-topology: set dmic dai index from copier + - docs: Correct missing "d_" prefix for dentry_operations member + d_weak_revalidate + - scsi: mpt3sas: Fix NULL pointer access in mpt3sas_transport_port_add() + - scsi: mpi3mr: Fix throttle_groups memory leak + - scsi: mpi3mr: Fix config page DMA memory leak + - scsi: mpi3mr: Fix mpi3mr_hba_port memory leak in mpi3mr_remove() + - scsi: mpi3mr: Fix sas_hba.phy memory leak in mpi3mr_remove() + - scsi: mpi3mr: Return proper values for failures in firmware init path + - scsi: mpi3mr: Fix memory leaks in mpi3mr_init_ioc() + - scsi: mpi3mr: ioctl timeout when disabling/enabling interrupt + - scsi: mpi3mr: Fix expander node leak in mpi3mr_remove() + - ALSA: hda: Match only Intel devices with CONTROLLER_IN_GPU() + - netfilter: nft_nat: correct length for loading protocol registers + - netfilter: nft_masq: correct length for loading protocol registers + - netfilter: nft_redir: correct length for loading protocol registers + - netfilter: nft_redir: correct value of inet type `.maxattrs` + - scsi: core: Add BLIST_NO_VPD_SIZE for some VDASD + - scsi: core: Fix a procfs host directory removal regression + - ftrace,kcfi: Define ftrace_stub_graph conditionally + - tcp: tcp_make_synack() can be called from process context + - vdpa/mlx5: should not activate virtq object when suspended + - wifi: nl80211: fix NULL-ptr deref in offchan check + - wifi: cfg80211: fix MLO connection ownership + - selftests: fix LLVM build for i386 and x86_64 + - nfc: pn533: initialize struct pn533_out_arg properly + - ipvlan: Make skb->skb_iif track skb->dev for l3s mode + - i40e: Fix kernel crash during reboot when adapter is in recovery mode + - vhost-vdpa: free iommu domain after last use during cleanup + - vdpa_sim: not reset state in vdpasim_queue_ready + - vdpa_sim: set last_used_idx as last_avail_idx in vdpasim_queue_ready + - PCI: s390: Fix use-after-free of PCI resources with per-function hotplug + - bnxt_en: reset PHC frequency in free-running mode + - net/smc: fix NULL sndbuf_desc in smc_cdc_tx_handler() + - qed/qed_dev: guard against a possible division by zero + - net: dsa: mt7530: remove now incorrect comment regarding port 5 + - net: dsa: mt7530: set PLL frequency and trgmii only when trgmii is used + - block: do not reverse request order when flushing plug list + - loop: Fix use-after-free issues + - blk-mq: fix "bad unlock balance detected" on q->srcu in + __blk_mq_run_dispatch_ops + - net: tunnels: annotate lockless accesses to dev->needed_headroom + - net: phy: smsc: bail out in lan87xx_read_status if genphy_read_status fails + - tcp: Fix bind() conflict check for dual-stack wildcard address. + - nfc: st-nci: Fix use after free bug in ndlc_remove due to race condition + - mlxsw: spectrum: Fix incorrect parsing depth after reload + - net/smc: fix deadlock triggered by cancel_delayed_work_syn() + - net: usb: smsc75xx: Limit packet length to skb->len + - net: ethernet: mtk_eth_soc: reset PCS state + - net: ethernet: mtk_eth_soc: only write values if needed + - drm/bridge: Fix returned array size name for atomic_get_input_bus_fmts kdoc + - powerpc/mm: Fix false detection of read faults + - block: null_blk: Fix handling of fake timeout request + - nvme: fix handling single range discard request + - nvmet: avoid potential UAF in nvmet_req_complete() + - block: sunvdc: add check for mdesc_grab() returning NULL + - block: count 'ios' and 'sectors' when io is done for bio-based device + - net/mlx5e: Fix macsec ASO context alignment + - net/mlx5e: Don't cache tunnel offloads capability + - net/mlx5: Fix setting ec_function bit in MANAGE_PAGES + - net/mlx5: Disable eswitch before waiting for VF pages + - net/mlx5: E-switch, Fix wrong usage of source port rewrite in split rules + - net/mlx5: E-switch, Fix missing set of split_count when forward to ovs + internal port + - net/mlx5e: Fix cleanup null-ptr deref on encap lock + - net/mlx5: Set BREAK_FW_WAIT flag first when removing driver + - veth: Fix use after free in XDP_REDIRECT + - ice: xsk: disable txq irq before flushing hw + - net: dsa: don't error out when drivers return ETH_DATA_LEN in + .port_max_mtu() + - net: dsa: mv88e6xxx: fix max_mtu of 1492 on 6165, 6191, 6220, 6250, 6290 + - ravb: avoid PHY being resumed when interface is not up + - sh_eth: avoid PHY being resumed when interface is not up + - ipv4: Fix incorrect table ID in IOCTL path + - net: usb: smsc75xx: Move packet length check to prevent kernel panic in + skb_pull + - net: atlantic: Fix crash when XDP is enabled but no program is loaded + - net/iucv: Fix size of interrupt data + - i825xx: sni_82596: use eth_hw_addr_set() + - qed/qed_mng_tlv: correctly zero out ->min instead of ->hour + - net: dsa: microchip: fix RGMII delay configuration on + KSZ8765/KSZ8794/KSZ8795 + - ethernet: sun: add check for the mdesc_grab() + - net: renesas: rswitch: Rename rings in struct rswitch_gwca_queue + - net: renesas: rswitch: Fix the output value of quote from rswitch_rx() + - bonding: restore IFF_MASTER/SLAVE flags on bond enslave ether type change + - bonding: restore bond's IFF_SLAVE flag if a non-eth dev enslave fails + - hwmon: (adt7475) Display smoothing attributes in correct order + - hwmon: (adt7475) Fix masking of hysteresis registers + - hwmon: (xgene) Fix use after free bug in xgene_hwmon_remove due to race + condition + - hwmon: (ina3221) return prober error code + - hwmon: (ucd90320) Add minimum delay between bus accesses + - hwmon: tmp512: drop of_match_ptr for ID table + - kconfig: Update config changed flag before calling callback + - hwmon: (adm1266) Set `can_sleep` flag for GPIO chip + - hwmon: (ltc2992) Set `can_sleep` flag for GPIO chip + - media: m5mols: fix off-by-one loop termination error + - ext4: update s_journal_inum if it changes after journal replay + - ext4: fix task hung in ext4_xattr_delete_inode + - drm/amdkfd: Fix an illegal memory access + - net/9p: fix bug in client create for .L + - LoongArch: Only call get_timer_irq() once in constant_clockevent_init() + - sh: intc: Avoid spurious sizeof-pointer-div warning + - drm/amdgpu: fix ttm_bo calltrace warning in psp_hw_fini + - drm/amd/display: fix shift-out-of-bounds in CalculateVMAndRowBytes + - ext4: fix possible double unlock when moving a directory + - Revert "tty: serial: fsl_lpuart: adjust SERIAL_FSL_LPUART_CONSOLE config + dependency" + - tty: serial: fsl_lpuart: fix race on RX DMA shutdown + - tty: serial: fsl_lpuart: skip waiting for transmission complete when + UARTCTRL_SBK is asserted + - serial: 8250_em: Fix UART port type + - serial: 8250_fsl: fix handle_irq locking + - serial: 8250: ASPEED_VUART: select REGMAP instead of depending on it + - firmware: xilinx: don't make a sleepable memory allocation from an atomic + context + - memory: tegra: fix interconnect registration race + - memory: tegra20-emc: fix interconnect registration race + - memory: tegra124-emc: fix interconnect registration race + - memory: tegra30-emc: fix interconnect registration race + - drm/ttm: Fix a NULL pointer dereference + - s390/ipl: add missing intersection check to ipl_report handling + - interconnect: fix icc_provider_del() error handling + - interconnect: fix provider registration API + - interconnect: imx: fix registration race + - interconnect: fix mem leak when freeing nodes + - interconnect: qcom: osm-l3: fix registration race + - interconnect: qcom: rpm: fix probe child-node error handling + - interconnect: qcom: rpm: fix registration race + - interconnect: qcom: rpmh: fix probe child-node error handling + - interconnect: qcom: rpmh: fix registration race + - interconnect: qcom: msm8974: fix registration race + - interconnect: exynos: fix node leak in probe PM QoS error path + - interconnect: exynos: fix registration race + - md: select BLOCK_LEGACY_AUTOLOAD + - cifs: generate signkey for the channel that's reconnecting + - tracing: Make splice_read available again + - tracing: Do not let histogram values have some modifiers + - tracing: Check field value in hist_field_name() + - tracing: Make tracepoint lockdep check actually test something + - cifs: Fix smb2_set_path_size() + - cifs: set DFS root session in cifs_get_smb_ses() + - cifs: fix use-after-free bug in refresh_cache_worker() + - cifs: return DFS root session id in DebugData + - cifs: use DFS root session instead of tcon ses + - KVM: SVM: Fix a benign off-by-one bug in AVIC physical table mask + - KVM: SVM: Modify AVIC GATag to support max number of 512 vCPUs + - ALSA: hda: intel-dsp-config: add MTL PCI id + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro + - Revert "riscv: mm: notify remote harts about mmu cache updates" + - riscv: asid: Fixup stale TLB entry cause application crash + - drm/edid: fix info leak when failing to get panel id + - drm/shmem-helper: Remove another errant put in error path + - drm/sun4i: fix missing component unbind on bind errors + - drm/i915/active: Fix misuse of non-idle barriers as fence trackers + - drm/i915/dg2: Add HDMI pixel clock frequencies 267.30 and 319.89 MHz + - drm/amdgpu: Don't resume IOMMU after incomplete init + - drm/amd/pm: Fix sienna cichlid incorrect OD volage after resume + - drm/amdgpu/vcn: Disable indirect SRAM on Vangogh broken BIOSes + - drm/amd/pm: bump SMU 13.0.4 driver_if header version + - drm/amd/display: Do not set DRR on pipe Commit + - drm/amd/display: disconnect MPCC only on OTG change + - drm/amd/display: Write to correct dirty_rect + - mptcp: fix possible deadlock in subflow_error_report + - mptcp: refactor passive socket initialization + - mptcp: use the workqueue to destroy unaccepted sockets + - mptcp: fix UaF in listener shutdown + - mptcp: add ro_after_init for tcp{,v6}_prot_override + - mptcp: avoid setting TCP_CLOSE state twice + - mptcp: fix lockdep false positive in mptcp_pm_nl_create_listen_socket() + - ftrace: Fix invalid address access in lookup_rec() when index is 0 + - ocfs2: fix data corruption after failed write + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Netac NV3000 + - ice: avoid bonding causing auxiliary plug/unplug under RTNL lock + - vp_vdpa: fix the crash in hot unplug with vp_vdpa + - mm/userfaultfd: propagate uffd-wp bit when PTE-mapping the huge zeropage + - mm: teach mincore_hugetlb about pte markers + - powerpc/64: Set default CPU in Kconfig + - powerpc/boot: Don't always pass -mcpu=powerpc when building 32-bit uImage + - mmc: sdhci_am654: lower power-on failed message severity + - fbdev: stifb: Provide valid pixelclock and add fb_check_var() checks + - trace/hwlat: Do not wipe the contents of per-cpu thread data + - trace/hwlat: Do not start per-cpu thread if it is already running + - ACPI: PPTT: Fix to avoid sleep in the atomic context when PPTT is absent + - net: phy: nxp-c45-tja11xx: fix MII_BASIC_CONFIG_REV bit + - fbdev: Fix incorrect page mapping clearance at fb_deferred_io_release() + - RISC-V: mm: Support huge page in vmalloc_fault() + - io_uring/msg_ring: let target know allocated index + - cpuidle: psci: Iterate backwards over list in psci_pd_remove() + - ASoC: Intel: soc-acpi: fix copy-paste issue in topology names + - ASoC: qcom: q6prm: fix incorrect clk_root passed to ADSP + - x86/mce: Make sure logged MCEs are processed after sysfs update + - x86/mm: Fix use of uninitialized buffer in sme_enable() + - x86/resctrl: Clear staged_config[] before and after it is used + - powerpc: Pass correct CPU reference to assembler + - virt/coco/sev-guest: Check SEV_SNP attribute at probe time + - virt/coco/sev-guest: Simplify extended guest request handling + - virt/coco/sev-guest: Remove the disable_vmpck label in + handle_guest_request() + - virt/coco/sev-guest: Carve out the request issuing logic into a helper + - virt/coco/sev-guest: Do some code style cleanups + - virt/coco/sev-guest: Convert the sw_exit_info_2 checking to a switch-case + - virt/coco/sev-guest: Add throttling awareness + - perf: Fix check before add_event_to_groups() in perf_group_detach() + - powerpc: Disable CPU unknown by CLANG when CC_IS_CLANG + - powerpc/64: Replace -mcpu=e500mc64 by -mcpu=e5500 + - Linux 6.2.8 + - [Config] ppc64: updateconfigs following v6.2.8 stable updates + * Lunar update: v6.2.8 upstream stable release (LP: #2016876) // + CVE-2023-30456 + - KVM: nVMX: add missing consistency checks for CR0 and CR4 + * Lunar update: v6.2.7 upstream stable release (LP: #2016875) + - fs: prevent out-of-bounds array speculation when closing a file descriptor + - btrfs: fix unnecessary increment of read error stat on write error + - btrfs: fix percent calculation for bg reclaim message + - btrfs: fix block group item corruption after inserting new block group + - io_uring/uring_cmd: ensure that device supports IOPOLL + - erofs: fix wrong kunmap when using LZMA on HIGHMEM platforms + - perf inject: Fix --buildid-all not to eat up MMAP2 + - fork: allow CLONE_NEWTIME in clone3 flags + - RISC-V: Stop emitting attributes + - thermal: intel: int340x: processor_thermal: Fix deadlock + - x86/CPU/AMD: Disable XSAVES on AMD family 0x17 + - drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc15 + - drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc21 + - drm/amdgpu: fix error checking in amdgpu_read_mm_registers for nv + - drm/display: Don't block HDR_OUTPUT_METADATA on unknown EOTF + - drm/connector: print max_requested_bpc in state debugfs + - drm/msm/adreno: fix runtime PM imbalance at unbind + - staging: rtl8723bs: Fix key-store index handling + - staging: rtl8723bs: Pass correct parameters to cfg80211_get_bss() + - ext4: fix cgroup writeback accounting with fs-layer encryption + - ext4: fix RENAME_WHITEOUT handling for inline directories + - ext4: fix another off-by-one fsmap error on 1k block filesystems + - ext4: move where set the MAY_INLINE_DATA flag is set + - ext4: fix WARNING in ext4_update_inline_data + - ext4: zero i_disksize when initializing the bootloader inode + - HID: core: Provide new max_buffer_size attribute to over-ride the default + - HID: uhid: Over-ride the default maximum data buffer value with our own + - nfc: change order inside nfc_se_io error path + - KVM: VMX: Reset eVMCS controls in VP assist page during hardware disabling + - KVM: VMX: Don't bother disabling eVMCS static key on module exit + - KVM: x86: Move guts of kvm_arch_init() to standalone helper + - KVM: VMX: Do _all_ initialization before exposing /dev/kvm to userspace + - udf: Fix off-by-one error when discarding preallocation + - bus: mhi: ep: Power up/down MHI stack during MHI RESET + - bus: mhi: ep: Change state_lock to mutex + - drm/i915: Introduce intel_panel_init_alloc() + - drm/i915: Do panel VBT init early if the VBT declares an explicit panel type + - drm/i915: Populate encoder->devdata for DSI on icl+ + - block: Revert "block: Do not reread partition table on exclusively open + device" + - block: fix scan partition for exclusively open device again + - riscv: Add header include guards to insn.h + - scsi: core: Remove the /proc/scsi/${proc_name} directory earlier + - ext4: Fix possible corruption when moving a directory + - drm/nouveau/kms/nv50: fix nv50_wndw_new_ prototype + - drm/nouveau/fb/gp102-: cache scrubber binary on first load + - drm/msm: Fix potential invalid ptr free + - drm/msm/a5xx: fix setting of the CP_PREEMPT_ENABLE_LOCAL register + - drm/msm/a5xx: fix highest bank bit for a530 + - drm/msm/a5xx: fix the emptyness check in the preempt code + - drm/msm/a5xx: fix context faults during ring switch + - bgmac: fix *initial* chip reset to support BCM5358 + - nfc: fdp: add null check of devm_kmalloc_array in + fdp_nci_i2c_read_device_properties + - powerpc: dts: t1040rdb: fix compatible string for Rev A boards + - tls: rx: fix return value for async crypto + - drm/msm/dpu: disable features unsupported by QCM2290 + - ila: do not generate empty messages in ila_xlat_nl_cmd_get_mapping() + - net: lan966x: Fix port police support using tc-matchall + - selftests: nft_nat: ensuring the listening side is up before starting the + client + - netfilter: nft_last: copy content when cloning expression + - netfilter: nft_quota: copy content when cloning expression + - net: tls: fix possible race condition between do_tls_getsockopt_conf() and + do_tls_setsockopt_conf() + - net: use indirect calls helpers for sk_exit_memory_pressure() + - perf stat: Fix counting when initial delay configured + - net: lan78xx: fix accessing the LAN7800's internal phy specific registers + from the MAC driver + - net: caif: Fix use-after-free in cfusbl_device_notify() + - ice: copy last block omitted in ice_get_module_eeprom() + - nfp: fix incorrectly set csum flag for nfd3 path + - nfp: fix esp-tx-csum-offload doesn't take effect + - bpf, sockmap: Fix an infinite loop error when len is 0 in + tcp_bpf_recvmsg_parser() + - drm/msm/dpu: fix len of sc7180 ctl blocks + - drm/msm/dpu: fix sm6115 and qcm2290 mixer width limits + - drm/msm/dpu: correct sm8250 and sm8350 scaler + - drm/msm/dpu: correct sm6115 scaler + - drm/msm/dpu: drop DPU_DIM_LAYER from MIXER_MSM8998_MASK + - drm/msm/dpu: fix clocks settings for msm8998 SSPP blocks + - drm/msm/disp/dpu: fix sc7280_pp base offset + - drm/msm/dpu: clear DSPP reservations in rm release + - net: stmmac: add to set device wake up flag when stmmac init phy + - net: phylib: get rid of unnecessary locking + - bnxt_en: Avoid order-5 memory allocation for TPA data + - netfilter: ctnetlink: revert to dumping mark regardless of event type + - netfilter: tproxy: fix deadlock due to missing BH disable + - m68k: mm: Move initrd phys_to_virt handling after paging_init() + - btrfs: fix extent map logging bit not cleared for split maps after dropping + range + - bpf, test_run: fix &xdp_frame misplacement for LIVE_FRAMES + - btf: fix resolving BTF_KIND_VAR after ARRAY, STRUCT, UNION, PTR + - net: phy: smsc: fix link up detection in forced irq mode + - net: ethernet: mtk_eth_soc: fix RX data corruption issue + - net: tls: fix device-offloaded sendpage straddling records + - scsi: megaraid_sas: Update max supported LD IDs to 240 + - scsi: sd: Fix wrong zone_write_granularity value during revalidate + - netfilter: conntrack: adopt safer max chain length + - platform/x86: dell-ddv: Return error if buffer is empty + - platform/x86: dell-ddv: Fix temperature scaling + - platform: mellanox: select REGMAP instead of depending on it + - platform: x86: MLX_PLATFORM: select REGMAP instead of depending on it + - block: fix wrong mode for blkdev_put() from disk_scan_partitions() + - NFSD: Protect against filesystem freezing + - ice: Fix DSCP PFC TLV creation + - ethernet: ice: avoid gcc-9 integer overflow warning + - net/smc: fix fallback failed while sendmsg with fastopen + - octeontx2-af: Unlock contexts in the queue context cache in case of fault + detection + - SUNRPC: Fix a server shutdown leak + - net: dsa: mt7530: permit port 5 to work without port 6 on MT7621 SoC + - af_unix: fix struct pid leaks in OOB support + - erofs: Revert "erofs: fix kvcalloc() misuse with __GFP_NOFAIL" + - riscv: Use READ_ONCE_NOCHECK in imprecise unwinding stack mode + - RISC-V: Don't check text_mutex during stop_machine + - drm/amdgpu: fix return value check in kfd + - ext4: Fix deadlock during directory rename + - RISC-V: take text_mutex during alternative patching + - drm/amdgpu/soc21: don't expose AV1 if VCN0 is harvested + - drm/amdgpu/soc21: Add video cap query support for VCN_4_0_4 + - watch_queue: fix IOC_WATCH_QUEUE_SET_SIZE alloc error paths + - tpm/eventlog: Don't abort tpm_read_log on faulty ACPI address + - MIPS: Fix a compilation issue + - powerpc/64: Don't recurse irq replay + - powerpc/iommu: fix memory leak with using debugfs_lookup() + - clk: renesas: rcar-gen3: Disable R-Car H3 ES1.* + - powerpc: Remove __kernel_text_address() in show_instructions() + - powerpc/bpf/32: Only set a stack frame when necessary + - powerpc/64: Fix task_cpu in early boot when booting non-zero cpuid + - powerpc/64: Move paca allocation to early_setup() + - powerpc/kcsan: Exclude udelay to prevent recursive instrumentation + - alpha: fix R_ALPHA_LITERAL reloc for large modules + - macintosh: windfarm: Use unsigned type for 1-bit bitfields + - PCI: Add SolidRun vendor ID + - scripts: handle BrokenPipeError for python scripts + - media: ov5640: Fix analogue gain control + - media: rc: gpio-ir-recv: add remove function + - drm/amd/display: Allow subvp on vactive pipes that are 2560x1440@60 + - drm/amd/display: adjust MALL size available for DCN32 and DCN321 + - filelocks: use mount idmapping for setlease permission check + - Revert "bpf, test_run: fix &xdp_frame misplacement for LIVE_FRAMES" + - RISC-V: fix taking the text_mutex twice during sifive errata patching + - UML: define RUNTIME_DISCARD_EXIT + - Linux 6.2.7 + * Miscellaneous Ubuntu changes + - [Packaging] Move final-checks script to debian/scripts/checks + - [Packaging] checks/final-checks: Honor 'do_skip_checks' + - [Packaging] Drop wireguard DKMS + - [Packaging] Remove update-version-dkms + - [Packaging] debian/rules: Add DKMS info to 'printenv' output + * Miscellaneous upstream changes + - Revert "Revert "mm: kfence: apply kmemleak_ignore_phys on early allocated + pool"" + + [ Ubuntu: 6.2.0-21.21 ] + + * lunar/linux: 6.2.0-21.21 -proposed tracker (LP: #2016249) + * efivarfs:efivarfs.sh in ubuntu_kernel_selftests crash L-6.2 ARM64 node + dazzle (rcu_preempt detected stalls) (LP: #2015741) + - efi/libstub: smbios: Use length member instead of record struct size + - arm64: efi: Use SMBIOS processor version to key off Ampere quirk + - efi/libstub: smbios: Drop unused 'recsize' parameter + * Miscellaneous Ubuntu changes + - SAUCE: selftests/bpf: ignore pointer types check with clang + - SAUCE: selftests/bpf: avoid conflicting data types in profiler.inc.h + - [Packaging] get rid of unnecessary artifacts in linux-headers + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: Revert "efi: random: refresh non-volatile random seed + when RNG is initialized"" + - Revert "UBUNTU: SAUCE: Revert "efi: random: fix NULL-deref when refreshing + seed"" + + -- Khalid Elmously Mon, 12 Jun 2023 00:10:26 -0400 + +linux-gcp (6.2.0-1006.6) lunar; urgency=medium + + * lunar/linux-gcp: 6.2.0-1006.6 -proposed tracker (LP: #2016267) + + * Kernel 6.1 bumped the disk consumption on default images by 15% + (LP: #2015867) + - [Config] disable Rust support + + * Miscellaneous Ubuntu changes + - rebase on Ubuntu-6.2.0-21.21 + + * Rebase on Ubuntu-6.2.0-21.21 + + -- Paolo Pisati Fri, 14 Apr 2023 16:41:55 +0200 + +linux-gcp (6.2.0-1005.5) lunar; urgency=medium + + * lunar/linux-gcp: 6.2.0-1005.5 -proposed tracker (LP: #2015431) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + [ Ubuntu: 6.2.0-20.20 ] + + * lunar/linux: 6.2.0-20.20 -proposed tracker (LP: #2015429) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + * FTBFS with different dkms or when makeflags are set (LP: #2015361) + - [Packaging] FTBFS with different dkms or when makeflags are set + * expoline.o is packaged unconditionally for s390x (LP: #2013209) + - [Packaging] Copy expoline.o only when produced by the build + * net:l2tp.sh failure with lunar:linux 6.2 (LP: #2013014) + - SAUCE: l2tp: generate correct module alias strings + * Miscellaneous Ubuntu changes + - [Packaging] annotations: prevent duplicate include lines + + [ Ubuntu: 6.2.0-19.19 ] + + * lunar/linux: 6.2.0-19.19 -proposed tracker (LP: #2012488) + * Neuter signing tarballs (LP: #2012776) + - [Packaging] neuter the signing tarball + * LSM stacking and AppArmor refresh for 6.2 kernel (LP: #2012136) + - Revert "UBUNTU: [Config] define CONFIG_SECURITY_APPARMOR_RESTRICT_USERNS" + - Revert "UBUNTU: SAUCE: apparmor: add user namespace creation mediation" + - Revert "UBUNTU: SAUCE: apparmor: Add fine grained mediation of posix + mqueues" + - Revert "UBUNTU: SAUCE: Revert "apparmor: make __aa_path_perm() static"" + - 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: AppArmor: Remove the exclusive flag" + - Revert "UBUNTU: SAUCE: LSM: Add /proc attr entry for full LSM context" + - Revert "UBUNTU: SAUCE: Audit: Fix incorrect static inline function + declration." + - Revert "UBUNTU: SAUCE: Audit: Fix for missing NULL check" + - Revert "UBUNTU: SAUCE: Audit: Add a new record for multiple object LSM + attributes" + - 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 "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: apparmor: rename SK_CTX() to aa_sock and make it an inline fn + - SAUCE: apparmor: Add sysctls for additional controls of unpriv userns + restrictions + - SAUCE: Stacking v38: LSM: Identify modules by more than name + - SAUCE: Stacking v38: LSM: Add an LSM identifier for external use + - SAUCE: Stacking v38: LSM: Identify the process attributes for each module + - SAUCE: Stacking v38: LSM: Maintain a table of LSM attribute data + - SAUCE: Stacking v38: proc: Use lsmids instead of lsm names for attrs + - SAUCE: Stacking v38: integrity: disassociate ima_filter_rule from + security_audit_rule + - SAUCE: Stacking v38: LSM: Infrastructure management of the sock security + - SAUCE: Stacking v38: LSM: Add the lsmblob data structure. + - SAUCE: Stacking v38: LSM: provide lsm name and id slot mappings + - SAUCE: Stacking v38: IMA: avoid label collisions with stacked LSMs + - SAUCE: Stacking v38: LSM: Use lsmblob in security_audit_rule_match + - SAUCE: Stacking v38: LSM: Use lsmblob in security_kernel_act_as + - SAUCE: Stacking v38: LSM: Use lsmblob in security_secctx_to_secid + - SAUCE: Stacking v38: LSM: Use lsmblob in security_secid_to_secctx + - SAUCE: Stacking v38: LSM: Use lsmblob in security_ipc_getsecid + - SAUCE: Stacking v38: LSM: Use lsmblob in security_current_getsecid + - SAUCE: Stacking v38: LSM: Use lsmblob in security_inode_getsecid + - SAUCE: Stacking v38: LSM: Use lsmblob in security_cred_getsecid + - SAUCE: Stacking v38: LSM: Specify which LSM to display + - SAUCE: Stacking v38: LSM: Ensure the correct LSM context releaser + - SAUCE: Stacking v38: LSM: Use lsmcontext in security_secid_to_secctx + - SAUCE: Stacking v38: LSM: Use lsmcontext in security_inode_getsecctx + - SAUCE: Stacking v38: Use lsmcontext in security_dentry_init_security + - SAUCE: Stacking v38: LSM: security_secid_to_secctx in netlink netfilter + - SAUCE: Stacking v38: NET: Store LSM netlabel data in a lsmblob + - SAUCE: Stacking v38: binder: Pass LSM identifier for confirmation + - SAUCE: Stacking v38: LSM: security_secid_to_secctx module selection + - SAUCE: Stacking v38: Audit: Keep multiple LSM data in audit_names + - SAUCE: Stacking v38: Audit: Create audit_stamp structure + - SAUCE: Stacking v38: LSM: Add a function to report multiple LSMs + - SAUCE: Stacking v38: Audit: Allow multiple records in an audit_buffer + - SAUCE: Stacking v38: Audit: Add record for multiple task security contexts + - SAUCE: Stacking v38: audit: multiple subject lsm values for netlabel + - SAUCE: Stacking v38: Audit: Add record for multiple object contexts + - SAUCE: Stacking v38: netlabel: Use a struct lsmblob in audit data + - SAUCE: Stacking v38: LSM: Removed scaffolding function lsmcontext_init + - SAUCE: Stacking v38: AppArmor: Remove the exclusive flag + - SAUCE: apparmor: combine common_audit_data and apparmor_audit_data + - SAUCE: apparmor: setup slab cache for audit data + - SAUCE: apparmor: rename audit_data->label to audit_data->subj_label + - SAUCE: apparmor: pass cred through to audit info. + - SAUCE: apparmor: Improve debug print infrastructure + - SAUCE: apparmor: add the ability for profiles to have a learning cache + - SAUCE: apparmor: enable userspace upcall for mediation + - SAUCE: apparmor: cache buffers on percpu list if there is lock contention + - SAUCE: apparmor: fix policy_compat permission remap with extended + permissions + - SAUCE: apparmor: advertise availability of exended perms + - [Config] define CONFIG_SECURITY_APPARMOR_RESTRICT_USERNS + * kinetic: apply new apparmor and LSM stacking patch set (LP: #1989983) // LSM + stacking and AppArmor refresh for 6.2 kernel (LP: #2012136) + - SAUCE: apparmor: add/use fns to print hash string hex value + - SAUCE: apparmor: patch to provide compatibility with v2.x net rules + - SAUCE: apparmor: add user namespace creation mediation + - SAUCE: apparmor: af_unix mediation + - SAUCE: apparmor: Add fine grained mediation of posix mqueues + * 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 + * 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: 6.2.0-18.18 ] + + * lunar/linux: 6.2.0-18.18 -proposed tracker (LP: #2011750) + * lunar/linux 6.2 fails to boot on arm64 (LP: #2011748) + - SAUCE: Revert "efi: random: fix NULL-deref when refreshing seed" + - SAUCE: Revert "efi: random: refresh non-volatile random seed when RNG is + initialized" + + [ Ubuntu: 6.2.0-17.17 ] + + * lunar/linux: 6.2.0-17.17 -proposed tracker (LP: #2011593) + * lunar/linux 6.2 fails to boot on ppc64el (LP: #2011413) + - SAUCE: Revert "powerpc: remove STACK_FRAME_OVERHEAD" + - SAUCE: Revert "powerpc/pseries: hvcall stack frame overhead" + * Speaker / Audio/Mic mute LED don't work on a HP platform (LP: #2011379) + - SAUCE: ALSA: hda/realtek: fix speaker, mute/micmute LEDs not work on a HP + platform + * Some QHD panels fail to refresh when PSR2 enabled (LP: #2009014) + - SAUCE: drm/i915/psr: Use calculated io and fast wake lines + * Lunar update: v6.2.6 upstream stable release (LP: #2011431) + - tpm: disable hwrng for fTPM on some AMD designs + - wifi: cfg80211: Partial revert "wifi: cfg80211: Fix use after free for wext" + - staging: rtl8192e: Remove function ..dm_check_ac_dc_power calling a script + - staging: rtl8192e: Remove call_usermodehelper starting RadioPower.sh + - Linux 6.2.6 + * Lunar update: v6.2.5 upstream stable release (LP: #2011430) + - net/sched: Retire tcindex classifier + - auxdisplay: hd44780: Fix potential memory leak in hd44780_remove() + - fs/jfs: fix shift exponent db_agl2size negative + - driver: soc: xilinx: fix memory leak in xlnx_add_cb_for_notify_event() + - f2fs: don't rely on F2FS_MAP_* in f2fs_iomap_begin + - f2fs: fix to avoid potential deadlock + - objtool: Fix memory leak in create_static_call_sections() + - soc: mediatek: mtk-pm-domains: Allow mt8186 ADSP default power on + - soc: qcom: socinfo: Fix soc_id order + - memory: renesas-rpc-if: Split-off private data from struct rpcif + - memory: renesas-rpc-if: Move resource acquisition to .probe() + - soc: mediatek: mtk-svs: Enable the IRQ later + - pwm: sifive: Always let the first pwm_apply_state succeed + - pwm: stm32-lp: fix the check on arr and cmp registers update + - f2fs: introduce trace_f2fs_replace_atomic_write_block + - f2fs: clear atomic_write_task in f2fs_abort_atomic_write() + - soc: mediatek: mtk-svs: restore default voltages when svs_init02() fail + - soc: mediatek: mtk-svs: reset svs when svs_resume() fail + - soc: mediatek: mtk-svs: Use pm_runtime_resume_and_get() in svs_init01() + - f2fs: fix to do sanity check on extent cache correctly + - fs: f2fs: initialize fsdata in pagecache_write() + - f2fs: allow set compression option of files without blocks + - f2fs: fix to abort atomic write only during do_exist() + - um: vector: Fix memory leak in vector_config + - ubi: ensure that VID header offset + VID header size <= alloc, size + - ubifs: Fix build errors as symbol undefined + - ubifs: Fix memory leak in ubifs_sysfs_init() + - ubifs: Rectify space budget for ubifs_symlink() if symlink is encrypted + - ubifs: Rectify space budget for ubifs_xrename() + - ubifs: Fix wrong dirty space budget for dirty inode + - ubifs: do_rename: Fix wrong space budget when target inode's nlink > 1 + - ubifs: Reserve one leb for each journal head while doing budget + - ubi: Fix use-after-free when volume resizing failed + - ubi: Fix unreferenced object reported by kmemleak in ubi_resize_volume() + - ubifs: Fix memory leak in alloc_wbufs() + - ubi: Fix possible null-ptr-deref in ubi_free_volume() + - ubifs: Re-statistic cleaned znode count if commit failed + - ubifs: dirty_cow_znode: Fix memleak in error handling path + - ubifs: ubifs_writepage: Mark page dirty after writing inode failed + - ubifs: ubifs_releasepage: Remove ubifs_assert(0) to valid this process + - ubi: fastmap: Fix missed fm_anchor PEB in wear-leveling after disabling + fastmap + - ubi: Fix UAF wear-leveling entry in eraseblk_count_seq_show() + - ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed + - f2fs: fix to handle F2FS_IOC_START_ATOMIC_REPLACE in f2fs_compat_ioctl() + - f2fs: fix to avoid potential memory corruption in __update_iostat_latency() + - f2fs: fix to update age extent correctly during truncation + - f2fs: fix to update age extent in f2fs_do_zero_range() + - soc: qcom: stats: Populate all subsystem debugfs files + - f2fs: introduce IS_F2FS_IPU_* macro + - f2fs: fix to set ipu policy + - ext4: use ext4_fc_tl_mem in fast-commit replay path + - ext4: don't show commit interval if it is zero + - netfilter: nf_tables: allow to fetch set elements when table has an owner + - x86: um: vdso: Add '%rcx' and '%r11' to the syscall clobber list + - um: virtio_uml: free command if adding to virtqueue failed + - um: virtio_uml: mark device as unregistered when breaking it + - um: virtio_uml: move device breaking into workqueue + - um: virt-pci: properly remove PCI device from bus + - f2fs: synchronize atomic write aborts + - watchdog: rzg2l_wdt: Issue a reset before we put the PM clocks + - watchdog: rzg2l_wdt: Handle TYPE-B reset for RZ/V2M + - watchdog: at91sam9_wdt: use devm_request_irq to avoid missing free_irq() in + error path + - watchdog: Fix kmemleak in watchdog_cdev_register + - watchdog: pcwd_usb: Fix attempting to access uninitialized memory + - watchdog: sbsa_wdog: Make sure the timeout programming is within the limits + - netfilter: ctnetlink: fix possible refcount leak in + ctnetlink_create_conntrack() + - netfilter: conntrack: fix rmmod double-free race + - netfilter: ip6t_rpfilter: Fix regression with VRF interfaces + - netfilter: ebtables: fix table blob use-after-free + - netfilter: xt_length: use skb len to match in length_mt6 + - netfilter: ctnetlink: make event listener tracking global + - netfilter: x_tables: fix percpu counter block leak on error path when + creating new netns + - swiotlb: mark swiotlb_memblock_alloc() as __init + - ptp: vclock: use mutex to fix "sleep on atomic" bug + - drm/i915: move a Kconfig symbol to unbreak the menu presentation + - ipv6: Add lwtunnel encap size of all siblings in nexthop calculation + - drm/i915/xelpmp: Consider GSI offset when doing MCR lookups + - octeontx2-pf: Recalculate UDP checksum for ptp 1-step sync packet + - net: sunhme: Fix region request + - sctp: add a refcnt in sctp_stream_priorities to avoid a nested loop + - octeontx2-pf: Use correct struct reference in test condition + - net: fix __dev_kfree_skb_any() vs drop monitor + - 9p/xen: fix version parsing + - 9p/xen: fix connection sequence + - 9p/rdma: unmap receive dma buffer in rdma_request()/post_recv() + - spi: tegra210-quad: Fix validate combined sequence + - mlx5: fix skb leak while fifo resync and push + - mlx5: fix possible ptp queue fifo use-after-free + - net/mlx5: ECPF, wait for VF pages only after disabling host PFs + - net/mlx5e: Verify flow_source cap before using it + - net/mlx5: Geneve, Fix handling of Geneve object id as error code + - ext4: fix incorrect options show of original mount_opt and extend mount_opt2 + - nfc: fix memory leak of se_io context in nfc_genl_se_io + - net/sched: transition act_pedit to rcu and percpu stats + - net/sched: act_pedit: fix action bind logic + - net/sched: act_mpls: fix action bind logic + - net/sched: act_sample: fix action bind logic + - net: dsa: seville: ignore mscc-miim read errors from Lynx PCS + - net: dsa: felix: fix internal MDIO controller resource length + - ARM: dts: aspeed: p10bmc: Update battery node name + - ARM: dts: spear320-hmi: correct STMPE GPIO compatible + - tcp: tcp_check_req() can be called from process context + - vc_screen: modify vcs_size() handling in vcs_read() + - spi: tegra210-quad: Fix iterator outside loop + - rtc: sun6i: Always export the internal oscillator + - genirq/ipi: Fix NULL pointer deref in irq_data_get_affinity_mask() + - scsi: ipr: Work around fortify-string warning + - scsi: mpi3mr: Fix an issue found by KASAN + - scsi: mpi3mr: Use number of bits to manage bitmap sizes + - rtc: allow rtc_read_alarm without read_alarm callback + - io_uring: fix size calculation when registering buf ring + - loop: loop_set_status_from_info() check before assignment + - ASoC: adau7118: don't disable regulators on device unbind + - ASoC: apple: mca: Fix final status read on SERDES reset + - ASoC: apple: mca: Fix SERDES reset sequence + - ASoC: apple: mca: Improve handling of unavailable DMA channels + - nvme: bring back auto-removal of deleted namespaces during sequential scan + - nvme-tcp: don't access released socket during error recovery + - nvme-fabrics: show well known discovery name + - ASoC: zl38060 add gpiolib dependency + - ASoC: mediatek: mt8195: add missing initialization + - thermal: intel: quark_dts: fix error pointer dereference + - thermal: intel: BXT_PMIC: select REGMAP instead of depending on it + - cpufreq: apple-soc: Fix an IS_ERR() vs NULL check + - tracing: Add NULL checks for buffer in ring_buffer_free_read_page() + - kernel/printk/index.c: fix memory leak with using debugfs_lookup() + - firmware/efi sysfb_efi: Add quirk for Lenovo IdeaPad Duet 3 + - bootconfig: Increase max nodes of bootconfig from 1024 to 8192 for DCC + support + - mfd: arizona: Use pm_runtime_resume_and_get() to prevent refcnt leak + - IB/hfi1: Update RMT size calculation + - iommu: Remove deferred attach check from __iommu_detach_device() + - PCI/ACPI: Account for _S0W of the target bridge in acpi_pci_bridge_d3() + - media: uvcvideo: Remove format descriptions + - media: uvcvideo: Handle cameras with invalid descriptors + - media: uvcvideo: Handle errors from calls to usb_string + - media: uvcvideo: Quirk for autosuspend in Logitech B910 and C910 + - media: uvcvideo: Silence memcpy() run-time false positive warnings + - USB: fix memory leak with using debugfs_lookup() + - cacheinfo: Fix shared_cpu_map to handle shared caches at different levels + - usb: fotg210: List different variants + - dt-bindings: usb: Add device id for Genesys Logic hub controller + - staging: emxx_udc: Add checks for dma_alloc_coherent() + - tty: fix out-of-bounds access in tty_driver_lookup_tty() + - tty: serial: fsl_lpuart: disable the CTS when send break signal + - serial: sc16is7xx: setup GPIO controller later in probe + - mei: bus-fixup:upon error print return values of send and receive + - tools/iio/iio_utils:fix memory leak + - bus: mhi: ep: Fix the debug message for MHI_PKT_TYPE_RESET_CHAN_CMD cmd + - iio: accel: mma9551_core: Prevent uninitialized variable in + mma9551_read_status_word() + - iio: accel: mma9551_core: Prevent uninitialized variable in + mma9551_read_config_word() + - media: uvcvideo: Add GUID for BGRA/X 8:8:8:8 + - soundwire: bus_type: Avoid lockdep assert in sdw_drv_probe() + - PCI/portdrv: Prevent LS7A Bus Master clearing on shutdown + - PCI: loongson: Prevent LS7A MRRS increases + - staging: pi433: fix memory leak with using debugfs_lookup() + - USB: dwc3: fix memory leak with using debugfs_lookup() + - USB: chipidea: fix memory leak with using debugfs_lookup() + - USB: ULPI: fix memory leak with using debugfs_lookup() + - USB: uhci: fix memory leak with using debugfs_lookup() + - USB: sl811: fix memory leak with using debugfs_lookup() + - USB: fotg210: fix memory leak with using debugfs_lookup() + - USB: isp116x: fix memory leak with using debugfs_lookup() + - USB: isp1362: fix memory leak with using debugfs_lookup() + - USB: gadget: gr_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: bcm63xx_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: lpc32xx_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: pxa25x_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: pxa27x_udc: fix memory leak with using debugfs_lookup() + - usb: host: xhci: mvebu: Iterate over array indexes instead of using pointer + math + - USB: ene_usb6250: Allocate enough memory for full object + - usb: uvc: Enumerate valid values for color matching + - usb: gadget: uvc: Make bSourceID read/write + - PCI: Align extra resources for hotplug bridges properly + - PCI: Take other bus devices into account when distributing resources + - PCI: Distribute available resources for root buses, too + - tty: pcn_uart: fix memory leak with using debugfs_lookup() + - misc: vmw_balloon: fix memory leak with using debugfs_lookup() + - drivers: base: component: fix memory leak with using debugfs_lookup() + - drivers: base: dd: fix memory leak with using debugfs_lookup() + - kernel/fail_function: fix memory leak with using debugfs_lookup() + - PCI: loongson: Add more devices that need MRRS quirk + - PCI: Add ACS quirk for Wangxun NICs + - PCI: pciehp: Add Qualcomm quirk for Command Completed erratum + - phy: rockchip-typec: Fix unsigned comparison with less than zero + - RDMA/cma: Distinguish between sockaddr_in and sockaddr_in6 by size + - soundwire: cadence: Remove wasted space in response_buf + - soundwire: cadence: Drain the RX FIFO after an IO timeout + - eth: fealnx: bring back this old driver + - net: tls: avoid hanging tasks on the tx_lock + - x86/resctl: fix scheduler confusion with 'current' + - vDPA/ifcvf: decouple hw features manipulators from the adapter + - vDPA/ifcvf: decouple config space ops from the adapter + - vDPA/ifcvf: alloc the mgmt_dev before the adapter + - vDPA/ifcvf: decouple vq IRQ releasers from the adapter + - vDPA/ifcvf: decouple config IRQ releaser from the adapter + - vDPA/ifcvf: decouple vq irq requester from the adapter + - vDPA/ifcvf: decouple config/dev IRQ requester and vectors allocator from the + adapter + - vDPA/ifcvf: ifcvf_request_irq works on ifcvf_hw + - vDPA/ifcvf: manage ifcvf_hw in the mgmt_dev + - vDPA/ifcvf: allocate the adapter in dev_add() + - drm/display/dp_mst: Add drm_atomic_get_old_mst_topology_state() + - drm/display/dp_mst: Fix down/up message handling after sink disconnect + - drm/display/dp_mst: Fix down message handling after a packet reception error + - drm/display/dp_mst: Fix payload addition on a disconnected sink + - drm/i915/dp_mst: Add the MST topology state for modesetted CRTCs + - drm/display/dp_mst: Handle old/new payload states in drm_dp_remove_payload() + - drm/i915/dp_mst: Fix payload removal during output disabling + - drm/i915: Fix system suspend without fbdev being initialized + - media: uvcvideo: Fix race condition with usb_kill_urb + - arm64: efi: Make efi_rt_lock a raw_spinlock + - usb: gadget: uvc: fix missing mutex_unlock() if kstrtou8() fails + - Linux 6.2.5 + * Lunar update: v6.2.4 upstream stable release (LP: #2011428) + - Revert "blk-cgroup: synchronize pd_free_fn() from blkg_free_workfn() and + blkcg_deactivate_policy()" + - Revert "blk-cgroup: dropping parent refcount after pd_free_fn() is done" + - Linux 6.2.4 + * Lunar update: v6.2.3 upstream stable release (LP: #2011425) + - HID: asus: use spinlock to protect concurrent accesses + - HID: asus: use spinlock to safely schedule workers + - iommu/amd: Fix error handling for pdev_pri_ats_enable() + - iommu/amd: Skip attach device domain is same as new domain + - iommu/amd: Improve page fault error reporting + - iommu: Attach device group to old domain in error path + - powerpc/mm: Rearrange if-else block to avoid clang warning + - ata: ahci: Revert "ata: ahci: Add Tiger Lake UP{3,4} AHCI controller" + - 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: sm6115: Fix UFS node + - arm64: dts: qcom: sm6115: Provide xo clk to rpmcc + - arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k + - arm64: dts: qcom: pmi8950: Correct rev_1250v channel label to mv + - arm64: dts: qcom: sm6350: Fix up the ramoops node + - arm64: dts: qcom: sdm670-google-sargo: keep pm660 ldo8 on + - arm64: dts: qcom: Re-enable resin on MSM8998 and SDM845 boards + - arm64: dts: qcom: sm8350-sagami: Configure SLG51000 PMIC on PDX215 + - arm64: dts: qcom: sm8350-sagami: Add GPIO line names for PMIC GPIOs + - arm64: dts: qcom: sm8350-sagami: Rectify GPIO keys + - arm64: dts: qcom: sm6350-lena: Flatten gpio-keys pinctrl state + - arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings + - arm64: dts: qcom: sm6125-seine: Clean up gpio-keys (volume down) + - arm64: dts: imx8m: Align SoC unique ID node unit address + - ARM: zynq: Fix refcount leak in zynq_early_slcr_init + - fs: dlm: fix return value check in dlm_memory_init() + - arm64: dts: mediatek: mt8195: Add power domain to U3PHY1 T-PHY + - arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description + - arm64: dts: mediatek: mt8192: Fix systimer 13 MHz clock description + - arm64: dts: mediatek: mt8195: Fix systimer 13 MHz clock description + - arm64: dts: mediatek: mt8186: Fix systimer 13 MHz clock description + - arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name + - arm64: dts: qcom: sdm845-xiaomi-beryllium: fix audio codec interrupt pin + name + - x86/acpi/boot: Do not register processors that cannot be onlined for x2APIC + - arm64: dts: qcom: sc7180: correct SPMI bus address cells + - arm64: dts: qcom: sc7280: correct SPMI bus address cells + - arm64: dts: qcom: sc8280xp: correct SPMI bus address cells + - arm64: dts: qcom: sm8450: correct Soundwire wakeup interrupt name + - arm64: dts: qcom: sdm845: make DP node follow the schema + - arm64: dts: qcom: msm8996-oneplus-common: drop vdda-supply from DSI PHY + - arm64: dts: qcom: sc8280xp: Vote for CX in USB controllers + - arm64: dts: meson-gxl: jethub-j80: Fix WiFi MAC address node + - arm64: dts: meson-gxl: jethub-j80: Fix Bluetooth MAC node name + - arm64: dts: meson-axg: jethub-j1xx: Fix MAC address node names + - 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 + - cpuidle, intel_idle: Fix CPUIDLE_FLAG_IRQ_ENABLE *again* + - arm64: dts: ti: k3-am62-main: Fix clocks for McSPI + - arm64: tegra: Fix duplicate regulator on Jetson TX1 + - arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size + - arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem + - arm64: dts: qcom: msm8956: use SoC-specific compat for tsens + - arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names + - arm64: dts: qcom: ipq8074: fix Gen2 PCIe QMP PHY + - 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() + - arm64: dts: mediatek: mt8192: Mark scp_adsp clock as broken + - 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-axg-jethome-jethub-j1xx: fix supply name of USB + controller node + - 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-s905w-jethome-jethub-j80: fix invalid rtc + node name + - arm64: dts: amlogic: meson-axg-jethome-jethub-j1xx: fix invalid rtc 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-g12b-odroid-go-ultra: fix rk818 pmic properties + - 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: tegra: Mark host1x as dma-coherent on Tegra194/234 + - arm64: dts: renesas: beacon-renesom: Fix gpio expander reference + - arm64: dts: meson: radxa-zero: allow usb otg mode + - arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN + - ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference + - ublk_drv: remove nr_aborted_queues from ublk_device + - ublk_drv: don't probe partitions if the ubq daemon isn't trusted + - ARM: dts: imx7s: correct iomuxc gpr mux controller cells + - sbitmap: remove redundant check in __sbitmap_queue_get_batch + - sbitmap: correct wake_batch recalculation to avoid potential IO hung + - arm64: dts: mt8195: Fix CPU map for single-cluster SoC + - arm64: dts: mt8192: Fix CPU map for single-cluster SoC + - arm64: dts: mt8186: Fix CPU map for single-cluster SoC + - arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node + - arm64: dts: mediatek: mt8186: Fix watchdog compatible + - arm64: dts: mediatek: mt8195: Fix watchdog compatible + - arm64: dts: mediatek: mt7986: Fix watchdog compatible + - ARM: dts: stm32: Update part number NVMEM description on stm32mp131 + - arm64: dts: qcom: sm8450-nagara: Correct firmware paths + - blk-mq: avoid sleep in blk_mq_alloc_request_hctx + - blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx + - blk-mq: wait on correct sbitmap_queue in blk_mq_mark_tag_wait + - blk-mq: Fix potential io hung for shared sbitmap per tagset + - blk-mq: correct stale comment of .get_budget + - arm64: dts: qcom: msm8996: support using GPLL0 as kryocc input + - arm64: dts: qcom: msm8996 switch from RPM_SMD_BB_CLK1 to RPM_SMD_XO_CLK_SRC + - arm64: dts: qcom: sm8350: drop incorrect cells from serial + - arm64: dts: qcom: sm8450: drop incorrect cells from serial + - arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM + and MPSS memory regions + - arm64: dts: qcom: msm8953: correct TLMM gpio-ranges + - arm64: dts: qcom: sm6115: correct TLMM gpio-ranges + - arm64: dts: qcom: msm8992-lg-bullhead: Enable regulators + - s390/dasd: Fix potential memleak in dasd_eckd_init() + - io_uring,audit: don't log IORING_OP_MADVISE + - sched/rt: pick_next_rt_entity(): check list_entry + - perf/x86/intel/ds: Fix the conversion from TSC to perf time + - x86/perf/zhaoxin: Add stepping check for ZXC + - KEYS: asymmetric: Fix ECDSA use via keyctl uapi + - block: ublk: check IO buffer based on flag need_get_data + - arm64: dts: qcom: pmk8350: Use the correct PON compatible + - erofs: relinquish volume with mutex held + - block: sync mixed merged request's failfast with 1st bio's + - block: Fix io statistics for cgroup in throttle path + - block: bio-integrity: Copy flags when bio_integrity_payload is cloned + - block: use proper return value from bio_failfast() + - wifi: mt76: mt7915: add missing of_node_put() + - wifi: mt76: mt7921s: fix slab-out-of-bounds access in sdio host + - wifi: mt76: mt7915: fix mt7915_rate_txpower_get() resource leaks + - wifi: mt76: mt7996: fix insecure data handling of mt7996_mcu_ie_countdown() + - wifi: mt76: mt7996: fix insecure data handling of + mt7996_mcu_rx_radar_detected() + - wifi: mt76: mt7996: fix integer handling issue of mt7996_rf_regval_set() + - wifi: mt76: mt7915: check return value before accessing free_block_num + - wifi: mt76: mt7996: check return value before accessing free_block_num + - wifi: mt76: mt7915: drop always true condition of __mt7915_reg_addr() + - wifi: mt76: mt7996: drop always true condition of __mt7996_reg_addr() + - wifi: mt76: mt7996: fix endianness warning in mt7996_mcu_sta_he_tlv + - wifi: mt76: mt76x0: fix oob access in mt76x0_phy_get_target_power + - wifi: mt76: mt7996: fix unintended sign extension of mt7996_hw_queue_read() + - wifi: mt76: mt7915: fix unintended sign extension of mt7915_hw_queue_read() + - wifi: mt76: fix coverity uninit_use_in_call in + mt76_connac2_reverse_frag0_hdr_trans() + - wifi: mt76: mt7921: resource leaks at mt7921_check_offload_capability() + - 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: Fix assignment to bit field priv->pi_enabled + - wifi: rtl8xxxu: Fix assignment to bit field priv->cck_agc_report_type + - wifi: rtl8xxxu: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: rtw89: 8852c: rfk: correct DACK setting + - wifi: rtw89: 8852c: rfk: correct DPK settings + - wifi: rtlwifi: Fix global-out-of-bounds bug in + _rtl8812ae_phy_set_txpower_limit() + - libbpf: Fix single-line struct definition output in btf_dump + - 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: wilc1000: add missing unregister_netdev() in wilc_netdev_ifc_init() + - 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() + - libbpf: Fix invalid return address register in s390 + - crypto: x86/ghash - fix unaligned access in ghash_setkey() + - crypto: ux500 - update debug config after ux500 cryp driver removal + - 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 + - platform/chrome: cros_ec_typec: Update port DP VDO + - ACPICA: nsrepair: handle cases without a return value correctly + - libbpf: Fix map creation flags sanitization + - bpf_doc: Fix build error with older python versions + - selftests/xsk: print correct payload for packet dump + - selftests/xsk: print correct error codes when exiting + - arm64/cpufeature: Fix field sign for DIT hwcap detection + - arm64/sysreg: Fix errors in 32 bit enumeration values + - 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() + - 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: rtw89: fix potential leak in rtw89_append_probe_req_ie() + - wifi: rtw89: Add missing check for alloc_workqueue + - wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU + - wifi: orinoco: check return value of hermes_write_wordrec() + - wifi: rtw88: Use rtw_iterate_vifs() for rtw_vif_watch_dog_iter() + - wifi: rtw88: Use non-atomic sta iterator in rtw_ra_mask_info_update() + - thermal/drivers/imx_sc_thermal: Fix the loop condition + - wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback + function + - 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 + - selftests/bpf: Fix build errors if CONFIG_NF_CONNTRACK=m + - 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() + - bpf: Fix state pruning for STACK_DYNPTR stack slots + - bpf: Fix missing var_off check for ARG_PTR_TO_DYNPTR + - bpf: Fix partial dynptr stack slot reads/writes + - 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 + - net: ethernet: ti: am65-cpsw/cpts: Fix CPTS release action + - selftests/bpf: Fix vmtest static compilation error + - crypto: xts - Handle EBUSY correctly + - leds: led-class: Add missing put_device() to led_put() + - drm/nouveau/disp: Fix nvif_outp_acquire_dp() argument size + - 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 CAN mode selection + - can: rcar_canfd: Fix R-Car V3U GAFLCFG field accesses + - selftests/bpf: Initialize tc in xdp_synproxy + - crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware + - bpftool: profile online CPUs instead of possible + - wifi: mt76: mt7921: fix deadlock in mt7921_abort_roc + - wifi: mt76: mt7915: call mt7915_mcu_set_thermal_throttling() only after + init_work + - wifi: mt76: mt7915: rework mt7915_mcu_set_thermal_throttling + - wifi: mt76: mt7915: rework mt7915_thermal_temp_store() + - wifi: mt76: mt7921: fix channel switch fail in monitor mode + - wifi: mt76: mt7996: fix chainmask calculation in mt7996_set_antenna() + - wifi: mt76: mt7996: update register for CFEND_RATE + - wifi: mt76: connac: fix POWER_CTRL command name typo + - wifi: mt76: mt7921: fix invalid remain_on_channel duration + - wifi: mt76: mt7915: fix memory leak in mt7915_mcu_exit + - wifi: mt76: mt7996: fix memory leak in mt7996_mcu_exit + - wifi: mt76: dma: fix memory leak running mt76_dma_tx_cleanup + - wifi: mt76: fix switch default case in mt7996_reverse_frag0_hdr_trans + - wifi: mt76: mt7915: fix WED TxS reporting + - wifi: mt76: add memory barrier to SDIO queue kick + - wifi: mt76: mt7996: rely on mt76_connac2_mac_tx_rate_val + - 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 + - s390/boot: cleanup decompressor header files + - s390/mem_detect: rely on diag260() if sclp_early_get_memsize() fails + - s390/boot: fix mem_detect extended area allocation + - net: add sock_init_data_uid() + - tun: tun_chr_open(): correctly initialize socket uid + - tap: tap_open(): correctly initialize socket uid + - rxrpc: Fix overwaking on call poking + - OPP: fix error checking in opp_migrate_dentry() + - cpufreq: davinci: Fix clk use after free + - Bluetooth: hci_conn: Refactor hci_bind_bis() since it always succeeds + - Bluetooth: L2CAP: Fix potential user-after-free + - Bluetooth: hci_qca: get wakeup status from serdev device handle + - net: ipa: generic command param fix + - s390: vfio-ap: tighten the NIB validity check + - 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() + - xen/grant-dma-iommu: Implement a dummy probe_device() callback + - 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 + - clocksource/drivers/riscv: Patch riscv_clock_next_event() jump before first + use + - wifi: iwl3945: Add missing check for create_singlethread_workqueue + - wifi: iwl4965: Add missing check for create_singlethread_workqueue() + - wifi: brcmfmac: Rename Cypress 89459 to BCM4355 + - wifi: brcmfmac: pcie: Add IDs/properties for BCM4355 + - wifi: brcmfmac: pcie: Add IDs/properties for BCM4377 + - wifi: brcmfmac: pcie: Perform correct BCM4364 firmware selection + - wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize() + - wifi: rtw89: fix parsing offset for MCC C2H + - 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: octeontx2 - Fix objects shared between several modules + - crypto: crypto4xx - Call dma_unmap_page when done + - vfio/ccw: remove WARN_ON during shutdown + - wifi: mac80211: move color collision detection report in a delayed work + - wifi: mac80211: make rate u32 in sta_set_rate_info_rx() + - wifi: mac80211: fix non-MLO station association + - wifi: mac80211: Don't translate MLD addresses for multicast + - wifi: mac80211: avoid u32_encode_bits() warning + - wifi: mac80211: fix off-by-one link setting + - tools/lib/thermal: Fix thermal_sampling_exit() + - thermal/drivers/hisi: Drop second sensor hi3660 + - selftests/bpf: Fix map_kptr test. + - wifi: mac80211: pass 'sta' to ieee80211_rx_data_set_sta() + - bpf: Zeroing allocated object from slab in bpf memory allocator + - selftests/bpf: Fix xdp_do_redirect on s390x + - can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a + bus error + - can: esd_usb: Make use of can_change_state() and relocate checking skb for + NULL + - xsk: check IFF_UP earlier in Tx path + - LoongArch, bpf: Use 4 instructions for function address in JIT + - 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 + - net/smc: fix potential panic dues to unprotected smc_llc_srv_add_link() + - net/smc: fix application data exception + - 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 + - net: lan966x: Fix possible deadlock inside PTP + - net/mlx4_en: Introduce flexible array to silence overflow warning + - net/mlx5e: Align IPsec ASO result memory to be as required by hardware + - selftest: fib_tests: Always cleanup before exit + - sefltests: netdevsim: wait for devlink instance after netns removal + - drm: Fix potential null-ptr-deref due to drmm_mode_config_init() + - drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats + - drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec + - drm: mxsfb: DRM_IMX_LCDIF should depend on ARCH_MXC + - 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/modes: Use strscpy() to copy command-line mode name + - drm/vc4: dpi: Fix format mapping for RGB565 + - drm/bridge: it6505: Guard bridge power in IRQ handler + - drm: tidss: Fix pixel format definition + - gpu: ipu-v3: common: Add of_node_put() for reference returned by + of_graph_get_port_by_id() + - drm/ast: Init iosys_map pointer as I/O memory for damage handling + - drm/vc4: drop all currently held locks if deadlock happens + - hwmon: (ftsteutates) Fix scaling of measurements + - drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init() + - 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: Configure the HVS COB allocations + - drm/vc4: hvs: Set AXI panic modes + - drm/vc4: hvs: SCALER_DISPBKGND_AUTOHS is only valid on HVS4 + - drm/vc4: hvs: Correct interrupt masking bit assignment for HVS5 + - 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 + - drm/panel-edp: fix name for IVO product id 854b + - scsi: qla2xxx: Fix exchange oversubscription + - scsi: qla2xxx: Fix exchange oversubscription for management commands + - scsi: qla2xxx: edif: Fix clang warning + - ASoC: fsl_sai: initialize is_dsp_mode flag + - drm/bridge: tc358767: Set default CLRSIPO count + - drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup() + - ALSA: hda/ca0132: minor fix for allocation size + - drm/amdgpu: Use the sched from entity for amdgpu_cs trace + - 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 + - regulator: tps65219: use IS_ERR() to detect an error pointer + - 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 + - scsi: ufs: exynos: Fix DMA alignment for PAGE_SIZE != 4096 + - drm/msm/dpu: sc7180: add missing WB2 clock control + - 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 + - habanalabs: bugs fixes in timestamps buff alloc + - 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: Fix mask for syncpoint increment register + - gpu: host1x: Don't skip assigning syncpoints to channels + - drm/tegra: firewall: Check for is_addr_reg existence in IMM check + - drm/i915/mtl: Add initial gt workarounds + - drm/i915/xehp: GAM registers don't need to be re-applied on engine resets + - pinctrl: renesas: rzg2l: Fix configuring the GPIO pins as interrupts + - drm/i915/xehp: Annotate a couple more workaround registers as MCR + - 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() + - dt-bindings: display: mediatek: Fix the fallback for mediatek,mt8186-disp- + ccorr + - gpio: pca9570: rename platform_data to chip_data + - gpio: vf610: connect GPIO label to dev name + - ASoC: topology: Properly access value coming from topology file + - 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() + - dm: improve shrinker debug names + - regmap: apply reg_base and reg_downshift for single register ops + - accel: fix CONFIG_DRM dependencies + - 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 + - regulator: tps65219: use generic set_bypass() + - hwmon: (asus-ec-sensors) add missing mutex path + - hwmon: (ltc2945) Handle error case in ltc2945_value_store + - ALSA: hda: Fix the control element identification for multiple codecs + - 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: 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 + - ASoC: codecs: lpass: register mclk after runtime pm + - ASoC: codecs: lpass: fix incorrect mclk rate + - drm/amd/display: don't call dc_interrupt_set() for disabled crtcs + - HID: logitech-hidpp: Hard-code HID++ 1.0 fast scroll support + - 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 + - drm/i915/pvc: Implement recommended caching policy + - drm/i915/pvc: Annotate two more workaround/tuning registers as MCR + - drm/i915: Fix GEN8_MISCCPCTL + - 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 + - ALSA: hda/hdmi: Register with vga_switcheroo on Dual GPU Macbooks + - drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt() + - NFSD: enhance inter-server copy cleanup + - NFSD: fix leaked reference count of nfsd4_ssc_umount_item + - nfsd: fix race to check ls_layouts + - nfsd: clean up potential nfsd_file refcount leaks in COPY codepath + - NFSD: fix problems with cleanup on errors in nfsd4_copy + - nfsd: fix courtesy client with deny mode handling in nfs4_upgrade_open + - nfsd: don't fsync nfsd_files on last close + - NFSD: copy the whole verifier in nfsd_copy_write_verifier + - cifs: Fix lost destroy smbd connection when MR allocate failed + - cifs: Fix warning and UAF when destroy the MR list + - cifs: use tcon allocation functions even for dummy tcon + - gfs2: jdata writepage fix + - perf llvm: Fix inadvertent file creation + - leds: led-core: Fix refcount leak in of_led_get() + - leds: is31fl319x: Wrap mutex_destroy() for devm_add_action_or_rest() + - leds: simatic-ipc-leds-gpio: Make sure we have the GPIO providing driver + - tools/tracing/rtla: osnoise_hist: use total duration for average calculation + - perf inject: Use perf_data__read() for auxtrace + - perf intel-pt: Do not try to queue auxtrace data on pipe + - perf stat: Hide invalid uncore event output for aggr mode + - perf jevents: Correct bad character encoding + - perf test bpf: Skip test if kernel-debuginfo is not present + - perf tools: Fix auto-complete on aarch64 + - perf stat: Avoid merging/aggregating metric counts twice + - sparc: allow PM configs for sparc32 COMPILE_TEST + - selftests: find echo binary to use -ne options + - selftests/ftrace: Fix bash specific "==" operator + - selftests: use printf instead of echo -ne + - perf record: Fix segfault with --overwrite and --max-size + - printf: fix errname.c list + - perf tests stat_all_metrics: Change true workload to sleep workload for + system wide check + - objtool: add UACCESS exceptions for __tsan_volatile_read/write + - selftests/ftrace: Fix probepoint testcase to ignore __pfx_* symbols + - sysctl: fix proc_dobool() usability + - mfd: rk808: Re-add rk808-clkout to RK818 + - 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 + - RDMA/erdma: Fix refcount leak in erdma_mmap + - dmaengine: HISI_DMA should depend on ARCH_HISI + - RDMA/hns: Fix refcount leak in hns_roce_mmap + - 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 + - i2c: qcom-geni: change i2c_master_hub to static + - soundwire: cadence: Don't overflow the command FIFOs + - driver core: fix potential null-ptr-deref in device_add() + - 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() + - media: uvcvideo: Implement mask for V4L2_CTRL_TYPE_MENU + - media: uvcvideo: Refactor uvc_ctrl_mappings_uvcXX + - media: uvcvideo: Refactor power_line_frequency_controls_limited + - 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 + - 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 + - PCI: endpoint: pci-epf-vntb: Add epf_ntb_mw_bar_clear() num_mws kernel-doc + - hwtracing: hisi_ptt: Only add the supported devices to the filters list + - 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() + - firmware: stratix10-svc: fix error handle while alloc/add device failed + - VMCI: check context->notify_page after call to get_user_pages_fast() to + avoid GPF + - mei: pxp: Use correct macros to initialize uuid_le + - misc/mei/hdcp: Use correct macros to initialize uuid_le + - misc: fastrpc: Fix an error handling path in fastrpc_rpmsg_probe() + - iommu/exynos: Fix error handling in exynos_iommu_init() + - driver core: fix resource leak in device_add() + - driver core: location: Free struct acpi_pld_info *pld before return false + - 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 + - selftests: iommu: Fix test_cmd_destroy_access() call in user_copy + - iommufd: Add three missing structures in ucmd_buffer + - fotg210-udc: Add missing completion handler + - dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers + - fpga: microchip-spi: move SPI I/O buffers out of stack + - fpga: microchip-spi: rewrite status polling in a time measurable way + - 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 + - phy: mediatek: remove temporary variable @mask_ + - PCI: mt7621: Delay phy ports initialization + - iommu/vt-d: Set No Execute Enable bit in PASID table entry + - power: supply: remove faulty cooling logic + - RDMA/siw: Fix user page pinning accounting + - 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: disable Ageing Timer interrupt request irq + - driver core: fw_devlink: Add DL_FLAG_CYCLE support to device links + - driver core: fw_devlink: Don't purge child fwnode's consumer links + - driver core: fw_devlink: Allow marking a fwnode link as being part of a + cycle + - driver core: fw_devlink: Consolidate device link flag computation + - driver core: fw_devlink: Improve check for fwnode with no device/driver + - driver core: fw_devlink: Make cycle detection more robust + - mtd: mtdpart: Don't create platform device that'll never probe + - usb: host: fsl-mph-dr-of: reuse device_set_of_node_from_dev + - dmaengine: dw-edma: Fix readq_ch() return value truncation + - PCI: Fix dropping valid root bus resources with .end = zero + - phy: rockchip-typec: fix tcphy_get_mode error case + - PCI: qcom: Fix host-init error handling + - iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry() + - iommu: Fix error unwind in iommu_group_alloc() + - iommu/amd: Do not identity map v2 capable device when snp is enabled + - dmaengine: sf-pdma: pdma_desc memory leak fix + - dmaengine: dw-axi-dmac: Do not dereference NULL structure + - dmaengine: ptdma: check for null desc before calling pt_cmd_callback + - iommu/vt-d: Fix error handling in sva enable/disable paths + - iommu/vt-d: Allow to use flush-queue when first level is default + - RDMA/rxe: Cleanup mr_check_range + - RDMA/rxe: Move rxe_map_mr_sg to rxe_mr.c + - RDMA-rxe: Isolate mr code from atomic_reply() + - RDMA-rxe: Isolate mr code from atomic_write_reply() + - RDMA/rxe: Cleanup page variables in rxe_mr.c + - RDMA/rxe: Replace rxe_map and rxe_phys_buf by xarray + - Subject: RDMA/rxe: Handle zero length rdma + - RDMA/mana_ib: Fix a bug when the PF indicates more entries for registering + memory on first packet + - RDMA/rxe: Fix missing memory barriers in rxe_queue.h + - IB/hfi1: Fix math bugs in hfi1_can_pin_pages() + - IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors + - Revert "remoteproc: qcom_q6v5_mss: map/unmap metadata region before/after + use" + - 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 + - media: imx: imx7-media-csi: fix missing clk_disable_unprepare() in + imx7_csi_init() + - 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: tc358746: fix missing return assignment + - media: i2c: tc358746: fix ignoring read error in g_register callback + - media: i2c: tc358746: fix possible endianness issue + - media: ov5640: Fix soft reset sequence and timings + - media: ov5640: Handle delays when no reset_gpio set + - media: mc: Get media_device directly from pad + - 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: platform: mtk-mdp3: Fix return value check in mdp_probe() + - media: camss: csiphy-3ph: avoid undefined behavior + - media: platform: mtk-mdp3: fix Kconfig dependencies + - media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data + - media: v4l2-jpeg: ignore the unknown APP14 marker + - media: hantro: Fix JPEG encoder ENUM_FRMSIZE on RK3399 + - media: imx-jpeg: Apply clk_bulk api instead of operating specific clk + - media: amphion: correct the unspecified color space + - media: drivers/media/v4l2-core/v4l2-h264 : add detection of null pointers + - media: rc: Fix use-after-free bugs caused by ene_tx_irqsim() + - media: atomisp: fix videobuf2 Kconfig depenendency + - media: atomisp: Only set default_run_mode on first open of a stream/asd + - 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 + - rpmsg: glink: Release driver_override + - ARM: OMAP2+: omap4-common: Fix refcount leak bug + - arm64: dts: qcom: msm8996: Add additional A2NoC clocks + - udf: Define EFSCORRUPTED error code + - context_tracking: Fix noinstr vs KASAN + - exit: Detect and fix irq disabled state in oops + - ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy + - fs: Use CHECK_DATA_CORRUPTION() when kernel bugs are detected + - blk-iocost: fix divide by 0 error in calc_lcoefs() + - blk-cgroup: dropping parent refcount after pd_free_fn() is done + - blk-cgroup: synchronize pd_free_fn() from blkg_free_workfn() and + blkcg_deactivate_policy() + - trace/blktrace: fix memory leak with using debugfs_lookup() + - btrfs: scrub: improve tree block error reporting + - arm64: zynqmp: Enable hs termination flag for USB dwc3 controller + - cpuidle, intel_idle: Fix CPUIDLE_FLAG_INIT_XSTATE + - x86/fpu: Don't set TIF_NEED_FPU_LOAD for PF_IO_WORKER threads + - cpuidle: drivers: firmware: psci: Dont instrument suspend code + - cpuidle: lib/bug: Disable rcu_is_watching() during WARN/BUG + - perf/x86/intel/uncore: Add Meteor Lake support + - wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect() + - wifi: ath11k: fix monitor mode bringup crash + - 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() + - srcu: Delegate work to the boot cpu if using SRCU_SIZE_SMALL + - rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug + - rcu-tasks: Handle queue-shrink/callback-enqueue race condition + - 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 + - bpftool: Always disable stack protection for BPF objects + - wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out- + of-bounds + - wifi: rtw89: fix assignation of TX BD RAM table + - 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 + - Compiler attributes: GCC cold function alignment workarounds + - ACPI: Don't build ACPICA with '-Os' + - bpf, docs: Fix modulo zero, division by zero, overflow, and underflow + - 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 + - s390/mm,ptdump: avoid Kasan vs Memcpy Real markers swapping + - netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj() + - can: isotp: check CAN address family in isotp_bind() + - gcc-plugins: drop -std=gnu++11 to fix GCC 13 build + - tools/power/x86/intel-speed-select: Add Emerald Rapid quirk + - platform/x86: dell-ddv: Add support for interface version 3 + - 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: Fix issue with Actions Semi ATS2851 based devices + - Bluetooth: btusb: Add new PID/VID 0489:e0f2 for MT7921 + - Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE + - wifi: rtw89: debug: avoid invalid access on RTW89_DBG_SEL_MAC_30 + - hv_netvsc: Check status in SEND_RNDIS_PKT completion message + - s390/kfence: fix page fault reporting + - devlink: Fix TP_STRUCT_entry in trace of devlink health report + - scm: add user copy checks to put_cmsg() + - drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Tab 3 X90F + - drm: panel-orientation-quirks: Add quirk for DynaBook K50 + - drm/amd/display: Reduce expected sdp bandwidth for dcn321 + - 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/amd/display: Defer DIG FIFO disable after VID stream enable + - drm/radeon: free iio for atombios when driver shutdown + - drm/amd: Avoid BUG() for case of SRIOV missing IP version + - drm/amdkfd: Page aligned memory reserve size + - 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: Avoid ASSERT for some message failures + - drm: amd: display: Fix memory leakage + - drm/amd/display: fix mapping to non-allocated address + - HID: uclogic: Add frame type quirk + - HID: uclogic: Add battery quirk + - HID: uclogic: Add support for XP-PEN Deco Pro SW + - HID: uclogic: Add support for XP-PEN Deco Pro MW + - drm/msm/dsi: Add missing check for alloc_ordered_workqueue + - drm: rcar-du: Add quirk for H3 ES1.x pclk workaround + - drm: rcar-du: Fix setting a reserved bit in DPLLCR + - drm/drm_print: correct format problem + - drm/amd/display: Set hvm_enabled flag for S/G mode + - drm/client: Test for connectors before sending hotplug event + - habanalabs: extend fatal messages to contain PCI info + - habanalabs: fix bug in timestamps registration code + - docs/scripts/gdb: add necessary make scripts_gdb step + - drm/msm/dpu: Add DSC hardware blocks to register snapshot + - 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 + - Revert "drm/amdgpu: TA unload messages are not actually sent to psp when + amdgpu is uninstalled" + - drm/amd/display: fix FCLK pstate change underflow + - gfs2: Improve gfs2_make_fs_rw error handling + - hwmon: (coretemp) Simplify platform device handling + - hwmon: (nct6775) Directly call ASUS ACPI WMI method + - hwmon: (nct6775) B650/B660/X670 ASUS boards support + - pinctrl: at91: use devm_kasprintf() to avoid potential leaks + - drm/amd/display: Do not commit pipe when updating DRR + - scsi: snic: Fix memory leak with using debugfs_lookup() + - scsi: ufs: core: Fix device management cmd timeout flow + - HID: logitech-hidpp: Don't restart communication if not necessary + - drm/amd/display: Enable P-state validation checks for DCN314 + - drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5 + - drm/amd/display: Disable HUBP/DPP PG on DCN314 for now + - drm/amd/display: disable SubVP + DRR to prevent underflow + - 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 + - nfsd: don't hand out delegation on setuid files being opened for write + - cifs: prevent data race in smb2_reconnect() + - drm/i915/mtl: Correct implementation of Wa_18018781329 + - drm/shmem-helper: Revert accidental non-GPL export + - driver core: fw_devlink: Avoid spurious error message + - 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 + - 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 + - rtc: pm8xxx: fix set-alarm race + - ipmi: ipmb: Fix the MODULE_PARM_DESC associated to 'retry_time_ms' + - ipmi:ssif: resend_msg() cannot fail + - ipmi_ssif: Rename idle state and check + - ipmi:ssif: Add a timer between request retries + - io_uring: Replace 0-length array with flexible array + - io_uring: use user visible tail in io_uring_poll() + - io_uring: handle TIF_NOTIFY_RESUME when checking for task_work + - io_uring: add a conditional reschedule to the IOPOLL cancelation loop + - io_uring: add reschedule point to handle_tw_list() + - 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 + - io_uring: fix fget leak when fs don't support nowait buffered read + - 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 + - KVM: s390: disable migration mode when dirty tracking is disabled + - cifs: improve checking of DFS links over STATUS_OBJECT_NAME_INVALID + - cifs: Fix uninitialized memory read in smb3_qfs_tcon() + - cifs: Fix uninitialized memory reads for oparms.mode + - cifs: fix mount on old smb servers + - cifs: introduce cifs_io_parms in smb2_async_writev() + - cifs: split out smb3_use_rdma_offload() helper + - cifs: don't try to use rdma offload on encrypted connections + - cifs: Check the lease context if we actually got a lease + - cifs: return a single-use cfid if we did not get a lease + - 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 + - btrfs: hold block group refcount during async discard + - btrfs: sysfs: update fs features directory asynchronously + - 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 + - ksmbd: fix possible memory leak in smb2_lock() + - torture: Fix hang during kthread shutdown phase + - ARM: dts: exynos: correct HDMI phy compatible in Exynos4 + - io_uring: mark task TASK_RUNNING before handling resume/task work + - 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: start midcomms before scand + - fs: dlm: fix use after free in midcomms commit + - fs: dlm: be sure to call dlm_send_queue_flush() + - fs: dlm: fix race setting stop tx flag + - 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: retry to update the inode page given data corruption + - f2fs: fix cgroup writeback accounting with fs-layer encryption + - f2fs: fix kernel crash due to null io->bio + - f2fs: Revert "f2fs: truncate blocks in batch in __complete_revoke_list()" + - ocfs2: fix defrag path triggering jbd2 ASSERT + - ocfs2: fix non-auto defrag path not working issue + - fs/cramfs/inode.c: initialize file_ra_state + - 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 + - md: don't update recovery_cp when curr_resync is ACTIVE + - KVM: Destroy target device if coalesced MMIO unregistration fails + - KVM: VMX: Fix crash due to uninitialized current_vmcs + - KVM: Register /dev/kvm as the _very_ last thing during initialization + - KVM: x86: Purge "highest ISR" cache when updating APICv state + - KVM: x86: Blindly get current x2APIC reg value on "nodecode write" traps + - 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: Flush the "current" TLB when activating AVIC + - KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target + - KVM: SVM: Don't put/load AVIC when setting virtual APIC mode + - KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI + - KVM: x86: Inject #GP on x2APIC WRMSR that sets reserved bits 63:32 + - KVM: SVM: Fix potential overflow in SEV's send|receive_update_data() + - KVM: SVM: hyper-v: placate modpost section mismatch error + - selftests: x86: Fix incorrect kernel headers search path + - 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 + - virt/sev-guest: Return -EIO if certificate buffer is not large enough + - brd: mark as nowait compatible + - brd: return 0/-error from brd_insert_page() + - brd: check for REQ_NOWAIT and set correct page allocation mask + - ima: fix error handling logic when file measurement failed + - ima: Align ima_file_mmap() parameters with mmap_file LSM hook + - selftests/powerpc: Fix incorrect kernel headers search path + - selftests/ftrace: Fix eprobe syntax test case to check filter support + - selftests: sched: Fix incorrect kernel headers search path + - selftests: core: Fix incorrect kernel headers search path + - selftests: pid_namespace: Fix incorrect kernel headers search path + - selftests: arm64: Fix incorrect kernel headers search path + - selftests: clone3: Fix incorrect kernel headers search path + - selftests: pidfd: Fix incorrect kernel headers search path + - selftests: membarrier: Fix incorrect kernel headers search path + - selftests: kcmp: Fix incorrect kernel headers search path + - selftests: media_tests: Fix incorrect kernel headers search path + - selftests: gpio: Fix incorrect kernel headers search path + - selftests: filesystems: Fix incorrect kernel headers search path + - selftests: user_events: Fix incorrect kernel headers search path + - selftests: ptp: Fix incorrect kernel headers search path + - selftests: sync: Fix incorrect kernel headers search path + - selftests: rseq: Fix incorrect kernel headers search path + - selftests: move_mount_set_group: Fix incorrect kernel headers search path + - selftests: mount_setattr: Fix incorrect kernel headers search path + - selftests: perf_events: Fix incorrect kernel headers search path + - selftests: ipc: Fix incorrect kernel headers search path + - selftests: futex: Fix incorrect kernel headers search path + - selftests: drivers: Fix incorrect kernel headers search path + - selftests: dmabuf-heaps: Fix incorrect kernel headers search path + - selftests: vm: Fix incorrect kernel headers search path + - selftests: seccomp: Fix incorrect kernel headers search path + - irqdomain: Fix association race + - irqdomain: Fix disassociation race + - irqdomain: Look for existing mapping only once + - irqdomain: Drop bogus fwspec-mapping error handling + - irqdomain: Refactor __irq_domain_alloc_irqs() + - irqdomain: Fix mapping-creation race + - irqdomain: Fix domain registration race + - crypto: qat - fix out-of-bounds read + - mm/damon/paddr: fix missing folio_put() + - 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 + - cxl/pmem: Fix nvdimm registration races + - Input: exc3000 - properly stop timer on shutdown + - mtd: spi-nor: sfdp: Fix index value for SCCR dwords + - mtd: spi-nor: spansion: Consider reserved bits in CFR5 register + - dm: send just one event on resize, not two + - dm: add cond_resched() to dm_wq_work() + - dm: add cond_resched() to dm_wq_requeue_work() + - wifi: rtw88: use RTW_FLAG_POWERON flag to prevent to power on/off twice + - 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 + - wifi: cfg80211: Set SSID if it is not already set + - cpuidle: add ARCH_SUSPEND_POSSIBLE dependencies + - qede: fix interrupt coalescing configuration + - thermal: intel: powerclamp: Fix cur_state for multi package system + - dm flakey: fix logic when corrupting a bio + - dm cache: free background tracker's queued work in btracker_destroy + - dm flakey: don't corrupt the zero page + - dm flakey: fix a bug with 32-bit highmem systems + - hwmon: (peci/cputemp) Fix off-by-one in coretemp_label allocation + - hwmon: (nct6775) Fix incorrect parenthesization in nct6775_write_fan_div() + - spi: intel: Check number of chip selects after reading the descriptor + - ARM: dts: qcom: sdx65: Add Qcom SMMU-500 as the fallback for IOMMU node + - 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 + - arm64: acpi: Fix possible memory leak of ffh_ctxt + - arm64: mm: hugetlb: Disable HUGETLB_PAGE_OPTIMIZE_VMEMMAP + - arm64: Reset KASAN tag in copy_highpage with HW tags only + - 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 + - regulator: core: Use ktime_get_boottime() to determine how long a regulator + was off + - panic: fix the panic_print NMI backtrace setting + - mm/hwpoison: convert TTU_IGNORE_HWPOISON to TTU_HWPOISON + - genirq/msi, platform-msi: Ensure that MSI descriptors are unreferenced + - genirq/msi: Take the per-device MSI lock before validating the control + structure + - spi: spi-sn-f-ospi: fix duplicate flag while assigning to mode_bits + - 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 + - vfio: Fix NULL pointer dereference caused by uninitialized group->iommufd + - 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 + - kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list + - ktest.pl: Fix missing "end_monitor" when machine check fails + - ktest.pl: Add RUN_TIMEOUT option with default unlimited + - memory tier: release the new_memtier in find_create_memory_tier() + - ring-buffer: Handle race between rb_move_tail and rb_check_pages + - tools/bootconfig: fix single & used for logical condition + - tracing/eprobe: Fix to add filter on eprobe description in README file + - iommu/amd: Add a length limitation for the ivrs_acpihid command-line + parameter + - scsi: aacraid: Allocate cmd_priv with scsicmd + - 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: Avoid enabling interrupts in die() + - riscv: mm: fix regression due to update_mmu_cache change + - riscv: jump_label: Fixup unaligned arch_static_branch function + - riscv: ftrace: Fixup panic by disabling preemption + - 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: Unify delay handling for reset and resume + - PCI: hotplug: Allow marking devices as disconnected during bind/unbind + - PCI: Avoid FLR for AMD FCH AHCI adapters + - PCI/DPC: Await readiness of secondary bus after reset + - 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 + - iommufd: Make sure to zero vfio_iommu_type1_info before copying to user + - iommufd: Do not add the same hwpt to the ioas->hwpt_list twice + - iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode + - iommu/vt-d: Fix PASID directory pointer coherency + - vfio/type1: exclude mdevs from VFIO_UPDATE_VADDR + - vfio/type1: prevent underflow of locked_vm via exec() + - vfio/type1: track locked_vm per dma + - vfio/type1: restore locked_vm + - drm/amd: Fix initialization for nbio 7.5.1 + - drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv + - drm/radeon: Fix eDP for single-display iMac11,2 + - drm/i915: Don't use stolen memory for ring buffers with LLC + - drm/i915: Don't use BAR mappings for ring buffers with LLC + - drm/gud: Fix UBSAN warning + - drm/edid: fix AVI infoframe aspect ratio handling + - drm/edid: fix parsing of 3D modes from HDMI VSDB + - qede: avoid uninitialized entries in coal_entry array + - brd: use radix_tree_maybe_preload instead of radix_tree_preload + - net: avoid double iput when sock_alloc_file fails + - Linux 6.2.3 + * Miscellaneous Ubuntu changes + - [Config] update annotations after applying 6.2.3 stable patches + - [Config] update annotations after applying 6.2.6 stable patches + + -- Paolo Pisati Thu, 06 Apr 2023 11:27:17 +0200 + +linux-gcp (6.2.0-1004.4) lunar; urgency=medium + + * lunar/linux-gcp: 6.2.0-1004.4 -proposed tracker (LP: #2011460) + + -- Paolo Pisati Mon, 13 Mar 2023 18:31:04 +0100 + +linux-gcp (6.2.0-1003.3) lunar; urgency=medium + + * lunar/linux-gcp: 6.2.0-1003.3 -proposed tracker (LP: #2011391) + + * Miscellaneous Ubuntu changes + - [Packaging] add python3 as a build dependency + + -- Paolo Pisati Mon, 13 Mar 2023 09:04:44 +0100 + +linux-gcp (6.2.0-1002.2) lunar; urgency=medium + + * lunar/linux-gcp: 6.2.0-1002.2 -proposed tracker (LP: #2011386) + + * enable Rust support in the kernel (LP: #2007654) + - [Packaging] gcp: add rust dependencies + + -- Paolo Pisati Mon, 13 Mar 2023 08:20:51 +0100 + +linux-gcp (6.2.0-1001.1) lunar; urgency=medium + + * lunar/linux-gcp: 6.2.0-1001.1 -proposed tracker (LP: #2009839) + + * Packaging resync (LP: #1786013) + - [Packaging] update Ubuntu.md + - [Packaging] update update.conf + + * Kinetic update: upstream stable patchset 2022-11-14 (LP: #1996540) + - [Config] gcp: updateconfigs for HID_TOPRE + + * remove circular dep between linux-image and modules (LP: #1989334) + - [Packaging] remove circular dep between modules and image + + * Miscellaneous Ubuntu changes + - move to 6.2 + - [Config] updateconfigs following 6.2 rebase + - [Config] gcp: enable RUST + + -- Paolo Pisati Fri, 10 Mar 2023 15:34:53 +0100 + +linux-gcp (6.2.0-1000.0) lunar; urgency=medium + + * lunar/linux-gcp: 6.1.0-1001.1 -proposed tracker (LP: #1998334) + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs following unstable rebase + - [Config] migrateconfigs to annotations + - [packaging] switch to Lunar and Linux 6.1 + + -- Paolo Pisati Wed, 30 Nov 2022 18:06:10 +0100 + +linux-gcp (5.19.0-1008.8) lunar; urgency=medium + + * kinetic/linux-gcp: 5.19.0-1008.8 -proposed tracker (LP: #1992745) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs following Ubuntu-5.19.0-21.21 rebase + + -- Paolo Pisati Thu, 13 Oct 2022 12:09:39 +0200 + +linux-gcp (5.19.0-1007.7) kinetic; urgency=medium + + * kinetic/linux-gcp: 5.19.0-1007.7 -proposed tracker (LP: #1991266) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs following Ubuntu-5.19.0-19.19 rebase + + -- Paolo Pisati Mon, 03 Oct 2022 10:41:13 +0200 + +linux-gcp (5.19.0-1006.6) kinetic; urgency=medium + + * kinetic/linux-gcp: 5.19.0-1006.6 -proposed tracker (LP: #1990498) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + - [Packaging] resync getabis + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs following Ubuntu-5.19.0-18.18 rebase + + -- Paolo Pisati Thu, 22 Sep 2022 19:19:29 +0200 + +linux-gcp (5.19.0-1005.5) kinetic; urgency=medium + + * kinetic/linux-gcp: 5.19.0-1005.5 -proposed tracker (LP: #1988718) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs following Ubuntu-5.19.0-16.16 rebase + + -- Paolo Pisati Tue, 06 Sep 2022 16:03:19 +0200 + +linux-gcp (5.19.0-1004.4) kinetic; urgency=medium + + * kinetic/linux-gcp: 5.19.0-1004.4 -proposed tracker (LP: #1983444) + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs following Ubuntu-5.19.0-15.15 rebase + + -- Paolo Pisati Wed, 03 Aug 2022 15:23:43 +0200 + +linux-gcp (5.19.0-1003.3) kinetic; urgency=medium + + * kinetic/linux-gcp: 5.19.0-1003.3 -proposed tracker (LP: #1983079) + + -- Paolo Pisati Fri, 29 Jul 2022 10:54:37 +0200 + +linux-gcp (5.19.0-1002.2) kinetic; urgency=medium + + * kinetic/linux-gcp: 5.19.0-1002.2 -proposed tracker (LP: #1982806) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs following Ubuntu-5.19.0-12.12 rebase + + [ Ubuntu: 5.19.0-12.12 ] + + * 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 + + [ Ubuntu: 5.19.0-11.11 ] + + * 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 + * Rebase to v5.19-rc8 + + [ Ubuntu: 5.19.0-10.10 ] + + * 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 + * Rebase to v5.19-rc7 + + [ Ubuntu: 5.19.0-9.9 ] + + * kinetic/linux: 5.19.0-9.9 -proposed tracker (LP: #1980622) + * Miscellaneous Ubuntu changes + - [Config] update config after rebase to 5.19-rc5 + * Rebase to v5.19-rc5 + + [ Ubuntu: 5.19.0-8.8 ] + + * 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 + + [ Ubuntu: 5.19.0-7.7 ] + + * 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 + + [ Ubuntu: 5.19.0-6.6 ] + + * Empty entry + + [ Ubuntu: 5.19.0-6.6 ] + + * 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 + * Rebase to v5.19-rc4 + + [ Ubuntu: 5.19.0-5.5 ] + + * 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" + + [ Ubuntu: 5.19.0-4.4 ] + + * kinetic/linux-unstable: 5.19.0-4.4 -proposed tracker (LP: #1979177) + * Miscellaneous Ubuntu changes + - [Config] update configs after rebase to 5.19-rc3 + * Rebase to v5.19-rc3 + + [ Ubuntu: 5.19.0-3.3 ] + + * kinetic/linux-unstable: 5.19.0-3.3 -proposed tracker (LP: #1978439) + * Miscellaneous Ubuntu changes + - [Config] update annotations for 5.19 + * Rebase to v5.19-rc2 + + [ Ubuntu: 5.19.0-2.2 ] + + * kinetic/linux-unstable: 5.19.0-2.2 -proposed tracker (LP: #1978313) + + [ Ubuntu: 5.19.0-1.1 ] + + * 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 + + [ Ubuntu: 5.19.0-0.0 ] + + * Empty entry + + [ Ubuntu: 5.18.0-6.6 ] + + * 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 + + [ Ubuntu: 5.18.0-5.5 ] + + * Empty entry + + [ Ubuntu: 5.18.0-5.5 ] + + * 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 + * Rebase to v5.18 + + [ Ubuntu: 5.18.0-4.4 ] + + * 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" + * Rebase to v5.18-rc7 + + [ Ubuntu: 5.18.0-3.3 ] + + * 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" + * Rebase to v5.18-rc6 + + [ Ubuntu: 5.18.0-2.2 ] + + * 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 + * Rebase to v5.18-rc5 + + [ Ubuntu: 5.18.0-1.1 ] + + * Empty entry + + [ Ubuntu: 5.18.0-1.1 ] + + * 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 + * Rebase to v5.18-rc3 + + [ Ubuntu: 5.18.0-0.0 ] + + * Empty entry + + [ Ubuntu: 5.17.0-8.8 ] + + * 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) + + [ Ubuntu: 5.17.0-7.7 ] + + * 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 + + [ Ubuntu: 5.17.0-6.6 ] + + * 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 + * Rebase to v5.17 + + [ Ubuntu: 5.17.0-5.5 ] + + * 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 + * Rebase to v5.17-rc8 + + [ Ubuntu: 5.17.0-4.4 ] + + * jammy/linux-unstable: 5.17.0-4.4 -proposed tracker (LP: #1963880) + * Rebase to v5.17-rc7 + + [ Ubuntu: 5.17.0-3.3 ] + + * 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 + * Rebase to v5.17-rc6 + + [ Ubuntu: 5.17.0-2.2 ] + + * 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" + + [ Ubuntu: 5.17.0-1.1 ] + + * Rebase to 5.17-rc1 + + [ Ubuntu: 5.17.0-0.0 ] + + * Empty entry + + -- Paolo Pisati Wed, 27 Jul 2022 12:08:21 +0200 + +linux-gcp (5.19.0-1001.1) kinetic; urgency=medium + + * kinetic/linux-gcp: 5.19.0-1001.1 -proposed tracker (LP: #1980071) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Packaging] switch to kinetic 5.19.0 + - [Config] updateconfigs and annotations following 5.19.0-7.7 rebase + + -- Paolo Pisati Wed, 29 Jun 2022 12:18:32 +0200 + +linux-gcp (5.19.0-1000.0) kinetic; urgency=medium + + * Dummy entry + + -- Paolo Pisati Wed, 29 Jun 2022 12:08:07 +0200 + +linux-gcp (5.18.0-1001.1) kinetic; urgency=medium + + * kinetic/linux-gcp: 5.18.0-1001.1 -proposed tracker (LP: #1975967) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.05.30) + + * Miscellaneous Ubuntu changes + - [Packaging] switch to kinetic 5.18.0 + - [Config] updateconfigs and annotations following 5.18.0-6.6 rebase + + -- Paolo Pisati Thu, 09 Jun 2022 09:06:52 +0200 + +linux-gcp (5.18.0-1000.0) kinetic; urgency=medium + + * Dummy entry + + -- Paolo Pisati Wed, 08 Jun 2022 16:11:49 +0200 + +linux-gcp (5.15.0-1004.7) jammy; urgency=medium + + * jammy/linux-gcp: 5.15.0-1004.7 -proposed tracker (LP: #1969492) + + [ Ubuntu: 5.15.0-27.28 ] + + * jammy/linux: 5.15.0-27.28 -proposed tracker (LP: #1968954) + + [ Ubuntu: 5.15.0-26.27 ] + + * jammy/linux: 5.15.0-26.27 -proposed tracker (LP: #1968850) + * CVE-2022-1016 + - netfilter: nf_tables: initialize registers in nft_do_chain() + * CVE-2022-1015 + - netfilter: nf_tables: validate registers coming from userspace. + * CVE-2022-26490 + - nfc: st21nfca: Fix potential buffer overflows in EVT_TRANSACTION + * harden indirect calls against BHI attacks (LP: #1967579) + - objtool: Classify symbols + - objtool: Explicitly avoid self modifying code in .altinstr_replacement + - objtool: Shrink struct instruction + - objtool,x86: Replace alternatives with .retpoline_sites + - x86/retpoline: Remove unused replacement symbols + - x86/asm: Fix register order + - x86/asm: Fixup odd GEN-for-each-reg.h usage + - x86/retpoline: Move the retpoline thunk declarations to nospec-branch.h + - x86/retpoline: Create a retpoline thunk array + - x86/alternative: Implement .retpoline_sites support + - x86/alternative: Handle Jcc __x86_indirect_thunk_\reg + - x86/alternative: Try inline spectre_v2=retpoline,amd + - x86/alternative: Add debug prints to apply_retpolines() + - bpf,x86: Simplify computing label offsets + - bpf,x86: Respect X86_FEATURE_RETPOLINE* + + -- Paolo Pisati Wed, 20 Apr 2022 06:14:31 +0200 + +linux-gcp (5.15.0-1003.6) jammy; urgency=medium + + * jammy/linux-gcp: 5.15.0-1003.6 -proposed tracker (LP: #1966482) + + * dependency on crda obsolete according to Debian (LP: #1958918) + - [Packaging] switch dependency from crda to wireless-regdb + + * Miscellaneous Ubuntu changes + - [gcp] add arm64 to getabis + - [Config] updateconfigs + + [ Ubuntu: 5.15.0-25.25 ] + + * jammy/linux: 5.15.0-25.25 -proposed tracker (LP: #1967146) + * Miscellaneous Ubuntu changes + - SAUCE: Revert "scsi: core: Reallocate device's budget map on queue depth + change" + + [ Ubuntu: 5.15.0-24.24 ] + + * jammy/linux: 5.15.0-24.24 -proposed tracker (LP: #1966305) + * Update OS policy capability handshake (LP: #1966089) + - thermal: int340x: Update OS policy capability handshake + * Jammy update: v5.15.30 upstream stable release (LP: #1966057) + - Revert "xfrm: state and policy should fail if XFRMA_IF_ID 0" + - arm64: dts: rockchip: fix rk3399-puma-haikou USB OTG mode + - xfrm: Check if_id in xfrm_migrate + - xfrm: Fix xfrm migrate issues when address family changes + - arm64: dts: rockchip: fix rk3399-puma eMMC HS400 signal integrity + - arm64: dts: rockchip: align pl330 node name with dtschema + - arm64: dts: rockchip: reorder rk3399 hdmi clocks + - arm64: dts: agilex: use the compatible "intel,socfpga-agilex-hsotg" + - ARM: dts: rockchip: reorder rk322x hmdi clocks + - ARM: dts: rockchip: fix a typo on rk3288 crypto-controller + - mac80211: refuse aggregations sessions before authorized + - MIPS: smp: fill in sibling and core maps earlier + - ARM: 9178/1: fix unmet dependency on BITREVERSE for HAVE_ARCH_BITREVERSE + - Bluetooth: hci_core: Fix leaking sent_cmd skb + - can: rcar_canfd: rcar_canfd_channel_probe(): register the CAN device when + fully ready + - atm: firestream: check the return value of ioremap() in fs_init() + - iwlwifi: don't advertise TWT support + - drm/vrr: Set VRR capable prop only if it is attached to connector + - nl80211: Update bss channel on channel switch for P2P_CLIENT + - tcp: make tcp_read_sock() more robust + - sfc: extend the locking on mcdi->seqno + - bnx2: Fix an error message + - kselftest/vm: fix tests build with old libc + - x86/module: Fix the paravirt vs alternative order + - ice: Fix race condition during interface enslave + - Linux 5.15.30 + * Jammy update: v5.15.29 upstream stable release (LP: #1966056) + - arm64: dts: qcom: sm8350: Describe GCC dependency clocks + - arm64: dts: qcom: sm8350: Correct UFS symbol clocks + - HID: elo: Revert USB reference counting + - HID: hid-thrustmaster: fix OOB read in thrustmaster_interrupts + - ARM: boot: dts: bcm2711: Fix HVS register range + - clk: qcom: gdsc: Add support to update GDSC transition delay + - clk: qcom: dispcc: Update the transition delay for MDSS GDSC + - HID: vivaldi: fix sysfs attributes leak + - arm64: dts: armada-3720-turris-mox: Add missing ethernet0 alias + - tipc: fix kernel panic when enabling bearer + - vdpa/mlx5: add validation for VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET command + - vduse: Fix returning wrong type in vduse_domain_alloc_iova() + - net: phy: meson-gxl: fix interrupt handling in forced mode + - mISDN: Fix memory leak in dsp_pipeline_build() + - vhost: fix hung thread due to erroneous iotlb entries + - virtio-blk: Don't use MAX_DISCARD_SEGMENTS if max_discard_seg is zero + - vdpa: fix use-after-free on vp_vdpa_remove + - isdn: hfcpci: check the return value of dma_set_mask() in setup_hw() + - net: qlogic: check the return value of dma_alloc_coherent() in + qed_vf_hw_prepare() + - esp: Fix possible buffer overflow in ESP transformation + - esp: Fix BEET mode inter address family tunneling on GSO + - qed: return status of qed_iov_get_link + - smsc95xx: Ignore -ENODEV errors when device is unplugged + - gpiolib: acpi: Convert ACPI value of debounce to microseconds + - drm/sun4i: mixer: Fix P010 and P210 format numbers + - net: dsa: mt7530: fix incorrect test in mt753x_phylink_validate() + - ARM: dts: aspeed: Fix AST2600 quad spi group + - iavf: Fix handling of vlan strip virtual channel messages + - i40e: stop disabling VFs due to PF error responses + - ice: stop disabling VFs due to PF error responses + - ice: Fix error with handling of bonding MTU + - ice: Don't use GFP_KERNEL in atomic context + - ice: Fix curr_link_speed advertised speed + - ethernet: Fix error handling in xemaclite_of_probe + - tipc: fix incorrect order of state message data sanity check + - net: ethernet: ti: cpts: Handle error for clk_enable + - net: ethernet: lpc_eth: Handle error for clk_enable + - net: marvell: prestera: Add missing of_node_put() in + prestera_switch_set_base_mac_addr + - ax25: Fix NULL pointer dereference in ax25_kill_by_device + - net/mlx5: Fix size field in bufferx_reg struct + - net/mlx5: Fix a race on command flush flow + - net/mlx5e: Lag, Only handle events from highest priority multipath entry + - NFC: port100: fix use-after-free in port100_send_complete + - selftests: pmtu.sh: Kill tcpdump processes launched by subshell. + - selftests: pmtu.sh: Kill nettest processes launched in subshell. + - gpio: ts4900: Do not set DAT and OE together + - gianfar: ethtool: Fix refcount leak in gfar_get_ts_info + - net: phy: DP83822: clear MISR2 register to disable interrupts + - sctp: fix kernel-infoleak for SCTP sockets + - net: bcmgenet: Don't claim WOL when its not available + - net: phy: meson-gxl: improve link-up behavior + - selftests/bpf: Add test for bpf_timer overwriting crash + - swiotlb: fix info leak with DMA_FROM_DEVICE + - usb: dwc3: pci: add support for the Intel Raptor Lake-S + - pinctrl: tigerlake: Revert "Add Alder Lake-M ACPI ID" + - KVM: Fix lockdep false negative during host resume + - kvm: x86: Disable KVM_HC_CLOCK_PAIRING if tsc is in always catchup mode + - spi: rockchip: Fix error in getting num-cs property + - spi: rockchip: terminate dma transmission when slave abort + - drm/vc4: hdmi: Unregister codec device on unbind + - x86/kvm: Don't use pv tlb/ipi/sched_yield if on 1 vCPU + - net-sysfs: add check for netdevice being present to speed_show + - hwmon: (pmbus) Clear pmbus fault/warning bits after read + - PCI: Mark all AMD Navi10 and Navi14 GPU ATS as broken + - gpio: Return EPROBE_DEFER if gc->to_irq is NULL + - drm/amdgpu: bypass tiling flag check in virtual display case (v2) + - Revert "xen-netback: remove 'hotplug-status' once it has served its purpose" + - Revert "xen-netback: Check for hotplug-status existence before watching" + - ipv6: prevent a possible race condition with lifetimes + - tracing: Ensure trace buffer is at least 4096 bytes large + - tracing/osnoise: Make osnoise_main to sleep for microseconds + - selftest/vm: fix map_fixed_noreplace test failure + - selftests/memfd: clean up mapping in mfd_fail_write + - ARM: Spectre-BHB: provide empty stub for non-config + - fuse: fix fileattr op failure + - fuse: fix pipe buffer lifetime for direct_io + - staging: rtl8723bs: Fix access-point mode deadlock + - staging: gdm724x: fix use after free in gdm_lte_rx() + - net: macb: Fix lost RX packet wakeup race in NAPI receive + - riscv: alternative only works on !XIP_KERNEL + - mmc: meson: Fix usage of meson_mmc_post_req() + - riscv: Fix auipc+jalr relocation range checks + - tracing/osnoise: Force quiescent states while tracing + - arm64: dts: marvell: armada-37xx: Remap IO space to bus address 0x0 + - arm64: Ensure execute-only permissions are not allowed without EPAN + - arm64: kasan: fix include error in MTE functions + - swiotlb: rework "fix info leak with DMA_FROM_DEVICE" + - KVM: x86/mmu: kvm_faultin_pfn has to return false if pfh is returned + - virtio: unexport virtio_finalize_features + - virtio: acknowledge all features before access + - net/mlx5: Fix offloading with ESWITCH_IPV4_TTL_MODIFY_ENABLE + - ARM: fix Thumb2 regression with Spectre BHB + - watch_queue: Fix filter limit check + - watch_queue, pipe: Free watchqueue state after clearing pipe ring + - watch_queue: Fix to release page in ->release() + - watch_queue: Fix to always request a pow-of-2 pipe ring size + - watch_queue: Fix the alloc bitmap size to reflect notes allocated + - watch_queue: Free the alloc bitmap when the watch_queue is torn down + - watch_queue: Fix lack of barrier/sync/lock between post and read + - watch_queue: Make comment about setting ->defunct more accurate + - x86/boot: Fix memremap of setup_indirect structures + - x86/boot: Add setup_indirect support in early_memremap_is_setup_data() + - x86/sgx: Free backing memory after faulting the enclave page + - x86/traps: Mark do_int3() NOKPROBE_SYMBOL + - drm/panel: Select DRM_DP_HELPER for DRM_PANEL_EDP + - btrfs: make send work with concurrent block group relocation + - drm/i915: Workaround broken BIOS DBUF configuration on TGL/RKL + - riscv: dts: k210: fix broken IRQs on hart1 + - block: drop unused includes in + - Revert "net: dsa: mv88e6xxx: flush switchdev FDB workqueue before removing + VLAN" + - vhost: allow batching hint without size + - Linux 5.15.29 + * Jammy update: v5.15.28 upstream stable release (LP: #1966055) + - slip: fix macro redefine warning + - ARM: fix co-processor register typo + - ARM: Do not use NOCROSSREFS directive with ld.lld + - arm64: Do not include __READ_ONCE() block in assembly files + - ARM: fix build warning in proc-v7-bugs.c + - xen/xenbus: don't let xenbus_grant_ring() remove grants in error case + - xen/grant-table: add gnttab_try_end_foreign_access() + - xen/blkfront: don't use gnttab_query_foreign_access() for mapped status + - xen/netfront: don't use gnttab_query_foreign_access() for mapped status + - xen/scsifront: don't use gnttab_query_foreign_access() for mapped status + - xen/gntalloc: don't use gnttab_query_foreign_access() + - xen: remove gnttab_query_foreign_access() + - xen/9p: use alloc/free_pages_exact() + - xen/pvcalls: use alloc/free_pages_exact() + - xen/gnttab: fix gnttab_end_foreign_access() without page specified + - xen/netfront: react properly to failing gnttab_end_foreign_access_ref() + - Revert "ACPI: PM: s2idle: Cancel wakeup before dispatching EC GPE" + - Linux 5.15.28 + * zfcpdump-kernel update to v5.15 (LP: #1965766) + - SAUCE: Audit: Fix incorrect static inline function declration. + * [22.04 FEAT] SMC-R v2 Support (LP: #1929035) + - net/smc: save stack space and allocate smc_init_info + - net/smc: prepare for SMC-Rv2 connection + - net/smc: add SMC-Rv2 connection establishment + - net/smc: add listen processing for SMC-Rv2 + - net/smc: add v2 format of CLC decline message + - net/smc: retrieve v2 gid from IB device + - net/smc: add v2 support to the work request layer + - net/smc: extend LLC layer for SMC-Rv2 + - net/smc: add netlink support for SMC-Rv2 + - net/smc: stop links when their GID is removed + - net/smc: fix kernel panic caused by race of smc_sock + - net/smc: Fix hung_task when removing SMC-R devices + * [22.04 FEAT] Transparent PCI device recovery (LP: #1959532) + - s390/pci: tolerate inconsistent handle in recover + - s390/pci: add simpler s390dbf traces for events + - s390/pci: refresh function handle in iomap + - s390/pci: implement reset_slot for hotplug slot + - PCI: Export pci_dev_lock() + - s390/pci: implement minimal PCI error recovery + * Mute/mic LEDs no function on some HP platfroms (LP: #1965080) + - ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machines + * [22.04 FEAT] smc: Add User-defined EID (Enterprise ID) Support - kernel + (LP: #1929060) + - net/smc: add support for user defined EIDs + - net/smc: keep static copy of system EID + - net/smc: add generic netlink support for system EID + * Rotate to 2021v1 signing key (LP: #1964990) + - [Packaging] Rotate to 2021v1 signing key + * [22.04 FEAT] zcrypt DD: Exploitation Support of new IBM Z Crypto Hardware + (kernel part) (LP: #1959547) + - s390/zcrypt: rework of debug feature messages + - s390/ap/zcrypt: debug feature improvements + - s390/zcrypt: CEX8S exploitation support + - s390/zcrypt: handle checkstopped cards with new state + - s390/zcrypt: Support CPRB minor version T7 + - s390/zcrypt: change reply buffer size offering + - s390/zcrypt: Provide target domain for EP11 cprbs to scheduling function + - s390/airq: use DMA memory for summary indicators + * [22.04 FEAT] [VS2103] Set KVM_CAP_S390_MEM_OP_EXTENSION capability to 211 + (LP: #1963901) + - SAUCE: Set KVM_CAP_S390_MEM_OP_EXTENSION capability to 211 + * dependency on crda obsolete according to Debian (LP: #1958918) + - [Packaging] switch dependency from crda to wireless-regdb + * Cirrus audio support [1028:0BB5] & [1028:0BB6] (LP: #1964748) + - ALSA: hda/cs8409: Add new Warlock SKUs to patch_cs8409 + * Miscellaneous Ubuntu changes + - [Packaging] mark dkms-build-configure--zfs executable + - [Packaging] Fix bashism in dkms-build script + - [Packaging] Always catch errors in dkms-build scripts + - [Config] toolchain version update + * Miscellaneous upstream changes + - Ubuntu: remove leftover reference to ubuntu/hio driver + - Reverting commits 61005756c824 and cdb0f8e66513 due to a conflict with + LP#1929035. Re-pick them afterwards, which will establish the upstream + commit content and order again. + - Revert "UBUNTU: [Packaging] Rotate to 2021v1 signing key" + + [ Ubuntu: 5.15.0-23.23 ] + + * jammy/linux: 5.15.0-23.23 -proposed tracker (LP: #1964573) + * Packaging resync (LP: #1786013) + - [Packaging] resync dkms-build{,--nvidia-N} from LRMv5 + - debian/dkms-versions -- update from kernel-versions (main/master) + * [22.04 FEAT] KVM: Enable GISA support for Secure Execution guests + (LP: #1959977) + - KVM: s390: pv: make use of ultravisor AIV support + * intel_iommu breaks Intel IPU6 camera: isys port open ready failed -16 + (LP: #1958004) + - SAUCE: iommu: intel-ipu: use IOMMU passthrough mode for Intel IPUs + * CVE-2022-23960 + - ARM: report Spectre v2 status through sysfs + - ARM: early traps initialisation + - ARM: use LOADADDR() to get load address of sections + - ARM: Spectre-BHB workaround + - ARM: include unprivileged BPF status in Spectre V2 reporting + - arm64: Add Neoverse-N2, Cortex-A710 CPU part definition + - arm64: Add HWCAP for self-synchronising virtual counter + - arm64: Add Cortex-X2 CPU part definition + - arm64: add ID_AA64ISAR2_EL1 sys register + - arm64: cpufeature: add HWCAP for FEAT_AFP + - arm64: cpufeature: add HWCAP for FEAT_RPRES + - arm64: entry.S: Add ventry overflow sanity checks + - arm64: spectre: Rename spectre_v4_patch_fw_mitigation_conduit + - KVM: arm64: Allow indirect vectors to be used without SPECTRE_V3A + - arm64: entry: Make the trampoline cleanup optional + - arm64: entry: Free up another register on kpti's tramp_exit path + - arm64: entry: Move the trampoline data page before the text page + - arm64: entry: Allow tramp_alias to access symbols after the 4K boundary + - arm64: entry: Don't assume tramp_vectors is the start of the vectors + - arm64: entry: Move trampoline macros out of ifdef'd section + - arm64: entry: Make the kpti trampoline's kpti sequence optional + - arm64: entry: Allow the trampoline text to occupy multiple pages + - arm64: entry: Add non-kpti __bp_harden_el1_vectors for mitigations + - arm64: entry: Add vectors that have the bhb mitigation sequences + - arm64: entry: Add macro for reading symbol addresses from the trampoline + - arm64: Add percpu vectors for EL1 + - arm64: proton-pack: Report Spectre-BHB vulnerabilities as part of Spectre-v2 + - arm64: Mitigate spectre style branch history side channels + - KVM: arm64: Allow SMCCC_ARCH_WORKAROUND_3 to be discovered and migrated + - arm64: Use the clearbhb instruction in mitigations + - arm64: proton-pack: Include unprivileged eBPF status in Spectre v2 + mitigation reporting + - ARM: fix build error when BPF_SYSCALL is disabled + * CVE-2021-26401 + - x86/speculation: Use generic retpoline by default on AMD + - x86/speculation: Update link to AMD speculation whitepaper + - x86/speculation: Warn about Spectre v2 LFENCE mitigation + - x86/speculation: Warn about eIBRS + LFENCE + Unprivileged eBPF + SMT + * CVE-2022-0001 + - x86,bugs: Unconditionally allow spectre_v2=retpoline,amd + - x86/speculation: Rename RETPOLINE_AMD to RETPOLINE_LFENCE + - x86/speculation: Add eIBRS + Retpoline options + - Documentation/hw-vuln: Update spectre doc + - x86/speculation: Include unprivileged eBPF status in Spectre v2 mitigation + reporting + * Jammy update: v5.15.27 upstream stable release (LP: #1964361) + - mac80211_hwsim: report NOACK frames in tx_status + - mac80211_hwsim: initialize ieee80211_tx_info at hw_scan_work + - i2c: bcm2835: Avoid clock stretching timeouts + - ASoC: rt5668: do not block workqueue if card is unbound + - ASoC: rt5682: do not block workqueue if card is unbound + - regulator: core: fix false positive in regulator_late_cleanup() + - Input: clear BTN_RIGHT/MIDDLE on buttonpads + - btrfs: get rid of warning on transaction commit when using flushoncommit + - KVM: arm64: vgic: Read HW interrupt pending state from the HW + - block: loop:use kstatfs.f_bsize of backing file to set discard granularity + - tipc: fix a bit overflow in tipc_crypto_key_rcv() + - cifs: do not use uninitialized data in the owner/group sid + - cifs: fix double free race when mount fails in cifs_get_root() + - cifs: modefromsids must add an ACE for authenticated users + - selftests/seccomp: Fix seccomp failure by adding missing headers + - drm/amd/pm: correct UMD pstate clocks for Dimgrey Cavefish and Beige Goby + - dmaengine: shdma: Fix runtime PM imbalance on error + - i2c: cadence: allow COMPILE_TEST + - i2c: imx: allow COMPILE_TEST + - i2c: qup: allow COMPILE_TEST + - net: usb: cdc_mbim: avoid altsetting toggling for Telit FN990 + - block-map: add __GFP_ZERO flag for alloc_page in function bio_copy_kern + - usb: gadget: don't release an existing dev->buf + - usb: gadget: clear related members when goto fail + - exfat: reuse exfat_inode_info variable instead of calling EXFAT_I() + - exfat: fix i_blocks for files truncated over 4 GiB + - tracing: Add test for user space strings when filtering on string pointers + - arm64: Mark start_backtrace() notrace and NOKPROBE_SYMBOL + - serial: stm32: prevent TDR register overwrite when sending x_char + - ext4: drop ineligible txn start stop APIs + - ext4: simplify updating of fast commit stats + - ext4: fast commit may not fallback for ineligible commit + - ext4: fast commit may miss file actions + - sched/fair: Fix fault in reweight_entity + - ata: pata_hpt37x: fix PCI clock detection + - drm/amdgpu: check vm ready by amdgpu_vm->evicting flag + - tracing: Add ustring operation to filtering string pointers + - ipv6: fix skb drops in igmp6_event_query() and igmp6_event_report() + - NFSD: Have legacy NFSD WRITE decoders use xdr_stream_subsegment() + - NFSD: Fix zero-length NFSv3 WRITEs + - io_uring: fix no lock protection for ctx->cq_extra + - tools/resolve_btf_ids: Close ELF file on error + - mtd: spi-nor: Fix mtd size for s3an flashes + - MIPS: fix local_{add,sub}_return on MIPS64 + - signal: In get_signal test for signal_group_exit every time through the loop + - PCI: mediatek-gen3: Disable DVFSRC voltage request + - PCI: rcar: Check if device is runtime suspended instead of + __clk_is_enabled() + - PCI: dwc: Do not remap invalid res + - PCI: aardvark: Fix checking for MEM resource type + - KVM: VMX: Don't unblock vCPU w/ Posted IRQ if IRQs are disabled in guest + - KVM: s390: Ensure kvm_arch_no_poll() is read once when blocking vCPU + - KVM: VMX: Read Posted Interrupt "control" exactly once per loop iteration + - KVM: X86: Ensure that dirty PDPTRs are loaded + - KVM: x86: Handle 32-bit wrap of EIP for EMULTYPE_SKIP with flat code seg + - KVM: x86: Exit to userspace if emulation prepared a completion callback + - i3c: fix incorrect address slot lookup on 64-bit + - i3c/master/mipi-i3c-hci: Fix a potentially infinite loop in + 'hci_dat_v1_get_index()' + - tracing: Do not let synth_events block other dyn_event systems during create + - Input: ti_am335x_tsc - set ADCREFM for X configuration + - Input: ti_am335x_tsc - fix STEPCONFIG setup for Z2 + - PCI: mvebu: Check for errors from pci_bridge_emul_init() call + - PCI: mvebu: Do not modify PCI IO type bits in conf_write + - PCI: mvebu: Fix support for bus mastering and PCI_COMMAND on emulated bridge + - PCI: mvebu: Fix configuring secondary bus of PCIe Root Port via emulated + bridge + - PCI: mvebu: Setup PCIe controller to Root Complex mode + - PCI: mvebu: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge + - PCI: mvebu: Fix support for PCI_EXP_DEVCTL on emulated bridge + - PCI: mvebu: Fix support for PCI_EXP_RTSTA on emulated bridge + - PCI: mvebu: Fix support for DEVCAP2, DEVCTL2 and LNKCTL2 registers on + emulated bridge + - NFSD: Fix verifier returned in stable WRITEs + - Revert "nfsd: skip some unnecessary stats in the v4 case" + - nfsd: fix crash on COPY_NOTIFY with special stateid + - x86/hyperv: Properly deal with empty cpumasks in hyperv_flush_tlb_multi() + - drm/i915: don't call free_mmap_offset when purging + - SUNRPC: Fix sockaddr handling in the svc_xprt_create_error trace point + - SUNRPC: Fix sockaddr handling in svcsock_accept_class trace points + - drm/sun4i: dw-hdmi: Fix missing put_device() call in sun8i_hdmi_phy_get + - drm/atomic: Check new_crtc_state->active to determine if CRTC needs disable + in self refresh mode + - ntb_hw_switchtec: Fix pff ioread to read into mmio_part_cfg_all + - ntb_hw_switchtec: Fix bug with more than 32 partitions + - drm/amdkfd: Check for null pointer after calling kmemdup + - drm/amdgpu: use spin_lock_irqsave to avoid deadlock by local interrupt + - i3c: master: dw: check return of dw_i3c_master_get_free_pos() + - dma-buf: cma_heap: Fix mutex locking section + - tracing/uprobes: Check the return value of kstrdup() for tu->filename + - tracing/probes: check the return value of kstrndup() for pbuf + - mm: defer kmemleak object creation of module_alloc() + - kasan: fix quarantine conflicting with init_on_free + - selftests/vm: make charge_reserved_hugetlb.sh work with existing cgroup + setting + - hugetlbfs: fix off-by-one error in hugetlb_vmdelete_list() + - drm/amdgpu/display: Only set vblank_disable_immediate when PSR is not + enabled + - drm/amdgpu: filter out radeon PCI device IDs + - drm/amdgpu: filter out radeon secondary ids as well + - drm/amd/display: Use adjusted DCN301 watermarks + - drm/amd/display: move FPU associated DSC code to DML folder + - ethtool: Fix link extended state for big endian + - octeontx2-af: Optimize KPU1 processing for variable-length headers + - octeontx2-af: Reset PTP config in FLR handler + - octeontx2-af: cn10k: RPM hardware timestamp configuration + - octeontx2-af: cn10k: Use appropriate register for LMAC enable + - octeontx2-af: Adjust LA pointer for cpt parse header + - octeontx2-af: Add KPU changes to parse NGIO as separate layer + - net/mlx5e: IPsec: Refactor checksum code in tx data path + - net/mlx5e: IPsec: Fix crypto offload for non TCP/UDP encapsulated traffic + - bpf: Use u64_stats_t in struct bpf_prog_stats + - bpf: Fix possible race in inc_misses_counter + - drm/amd/display: Update watermark values for DCN301 + - drm: mxsfb: Set fallback bus format when the bridge doesn't provide one + - drm: mxsfb: Fix NULL pointer dereference + - riscv/mm: Add XIP_FIXUP for phys_ram_base + - drm/i915/display: split out dpt out of intel_display.c + - drm/i915/display: Move DRRS code its own file + - drm/i915: Disable DRRS on IVB/HSW port != A + - gve: Recording rx queue before sending to napi + - net: dsa: ocelot: seville: utilize of_mdiobus_register + - net: dsa: seville: register the mdiobus under devres + - ibmvnic: don't release napi in __ibmvnic_open() + - of: net: move of_net under net/ + - net: ethernet: litex: Add the dependency on HAS_IOMEM + - drm/mediatek: mtk_dsi: Reset the dsi0 hardware + - cifs: protect session channel fields with chan_lock + - cifs: fix confusing unneeded warning message on smb2.1 and earlier + - drm/amd/display: Fix stream->link_enc unassigned during stream removal + - bnxt_en: Fix occasional ethtool -t loopback test failures + - drm/amd/display: For vblank_disable_immediate, check PSR is really used + - PCI: mvebu: Fix device enumeration regression + - net: of: fix stub of_net helpers for CONFIG_NET=n + - ALSA: intel_hdmi: Fix reference to PCM buffer address + - ucounts: Fix systemd LimitNPROC with private users regression + - riscv/efi_stub: Fix get_boot_hartid_from_fdt() return value + - riscv: Fix config KASAN && SPARSEMEM && !SPARSE_VMEMMAP + - riscv: Fix config KASAN && DEBUG_VIRTUAL + - iwlwifi: mvm: check debugfs_dir ptr before use + - ASoC: ops: Shift tested values in snd_soc_put_volsw() by +min + - iommu/vt-d: Fix double list_add when enabling VMD in scalable mode + - iommu/amd: Recover from event log overflow + - drm/i915: s/JSP2/ICP2/ PCH + - drm/amd/display: Reduce dmesg error to a debug print + - xen/netfront: destroy queues before real_num_tx_queues is zeroed + - thermal: core: Fix TZ_GET_TRIP NULL pointer dereference + - mac80211: fix EAPoL rekey fail in 802.3 rx path + - blktrace: fix use after free for struct blk_trace + - ntb: intel: fix port config status offset for SPR + - mm: Consider __GFP_NOWARN flag for oversized kvmalloc() calls + - xfrm: fix MTU regression + - netfilter: fix use-after-free in __nf_register_net_hook() + - bpf, sockmap: Do not ignore orig_len parameter + - xfrm: fix the if_id check in changelink + - xfrm: enforce validity of offload input flags + - e1000e: Correct NVM checksum verification flow + - net: fix up skbs delta_truesize in UDP GRO frag_list + - netfilter: nf_queue: don't assume sk is full socket + - netfilter: nf_queue: fix possible use-after-free + - netfilter: nf_queue: handle socket prefetch + - batman-adv: Request iflink once in batadv-on-batadv check + - batman-adv: Request iflink once in batadv_get_real_netdevice + - batman-adv: Don't expect inter-netns unique iflink indices + - net: ipv6: ensure we call ipv6_mc_down() at most once + - net: dcb: flush lingering app table entries for unregistered devices + - net: ipa: add an interconnect dependency + - net/smc: fix connection leak + - net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error generated by client + - net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error cause by server + - btrfs: fix ENOSPC failure when attempting direct IO write into NOCOW range + - mac80211: fix forwarded mesh frames AC & queue selection + - net: stmmac: fix return value of __setup handler + - mac80211: treat some SAE auth steps as final + - iavf: Fix missing check for running netdev + - net: sxgbe: fix return value of __setup handler + - ibmvnic: register netdev after init of adapter + - net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe() + - ixgbe: xsk: change !netif_carrier_ok() handling in ixgbe_xmit_zc() + - iavf: Fix deadlock in iavf_reset_task + - efivars: Respect "block" flag in efivar_entry_set_safe() + - auxdisplay: lcd2s: Fix lcd2s_redefine_char() feature + - firmware: arm_scmi: Remove space in MODULE_ALIAS name + - ASoC: cs4265: Fix the duplicated control name + - auxdisplay: lcd2s: Fix memory leak in ->remove() + - auxdisplay: lcd2s: Use proper API to free the instance of charlcd object + - can: gs_usb: change active_channels's type from atomic_t to u8 + - iommu/tegra-smmu: Fix missing put_device() call in tegra_smmu_find + - arm64: dts: rockchip: Switch RK3399-Gru DP to SPDIF output + - igc: igc_read_phy_reg_gpy: drop premature return + - ARM: Fix kgdb breakpoint for Thumb2 + - mips: setup: fix setnocoherentio() boolean setting + - ARM: 9182/1: mmu: fix returns from early_param() and __setup() functions + - mptcp: Correctly set DATA_FIN timeout when number of retransmits is large + - selftests: mlxsw: tc_police_scale: Make test more robust + - pinctrl: sunxi: Use unique lockdep classes for IRQs + - igc: igc_write_phy_reg_gpy: drop premature return + - ibmvnic: free reset-work-item when flushing + - memfd: fix F_SEAL_WRITE after shmem huge page allocated + - s390/extable: fix exception table sorting + - sched: Fix yet more sched_fork() races + - arm64: dts: juno: Remove GICv2m dma-range + - iommu/amd: Fix I/O page table memory leak + - MIPS: ralink: mt7621: do memory detection on KSEG1 + - ARM: dts: switch timer config to common devkit8000 devicetree + - ARM: dts: Use 32KiHz oscillator on devkit8000 + - soc: fsl: guts: Revert commit 3c0d64e867ed + - soc: fsl: guts: Add a missing memory allocation failure check + - soc: fsl: qe: Check of ioremap return value + - netfilter: nf_tables: prefer kfree_rcu(ptr, rcu) variant + - ARM: tegra: Move panels to AUX bus + - can: etas_es58x: change opened_channel_cnt's type from atomic_t to u8 + - net: stmmac: enhance XDP ZC driver level switching performance + - net: stmmac: only enable DMA interrupts when ready + - ibmvnic: initialize rc before completing wait + - ibmvnic: define flush_reset_queue helper + - ibmvnic: complete init_done on transport events + - net: chelsio: cxgb3: check the return value of pci_find_capability() + - net: sparx5: Fix add vlan when invalid operation + - iavf: Refactor iavf state machine tracking + - iavf: Add __IAVF_INIT_FAILED state + - iavf: Combine init and watchdog state machines + - iavf: Add trace while removing device + - iavf: Rework mutexes for better synchronisation + - iavf: Add helper function to go from pci_dev to adapter + - iavf: Fix kernel BUG in free_msi_irqs + - iavf: Add waiting so the port is initialized in remove + - iavf: Fix init state closure on remove + - iavf: Fix locking for VIRTCHNL_OP_GET_OFFLOAD_VLAN_V2_CAPS + - iavf: Fix race in init state + - iavf: Fix __IAVF_RESETTING state usage + - drm/i915/guc/slpc: Correct the param count for unset param + - drm/bridge: ti-sn65dsi86: Properly undo autosuspend + - e1000e: Fix possible HW unit hang after an s0ix exit + - MIPS: ralink: mt7621: use bitwise NOT instead of logical + - nl80211: Handle nla_memdup failures in handle_nan_filter + - drm/amdgpu: fix suspend/resume hang regression + - net: dcb: disable softirqs in dcbnl_flush_dev() + - selftests: mlxsw: resource_scale: Fix return value + - net: stmmac: perserve TX and RX coalesce value during XDP setup + - iavf: do not override the adapter state in the watchdog task (again) + - iavf: missing unlocks in iavf_watchdog_task() + - MAINTAINERS: adjust file entry for of_net.c after movement + - Input: elan_i2c - move regulator_[en|dis]able() out of + elan_[en|dis]able_power() + - Input: elan_i2c - fix regulator enable count imbalance after suspend/resume + - Input: samsung-keypad - properly state IOMEM dependency + - HID: add mapping for KEY_DICTATE + - HID: add mapping for KEY_ALL_APPLICATIONS + - tracing/histogram: Fix sorting on old "cpu" value + - tracing: Fix return value of __setup handlers + - btrfs: fix lost prealloc extents beyond eof after full fsync + - btrfs: fix relocation crash due to premature return from + btrfs_commit_transaction() + - btrfs: do not WARN_ON() if we have PageError set + - btrfs: qgroup: fix deadlock between rescan worker and remove qgroup + - btrfs: add missing run of delayed items after unlink during log replay + - btrfs: do not start relocation until in progress drops are done + - Revert "xfrm: xfrm_state_mtu should return at least 1280 for ipv6" + - proc: fix documentation and description of pagemap + - KVM: x86/mmu: Passing up the error state of mmu_alloc_shadow_roots() + - hamradio: fix macro redefine warning + - Linux 5.15.27 + - [Config] updateconfigs + * devices on thunderbolt dock are not recognized on adl-p platform + (LP: #1955016) + - thunderbolt: Tear down existing tunnels when resuming from hibernate + - thunderbolt: Runtime resume USB4 port when retimers are scanned + - thunderbolt: Do not allow subtracting more NFC credits than configured + - thunderbolt: Do not program path HopIDs for USB4 routers + - thunderbolt: Add debug logging of DisplayPort resource allocation + * MT7921[14c3:7961] ASPM is disabled and it affects power consumption + (LP: #1955882) + - mt76: mt7921: enable aspm by default + * Add proper runtime PM support to Realtek PCIe cardreader (LP: #1963615) + - mmc: rtsx: Use pm_runtime_{get, put}() to handle runtime PM + - misc: rtsx: Rework runtime power management flow + - misc: rtsx: Cleanup power management ops + - misc: rtsx: Quiesce rts5249 on system suspend + - mmc: rtsx: Let MMC core handle runtime PM + - misc: rtsx: conditionally build rtsx_pm_power_saving() + - misc: rtsx: rts522a rts5228 rts5261 support Runtime PM + - mmc: rtsx: Fix build errors/warnings for unused variable + - mmc: rtsx: add 74 Clocks in power on flow + * [22.04 FEAT] In-kernel crypto: SIMD implementation of chacha20 + (LP: #1853152) + - s390/crypto: add SIMD implementation for ChaCha20 + - s390/crypto: fix compile error for ChaCha20 module + * Add ConnectX7 support and bug fixes to Jammy (LP: #1962185) + - IB/mlx5: Expose NDR speed through MAD + * INVALID or PRIVATE BUG (LP: #1959890) + - [Config] Deactivate CONFIG_QETH_OSX kernel config option + * Move virtual graphics drivers from linux-modules-extra to linux-modules + (LP: #1960633) + - [Packaging] Move VM DRM drivers into modules + * Not able to enter s2idle state on AMD platforms (LP: #1961121) + - HID: amd_sfh: Handle amd_sfh work buffer in PM ops + - HID: amd_sfh: Disable the interrupt for all command + - HID: amd_sfh: Add functionality to clear interrupts + - HID: amd_sfh: Add interrupt handler to process interrupts + * INVALID or PRIVATE BUG (LP: #1960580) + - s390/kexec_file: move kernel image size check + - s390: support command lines longer than 896 bytes + * [UBUNTU 20.04] kernel: Add support for CPU-MF counter second version 7 + (LP: #1960182) + - s390/cpumf: Support for CPU Measurement Facility CSVN 7 + - s390/cpumf: Support for CPU Measurement Sampling Facility LS bit + * [SRU]PCI: vmd: Do not disable MSI-X remapping if interrupt remapping is + enabled by IOMMU (LP: #1937295) + - PCI: vmd: Do not disable MSI-X remapping if interrupt remapping is enabled + by IOMMU + * Jammy update: v5.15.26 upstream stable release (LP: #1963891) + - mm/filemap: Fix handling of THPs in generic_file_buffered_read() + - cgroup/cpuset: Fix a race between cpuset_attach() and cpu hotplug + - cgroup-v1: Correct privileges check in release_agent writes + - x86/ptrace: Fix xfpregs_set()'s incorrect xmm clearing + - btrfs: tree-checker: check item_size for inode_item + - btrfs: tree-checker: check item_size for dev_item + - clk: jz4725b: fix mmc0 clock gating + - io_uring: don't convert to jiffies for waiting on timeouts + - io_uring: disallow modification of rsrc_data during quiesce + - selinux: fix misuse of mutex_is_locked() + - vhost/vsock: don't check owner in vhost_vsock_stop() while releasing + - parisc/unaligned: Fix fldd and fstd unaligned handlers on 32-bit kernel + - parisc/unaligned: Fix ldw() and stw() unalignment handlers + - KVM: x86/mmu: make apf token non-zero to fix bug + - drm/amd/display: Protect update_bw_bounding_box FPU code. + - drm/amd/pm: fix some OEM SKU specific stability issues + - drm/amd: Check if ASPM is enabled from PCIe subsystem + - drm/amdgpu: disable MMHUB PG for Picasso + - drm/amdgpu: do not enable asic reset for raven2 + - drm/i915: Widen the QGV point mask + - drm/i915: Correctly populate use_sagv_wm for all pipes + - drm/i915: Fix bw atomic check when switching between SAGV vs. no SAGV + - sr9700: sanity check for packet length + - USB: zaurus: support another broken Zaurus + - CDC-NCM: avoid overflow in sanity checking + - netfilter: xt_socket: fix a typo in socket_mt_destroy() + - netfilter: xt_socket: missing ifdef CONFIG_IP6_NF_IPTABLES dependency + - tee: export teedev_open() and teedev_close_context() + - optee: use driver internal tee_context for some rpc + - ping: remove pr_err from ping_lookup + - Revert "i40e: Fix reset bw limit when DCB enabled with 1 TC" + - gpu: host1x: Always return syncpoint value when waiting + - perf evlist: Fix failed to use cpu list for uncore events + - perf data: Fix double free in perf_session__delete() + - mptcp: fix race in incoming ADD_ADDR option processing + - mptcp: add mibs counter for ignored incoming options + - selftests: mptcp: fix diag instability + - selftests: mptcp: be more conservative with cookie MPJ limits + - bnx2x: fix driver load from initrd + - bnxt_en: Fix active FEC reporting to ethtool + - bnxt_en: Fix offline ethtool selftest with RDMA enabled + - bnxt_en: Fix incorrect multicast rx mask setting when not requested + - hwmon: Handle failure to register sensor with thermal zone correctly + - net/mlx5: Fix tc max supported prio for nic mode + - ice: check the return of ice_ptp_gettimex64 + - ice: initialize local variable 'tlv' + - net/mlx5: Update the list of the PCI supported devices + - bpf: Fix crash due to incorrect copy_map_value + - bpf: Do not try bpf_msg_push_data with len 0 + - selftests: bpf: Check bpf_msg_push_data return value + - bpf: Fix a bpf_timer initialization issue + - bpf: Add schedule points in batch ops + - io_uring: add a schedule point in io_add_buffers() + - net: __pskb_pull_tail() & pskb_carve_frag_list() drop_monitor friends + - nvme: also mark passthrough-only namespaces ready in nvme_update_ns_info + - tipc: Fix end of loop tests for list_for_each_entry() + - gso: do not skip outer ip header in case of ipip and net_failover + - net: mv643xx_eth: process retval from of_get_mac_address + - openvswitch: Fix setting ipv6 fields causing hw csum failure + - drm/edid: Always set RGB444 + - net/mlx5e: Fix wrong return value on ioctl EEPROM query failure + - drm/vc4: crtc: Fix runtime_pm reference counting + - drm/i915/dg2: Print PHY name properly on calibration error + - net/sched: act_ct: Fix flow table lookup after ct clear or switching zones + - net: ll_temac: check the return value of devm_kmalloc() + - net: Force inlining of checksum functions in net/checksum.h + - netfilter: nf_tables: unregister flowtable hooks on netns exit + - nfp: flower: Fix a potential leak in nfp_tunnel_add_shared_mac() + - net: mdio-ipq4019: add delay after clock enable + - netfilter: nf_tables: fix memory leak during stateful obj update + - net/smc: Use a mutex for locking "struct smc_pnettable" + - surface: surface3_power: Fix battery readings on batteries without a serial + number + - udp_tunnel: Fix end of loop test in udp_tunnel_nic_unregister() + - net/mlx5: DR, Cache STE shadow memory + - ibmvnic: schedule failover only if vioctl fails + - net/mlx5: DR, Don't allow match on IP w/o matching on full + ethertype/ip_version + - net/mlx5: Fix possible deadlock on rule deletion + - net/mlx5: Fix wrong limitation of metadata match on ecpf + - net/mlx5: DR, Fix the threshold that defines when pool sync is initiated + - net/mlx5e: MPLSoUDP decap, fix check for unsupported matches + - net/mlx5e: kTLS, Use CHECKSUM_UNNECESSARY for device-offloaded packets + - net/mlx5: Update log_max_qp value to be 17 at most + - spi: spi-zynq-qspi: Fix a NULL pointer dereference in + zynq_qspi_exec_mem_op() + - gpio: rockchip: Reset int_bothedge when changing trigger + - regmap-irq: Update interrupt clear register for proper reset + - net-timestamp: convert sk->sk_tskey to atomic_t + - RDMA/rtrs-clt: Fix possible double free in error case + - RDMA/rtrs-clt: Move free_permit from free_clt to rtrs_clt_close + - bnxt_en: Increase firmware message response DMA wait time + - configfs: fix a race in configfs_{,un}register_subsystem() + - RDMA/ib_srp: Fix a deadlock + - tracing: Dump stacktrace trigger to the corresponding instance + - tracing: Have traceon and traceoff trigger honor the instance + - iio:imu:adis16480: fix buffering for devices with no burst mode + - iio: adc: men_z188_adc: Fix a resource leak in an error handling path + - iio: adc: tsc2046: fix memory corruption by preventing array overflow + - iio: adc: ad7124: fix mask used for setting AIN_BUFP & AIN_BUFM bits + - iio: accel: fxls8962af: add padding to regmap for SPI + - iio: imu: st_lsm6dsx: wait for settling time in st_lsm6dsx_read_oneshot + - iio: Fix error handling for PM + - sc16is7xx: Fix for incorrect data being transmitted + - ata: pata_hpt37x: disable primary channel on HPT371 + - Revert "USB: serial: ch341: add new Product ID for CH341A" + - usb: gadget: rndis: add spinlock for rndis response list + - USB: gadget: validate endpoint index for xilinx udc + - tracefs: Set the group ownership in apply_options() not parse_options() + - USB: serial: option: add support for DW5829e + - USB: serial: option: add Telit LE910R1 compositions + - usb: dwc2: drd: fix soft connect when gadget is unconfigured + - usb: dwc3: pci: Add "snps,dis_u2_susphy_quirk" for Intel Bay Trail + - usb: dwc3: pci: Fix Bay Trail phy GPIO mappings + - usb: dwc3: gadget: Let the interrupt handler disable bottom halves. + - xhci: re-initialize the HC during resume if HCE was set + - xhci: Prevent futile URB re-submissions due to incorrect return value. + - nvmem: core: Fix a conflict between MTD and NVMEM on wp-gpios property + - mtd: core: Fix a conflict between MTD and NVMEM on wp-gpios property + - driver core: Free DMA range map when device is released + - btrfs: prevent copying too big compressed lzo segment + - RDMA/cma: Do not change route.addr.src_addr outside state checks + - thermal: int340x: fix memory leak in int3400_notify() + - staging: fbtft: fb_st7789v: reset display before initialization + - tps6598x: clear int mask on probe failure + - IB/qib: Fix duplicate sysfs directory name + - riscv: fix nommu_k210_sdcard_defconfig + - riscv: fix oops caused by irqsoff latency tracer + - tty: n_gsm: fix encoding of control signal octet bit DV + - tty: n_gsm: fix proper link termination after failed open + - tty: n_gsm: fix NULL pointer access due to DLCI release + - tty: n_gsm: fix wrong tty control line for flow control + - tty: n_gsm: fix wrong modem processing in convergence layer type 2 + - tty: n_gsm: fix deadlock in gsmtty_open() + - pinctrl: fix loop in k210_pinconf_get_drive() + - pinctrl: k210: Fix bias-pull-up + - gpio: tegra186: Fix chip_data type confusion + - memblock: use kfree() to release kmalloced memblock regions + - ice: Fix race conditions between virtchnl handling and VF ndo ops + - ice: fix concurrent reset and removal of VFs + - Linux 5.15.26 + * Jammy update: v5.15.25 upstream stable release (LP: #1963890) + - drm/nouveau/pmu/gm200-: use alternate falcon reset sequence + - fs/proc: task_mmu.c: don't read mapcount for migration entry + - btrfs: zoned: cache reported zone during mount + - HID:Add support for UGTABLET WP5540 + - Revert "svm: Add warning message for AVIC IPI invalid target" + - parisc: Show error if wrong 32/64-bit compiler is being used + - serial: parisc: GSC: fix build when IOSAPIC is not set + - parisc: Drop __init from map_pages declaration + - parisc: Fix data TLB miss in sba_unmap_sg + - parisc: Fix sglist access in ccio-dma.c + - mmc: block: fix read single on recovery logic + - mm: don't try to NUMA-migrate COW pages that have other uses + - HID: amd_sfh: Add illuminance mask to limit ALS max value + - HID: i2c-hid: goodix: Fix a lockdep splat + - HID: amd_sfh: Increase sensor command timeout + - HID: amd_sfh: Correct the structure field name + - PCI: hv: Fix NUMA node assignment when kernel boots with custom NUMA + topology + - parisc: Add ioread64_lo_hi() and iowrite64_lo_hi() + - btrfs: send: in case of IO error log it + - platform/x86: touchscreen_dmi: Add info for the RWC NANOTE P8 AY07J 2-in-1 + - platform/x86: ISST: Fix possible circular locking dependency detected + - kunit: tool: Import missing importlib.abc + - selftests: rtc: Increase test timeout so that all tests run + - kselftest: signal all child processes + - net: ieee802154: at86rf230: Stop leaking skb's + - selftests/zram: Skip max_comp_streams interface on newer kernel + - selftests/zram01.sh: Fix compression ratio calculation + - selftests/zram: Adapt the situation that /dev/zram0 is being used + - selftests: openat2: Print also errno in failure messages + - selftests: openat2: Add missing dependency in Makefile + - selftests: openat2: Skip testcases that fail with EOPNOTSUPP + - selftests: skip mincore.check_file_mmap when fs lacks needed support + - ax25: improve the incomplete fix to avoid UAF and NPD bugs + - pinctrl: bcm63xx: fix unmet dependency on REGMAP for GPIO_REGMAP + - vfs: make freeze_super abort when sync_filesystem returns error + - quota: make dquot_quota_sync return errors from ->sync_fs + - scsi: pm80xx: Fix double completion for SATA devices + - kselftest: Fix vdso_test_abi return status + - scsi: core: Reallocate device's budget map on queue depth change + - scsi: pm8001: Fix use-after-free for aborted TMF sas_task + - scsi: pm8001: Fix use-after-free for aborted SSP/STP sas_task + - drm/amd: Warn users about potential s0ix problems + - nvme: fix a possible use-after-free in controller reset during load + - nvme-tcp: fix possible use-after-free in transport error_recovery work + - nvme-rdma: fix possible use-after-free in transport error_recovery work + - net: sparx5: do not refer to skb after passing it on + - drm/amd: add support to check whether the system is set to s3 + - drm/amd: Only run s3 or s0ix if system is configured properly + - drm/amdgpu: fix logic inversion in check + - x86/Xen: streamline (and fix) PV CPU enumeration + - Revert "module, async: async_synchronize_full() on module init iff async is + used" + - gcc-plugins/stackleak: Use noinstr in favor of notrace + - random: wake up /dev/random writers after zap + - KVM: x86/xen: Fix runstate updates to be atomic when preempting vCPU + - KVM: x86: nSVM/nVMX: set nested_run_pending on VM entry which is a result of + RSM + - KVM: x86: SVM: don't passthrough SMAP/SMEP/PKE bits in !NPT && !gCR0.PG case + - KVM: x86: nSVM: fix potential NULL derefernce on nested migration + - KVM: x86: nSVM: mark vmcb01 as dirty when restoring SMM saved state + - iwlwifi: fix use-after-free + - drm/radeon: Fix backlight control on iMac 12,1 + - drm/atomic: Don't pollute crtc_state->mode_blob with error pointers + - drm/amd/pm: correct the sequence of sending gpu reset msg + - drm/amdgpu: skipping SDMA hw_init and hw_fini for S0ix. + - drm/i915/opregion: check port number bounds for SWSCI display power state + - drm/i915: Fix dbuf slice config lookup + - drm/i915: Fix mbus join config lookup + - vsock: remove vsock from connected table when connect is interrupted by a + signal + - drm/cma-helper: Set VM_DONTEXPAND for mmap + - drm/i915/gvt: Make DRM_I915_GVT depend on X86 + - drm/i915/ttm: tweak priority hint selection + - iwlwifi: pcie: fix locking when "HW not ready" + - iwlwifi: pcie: gen2: fix locking when "HW not ready" + - iwlwifi: mvm: don't send SAR GEO command for 3160 devices + - selftests: netfilter: fix exit value for nft_concat_range + - netfilter: nft_synproxy: unregister hooks on init error path + - selftests: netfilter: disable rp_filter on router + - ipv4: fix data races in fib_alias_hw_flags_set + - ipv6: fix data-race in fib6_info_hw_flags_set / fib6_purge_rt + - ipv6: mcast: use rcu-safe version of ipv6_get_lladdr() + - ipv6: per-netns exclusive flowlabel checks + - Revert "net: ethernet: bgmac: Use devm_platform_ioremap_resource_byname" + - mac80211: mlme: check for null after calling kmemdup + - brcmfmac: firmware: Fix crash in brcm_alt_fw_path + - cfg80211: fix race in netlink owner interface destruction + - net: dsa: lan9303: fix reset on probe + - net: dsa: mv88e6xxx: flush switchdev FDB workqueue before removing VLAN + - net: dsa: lantiq_gswip: fix use after free in gswip_remove() + - net: dsa: lan9303: handle hwaccel VLAN tags + - net: dsa: lan9303: add VLAN IDs to master device + - net: ieee802154: ca8210: Fix lifs/sifs periods + - ping: fix the dif and sdif check in ping_lookup + - bonding: force carrier update when releasing slave + - drop_monitor: fix data-race in dropmon_net_event / trace_napi_poll_hit + - net_sched: add __rcu annotation to netdev->qdisc + - bonding: fix data-races around agg_select_timer + - libsubcmd: Fix use-after-free for realloc(..., 0) + - net/smc: Avoid overwriting the copies of clcsock callback functions + - net: phy: mediatek: remove PHY mode check on MT7531 + - atl1c: fix tx timeout after link flap on Mikrotik 10/25G NIC + - tipc: fix wrong publisher node address in link publications + - dpaa2-switch: fix default return of dpaa2_switch_flower_parse_mirror_key + - dpaa2-eth: Initialize mutex used in one step timestamping path + - net: bridge: multicast: notify switchdev driver whenever MC processing gets + disabled + - perf bpf: Defer freeing string after possible strlen() on it + - selftests/exec: Add non-regular to TEST_GEN_PROGS + - arm64: Correct wrong label in macro __init_el2_gicv3 + - ALSA: usb-audio: revert to IMPLICIT_FB_FIXED_DEV for M-Audio FastTrack Ultra + - ALSA: hda/realtek: Add quirk for Legion Y9000X 2019 + - ALSA: hda/realtek: Fix deadlock by COEF mutex + - ALSA: hda: Fix regression on forced probe mask option + - ALSA: hda: Fix missing codec probe on Shenker Dock 15 + - ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw() + - ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw_range() + - ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw_sx() + - ASoC: ops: Fix stereo change notifications in snd_soc_put_xr_sx() + - cifs: fix set of group SID via NTSD xattrs + - powerpc/603: Fix boot failure with DEBUG_PAGEALLOC and KFENCE + - powerpc/lib/sstep: fix 'ptesync' build error + - mtd: rawnand: gpmi: don't leak PM reference in error path + - smb3: fix snapshot mount option + - tipc: fix wrong notification node addresses + - scsi: ufs: Remove dead code + - scsi: ufs: Fix a deadlock in the error handler + - ASoC: tas2770: Insert post reset delay + - ASoC: qcom: Actually clear DMA interrupt register for HDMI + - block/wbt: fix negative inflight counter when remove scsi device + - NFS: Remove an incorrect revalidation in nfs4_update_changeattr_locked() + - NFS: LOOKUP_DIRECTORY is also ok with symlinks + - NFS: Do not report writeback errors in nfs_getattr() + - tty: n_tty: do not look ahead for EOL character past the end of the buffer + - block: fix surprise removal for drivers calling blk_set_queue_dying + - mtd: rawnand: qcom: Fix clock sequencing in qcom_nandc_probe() + - mtd: parsers: qcom: Fix kernel panic on skipped partition + - mtd: parsers: qcom: Fix missing free for pparts in cleanup + - mtd: phram: Prevent divide by zero bug in phram_setup() + - mtd: rawnand: brcmnand: Fixed incorrect sub-page ECC status + - HID: elo: fix memory leak in elo_probe + - mtd: rawnand: ingenic: Fix missing put_device in ingenic_ecc_get + - Drivers: hv: vmbus: Fix memory leak in vmbus_add_channel_kobj + - KVM: x86/pmu: Refactoring find_arch_event() to pmc_perf_hw_id() + - KVM: x86/pmu: Don't truncate the PerfEvtSeln MSR when creating a perf event + - KVM: x86/pmu: Use AMD64_RAW_EVENT_MASK for PERF_TYPE_RAW + - ARM: OMAP2+: hwmod: Add of_node_put() before break + - ARM: OMAP2+: adjust the location of put_device() call in omapdss_init_of + - phy: usb: Leave some clocks running during suspend + - staging: vc04_services: Fix RCU dereference check + - phy: phy-mtk-tphy: Fix duplicated argument in phy-mtk-tphy + - irqchip/sifive-plic: Add missing thead,c900-plic match string + - x86/bug: Merge annotate_reachable() into _BUG_FLAGS() asm + - netfilter: conntrack: don't refresh sctp entries in closed state + - ksmbd: fix same UniqueId for dot and dotdot entries + - ksmbd: don't align last entry offset in smb2 query directory + - arm64: dts: meson-gx: add ATF BL32 reserved-memory region + - arm64: dts: meson-g12: add ATF BL32 reserved-memory region + - arm64: dts: meson-g12: drop BL32 region from SEI510/SEI610 + - pidfd: fix test failure due to stack overflow on some arches + - selftests: fixup build warnings in pidfd / clone3 tests + - mm: io_uring: allow oom-killer from io_uring_setup + - kconfig: let 'shell' return enough output for deep path names + - ata: libata-core: Disable TRIM on M88V29 + - soc: aspeed: lpc-ctrl: Block error printing on probe defer cases + - xprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create + - drm/rockchip: dw_hdmi: Do not leave clock enabled in error case + - tracing: Fix tp_printk option related with tp_printk_stop_on_boot + - display/amd: decrease message verbosity about watermarks table failure + - drm/amd/display: Cap pflip irqs per max otg number + - drm/amd/display: fix yellow carp wm clamping + - net: usb: qmi_wwan: Add support for Dell DW5829e + - net: macb: Align the dma and coherent dma masks + - kconfig: fix failing to generate auto.conf + - scsi: lpfc: Fix pt2pt NVMe PRLI reject LOGO loop + - EDAC: Fix calculation of returned address and next offset in + edac_align_ptr() + - ucounts: Handle wrapping in is_ucounts_overlimit + - ucounts: In set_cred_ucounts assume new->ucounts is non-NULL + - ucounts: Base set_cred_ucounts changes on the real user + - ucounts: Enforce RLIMIT_NPROC not RLIMIT_NPROC+1 + - lib/iov_iter: initialize "flags" in new pipe_buffer + - rlimit: Fix RLIMIT_NPROC enforcement failure caused by capability calls in + set_user + - ucounts: Move RLIMIT_NPROC handling after set_user + - net: sched: limit TC_ACT_REPEAT loops + - dmaengine: sh: rcar-dmac: Check for error num after setting mask + - dmaengine: stm32-dmamux: Fix PM disable depth imbalance in + stm32_dmamux_probe + - dmaengine: sh: rcar-dmac: Check for error num after dma_set_max_seg_size + - tests: fix idmapped mount_setattr test + - i2c: qcom-cci: don't delete an unregistered adapter + - i2c: qcom-cci: don't put a device tree node before i2c_add_adapter() + - dmaengine: ptdma: Fix the error handling path in pt_core_init() + - copy_process(): Move fd_install() out of sighand->siglock critical section + - scsi: qedi: Fix ABBA deadlock in qedi_process_tmf_resp() and + qedi_process_cmd_cleanup_resp() + - ice: enable parsing IPSEC SPI headers for RSS + - i2c: brcmstb: fix support for DSL and CM variants + - lockdep: Correct lock_classes index mapping + - Linux 5.15.25 + * Jammy update: v5.15.24 upstream stable release (LP: #1963889) + - integrity: check the return value of audit_log_start() + - ima: fix reference leak in asymmetric_verify() + - ima: Remove ima_policy file before directory + - ima: Allow template selection with ima_template[_fmt]= after ima_hash= + - ima: Do not print policy rule with inactive LSM labels + - mmc: sdhci-of-esdhc: Check for error num after setting mask + - mmc: core: Wait for command setting 'Power Off Notification' bit to complete + - can: isotp: fix potential CAN frame reception race in isotp_rcv() + - can: isotp: fix error path in isotp_sendmsg() to unlock wait queue + - net: phy: marvell: Fix RGMII Tx/Rx delays setting in 88e1121-compatible PHYs + - net: phy: marvell: Fix MDI-x polarity setting in 88e1118-compatible PHYs + - NFS: Fix initialisation of nfs_client cl_flags field + - NFSD: Fix NFSv3 SETATTR/CREATE's handling of large file sizes + - NFSD: Fix ia_size underflow + - NFSD: Clamp WRITE offsets + - NFSD: Fix offset type in I/O trace points + - NFSD: Fix the behavior of READ near OFFSET_MAX + - thermal/drivers/int340x: Improve the tcc offset saving for suspend/resume + - thermal/drivers/int340x: processor_thermal: Suppot 64 bit RFIM responses + - thermal: int340x: Limit Kconfig to 64-bit + - thermal/drivers/int340x: Fix RFIM mailbox write commands + - tracing: Propagate is_signed to expression + - NFS: change nfs_access_get_cached to only report the mask + - NFSv4 only print the label when its queried + - nfs: nfs4clinet: check the return value of kstrdup() + - NFSv4.1: Fix uninitialised variable in devicenotify + - NFSv4 remove zero number of fs_locations entries error check + - NFSv4 store server support for fs_location attribute + - NFSv4.1 query for fs_location attr on a new file system + - NFSv4 expose nfs_parse_server_name function + - NFSv4 handle port presence in fs_location server string + - SUNRPC allow for unspecified transport time in rpc_clnt_add_xprt + - net/sunrpc: fix reference count leaks in rpc_sysfs_xprt_state_change + - sunrpc: Fix potential race conditions in rpc_sysfs_xprt_state_change() + - irqchip/realtek-rtl: Service all pending interrupts + - perf/x86/rapl: fix AMD event handling + - x86/perf: Avoid warning for Arch LBR without XSAVE + - sched: Avoid double preemption in __cond_resched_*lock*() + - drm/vc4: Fix deadlock on DSI device attach error + - drm: panel-orientation-quirks: Add quirk for the 1Netbook OneXPlayer + - net: sched: Clarify error message when qdisc kind is unknown + - powerpc/fixmap: Fix VM debug warning on unmap + - scsi: target: iscsi: Make sure the np under each tpg is unique + - scsi: ufs: ufshcd-pltfrm: Check the return value of devm_kstrdup() + - scsi: qedf: Add stag_work to all the vports + - scsi: qedf: Fix refcount issue when LOGO is received during TMF + - scsi: qedf: Change context reset messages to ratelimited + - scsi: pm8001: Fix bogus FW crash for maxcpus=1 + - scsi: ufs: Use generic error code in ufshcd_set_dev_pwr_mode() + - scsi: ufs: Treat link loss as fatal error + - scsi: myrs: Fix crash in error case + - net: stmmac: reduce unnecessary wakeups from eee sw timer + - PM: hibernate: Remove register_nosave_region_late() + - drm/amd/display: Correct MPC split policy for DCN301 + - usb: dwc2: gadget: don't try to disable ep0 in dwc2_hsotg_suspend + - perf: Always wake the parent event + - nvme-pci: add the IGNORE_DEV_SUBNQN quirk for Intel P4500/P4600 SSDs + - MIPS: Fix build error due to PTR used in more places + - net: stmmac: dwmac-sun8i: use return val of readl_poll_timeout() + - KVM: eventfd: Fix false positive RCU usage warning + - KVM: nVMX: eVMCS: Filter out VM_EXIT_SAVE_VMX_PREEMPTION_TIMER + - KVM: nVMX: Also filter MSR_IA32_VMX_TRUE_PINBASED_CTLS when eVMCS + - KVM: SVM: Don't kill SEV guest if SMAP erratum triggers in usermode + - KVM: VMX: Set vmcs.PENDING_DBG.BS on #DB in STI/MOVSS blocking shadow + - KVM: x86: Report deprecated x87 features in supported CPUID + - riscv: fix build with binutils 2.38 + - riscv: cpu-hotplug: clear cpu from numa map when teardown + - riscv: eliminate unreliable __builtin_frame_address(1) + - gfs2: Fix gfs2_release for non-writers regression + - ARM: dts: imx23-evk: Remove MX23_PAD_SSP1_DETECT from hog group + - ARM: dts: Fix boot regression on Skomer + - ARM: socfpga: fix missing RESET_CONTROLLER + - nvme-tcp: fix bogus request completion when failing to send AER + - ACPI/IORT: Check node revision for PMCG resources + - PM: s2idle: ACPI: Fix wakeup interrupts handling + - drm/amdgpu/display: change pipe policy for DCN 2.0 + - drm/rockchip: vop: Correct RK3399 VOP register fields + - drm/i915: Allow !join_mbus cases for adlp+ dbuf configuration + - drm/i915: Populate pipe dbuf slices more accurately during readout + - ARM: dts: Fix timer regression for beagleboard revision c + - ARM: dts: meson: Fix the UART compatible strings + - ARM: dts: meson8: Fix the UART device-tree schema validation + - ARM: dts: meson8b: Fix the UART device-tree schema validation + - phy: broadcom: Kconfig: Fix PHY_BRCM_USB config option + - staging: fbtft: Fix error path in fbtft_driver_module_init() + - ARM: dts: imx6qdl-udoo: Properly describe the SD card detect + - phy: xilinx: zynqmp: Fix bus width setting for SGMII + - phy: stm32: fix a refcount leak in stm32_usbphyc_pll_enable() + - ARM: dts: imx7ulp: Fix 'assigned-clocks-parents' typo + - arm64: dts: imx8mq: fix mipi_csi bidirectional port numbers + - usb: f_fs: Fix use-after-free for epfile + - phy: dphy: Correct clk_pre parameter + - gpio: aggregator: Fix calling into sleeping GPIO controllers + - NFS: Don't overfill uncached readdir pages + - NFS: Don't skip directory entries when doing uncached readdir + - drm/vc4: hdmi: Allow DBLCLK modes even if horz timing is odd. + - misc: fastrpc: avoid double fput() on failed usercopy + - net: sparx5: Fix get_stat64 crash in tcpdump + - netfilter: ctnetlink: disable helper autoassign + - arm64: dts: meson-g12b-odroid-n2: fix typo 'dio2133' + - arm64: dts: meson-sm1-odroid: use correct enable-gpio pin for tf-io + regulator + - arm64: dts: meson-sm1-bananapi-m5: fix wrong GPIO domain for GPIOE_2 + - arm64: dts: meson-sm1-odroid: fix boot loop after reboot + - ixgbevf: Require large buffers for build_skb on 82599VF + - drm/panel: simple: Assign data from panel_dpi_probe() correctly + - ACPI: PM: s2idle: Cancel wakeup before dispatching EC GPE + - gpiolib: Never return internal error codes to user space + - gpio: sifive: use the correct register to read output values + - fbcon: Avoid 'cap' set but not used warning + - bonding: pair enable_port with slave_arr_updates + - net: dsa: mv88e6xxx: don't use devres for mdiobus + - net: dsa: ar9331: register the mdiobus under devres + - net: dsa: bcm_sf2: don't use devres for mdiobus + - net: dsa: felix: don't use devres for mdiobus + - net: dsa: mt7530: fix kernel bug in mdiobus_free() when unbinding + - net: dsa: lantiq_gswip: don't use devres for mdiobus + - ipmr,ip6mr: acquire RTNL before calling ip[6]mr_free_table() on failure path + - nfp: flower: fix ida_idx not being released + - net: do not keep the dst cache when uncloning an skb dst and its metadata + - net: fix a memleak when uncloning an skb dst and its metadata + - veth: fix races around rq->rx_notify_masked + - net: mdio: aspeed: Add missing MODULE_DEVICE_TABLE + - tipc: rate limit warning for received illegal binding update + - net: amd-xgbe: disable interrupts during pci removal + - drm/amd/pm: fix hwmon node of power1_label create issue + - mptcp: netlink: process IPv6 addrs in creating listening sockets + - dpaa2-eth: unregister the netdev before disconnecting from the PHY + - ice: fix an error code in ice_cfg_phy_fec() + - ice: fix IPIP and SIT TSO offload + - ice: Fix KASAN error in LAG NETDEV_UNREGISTER handler + - ice: Avoid RTNL lock when re-creating auxiliary device + - net: mscc: ocelot: fix mutex lock error during ethtool stats read + - net: dsa: mv88e6xxx: fix use-after-free in mv88e6xxx_mdios_unregister + - vt_ioctl: fix array_index_nospec in vt_setactivate + - vt_ioctl: add array_index_nospec to VT_ACTIVATE + - n_tty: wake up poll(POLLRDNORM) on receiving data + - eeprom: ee1004: limit i2c reads to I2C_SMBUS_BLOCK_MAX + - usb: dwc2: drd: fix soft connect when gadget is unconfigured + - Revert "usb: dwc2: drd: fix soft connect when gadget is unconfigured" + - net: usb: ax88179_178a: Fix out-of-bounds accesses in RX fixup + - usb: ulpi: Move of_node_put to ulpi_dev_release + - usb: ulpi: Call of_node_put correctly + - usb: dwc3: gadget: Prevent core from processing stale TRBs + - usb: gadget: udc: renesas_usb3: Fix host to USB_ROLE_NONE transition + - USB: gadget: validate interface OS descriptor requests + - usb: gadget: rndis: check size of RNDIS_MSG_SET command + - usb: gadget: f_uac2: Define specific wTerminalType + - usb: raw-gadget: fix handling of dual-direction-capable endpoints + - USB: serial: ftdi_sio: add support for Brainboxes US-159/235/320 + - USB: serial: option: add ZTE MF286D modem + - USB: serial: ch341: add support for GW Instek USB2.0-Serial devices + - USB: serial: cp210x: add NCR Retail IO box id + - USB: serial: cp210x: add CPI Bulk Coin Recycler id + - speakup-dectlk: Restore pitch setting + - phy: ti: Fix missing sentinel for clk_div_table + - iio: buffer: Fix file related error handling in IIO_BUFFER_GET_FD_IOCTL + - mm: memcg: synchronize objcg lists with a dedicated spinlock + - seccomp: Invalidate seccomp mode to catch death failures + - signal: HANDLER_EXIT should clear SIGNAL_UNKILLABLE + - s390/cio: verify the driver availability for path_event call + - bus: mhi: pci_generic: Add mru_default for Foxconn SDX55 + - bus: mhi: pci_generic: Add mru_default for Cinterion MV31-W + - hwmon: (dell-smm) Speed up setting of fan speed + - x86/sgx: Silence softlockup detection when releasing large enclaves + - Makefile.extrawarn: Move -Wunaligned-access to W=1 + - scsi: lpfc: Remove NVMe support if kernel has NVME_FC disabled + - scsi: lpfc: Reduce log messages seen after firmware download + - MIPS: octeon: Fix missed PTR->PTR_WD conversion + - arm64: dts: imx8mq: fix lcdif port node + - perf: Fix list corruption in perf_cgroup_switch() + - iommu: Fix potential use-after-free during probe + - Linux 5.15.24 + * Jammy update: v5.15.23 upstream stable release (LP: #1963888) + - moxart: fix potential use-after-free on remove path + - arm64: Add Cortex-A510 CPU part definition + - ksmbd: fix SMB 3.11 posix extension mount failure + - crypto: api - Move cryptomgr soft dependency into algapi + - Linux 5.15.23 + * [22.04 FEAT] KVM: Enable storage key checking for intercepted instruction + handled by userspace (LP: #1933179) + - KVM: s390: gaccess: Refactor gpa and length calculation + - KVM: s390: gaccess: Refactor access address range check + - KVM: s390: gaccess: Cleanup access to guest pages + - s390/uaccess: introduce bit field for OAC specifier + - s390/uaccess: fix compile error + - s390/uaccess: Add copy_from/to_user_key functions + - KVM: s390: Honor storage keys when accessing guest memory + - KVM: s390: handle_tprot: Honor storage keys + - KVM: s390: selftests: Test TEST PROTECTION emulation + - KVM: s390: Add optional storage key checking to MEMOP IOCTL + - KVM: s390: Add vm IOCTL for key checked guest absolute memory access + - KVM: s390: Rename existing vcpu memop functions + - KVM: s390: Add capability for storage key extension of MEM_OP IOCTL + - KVM: s390: Update api documentation for memop ioctl + - KVM: s390: Clarify key argument for MEM_OP in api docs + - KVM: s390: Add missing vm MEM_OP size check + * CVE-2022-25636 + - netfilter: nf_tables_offload: incorrect flow offload action array size + * ubuntu_kernel_selftests / ftrace:ftracetest do_softirq failure on Jammy + realtime (LP: #1959610) + - selftests/ftrace: Do not trace do_softirq because of PREEMPT_RT + * CVE-2022-0435 + - tipc: improve size validations for received domain records + * CVE-2022-0516 + - KVM: s390: Return error on SIDA memop on normal guest + * EDAC update for AMD Genoa support in 22.04 (LP: #1960362) + - EDAC: Add RDDR5 and LRDDR5 memory types + - EDAC/amd64: Add support for AMD Family 19h Models 10h-1Fh and A0h-AFh + * hwmon: k10temp updates for AMD Genoa in 22.04 (LP: #1960361) + - x86/amd_nb: Add AMD Family 19h Models (10h-1Fh) and (A0h-AFh) PCI IDs + - hwmon: (k10temp) Remove unused definitions + - hwmon: (k10temp) Support up to 12 CCDs on AMD Family of processors + - hwmon: (k10temp) Add support for AMD Family 19h Models 10h-1Fh and A0h-AFh + * [SRU][I/J/OEM-5.13/OEM-5.14] Add basic support of MT7922 (LP: #1958151) + - mt76: mt7921: Add mt7922 support + - mt76: mt7921: add support for PCIe ID 0x0608/0x0616 + - mt76: mt7921: introduce 160 MHz channel bandwidth support + * Use EC GPE for s2idle wakeup on AMD platforms (LP: #1960771) + - ACPI: PM: Revert "Only mark EC GPE for wakeup on Intel systems" + * Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.4 for Ubuntu 22.04 + (LP: #1956982) + - scsi: lpfc: Change return code on I/Os received during link bounce + - scsi: lpfc: Fix NPIV port deletion crash + - scsi: lpfc: Adjust CMF total bytes and rxmonitor + - scsi: lpfc: Cap CMF read bytes to MBPI + - scsi: lpfc: Add additional debugfs support for CMF + - scsi: lpfc: Update lpfc version to 14.0.0.4 + * Forward-port drm/i915 commits from oem-5.14 for Alder Lake S & P + (LP: #1960298) + - drm/i915/dmc: Update to DMC v2.12 + - drm/i915/adlp/tc: Fix PHY connected check for Thunderbolt mode + - drm/i915/tc: Remove waiting for PHY complete during releasing ownership + - drm/i915/tc: Check for DP-alt, legacy sinks before taking PHY ownership + - drm/i915/tc: Add/use helpers to retrieve TypeC port properties + - drm/i915/tc: Don't keep legacy TypeC ports in connected state w/o a sink + - drm/i915/tc: Add a mode for the TypeC PHY's disconnected state + - drm/i915/tc: Refactor TC-cold block/unblock helpers + - drm/i915/tc: Avoid using legacy AUX PW in TBT mode + - drm/i915/icl/tc: Remove the ICL special casing during TC-cold blocking + - drm/i915/tc: Fix TypeC PHY connect/disconnect logic on ADL-P + - drm/i915/tc: Drop extra TC cold blocking from intel_tc_port_connected() + - drm/i915/tc: Fix system hang on ADL-P during TypeC PHY disconnect + - drm/i915/display/adlp: Disable underrun recovery + - drm/i915/adl_s: Remove require_force_probe protection + - drm/i915/adlp: Remove require_force_probe protection + * INVALID or PRIVATE BUG (LP: #1959735) + - KVM: s390: Simplify SIGP Set Arch handling + - KVM: s390: Add a routine for setting userspace CPU state + * Include the QCA WCN 6856 v2.1 support (LP: #1954938) + - SAUCE: ath11k: shrink TCSR read mask for WCN6855 hw2.1 + * Jammy update: v5.15.22 upstream stable release (LP: #1960516) + - drm/i915: Disable DSB usage for now + - selinux: fix double free of cond_list on error paths + - audit: improve audit queue handling when "audit=1" on cmdline + - ipc/sem: do not sleep with a spin lock held + - spi: stm32-qspi: Update spi registering + - ASoC: hdmi-codec: Fix OOB memory accesses + - ASoC: ops: Reject out of bounds values in snd_soc_put_volsw() + - ASoC: ops: Reject out of bounds values in snd_soc_put_volsw_sx() + - ASoC: ops: Reject out of bounds values in snd_soc_put_xr_sx() + - ALSA: usb-audio: Correct quirk for VF0770 + - ALSA: hda: Fix UAF of leds class devs at unbinding + - ALSA: hda: realtek: Fix race at concurrent COEF updates + - ALSA: hda/realtek: Add quirk for ASUS GU603 + - ALSA: hda/realtek: Add missing fixup-model entry for Gigabyte X570 ALC1220 + quirks + - ALSA: hda/realtek: Fix silent output on Gigabyte X570S Aorus Master (newer + chipset) + - ALSA: hda/realtek: Fix silent output on Gigabyte X570 Aorus Xtreme after + reboot from Windows + - btrfs: don't start transaction for scrub if the fs is mounted read-only + - btrfs: fix deadlock between quota disable and qgroup rescan worker + - btrfs: fix use-after-free after failure to create a snapshot + - Revert "fs/9p: search open fids first" + - drm/nouveau: fix off by one in BIOS boundary checking + - drm/i915/adlp: Fix TypeC PHY-ready status readout + - drm/amd/pm: correct the MGpuFanBoost support for Beige Goby + - drm/amd/display: watermark latencies is not enough on DCN31 + - drm/amd/display: Force link_rate as LINK_RATE_RBR2 for 2018 15" Apple Retina + panels + - nvme-fabrics: fix state check in nvmf_ctlr_matches_baseopts() + - mm/debug_vm_pgtable: remove pte entry from the page table + - mm/pgtable: define pte_index so that preprocessor could recognize it + - mm/kmemleak: avoid scanning potential huge holes + - block: bio-integrity: Advance seed correctly for larger interval sizes + - dma-buf: heaps: Fix potential spectre v1 gadget + - IB/hfi1: Fix AIP early init panic + - Revert "fbcon: Disable accelerated scrolling" + - fbcon: Add option to enable legacy hardware acceleration + - mptcp: fix msk traversal in mptcp_nl_cmd_set_flags() + - Revert "ASoC: mediatek: Check for error clk pointer" + - KVM: arm64: Avoid consuming a stale esr value when SError occur + - KVM: arm64: Stop handle_exit() from handling HVC twice when an SError occurs + - RDMA/cma: Use correct address when leaving multicast group + - RDMA/ucma: Protect mc during concurrent multicast leaves + - RDMA/siw: Fix refcounting leak in siw_create_qp() + - IB/rdmavt: Validate remote_addr during loopback atomic tests + - RDMA/siw: Fix broken RDMA Read Fence/Resume logic. + - RDMA/mlx4: Don't continue event handler after memory allocation failure + - ALSA: usb-audio: initialize variables that could ignore errors + - ALSA: hda: Fix signedness of sscanf() arguments + - ALSA: hda: Skip codec shutdown in case the codec is not registered + - iommu/vt-d: Fix potential memory leak in intel_setup_irq_remapping() + - iommu/amd: Fix loop timeout issue in iommu_ga_log_enable() + - spi: bcm-qspi: check for valid cs before applying chip select + - spi: mediatek: Avoid NULL pointer crash in interrupt + - spi: meson-spicc: add IRQ check in meson_spicc_probe + - spi: uniphier: fix reference count leak in uniphier_spi_probe() + - IB/hfi1: Fix tstats alloc and dealloc + - IB/cm: Release previously acquired reference counter in the cm_id_priv + - net: ieee802154: hwsim: Ensure proper channel selection at probe time + - net: ieee802154: mcr20a: Fix lifs/sifs periods + - net: ieee802154: ca8210: Stop leaking skb's + - netfilter: nft_reject_bridge: Fix for missing reply from prerouting + - net: ieee802154: Return meaningful error codes from the netlink helpers + - net/smc: Forward wakeup to smc socket waitqueue after fallback + - net: stmmac: dwmac-visconti: No change to ETHER_CLOCK_SEL for unexpected + speed request. + - net: stmmac: properly handle with runtime pm in stmmac_dvr_remove() + - net: macsec: Fix offload support for NETDEV_UNREGISTER event + - net: macsec: Verify that send_sci is on when setting Tx sci explicitly + - net: stmmac: dump gmac4 DMA registers correctly + - net: stmmac: ensure PTP time register reads are consistent + - drm/kmb: Fix for build errors with Warray-bounds + - drm/i915/overlay: Prevent divide by zero bugs in scaling + - drm/amd: avoid suspend on dGPUs w/ s2idle support when runtime PM enabled + - ASoC: fsl: Add missing error handling in pcm030_fabric_probe + - ASoC: xilinx: xlnx_formatter_pcm: Make buffer bytes multiple of period bytes + - ASoC: simple-card: fix probe failure on platform component + - ASoC: cpcap: Check for NULL pointer after calling of_get_child_by_name + - ASoC: max9759: fix underflow in speaker_gain_control_put() + - ASoC: codecs: wcd938x: fix incorrect used of portid + - ASoC: codecs: lpass-rx-macro: fix sidetone register offsets + - ASoC: codecs: wcd938x: fix return value of mixer put function + - pinctrl: sunxi: Fix H616 I2S3 pin data + - pinctrl: intel: Fix a glitch when updating IRQ flags on a preconfigured line + - pinctrl: intel: fix unexpected interrupt + - pinctrl: bcm2835: Fix a few error paths + - scsi: bnx2fc: Make bnx2fc_recv_frame() mp safe + - nfsd: nfsd4_setclientid_confirm mistakenly expires confirmed client. + - gve: fix the wrong AdminQ buffer queue index check + - bpf: Use VM_MAP instead of VM_ALLOC for ringbuf + - selftests/exec: Remove pipe from TEST_GEN_FILES + - selftests: futex: Use variable MAKE instead of make + - tools/resolve_btfids: Do not print any commands when building silently + - e1000e: Separate ADP board type from TGP + - rtc: cmos: Evaluate century appropriate + - kvm: add guest_state_{enter,exit}_irqoff() + - kvm/arm64: rework guest entry logic + - perf: Copy perf_event_attr::sig_data on modification + - perf stat: Fix display of grouped aliased events + - perf/x86/intel/pt: Fix crash with stop filters in single-range mode + - x86/perf: Default set FREEZE_ON_SMI for all + - EDAC/altera: Fix deferred probing + - EDAC/xgene: Fix deferred probing + - ext4: prevent used blocks from being allocated during fast commit replay + - ext4: modify the logic of ext4_mb_new_blocks_simple + - ext4: fix error handling in ext4_restore_inline_data() + - ext4: fix error handling in ext4_fc_record_modified_inode() + - ext4: fix incorrect type issue during replay_del_range + - net: dsa: mt7530: make NET_DSA_MT7530 select MEDIATEK_GE_PHY + - cgroup/cpuset: Fix "suspicious RCU usage" lockdep warning + - tools include UAPI: Sync sound/asound.h copy with the kernel sources + - gpio: idt3243x: Fix an ignored error return from platform_get_irq() + - gpio: mpc8xxx: Fix an ignored error return from platform_get_irq() + - selftests: nft_concat_range: add test for reload with no element add/del + - selftests: netfilter: check stateless nat udp checksum fixup + - Linux 5.15.22 + - [Config] disable FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION + * Jammy update: v5.15.21 upstream stable release (LP: #1960515) + - Revert "drm/vc4: hdmi: Make sure the device is powered with CEC" + - Revert "drm/vc4: hdmi: Make sure the device is powered with CEC" again + - Linux 5.15.21 + * Jammy update: v5.15.20 upstream stable release (LP: #1960509) + - Revert "UBUNTU: SAUCE: Revert "e1000e: Add handshake with the CSME to + support S0ix"" + - Revert "UBUNTU: SAUCE: Revert "e1000e: Add polling mechanism to indicate + CSME DPG exit"" + - Revert "UBUNTU: SAUCE: Revert "e1000e: Additional PHY power saving in S0ix"" + - PCI: pciehp: Fix infinite loop in IRQ handler upon power fault + - selftests: mptcp: fix ipv6 routing setup + - net: ipa: use a bitmap for endpoint replenish_enabled + - net: ipa: prevent concurrent replenish + - drm/vc4: hdmi: Make sure the device is powered with CEC + - cgroup-v1: Require capabilities to set release_agent + - Revert "mm/gup: small refactoring: simplify try_grab_page()" + - ovl: don't fail copy up if no fileattr support on upper + - lockd: fix server crash on reboot of client holding lock + - lockd: fix failure to cleanup client locks + - net/mlx5e: IPsec: Fix tunnel mode crypto offload for non TCP/UDP traffic + - net/mlx5: Bridge, take rtnl lock in init error handler + - net/mlx5: Bridge, ensure dev_name is null-terminated + - net/mlx5e: Fix handling of wrong devices during bond netevent + - net/mlx5: Use del_timer_sync in fw reset flow of halting poll + - net/mlx5e: Fix module EEPROM query + - net/mlx5: Fix offloading with ESWITCH_IPV4_TTL_MODIFY_ENABLE + - net/mlx5e: Don't treat small ceil values as unlimited in HTB offload + - net/mlx5: Bridge, Fix devlink deadlock on net namespace deletion + - net/mlx5: E-Switch, Fix uninitialized variable modact + - ipheth: fix EOVERFLOW in ipheth_rcvbulk_callback + - i40e: Fix reset bw limit when DCB enabled with 1 TC + - i40e: Fix reset path while removing the driver + - net: amd-xgbe: ensure to reset the tx_timer_active flag + - net: amd-xgbe: Fix skb data length underflow + - fanotify: Fix stale file descriptor in copy_event_to_user() + - net: sched: fix use-after-free in tc_new_tfilter() + - rtnetlink: make sure to refresh master_dev/m_ops in __rtnl_newlink() + - cpuset: Fix the bug that subpart_cpus updated wrongly in update_cpumask() + - e1000e: Handshake with CSME starts from ADL platforms + - af_packet: fix data-race in packet_setsockopt / packet_setsockopt + - tcp: add missing tcp_skb_can_collapse() test in tcp_shift_skb_data() + - ovl: fix NULL pointer dereference in copy up warning + - Linux 5.15.20 + * Miscellaneous Ubuntu changes + - [Packaging] use default zstd compression + - [Packaging] do not use compression for image packages + - [Packaging] use xz compression for ddebs + - [Config] upgrade debug symbols from DWARF4 to DWARF5 + - SAUCE: Makefile: Remove inclusion of lbm header files + - SAUCE: Makefile: Fix compiler warnings + - SAUCE: AUFS + - SAUCE: aufs: switch to 64-bit ino_t for s390x + - [Config] set AUFS as disabled + - SAUCE: mt76: mt7921e: fix possible probe failure after reboot + - Remove ubuntu/hio driver + - SAUCE: ima_policy: fix test for empty rule set + - SAUCE: sfc: The size of the RX recycle ring should be more flexible + - [Config] MITIGATE_SPECTRE_BRANCH_HISTORY=y && HARDEN_BRANCH_HISTORY=y + * Miscellaneous upstream changes + - kbuild: Unify options for BTF generation for vmlinux and modules + - MAINTAINERS: Add scripts/pahole-flags.sh to BPF section + - kbuild: Add CONFIG_PAHOLE_VERSION + - scripts/pahole-flags.sh: Use pahole-version.sh + - lib/Kconfig.debug: Use CONFIG_PAHOLE_VERSION + - lib/Kconfig.debug: Allow BTF + DWARF5 with pahole 1.21+ + - x86/sched: Decrease further the priorities of SMT siblings + - sched/topology: Introduce sched_group::flags + - sched/fair: Optimize checking for group_asym_packing + - sched/fair: Provide update_sg_lb_stats() with sched domain statistics + - sched/fair: Carve out logic to mark a group for asymmetric packing + - sched/fair: Consider SMT in ASYM_PACKING load balance + - Revert "UBUNTU: [Config] x86-64: SYSFB_SIMPLEFB=y" + + -- Paolo Pisati Thu, 31 Mar 2022 17:47:52 +0200 + +linux-gcp (5.15.0-1002.5) jammy; urgency=medium + + * jammy/linux-gcp: 5.15.0-1002.5 -proposed tracker (LP: #1965077) + + * arm64 suport (LP: #1965075) + - [packaging] arm64 bringup + - [config] Import arm64 config from master and update-configs + - [packaging] update annotations for arm64 + + -- Khalid Elmously Tue, 15 Mar 2022 23:44:47 -0400 + +linux-gcp (5.15.0-1001.3) jammy; urgency=medium + + * jammy/linux-gcp: 5.15.0-1001.3 -proposed tracker (LP: #1960473) + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + - [Packaging] update update.conf + + * Miscellaneous Ubuntu changes + - [oracle] jammy/gcp bring-up + - [packaging] Fix up annotations + - [config] gcp: Enable GCP-specific configs based on annotations + - [packaging] Override master annotations + + [ Ubuntu: 5.15.0-22.22 ] + + * jammy/linux: 5.15.0-22.22 -proposed tracker (LP: #1960290) + + [ Ubuntu: 5.15.0-21.21 ] + + * jammy/linux: 5.15.0-21.21 -proposed tracker (LP: #1960211) + * Miscellaneous Ubuntu changes + - [packaging] unhook lowlatency flavours from the build + + [ Ubuntu: 5.15.0-20.20 ] + + * jammy/linux: 5.15.0-20.20 -proposed tracker (LP: #1959881) + * Jammy update: v5.15.19 upstream stable release (LP: #1959879) + - can: m_can: m_can_fifo_{read,write}: don't read or write from/to FIFO if + length is 0 + - net: sfp: ignore disabled SFP node + - net: stmmac: configure PTP clock source prior to PTP initialization + - net: stmmac: skip only stmmac_ptp_register when resume from suspend + - ARM: 9179/1: uaccess: avoid alignment faults in + copy_[from|to]_kernel_nofault + - ARM: 9180/1: Thumb2: align ALT_UP() sections in modules sufficiently + - KVM: arm64: Use shadow SPSR_EL1 when injecting exceptions on !VHE + - s390/hypfs: include z/VM guests with access control group set + - s390/nmi: handle guarded storage validity failures for KVM guests + - s390/nmi: handle vector validity failures for KVM guests + - bpf: Guard against accessing NULL pt_regs in bpf_get_task_stack() + - powerpc32/bpf: Fix codegen for bpf-to-bpf calls + - powerpc/bpf: Update ldimm64 instructions during extra pass + - scsi: zfcp: Fix failed recovery on gone remote port with non-NPIV FCP + devices + - udf: Restore i_lenAlloc when inode expansion fails + - udf: Fix NULL ptr deref when converting from inline format + - efi: runtime: avoid EFIv2 runtime services on Apple x86 machines + - PM: wakeup: simplify the output logic of pm_show_wakelocks() + - tracing/histogram: Fix a potential memory leak for kstrdup() + - tracing: Don't inc err_log entry count if entry allocation fails + - ceph: properly put ceph_string reference after async create attempt + - ceph: set pool_ns in new inode layout for async creates + - fsnotify: fix fsnotify hooks in pseudo filesystems + - Revert "KVM: SVM: avoid infinite loop on NPF from bad address" + - psi: Fix uaf issue when psi trigger is destroyed while being polled + - powerpc/audit: Fix syscall_get_arch() + - perf/x86/intel/uncore: Fix CAS_COUNT_WRITE issue for ICX + - perf/x86/intel: Add a quirk for the calculation of the number of counters on + Alder Lake + - drm/etnaviv: relax submit size limits + - drm/atomic: Add the crtc to affected crtc only if uapi.enable = true + - drm/amd/display: Fix FP start/end for dcn30_internal_validate_bw. + - KVM: LAPIC: Also cancel preemption timer during SET_LAPIC + - KVM: SVM: Never reject emulation due to SMAP errata for !SEV guests + - KVM: SVM: Don't intercept #GP for SEV guests + - KVM: x86: nSVM: skip eax alignment check for non-SVM instructions + - KVM: x86: Forcibly leave nested virt when SMM state is toggled + - KVM: x86: Keep MSR_IA32_XSS unchanged for INIT + - KVM: x86: Update vCPU's runtime CPUID on write to MSR_IA32_XSS + - KVM: x86: Sync the states size with the XCR0/IA32_XSS at, any time + - KVM: PPC: Book3S HV Nested: Fix nested HFSCR being clobbered with multiple + vCPUs + - dm: revert partial fix for redundant bio-based IO accounting + - block: add bio_start_io_acct_time() to control start_time + - dm: properly fix redundant bio-based IO accounting + - serial: pl011: Fix incorrect rs485 RTS polarity on set_mctrl + - serial: 8250: of: Fix mapped region size when using reg-offset property + - serial: stm32: fix software flow control transfer + - tty: n_gsm: fix SW flow control encoding/handling + - tty: Partially revert the removal of the Cyclades public API + - tty: Add support for Brainboxes UC cards. + - kbuild: remove include/linux/cyclades.h from header file check + - usb-storage: Add unusual-devs entry for VL817 USB-SATA bridge + - usb: xhci-plat: fix crash when suspend if remote wake enable + - usb: common: ulpi: Fix crash in ulpi_match() + - usb: gadget: f_sourcesink: Fix isoc transfer for USB_SPEED_SUPER_PLUS + - usb: cdnsp: Fix segmentation fault in cdns_lost_power function + - usb: dwc3: xilinx: Skip resets and USB3 register settings for USB2.0 mode + - usb: dwc3: xilinx: Fix error handling when getting USB3 PHY + - USB: core: Fix hang in usb_kill_urb by adding memory barriers + - usb: typec: tcpci: don't touch CC line if it's Vconn source + - usb: typec: tcpm: Do not disconnect while receiving VBUS off + - usb: typec: tcpm: Do not disconnect when receiving VSAFE0V + - ucsi_ccg: Check DEV_INT bit only when starting CCG4 + - mm, kasan: use compare-exchange operation to set KASAN page tag + - jbd2: export jbd2_journal_[grab|put]_journal_head + - ocfs2: fix a deadlock when commit trans + - sched/membarrier: Fix membarrier-rseq fence command missing from query + bitmask + - PCI/sysfs: Find shadow ROM before static attribute initialization + - x86/MCE/AMD: Allow thresholding interface updates after init + - x86/cpu: Add Xeon Icelake-D to list of CPUs that support PPIN + - powerpc/32s: Allocate one 256k IBAT instead of two consecutives 128k IBATs + - powerpc/32s: Fix kasan_init_region() for KASAN + - powerpc/32: Fix boot failure with GCC latent entropy plugin + - i40e: Increase delay to 1 s after global EMP reset + - i40e: Fix issue when maximum queues is exceeded + - i40e: Fix queues reservation for XDP + - i40e: Fix for failed to init adminq while VF reset + - i40e: fix unsigned stat widths + - usb: roles: fix include/linux/usb/role.h compile issue + - rpmsg: char: Fix race between the release of rpmsg_ctrldev and cdev + - rpmsg: char: Fix race between the release of rpmsg_eptdev and cdev + - scsi: elx: efct: Don't use GFP_KERNEL under spin lock + - scsi: bnx2fc: Flush destroy_work queue before calling bnx2fc_interface_put() + - ipv6_tunnel: Rate limit warning messages + - ARM: 9170/1: fix panic when kasan and kprobe are enabled + - net: fix information leakage in /proc/net/ptype + - hwmon: (lm90) Mark alert as broken for MAX6646/6647/6649 + - hwmon: (lm90) Mark alert as broken for MAX6680 + - ping: fix the sk_bound_dev_if match in ping_lookup + - ipv4: avoid using shared IP generator for connected sockets + - hwmon: (lm90) Reduce maximum conversion rate for G781 + - NFSv4: Handle case where the lookup of a directory fails + - NFSv4: nfs_atomic_open() can race when looking up a non-regular file + - net-procfs: show net devices bound packet types + - drm/msm: Fix wrong size calculation + - drm/msm/dsi: Fix missing put_device() call in dsi_get_phy + - drm/msm/dsi: invalid parameter check in msm_dsi_phy_enable + - ipv6: annotate accesses to fn->fn_sernum + - NFS: Ensure the server has an up to date ctime before hardlinking + - NFS: Ensure the server has an up to date ctime before renaming + - KVM: arm64: pkvm: Use the mm_ops indirection for cache maintenance + - SUNRPC: Use BIT() macro in rpc_show_xprt_state() + - SUNRPC: Don't dereference xprt->snd_task if it's a cookie + - powerpc64/bpf: Limit 'ldbrx' to processors compliant with ISA v2.06 + - netfilter: conntrack: don't increment invalid counter on NF_REPEAT + - powerpc/64s: Mask SRR0 before checking against the masked NIP + - perf: Fix perf_event_read_local() time + - sched/pelt: Relax the sync of util_sum with util_avg + - net: phy: broadcom: hook up soft_reset for BCM54616S + - net: stmmac: dwmac-visconti: Fix bit definitions for ETHER_CLK_SEL + - net: stmmac: dwmac-visconti: Fix clock configuration for RMII mode + - phylib: fix potential use-after-free + - octeontx2-af: Do not fixup all VF action entries + - octeontx2-af: Fix LBK backpressure id count + - octeontx2-af: Retry until RVU block reset complete + - octeontx2-pf: cn10k: Ensure valid pointers are freed to aura + - octeontx2-af: verify CQ context updates + - octeontx2-af: Increase link credit restore polling timeout + - octeontx2-af: cn10k: Do not enable RPM loopback for LPC interfaces + - octeontx2-pf: Forward error codes to VF + - rxrpc: Adjust retransmission backoff + - efi/libstub: arm64: Fix image check alignment at entry + - io_uring: fix bug in slow unregistering of nodes + - Drivers: hv: balloon: account for vmbus packet header in max_pkt_size + - hwmon: (lm90) Re-enable interrupts after alert clears + - hwmon: (lm90) Mark alert as broken for MAX6654 + - hwmon: (lm90) Fix sysfs and udev notifications + - hwmon: (adt7470) Prevent divide by zero in adt7470_fan_write() + - powerpc/perf: Fix power_pmu_disable to call clear_pmi_irq_pending only if + PMI is pending + - ipv4: fix ip option filtering for locally generated fragments + - ibmvnic: Allow extra failures before disabling + - ibmvnic: init ->running_cap_crqs early + - ibmvnic: don't spin in tasklet + - net/smc: Transitional solution for clcsock race issue + - video: hyperv_fb: Fix validation of screen resolution + - can: tcan4x5x: regmap: fix max register value + - drm/msm/hdmi: Fix missing put_device() call in msm_hdmi_get_phy + - drm/msm/dpu: invalid parameter check in dpu_setup_dspp_pcc + - drm/msm/a6xx: Add missing suspend_count increment + - yam: fix a memory leak in yam_siocdevprivate() + - net: cpsw: Properly initialise struct page_pool_params + - net: hns3: handle empty unknown interrupt for VF + - sch_htb: Fail on unsupported parameters when offload is requested + - Revert "drm/ast: Support 1600x900 with 108MHz PCLK" + - KVM: selftests: Don't skip L2's VMCALL in SMM test for SVM guest + - ceph: put the requests/sessions when it fails to alloc memory + - gve: Fix GFP flags when allocing pages + - Revert "ipv6: Honor all IPv6 PIO Valid Lifetime values" + - net: bridge: vlan: fix single net device option dumping + - ipv4: raw: lock the socket in raw_bind() + - ipv4: tcp: send zero IPID in SYNACK messages + - ipv4: remove sparse error in ip_neigh_gw4() + - net: bridge: vlan: fix memory leak in __allowed_ingress + - Bluetooth: refactor malicious adv data check + - irqchip/realtek-rtl: Map control data to virq + - irqchip/realtek-rtl: Fix off-by-one in routing + - dt-bindings: can: tcan4x5x: fix mram-cfg RX FIFO config + - perf/core: Fix cgroup event list management + - psi: fix "no previous prototype" warnings when CONFIG_CGROUPS=n + - psi: fix "defined but not used" warnings when CONFIG_PROC_FS=n + - usb: dwc3: xilinx: fix uninitialized return value + - usr/include/Makefile: add linux/nfc.h to the compile-test coverage + - fsnotify: invalidate dcache before IN_DELETE event + - block: Fix wrong offset in bio_truncate() + - mtd: rawnand: mpc5121: Remove unused variable in ads5121_select_chip() + - Linux 5.15.19 + * Jammy update: v5.15.18 upstream stable release (LP: #1959878) + - drm/i915: Flush TLBs before releasing backing store + - drm/amd/display: reset dcn31 SMU mailbox on failures + - io_uring: fix not released cached task refs + - bnx2x: Utilize firmware 7.13.21.0 + - bnx2x: Invalidate fastpath HSI version for VFs + - memcg: flush stats only if updated + - memcg: unify memcg stat flushing + - memcg: better bounds on the memcg stats updates + - rcu: Tighten rcu_advance_cbs_nowake() checks + - select: Fix indefinitely sleeping task in poll_schedule_timeout() + - drm/amdgpu: Use correct VIEWPORT_DIMENSION for DCN2 + - arm64/bpf: Remove 128MB limit for BPF JIT programs + - Linux 5.15.18 + * CVE-2022-22942 + - SAUCE: drm/vmwgfx: Fix stale file descriptors on failed usercopy + * CVE-2022-24122 + - ucount: Make get_ucount a safe get_user replacement + * CVE-2022-23222 + - bpf, selftests: Add verifier test for mem_or_null register with offset. + * Miscellaneous Ubuntu changes + - [Config] toolchain version update + * Miscellaneous upstream changes + - s390/module: fix loading modules with a lot of relocations + + [ Ubuntu: 5.15.0-19.19 ] + + * jammy/linux: 5.15.0-19.19 -proposed tracker (LP: #1959418) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + * Jammy update: v5.15.17 upstream stable release (LP: #1959376) + - KVM: x86/mmu: Fix write-protection of PTs mapped by the TDP MMU + - KVM: VMX: switch blocked_vcpu_on_cpu_lock to raw spinlock + - HID: Ignore battery for Elan touchscreen on HP Envy X360 15t-dr100 + - HID: uhid: Fix worker destroying device without any protection + - HID: wacom: Reset expected and received contact counts at the same time + - HID: wacom: Ignore the confidence flag when a touch is removed + - HID: wacom: Avoid using stale array indicies to read contact count + - ALSA: core: Fix SSID quirk lookup for subvendor=0 + - f2fs: fix to do sanity check on inode type during garbage collection + - f2fs: fix to do sanity check in is_alive() + - f2fs: avoid EINVAL by SBI_NEED_FSCK when pinning a file + - nfc: llcp: fix NULL error pointer dereference on sendmsg() after failed + bind() + - mtd: rawnand: gpmi: Add ERR007117 protection for nfc_apply_timings + - mtd: rawnand: gpmi: Remove explicit default gpmi clock setting for i.MX6 + - mtd: Fixed breaking list in __mtd_del_partition. + - mtd: rawnand: davinci: Don't calculate ECC when reading page + - mtd: rawnand: davinci: Avoid duplicated page read + - mtd: rawnand: davinci: Rewrite function description + - mtd: rawnand: Export nand_read_page_hwecc_oob_first() + - mtd: rawnand: ingenic: JZ4740 needs 'oob_first' read page function + - riscv: Get rid of MAXPHYSMEM configs + - RISC-V: Use common riscv_cpuid_to_hartid_mask() for both SMP=y and SMP=n + - riscv: try to allocate crashkern region from 32bit addressible memory + - riscv: Don't use va_pa_offset on kdump + - riscv: use hart id instead of cpu id on machine_kexec + - riscv: mm: fix wrong phys_ram_base value for RV64 + - x86/gpu: Reserve stolen memory for first integrated Intel GPU + - tools/nolibc: x86-64: Fix startup code bug + - crypto: x86/aesni - don't require alignment of data + - tools/nolibc: i386: fix initial stack alignment + - tools/nolibc: fix incorrect truncation of exit code + - rtc: cmos: take rtc_lock while reading from CMOS + - net: phy: marvell: add Marvell specific PHY loopback + - ksmbd: uninitialized variable in create_socket() + - ksmbd: fix guest connection failure with nautilus + - ksmbd: add support for smb2 max credit parameter + - ksmbd: move credit charge deduction under processing request + - ksmbd: limits exceeding the maximum allowable outstanding requests + - ksmbd: add reserved room in ipc request/response + - media: cec: fix a deadlock situation + - media: ov8865: Disable only enabled regulators on error path + - media: v4l2-ioctl.c: readbuffers depends on V4L2_CAP_READWRITE + - media: flexcop-usb: fix control-message timeouts + - media: mceusb: fix control-message timeouts + - media: em28xx: fix control-message timeouts + - media: cpia2: fix control-message timeouts + - media: s2255: fix control-message timeouts + - media: dib0700: fix undefined behavior in tuner shutdown + - media: redrat3: fix control-message timeouts + - media: pvrusb2: fix control-message timeouts + - media: stk1160: fix control-message timeouts + - media: cec-pin: fix interrupt en/disable handling + - can: softing_cs: softingcs_probe(): fix memleak on registration failure + - mei: hbm: fix client dma reply status + - iio: adc: ti-adc081c: Partial revert of removal of ACPI IDs + - iio: trigger: Fix a scheduling whilst atomic issue seen on tsc2046 + - lkdtm: Fix content of section containing lkdtm_rodata_do_nothing() + - bus: mhi: pci_generic: Graceful shutdown on freeze + - bus: mhi: core: Fix reading wake_capable channel configuration + - bus: mhi: core: Fix race while handling SYS_ERR at power up + - cxl/pmem: Fix reference counting for delayed work + - arm64: errata: Fix exec handling in erratum 1418040 workaround + - ARM: dts: at91: update alternate function of signal PD20 + - iommu/io-pgtable-arm-v7s: Add error handle for page table allocation failure + - gpu: host1x: Add back arm_iommu_detach_device() + - drm/tegra: Add back arm_iommu_detach_device() + - virtio/virtio_mem: handle a possible NULL as a memcpy parameter + - dma_fence_array: Fix PENDING_ERROR leak in dma_fence_array_signaled() + - PCI: Add function 1 DMA alias quirk for Marvell 88SE9125 SATA controller + - mm_zone: add function to check if managed dma zone exists + - dma/pool: create dma atomic pool only if dma zone has managed pages + - mm/page_alloc.c: do not warn allocation failure on zone DMA if no managed + pages + - shmem: fix a race between shmem_unused_huge_shrink and shmem_evict_inode + - drm/ttm: Put BO in its memory manager's lru list + - Bluetooth: L2CAP: Fix not initializing sk_peer_pid + - drm/bridge: display-connector: fix an uninitialized pointer in probe() + - drm: fix null-ptr-deref in drm_dev_init_release() + - drm/panel: kingdisplay-kd097d04: Delete panel on attach() failure + - drm/panel: innolux-p079zca: Delete panel on attach() failure + - drm/rockchip: dsi: Fix unbalanced clock on probe error + - drm/rockchip: dsi: Hold pm-runtime across bind/unbind + - drm/rockchip: dsi: Disable PLL clock on bind error + - drm/rockchip: dsi: Reconfigure hardware on resume() + - Bluetooth: virtio_bt: fix memory leak in virtbt_rx_handle() + - Bluetooth: cmtp: fix possible panic when cmtp_init_sockets() fails + - clk: bcm-2835: Pick the closest clock rate + - clk: bcm-2835: Remove rounding up the dividers + - drm/vc4: hdmi: Set a default HSM rate + - drm/vc4: hdmi: Move the HSM clock enable to runtime_pm + - drm/vc4: hdmi: Make sure the controller is powered in detect + - drm/vc4: hdmi: Make sure the controller is powered up during bind + - drm/vc4: hdmi: Rework the pre_crtc_configure error handling + - drm/vc4: crtc: Make sure the HDMI controller is powered when disabling + - wcn36xx: ensure pairing of init_scan/finish_scan and start_scan/end_scan + - wcn36xx: Indicate beacon not connection loss on MISSED_BEACON_IND + - drm/vc4: hdmi: Enable the scrambler on reconnection + - libbpf: Free up resources used by inner map definition + - wcn36xx: Fix DMA channel enable/disable cycle + - wcn36xx: Release DMA channel descriptor allocations + - wcn36xx: Put DXE block into reset before freeing memory + - wcn36xx: populate band before determining rate on RX + - wcn36xx: fix RX BD rate mapping for 5GHz legacy rates + - ath11k: Send PPDU_STATS_CFG with proper pdev mask to firmware + - bpftool: Fix memory leak in prog_dump() + - mtd: hyperbus: rpc-if: Check return value of rpcif_sw_init() + - media: videobuf2: Fix the size printk format + - media: atomisp: add missing media_device_cleanup() in + atomisp_unregister_entities() + - media: atomisp: fix punit_ddr_dvfs_enable() argument for mrfld_power up case + - media: atomisp: fix inverted logic in buffers_needed() + - media: atomisp: do not use err var when checking port validity for ISP2400 + - media: atomisp: fix inverted error check for + ia_css_mipi_is_source_port_valid() + - media: atomisp: fix ifdefs in sh_css.c + - media: atomisp: add NULL check for asd obtained from atomisp_video_pipe + - media: atomisp: fix enum formats logic + - media: atomisp: fix uninitialized bug in gmin_get_pmic_id_and_addr() + - media: aspeed: fix mode-detect always time out at 2nd run + - media: em28xx: fix memory leak in em28xx_init_dev + - media: aspeed: Update signal status immediately to ensure sane hw state + - arm64: dts: amlogic: meson-g12: Fix GPU operating point table node name + - arm64: dts: amlogic: Fix SPI NOR flash node name for ODROID N2/N2+ + - arm64: dts: meson-gxbb-wetek: fix HDMI in early boot + - arm64: dts: meson-gxbb-wetek: fix missing GPIO binding + - fs: dlm: don't call kernel_getpeername() in error_report() + - memory: renesas-rpc-if: Return error in case devm_ioremap_resource() fails + - Bluetooth: stop proccessing malicious adv data + - ath11k: Fix ETSI regd with weather radar overlap + - ath11k: clear the keys properly via DISABLE_KEY + - ath11k: reset RSN/WPA present state for open BSS + - spi: hisi-kunpeng: Fix the debugfs directory name incorrect + - tee: fix put order in teedev_close_context() + - fs: dlm: fix build with CONFIG_IPV6 disabled + - drm/dp: Don't read back backlight mode in drm_edp_backlight_enable() + - drm/vboxvideo: fix a NULL vs IS_ERR() check + - arm64: dts: renesas: cat875: Add rx/tx delays + - media: dmxdev: fix UAF when dvb_register_device() fails + - crypto: atmel-aes - Reestablish the correct tfm context at dequeue + - crypto: qce - fix uaf on qce_aead_register_one + - crypto: qce - fix uaf on qce_ahash_register_one + - crypto: qce - fix uaf on qce_skcipher_register_one + - arm64: dts: qcom: sc7280: Fix incorrect clock name + - mtd: hyperbus: rpc-if: fix bug in rpcif_hb_remove + - cpufreq: qcom-cpufreq-hw: Update offline CPUs per-cpu thermal pressure + - cpufreq: qcom-hw: Fix probable nested interrupt handling + - ARM: dts: stm32: fix dtbs_check warning on ili9341 dts binding on stm32f429 + disco + - libbpf: Fix potential misaligned memory access in btf_ext__new() + - libbpf: Fix glob_syms memory leak in bpf_linker + - libbpf: Fix using invalidated memory in bpf_linker + - crypto: qat - remove unnecessary collision prevention step in PFVF + - crypto: qat - make pfvf send message direction agnostic + - crypto: qat - fix undetected PFVF timeout in ACK loop + - ath11k: Use host CE parameters for CE interrupts configuration + - arm64: dts: ti: k3-j721e: correct cache-sets info + - tty: serial: atmel: Check return code of dmaengine_submit() + - tty: serial: atmel: Call dma_async_issue_pending() + - mfd: atmel-flexcom: Remove #ifdef CONFIG_PM_SLEEP + - mfd: atmel-flexcom: Use .resume_noirq + - bfq: Do not let waker requests skip proper accounting + - libbpf: Silence uninitialized warning/error in btf_dump_dump_type_data + - media: i2c: imx274: fix s_frame_interval runtime resume not requested + - media: i2c: Re-order runtime pm initialisation + - media: i2c: ov8865: Fix lockdep error + - media: rcar-csi2: Correct the selection of hsfreqrange + - media: imx-pxp: Initialize the spinlock prior to using it + - media: si470x-i2c: fix possible memory leak in si470x_i2c_probe() + - media: mtk-vcodec: call v4l2_m2m_ctx_release first when file is released + - media: hantro: Hook up RK3399 JPEG encoder output + - media: coda: fix CODA960 JPEG encoder buffer overflow + - media: venus: correct low power frequency calculation for encoder + - media: venus: core: Fix a potential NULL pointer dereference in an error + handling path + - media: venus: core: Fix a resource leak in the error handling path of + 'venus_probe()' + - net: stmmac: Add platform level debug register dump feature + - thermal/drivers/imx: Implement runtime PM support + - igc: AF_XDP zero-copy metadata adjust breaks SKBs on XDP_PASS + - netfilter: bridge: add support for pppoe filtering + - powerpc: Avoid discarding flags in system_call_exception() + - arm64: dts: qcom: msm8916: fix MMC controller aliases + - drm/vmwgfx: Remove the deprecated lower mem limit + - drm/vmwgfx: Fail to initialize on broken configs + - cgroup: Trace event cgroup id fields should be u64 + - ACPI: EC: Rework flushing of EC work while suspended to idle + - thermal/drivers/imx8mm: Enable ADC when enabling monitor + - drm/amdgpu: Fix a NULL pointer dereference in + amdgpu_connector_lcd_native_mode() + - drm/radeon/radeon_kms: Fix a NULL pointer dereference in + radeon_driver_open_kms() + - libbpf: Clean gen_loader's attach kind. + - crypto: caam - save caam memory to support crypto engine retry mechanism. + - arm64: dts: ti: k3-am642: Fix the L2 cache sets + - arm64: dts: ti: k3-j7200: Fix the L2 cache sets + - arm64: dts: ti: k3-j721e: Fix the L2 cache sets + - arm64: dts: ti: k3-j7200: Correct the d-cache-sets info + - tty: serial: uartlite: allow 64 bit address + - serial: amba-pl011: do not request memory region twice + - mtd: core: provide unique name for nvmem device + - floppy: Fix hang in watchdog when disk is ejected + - staging: rtl8192e: return error code from rtllib_softmac_init() + - staging: rtl8192e: rtllib_module: fix error handle case in alloc_rtllib() + - Bluetooth: btmtksdio: fix resume failure + - bpf: Fix the test_task_vma selftest to support output shorter than 1 kB + - sched/fair: Fix detection of per-CPU kthreads waking a task + - sched/fair: Fix per-CPU kthread and wakee stacking for asym CPU capacity + - bpf: Adjust BTF log size limit. + - bpf: Disallow BPF_LOG_KERNEL log level for bpf(BPF_BTF_LOAD) + - bpf: Remove config check to enable bpf support for branch records + - arm64: clear_page() shouldn't use DC ZVA when DCZID_EL0.DZP == 1 + - arm64: mte: DC {GVA,GZVA} shouldn't be used when DCZID_EL0.DZP == 1 + - samples/bpf: Install libbpf headers when building + - samples/bpf: Clean up samples/bpf build failes + - samples: bpf: Fix xdp_sample_user.o linking with Clang + - samples: bpf: Fix 'unknown warning group' build warning on Clang + - media: dib8000: Fix a memleak in dib8000_init() + - media: saa7146: mxb: Fix a NULL pointer dereference in mxb_attach() + - media: si2157: Fix "warm" tuner state detection + - wireless: iwlwifi: Fix a double free in iwl_txq_dyn_alloc_dma + - sched/rt: Try to restart rt period timer when rt runtime exceeded + - ath10k: Fix the MTU size on QCA9377 SDIO + - Bluetooth: refactor set_exp_feature with a feature table + - Bluetooth: MGMT: Use hci_dev_test_and_{set,clear}_flag + - drm/amd/display: Fix bug in debugfs crc_win_update entry + - drm/msm/gpu: Don't allow zero fence_id + - drm/msm/dp: displayPort driver need algorithm rational + - rcu/exp: Mark current CPU as exp-QS in IPI loop second pass + - wcn36xx: Fix max channels retrieval + - drm/msm/dsi: fix initialization in the bonded DSI case + - mwifiex: Fix possible ABBA deadlock + - xfrm: fix a small bug in xfrm_sa_len() + - x86/uaccess: Move variable into switch case statement + - selftests: clone3: clone3: add case CLONE3_ARGS_NO_TEST + - selftests: harness: avoid false negatives if test has no ASSERTs + - crypto: stm32/cryp - fix CTR counter carry + - crypto: stm32/cryp - fix xts and race condition in crypto_engine requests + - crypto: stm32/cryp - check early input data + - crypto: stm32/cryp - fix double pm exit + - crypto: stm32/cryp - fix lrw chaining mode + - crypto: stm32/cryp - fix bugs and crash in tests + - crypto: stm32 - Revert broken pm_runtime_resume_and_get changes + - crypto: hisilicon/qm - fix incorrect return value of hisi_qm_resume() + - ath11k: Fix deleting uninitialized kernel timer during fragment cache flush + - spi: Fix incorrect cs_setup delay handling + - ARM: dts: gemini: NAS4220-B: fis-index-block with 128 KiB sectors + - perf/arm-cmn: Fix CPU hotplug unregistration + - media: dw2102: Fix use after free + - media: msi001: fix possible null-ptr-deref in msi001_probe() + - media: coda/imx-vdoa: Handle dma_set_coherent_mask error codes + - ath11k: Fix a NULL pointer dereference in ath11k_mac_op_hw_scan() + - net: dsa: hellcreek: Fix insertion of static FDB entries + - net: dsa: hellcreek: Add STP forwarding rule + - net: dsa: hellcreek: Allow PTP P2P measurements on blocked ports + - net: dsa: hellcreek: Add missing PTP via UDP rules + - arm64: dts: qcom: c630: Fix soundcard setup + - arm64: dts: qcom: ipq6018: Fix gpio-ranges property + - drm/msm/dpu: fix safe status debugfs file + - drm/bridge: ti-sn65dsi86: Set max register for regmap + - gpu: host1x: select CONFIG_DMA_SHARED_BUFFER + - drm/tegra: gr2d: Explicitly control module reset + - drm/tegra: vic: Fix DMA API misuse + - media: hantro: Fix probe func error path + - xfrm: interface with if_id 0 should return error + - xfrm: state and policy should fail if XFRMA_IF_ID 0 + - ARM: 9159/1: decompressor: Avoid UNPREDICTABLE NOP encoding + - usb: ftdi-elan: fix memory leak on device disconnect + - arm64: dts: marvell: cn9130: add GPIO and SPI aliases + - arm64: dts: marvell: cn9130: enable CP0 GPIO controllers + - ARM: dts: armada-38x: Add generic compatible to UART nodes + - mt76: mt7921: drop offload_flags overwritten + - wilc1000: fix double free error in probe() + - rtw88: add quirk to disable pci caps on HP 250 G7 Notebook PC + - iwlwifi: mvm: fix 32-bit build in FTM + - iwlwifi: mvm: test roc running status bits before removing the sta + - iwlwifi: mvm: perform 6GHz passive scan after suspend + - iwlwifi: mvm: set protected flag only for NDP ranging + - mmc: meson-mx-sdhc: add IRQ check + - mmc: meson-mx-sdio: add IRQ check + - block: fix error unwinding in device_add_disk + - selinux: fix potential memleak in selinux_add_opt() + - um: fix ndelay/udelay defines + - um: rename set_signals() to um_set_signals() + - um: virt-pci: Fix 32-bit compile + - lib/logic_iomem: Fix 32-bit build + - lib/logic_iomem: Fix operation on 32-bit + - um: virtio_uml: Fix time-travel external time propagation + - Bluetooth: L2CAP: Fix using wrong mode + - bpftool: Enable line buffering for stdout + - backlight: qcom-wled: Validate enabled string indices in DT + - backlight: qcom-wled: Pass number of elements to read to read_u32_array + - backlight: qcom-wled: Fix off-by-one maximum with default num_strings + - backlight: qcom-wled: Override default length with qcom,enabled-strings + - backlight: qcom-wled: Use cpu_to_le16 macro to perform conversion + - backlight: qcom-wled: Respect enabled-strings in set_brightness + - software node: fix wrong node passed to find nargs_prop + - Bluetooth: hci_qca: Stop IBS timer during BT OFF + - x86/boot/compressed: Move CLANG_FLAGS to beginning of KBUILD_CFLAGS + - crypto: octeontx2 - prevent underflow in get_cores_bmap() + - regulator: qcom-labibb: OCP interrupts are not a failure while disabled + - hwmon: (mr75203) fix wrong power-up delay value + - x86/mce/inject: Avoid out-of-bounds write when setting flags + - io_uring: remove double poll on poll update + - serial: 8250_bcm7271: Propagate error codes from brcmuart_probe() + - ACPI: scan: Create platform device for BCM4752 and LNV4752 ACPI nodes + - pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in + __nonstatic_find_io_region() + - pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in + nonstatic_find_mem_region() + - power: reset: mt6397: Check for null res pointer + - net/xfrm: IPsec tunnel mode fix inner_ipproto setting in sec_path + - net: ethernet: mtk_eth_soc: fix return values and refactor MDIO ops + - net: dsa: fix incorrect function pointer check for MRP ring roles + - netfilter: ipt_CLUSTERIP: fix refcount leak in clusterip_tg_check() + - bpf, sockmap: Fix return codes from tcp_bpf_recvmsg_parser() + - bpf, sockmap: Fix double bpf_prog_put on error case in map_link + - bpf: Don't promote bogus looking registers after null check. + - bpf: Fix verifier support for validation of async callbacks + - bpf: Fix SO_RCVBUF/SO_SNDBUF handling in _bpf_setsockopt(). + - netfilter: nft_payload: do not update layer 4 checksum when mangling + fragments + - netfilter: nft_set_pipapo: allocate pcpu scratch maps on clone + - net: fix SOF_TIMESTAMPING_BIND_PHC to work with multiple sockets + - ppp: ensure minimum packet size in ppp_write() + - rocker: fix a sleeping in atomic bug + - staging: greybus: audio: Check null pointer + - fsl/fman: Check for null pointer after calling devm_ioremap + - Bluetooth: hci_bcm: Check for error irq + - Bluetooth: hci_qca: Fix NULL vs IS_ERR_OR_NULL check in qca_serdev_probe + - net/smc: Reset conn->lgr when link group registration fails + - usb: dwc3: qcom: Fix NULL vs IS_ERR checking in dwc3_qcom_probe + - usb: dwc2: do not gate off the hardware if it does not support clock gating + - usb: dwc2: gadget: initialize max_speed from params + - usb: gadget: u_audio: Subdevice 0 for capture ctls + - HID: hid-uclogic-params: Invalid parameter check in uclogic_params_init + - HID: hid-uclogic-params: Invalid parameter check in + uclogic_params_get_str_desc + - HID: hid-uclogic-params: Invalid parameter check in + uclogic_params_huion_init + - HID: hid-uclogic-params: Invalid parameter check in + uclogic_params_frame_init_v1_buttonpad + - debugfs: lockdown: Allow reading debugfs files that are not world readable + - drivers/firmware: Add missing platform_device_put() in sysfb_create_simplefb + - serial: liteuart: fix MODULE_ALIAS + - serial: stm32: move tx dma terminate DMA to shutdown + - x86, sched: Fix undefined reference to init_freq_invariance_cppc() build + error + - net/mlx5e: Fix page DMA map/unmap attributes + - net/mlx5e: Fix wrong usage of fib_info_nh when routes with nexthop objects + are used + - net/mlx5e: Don't block routes with nexthop objects in SW + - Revert "net/mlx5e: Block offload of outer header csum for UDP tunnels" + - Revert "net/mlx5e: Block offload of outer header csum for GRE tunnel" + - net/mlx5e: Fix matching on modified inner ip_ecn bits + - net/mlx5: Fix access to sf_dev_table on allocation failure + - net/mlx5e: Sync VXLAN udp ports during uplink representor profile change + - net/mlx5: Set command entry semaphore up once got index free + - lib/mpi: Add the return value check of kcalloc() + - Bluetooth: L2CAP: uninitialized variables in l2cap_sock_setsockopt() + - mptcp: fix per socket endpoint accounting + - mptcp: fix opt size when sending DSS + MP_FAIL + - mptcp: fix a DSS option writing error + - spi: spi-meson-spifc: Add missing pm_runtime_disable() in meson_spifc_probe + - octeontx2-af: Increment ptp refcount before use + - ax25: uninitialized variable in ax25_setsockopt() + - netrom: fix api breakage in nr_setsockopt() + - regmap: Call regmap_debugfs_exit() prior to _init() + - net: mscc: ocelot: fix incorrect balancing with down LAG ports + - can: mcp251xfd: add missing newline to printed strings + - tpm: add request_locality before write TPM_INT_ENABLE + - tpm_tis: Fix an error handling path in 'tpm_tis_core_init()' + - can: softing: softing_startstop(): fix set but not used variable warning + - can: xilinx_can: xcan_probe(): check for error irq + - can: rcar_canfd: rcar_canfd_channel_probe(): make sure we free CAN network + device + - pcmcia: fix setting of kthread task states + - net/sched: flow_dissector: Fix matching on zone id for invalid conns + - net: openvswitch: Fix matching zone id for invalid conns arriving from tc + - net: openvswitch: Fix ct_state nat flags for conns arriving from tc + - iwlwifi: mvm: Use div_s64 instead of do_div in iwl_mvm_ftm_rtt_smoothing() + - bnxt_en: Refactor coredump functions + - bnxt_en: move coredump functions into dedicated file + - bnxt_en: use firmware provided max timeout for messages + - net: mcs7830: handle usb read errors properly + - ext4: avoid trim error on fs with small groups + - ASoC: Intel: sof_sdw: fix jack detection on HP Spectre x360 convertible + - ALSA: jack: Add missing rwsem around snd_ctl_remove() calls + - ALSA: PCM: Add missing rwsem around snd_ctl_remove() calls + - ALSA: hda: Add missing rwsem around snd_ctl_remove() calls + - ALSA: hda: Fix potential deadlock at codec unbinding + - RDMA/bnxt_re: Scan the whole bitmap when checking if "disabling RCFW with + pending cmd-bit" + - RDMA/hns: Validate the pkey index + - scsi: pm80xx: Update WARN_ON check in pm8001_mpi_build_cmd() + - clk: renesas: rzg2l: Check return value of pm_genpd_init() + - clk: renesas: rzg2l: propagate return value of_genpd_add_provider_simple() + - clk: imx8mn: Fix imx8mn_clko1_sels + - powerpc/prom_init: Fix improper check of prom_getprop() + - ASoC: uniphier: drop selecting non-existing SND_SOC_UNIPHIER_AIO_DMA + - ASoC: codecs: wcd938x: add SND_SOC_WCD938_SDW to codec list instead + - RDMA/rtrs-clt: Fix the initial value of min_latency + - ALSA: hda: Make proper use of timecounter + - dt-bindings: thermal: Fix definition of cooling-maps contribution property + - powerpc/perf: Fix PMU callbacks to clear pending PMI before resetting an + overflown PMC + - powerpc/modules: Don't WARN on first module allocation attempt + - powerpc/32s: Fix shift-out-of-bounds in KASAN init + - clocksource: Avoid accidental unstable marking of clocksources + - ALSA: oss: fix compile error when OSS_DEBUG is enabled + - ALSA: usb-audio: Drop superfluous '0' in Presonus Studio 1810c's ID + - misc: at25: Make driver OF independent again + - char/mwave: Adjust io port register size + - binder: fix handling of error during copy + - binder: avoid potential data leakage when copying txn + - openrisc: Add clone3 ABI wrapper + - iommu: Extend mutex lock scope in iommu_probe_device() + - iommu/io-pgtable-arm: Fix table descriptor paddr formatting + - scsi: core: Fix scsi_device_max_queue_depth() + - scsi: ufs: Fix race conditions related to driver data + - RDMA/qedr: Fix reporting max_{send/recv}_wr attrs + - PCI/MSI: Fix pci_irq_vector()/pci_irq_get_affinity() + - powerpc/powermac: Add additional missing lockdep_register_key() + - iommu/arm-smmu-qcom: Fix TTBR0 read + - RDMA/core: Let ib_find_gid() continue search even after empty entry + - RDMA/cma: Let cma_resolve_ib_dev() continue search even after empty entry + - ASoC: rt5663: Handle device_property_read_u32_array error codes + - of: unittest: fix warning on PowerPC frame size warning + - of: unittest: 64 bit dma address test requires arch support + - clk: stm32: Fix ltdc's clock turn off by clk_disable_unused() after system + enter shell + - mips: add SYS_HAS_CPU_MIPS64_R5 config for MIPS Release 5 support + - mips: fix Kconfig reference to PHYS_ADDR_T_64BIT + - dmaengine: pxa/mmp: stop referencing config->slave_id + - iommu/amd: Restore GA log/tail pointer on host resume + - iommu/amd: X2apic mode: re-enable after resume + - iommu/amd: X2apic mode: setup the INTX registers on mask/unmask + - iommu/amd: X2apic mode: mask/unmask interrupts on suspend/resume + - iommu/amd: Remove useless irq affinity notifier + - ASoC: Intel: catpt: Test dmaengine_submit() result before moving on + - iommu/iova: Fix race between FQ timeout and teardown + - ASoC: mediatek: mt8195: correct default value + - of: fdt: Aggregate the processing of "linux,usable-memory-range" + - efi: apply memblock cap after memblock_add() + - scsi: block: pm: Always set request queue runtime active in + blk_post_runtime_resume() + - phy: uniphier-usb3ss: fix unintended writing zeros to PHY register + - ASoC: mediatek: Check for error clk pointer + - powerpc/64s: Mask NIP before checking against SRR0 + - powerpc/64s: Use EMIT_WARN_ENTRY for SRR debug warnings + - phy: cadence: Sierra: Fix to get correct parent for mux clocks + - ASoC: samsung: idma: Check of ioremap return value + - misc: lattice-ecp3-config: Fix task hung when firmware load failed + - ASoC: mediatek: mt8195: correct pcmif BE dai control flow + - arm64: tegra: Remove non existent Tegra194 reset + - mips: lantiq: add support for clk_set_parent() + - mips: bcm63xx: add support for clk_set_parent() + - powerpc/xive: Add missing null check after calling kmalloc + - ASoC: fsl_mqs: fix MODULE_ALIAS + - ALSA: hda/cs8409: Increase delay during jack detection + - ALSA: hda/cs8409: Fix Jack detection after resume + - RDMA/cxgb4: Set queue pair state when being queried + - clk: qcom: gcc-sc7280: Mark gcc_cfg_noc_lpass_clk always enabled + - ASoC: imx-card: Need special setting for ak4497 on i.MX8MQ + - ASoC: imx-card: Fix mclk calculation issue for akcodec + - ASoC: imx-card: improve the sound quality for low rate + - ASoC: fsl_asrc: refine the check of available clock divider + - clk: bm1880: remove kfrees on static allocations + - of: base: Fix phandle argument length mismatch error message + - of/fdt: Don't worry about non-memory region overlap for no-map + - MIPS: boot/compressed/: add __ashldi3 to target for ZSTD compression + - MIPS: compressed: Fix build with ZSTD compression + - mailbox: fix gce_num of mt8192 driver data + - ARM: dts: omap3-n900: Fix lp5523 for multi color + - leds: lp55xx: initialise output direction from dts + - Bluetooth: Fix debugfs entry leak in hci_register_dev() + - Bluetooth: Fix memory leak of hci device + - drm/panel: Delete panel on mipi_dsi_attach() failure + - Bluetooth: Fix removing adv when processing cmd complete + - fs: dlm: filter user dlm messages for kernel locks + - drm/lima: fix warning when CONFIG_DEBUG_SG=y & CONFIG_DMA_API_DEBUG=y + - selftests/bpf: Fix memory leaks in btf_type_c_dump() helper + - selftests/bpf: Destroy XDP link correctly + - selftests/bpf: Fix bpf_object leak in skb_ctx selftest + - ar5523: Fix null-ptr-deref with unexpected WDCMSG_TARGET_START reply + - drm/bridge: dw-hdmi: handle ELD when DRM_BRIDGE_ATTACH_NO_CONNECTOR + - drm/nouveau/pmu/gm200-: avoid touching PMU outside of DEVINIT/PREOS/ACR + - media: atomisp: fix try_fmt logic + - media: atomisp: set per-device's default mode + - media: atomisp-ov2680: Fix ov2680_set_fmt() clobbering the exposure + - media: atomisp: check before deference asd variable + - ARM: shmobile: rcar-gen2: Add missing of_node_put() + - batman-adv: allow netlink usage in unprivileged containers + - media: atomisp: handle errors at sh_css_create_isp_params() + - ath11k: Fix crash caused by uninitialized TX ring + - usb: dwc3: meson-g12a: fix shared reset control use + - USB: ehci_brcm_hub_control: Improve port index sanitizing + - usb: gadget: f_fs: Use stream_open() for endpoint files + - psi: Fix PSI_MEM_FULL state when tasks are in memstall and doing reclaim + - drm: panel-orientation-quirks: Add quirk for the Lenovo Yoga Book X91F/L + - HID: magicmouse: Report battery level over USB + - HID: apple: Do not reset quirks when the Fn key is not found + - media: b2c2: Add missing check in flexcop_pci_isr: + - libbpf: Accommodate DWARF/compiler bug with duplicated structs + - ethernet: renesas: Use div64_ul instead of do_div + - EDAC/synopsys: Use the quirk for version instead of ddr version + - arm64: dts: qcom: sm8350: Shorten camera-thermal-bottom name + - soc: imx: gpcv2: Synchronously suspend MIX domains + - ARM: imx: rename DEBUG_IMX21_IMX27_UART to DEBUG_IMX27_UART + - drm/amd/display: check top_pipe_to_program pointer + - drm/amdgpu/display: set vblank_disable_immediate for DC + - soc: ti: pruss: fix referenced node in error message + - mlxsw: pci: Add shutdown method in PCI driver + - drm/amd/display: add else to avoid double destroy clk_mgr + - drm/bridge: megachips: Ensure both bridges are probed before registration + - mxser: keep only !tty test in ISR + - tty: serial: imx: disable UCR4_OREN in .stop_rx() instead of .shutdown() + - gpiolib: acpi: Do not set the IRQ type if the IRQ is already in use + - HSI: core: Fix return freed object in hsi_new_client + - crypto: jitter - consider 32 LSB for APT + - mwifiex: Fix skb_over_panic in mwifiex_usb_recv() + - rsi: Fix use-after-free in rsi_rx_done_handler() + - rsi: Fix out-of-bounds read in rsi_read_pkt() + - ath11k: Avoid NULL ptr access during mgmt tx cleanup + - media: venus: avoid calling core_clk_setrate() concurrently during + concurrent video sessions + - regulator: da9121: Prevent current limit change when enabled + - drm/vmwgfx: Release ttm memory if probe fails + - drm/vmwgfx: Introduce a new placement for MOB page tables + - ACPI / x86: Drop PWM2 device on Lenovo Yoga Book from always present table + - ACPI: Change acpi_device_always_present() into acpi_device_override_status() + - ACPI / x86: Allow specifying acpi_device_override_status() quirks by path + - ACPI / x86: Add not-present quirk for the PCI0.SDHB.BRC1 device on the GPD + win + - arm64: dts: ti: j7200-main: Fix 'dtbs_check' serdes_ln_ctrl node + - arm64: dts: ti: j721e-main: Fix 'dtbs_check' in serdes_ln_ctrl node + - usb: uhci: add aspeed ast2600 uhci support + - floppy: Add max size check for user space request + - x86/mm: Flush global TLB when switching to trampoline page-table + - drm: rcar-du: Fix CRTC timings when CMM is used + - media: uvcvideo: Increase UVC_CTRL_CONTROL_TIMEOUT to 5 seconds. + - media: rcar-vin: Update format alignment constraints + - media: saa7146: hexium_orion: Fix a NULL pointer dereference in + hexium_attach() + - media: atomisp: fix "variable dereferenced before check 'asd'" + - media: m920x: don't use stack on USB reads + - thunderbolt: Runtime PM activate both ends of the device link + - arm64: dts: renesas: Fix thermal bindings + - iwlwifi: mvm: synchronize with FW after multicast commands + - iwlwifi: mvm: avoid clearing a just saved session protection id + - rcutorture: Avoid soft lockup during cpu stall + - ath11k: avoid deadlock by change ieee80211_queue_work for regd_update_work + - ath10k: Fix tx hanging + - net-sysfs: update the queue counts in the unregistration path + - net: phy: prefer 1000baseT over 1000baseKX + - gpio: aspeed: Convert aspeed_gpio.lock to raw_spinlock + - gpio: aspeed-sgpio: Convert aspeed_sgpio.lock to raw_spinlock + - selftests/ftrace: make kprobe profile testcase description unique + - ath11k: Avoid false DEADLOCK warning reported by lockdep + - ARM: dts: qcom: sdx55: fix IPA interconnect definitions + - x86/mce: Allow instrumentation during task work queueing + - x86/mce: Mark mce_panic() noinstr + - x86/mce: Mark mce_end() noinstr + - x86/mce: Mark mce_read_aux() noinstr + - net: bonding: debug: avoid printing debug logs when bond is not notifying + peers + - kunit: Don't crash if no parameters are generated + - bpf: Do not WARN in bpf_warn_invalid_xdp_action() + - drm/amdkfd: Fix error handling in svm_range_add + - HID: quirks: Allow inverting the absolute X/Y values + - HID: i2c-hid-of: Expose the touchscreen-inverted properties + - media: igorplugusb: receiver overflow should be reported + - media: rockchip: rkisp1: use device name for debugfs subdir name + - media: saa7146: hexium_gemini: Fix a NULL pointer dereference in + hexium_attach() + - mmc: tmio: reinit card irqs in reset routine + - mmc: core: Fixup storing of OCR for MMC_QUIRK_NONSTD_SDIO + - drm/amd/amdgpu: fix psp tmr bo pin count leak in SRIOV + - drm/amd/amdgpu: fix gmc bo pin count leak in SRIOV + - audit: ensure userspace is penalized the same as the kernel when under + pressure + - arm64: dts: ls1028a-qds: move rtc node to the correct i2c bus + - arm64: tegra: Adjust length of CCPLEX cluster MMIO region + - crypto: ccp - Move SEV_INIT retry for corrupted data + - crypto: hisilicon/hpre - fix memory leak in hpre_curve25519_src_init() + - PM: runtime: Add safety net to supplier device release + - cpufreq: Fix initialization of min and max frequency QoS requests + - mt76: mt7615: fix possible deadlock while mt7615_register_ext_phy() + - mt76: do not pass the received frame with decryption error + - mt76: mt7615: improve wmm index allocation + - ath9k_htc: fix NULL pointer dereference at ath9k_htc_rxep() + - ath9k_htc: fix NULL pointer dereference at ath9k_htc_tx_get_packet() + - ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream + - rtw88: 8822c: update rx settings to prevent potential hw deadlock + - PM: AVS: qcom-cpr: Use div64_ul instead of do_div + - iwlwifi: fix leaks/bad data after failed firmware load + - iwlwifi: remove module loading failure message + - iwlwifi: mvm: Fix calculation of frame length + - iwlwifi: mvm: fix AUX ROC removal + - iwlwifi: pcie: make sure prph_info is set when treating wakeup IRQ + - mmc: sdhci-pci-gli: GL9755: Support for CD/WP inversion on OF platforms + - block: check minor range in device_add_disk() + - um: registers: Rename function names to avoid conflicts and build problems + - ath11k: Fix napi related hang + - Bluetooth: btintel: Add missing quirks and msft ext for legacy bootloader + - Bluetooth: vhci: Set HCI_QUIRK_VALID_LE_STATES + - xfrm: rate limit SA mapping change message to user space + - drm/etnaviv: consider completed fence seqno in hang check + - jffs2: GC deadlock reading a page that is used in jffs2_write_begin() + - ACPICA: actypes.h: Expand the ACPI_ACCESS_ definitions + - ACPICA: Utilities: Avoid deleting the same object twice in a row + - ACPICA: Executer: Fix the REFCLASS_REFOF case in acpi_ex_opcode_1A_0T_1R() + - ACPICA: Fix wrong interpretation of PCC address + - ACPICA: Hardware: Do not flush CPU cache when entering S4 and S5 + - mmc: mtk-sd: Use readl_poll_timeout instead of open-coded polling + - drm/amdgpu: fixup bad vram size on gmc v8 + - amdgpu/pm: Make sysfs pm attributes as read-only for VFs + - ACPI: battery: Add the ThinkPad "Not Charging" quirk + - ACPI: CPPC: Check present CPUs for determining _CPC is valid + - btrfs: remove BUG_ON() in find_parent_nodes() + - btrfs: remove BUG_ON(!eie) in find_parent_nodes + - net: mdio: Demote probed message to debug print + - mac80211: allow non-standard VHT MCS-10/11 + - dm btree: add a defensive bounds check to insert_at() + - dm space map common: add bounds check to sm_ll_lookup_bitmap() + - bpf/selftests: Fix namespace mount setup in tc_redirect + - mlxsw: pci: Avoid flow control for EMAD packets + - net: phy: marvell: configure RGMII delays for 88E1118 + - net: gemini: allow any RGMII interface mode + - regulator: qcom_smd: Align probe function with rpmh-regulator + - serial: pl010: Drop CR register reset on set_termios + - serial: pl011: Drop CR register reset on set_termios + - serial: core: Keep mctrl register state and cached copy in sync + - random: do not throw away excess input to crng_fast_load + - net/mlx5: Update log_max_qp value to FW max capability + - net/mlx5e: Unblock setting vid 0 for VF in case PF isn't eswitch manager + - parisc: Avoid calling faulthandler_disabled() twice + - can: flexcan: allow to change quirks at runtime + - can: flexcan: rename RX modes + - can: flexcan: add more quirks to describe RX path capabilities + - x86/kbuild: Enable CONFIG_KALLSYMS_ALL=y in the defconfigs + - powerpc/6xx: add missing of_node_put + - powerpc/powernv: add missing of_node_put + - powerpc/cell: add missing of_node_put + - powerpc/btext: add missing of_node_put + - powerpc/watchdog: Fix missed watchdog reset due to memory ordering race + - ASoC: imx-hdmi: add put_device() after of_find_device_by_node() + - i2c: i801: Don't silently correct invalid transfer size + - powerpc/smp: Move setup_profiling_timer() under CONFIG_PROFILING + - i2c: mpc: Correct I2C reset procedure + - clk: meson: gxbb: Fix the SDM_EN bit for MPLL0 on GXBB + - powerpc/powermac: Add missing lockdep_register_key() + - KVM: PPC: Book3S: Suppress warnings when allocating too big memory slots + - KVM: PPC: Book3S: Suppress failed alloc warning in H_COPY_TOFROM_GUEST + - w1: Misuse of get_user()/put_user() reported by sparse + - nvmem: core: set size for sysfs bin file + - dm: fix alloc_dax error handling in alloc_dev + - interconnect: qcom: rpm: Prevent integer overflow in rate + - scsi: ufs: Fix a kernel crash during shutdown + - scsi: lpfc: Fix leaked lpfc_dmabuf mbox allocations with NPIV + - scsi: lpfc: Trigger SLI4 firmware dump before doing driver cleanup + - ALSA: seq: Set upper limit of processed events + - MIPS: Loongson64: Use three arguments for slti + - powerpc/40x: Map 32Mbytes of memory at startup + - selftests/powerpc/spectre_v2: Return skip code when miss_percent is high + - powerpc: handle kdump appropriately with crash_kexec_post_notifiers option + - powerpc/fadump: Fix inaccurate CPU state info in vmcore generated with panic + - udf: Fix error handling in udf_new_inode() + - MIPS: OCTEON: add put_device() after of_find_device_by_node() + - irqchip/gic-v4: Disable redistributors' view of the VPE table at boot time + - i2c: designware-pci: Fix to change data types of hcnt and lcnt parameters + - selftests/powerpc: Add a test of sigreturning to the kernel + - MIPS: Octeon: Fix build errors using clang + - scsi: sr: Don't use GFP_DMA + - scsi: mpi3mr: Fixes around reply request queues + - ASoC: mediatek: mt8192-mt6359: fix device_node leak + - phy: phy-mtk-tphy: add support efuse setting + - ASoC: mediatek: mt8173: fix device_node leak + - ASoC: mediatek: mt8183: fix device_node leak + - habanalabs: skip read fw errors if dynamic descriptor invalid + - phy: mediatek: Fix missing check in mtk_mipi_tx_probe + - mailbox: change mailbox-mpfs compatible string + - seg6: export get_srh() for ICMP handling + - icmp: ICMPV6: Examine invoking packet for Segment Route Headers. + - udp6: Use Segment Routing Header for dest address if present + - rpmsg: core: Clean up resources on announce_create failure. + - ifcvf/vDPA: fix misuse virtio-net device config size for blk dev + - crypto: omap-aes - Fix broken pm_runtime_and_get() usage + - crypto: stm32/crc32 - Fix kernel BUG triggered in probe() + - crypto: caam - replace this_cpu_ptr with raw_cpu_ptr + - ubifs: Error path in ubifs_remount_rw() seems to wrongly free write buffers + - tpm: fix potential NULL pointer access in tpm_del_char_device + - tpm: fix NPE on probe for missing device + - mfd: tps65910: Set PWR_OFF bit during driver probe + - spi: uniphier: Fix a bug that doesn't point to private data correctly + - xen/gntdev: fix unmap notification order + - md: Move alloc/free acct bioset in to personality + - HID: magicmouse: Fix an error handling path in magicmouse_probe() + - fuse: Pass correct lend value to filemap_write_and_wait_range() + - serial: Fix incorrect rs485 polarity on uart open + - cputime, cpuacct: Include guest time in user time in cpuacct.stat + - sched/cpuacct: Fix user/system in shown cpuacct.usage* + - tracing/kprobes: 'nmissed' not showed correctly for kretprobe + - tracing: Have syscall trace events use trace_event_buffer_lock_reserve() + - remoteproc: imx_rproc: Fix a resource leak in the remove function + - iwlwifi: mvm: Increase the scan timeout guard to 30 seconds + - s390/mm: fix 2KB pgtable release race + - device property: Fix fwnode_graph_devcon_match() fwnode leak + - drm/tegra: submit: Add missing pm_runtime_mark_last_busy() + - drm/etnaviv: limit submit sizes + - drm/amd/display: Fix the uninitialized variable in enable_stream_features() + - drm/nouveau/kms/nv04: use vzalloc for nv04_display + - drm/bridge: analogix_dp: Make PSR-exit block less + - parisc: Fix lpa and lpa_user defines + - powerpc/64s/radix: Fix huge vmap false positive + - scsi: lpfc: Fix lpfc_force_rscn ndlp kref imbalance + - drm/amdgpu: don't do resets on APUs which don't support it + - drm/i915/display/ehl: Update voltage swing table + - PCI: xgene: Fix IB window setup + - PCI: pciehp: Use down_read/write_nested(reset_lock) to fix lockdep errors + - PCI: pci-bridge-emul: Make expansion ROM Base Address register read-only + - PCI: pci-bridge-emul: Properly mark reserved PCIe bits in PCI config space + - PCI: pci-bridge-emul: Fix definitions of reserved bits + - PCI: pci-bridge-emul: Correctly set PCIe capabilities + - PCI: pci-bridge-emul: Set PCI_STATUS_CAP_LIST for PCIe device + - xfrm: fix policy lookup for ipv6 gre packets + - xfrm: fix dflt policy check when there is no policy configured + - btrfs: fix deadlock between quota enable and other quota operations + - btrfs: check the root node for uptodate before returning it + - btrfs: respect the max size in the header when activating swap file + - ext4: make sure to reset inode lockdep class when quota enabling fails + - ext4: make sure quota gets properly shutdown on error + - ext4: fix a possible ABBA deadlock due to busy PA + - ext4: initialize err_blk before calling __ext4_get_inode_loc + - ext4: fix fast commit may miss tracking range for FALLOC_FL_ZERO_RANGE + - ext4: set csum seed in tmp inode while migrating to extents + - ext4: Fix BUG_ON in ext4_bread when write quota data + - ext4: use ext4_ext_remove_space() for fast commit replay delete range + - ext4: fast commit may miss tracking unwritten range during ftruncate + - ext4: destroy ext4_fc_dentry_cachep kmemcache on module removal + - ext4: fix null-ptr-deref in '__ext4_journal_ensure_credits' + - ext4: fix an use-after-free issue about data=journal writeback mode + - ext4: don't use the orphan list when migrating an inode + - tracing/osnoise: Properly unhook events if start_per_cpu_kthreads() fails + - ath11k: qmi: avoid error messages when dma allocation fails + - drm/radeon: fix error handling in radeon_driver_open_kms + - of: base: Improve argument length mismatch error + - firmware: Update Kconfig help text for Google firmware + - can: mcp251xfd: mcp251xfd_tef_obj_read(): fix typo in error message + - media: rcar-csi2: Optimize the selection PHTW register + - drm/vc4: hdmi: Make sure the device is powered with CEC + - media: correct MEDIA_TEST_SUPPORT help text + - Documentation: coresight: Fix documentation issue + - Documentation: dmaengine: Correctly describe dmatest with channel unset + - Documentation: ACPI: Fix data node reference documentation + - Documentation, arch: Remove leftovers from raw device + - Documentation, arch: Remove leftovers from CIFS_WEAK_PW_HASH + - Documentation: refer to config RANDOMIZE_BASE for kernel address-space + randomization + - Documentation: fix firewire.rst ABI file path error + - net: usb: Correct reset handling of smsc95xx + - Bluetooth: hci_sync: Fix not setting adv set duration + - scsi: core: Show SCMD_LAST in text form + - scsi: ufs: ufs-mediatek: Fix error checking in ufs_mtk_init_va09_pwr_ctrl() + - RDMA/cma: Remove open coding of overflow checking for private_data_len + - dmaengine: uniphier-xdmac: Fix type of address variables + - dmaengine: idxd: fix wq settings post wq disable + - RDMA/hns: Modify the mapping attribute of doorbell to device + - RDMA/rxe: Fix a typo in opcode name + - dmaengine: stm32-mdma: fix STM32_MDMA_CTBR_TSEL_MASK + - Revert "net/mlx5: Add retry mechanism to the command entry index allocation" + - powerpc/cell: Fix clang -Wimplicit-fallthrough warning + - powerpc/fsl/dts: Enable WA for erratum A-009885 on fman3l MDIO buses + - block: fix async_depth sysfs interface for mq-deadline + - block: Fix fsync always failed if once failed + - drm/vc4: crtc: Drop feed_txp from state + - drm/vc4: Fix non-blocking commit getting stuck forever + - drm/vc4: crtc: Copy assigned channel to the CRTC + - bpftool: Remove inclusion of utilities.mak from Makefiles + - bpftool: Fix indent in option lists in the documentation + - xdp: check prog type before updating BPF link + - bpf: Fix mount source show for bpffs + - bpf: Mark PTR_TO_FUNC register initially with zero offset + - perf evsel: Override attr->sample_period for non-libpfm4 events + - ipv4: update fib_info_cnt under spinlock protection + - ipv4: avoid quadratic behavior in netns dismantle + - mlx5: Don't accidentally set RTO_ONLINK before mlx5e_route_lookup_ipv4_get() + - net/fsl: xgmac_mdio: Add workaround for erratum A-009885 + - net/fsl: xgmac_mdio: Fix incorrect iounmap when removing module + - parisc: pdc_stable: Fix memory leak in pdcs_register_pathentries + - riscv: dts: microchip: mpfs: Drop empty chosen node + - drm/vmwgfx: Remove explicit transparent hugepages support + - drm/vmwgfx: Remove unused compile options + - f2fs: fix remove page failed in invalidate compress pages + - f2fs: fix to avoid panic in is_alive() if metadata is inconsistent + - f2fs: compress: fix potential deadlock of compress file + - f2fs: fix to reserve space for IO align feature + - f2fs: fix to check available space of CP area correctly in + update_ckpt_flags() + - crypto: octeontx2 - uninitialized variable in kvf_limits_store() + - af_unix: annote lockless accesses to unix_tot_inflight & gc_in_progress + - clk: Emit a stern warning with writable debugfs enabled + - clk: si5341: Fix clock HW provider cleanup + - pinctrl/rockchip: fix gpio device creation + - gpio: mpc8xxx: Fix IRQ check in mpc8xxx_probe + - gpio: idt3243x: Fix IRQ check in idt_gpio_probe + - net/smc: Fix hung_task when removing SMC-R devices + - net: axienet: increase reset timeout + - net: axienet: Wait for PhyRstCmplt after core reset + - net: axienet: reset core on initialization prior to MDIO access + - net: axienet: add missing memory barriers + - net: axienet: limit minimum TX ring size + - net: axienet: Fix TX ring slot available check + - net: axienet: fix number of TX ring slots for available check + - net: axienet: fix for TX busy handling + - net: axienet: increase default TX ring size to 128 + - bitops: protect find_first_{,zero}_bit properly + - um: gitignore: Add kernel/capflags.c + - HID: vivaldi: fix handling devices not using numbered reports + - rtc: pxa: fix null pointer dereference + - vdpa/mlx5: Fix wrong configuration of virtio_version_1_0 + - virtio_ring: mark ring unused on error + - taskstats: Cleanup the use of task->exit_code + - inet: frags: annotate races around fqdir->dead and fqdir->high_thresh + - netns: add schedule point in ops_exit_list() + - iwlwifi: fix Bz NMI behaviour + - xfrm: Don't accidentally set RTO_ONLINK in decode_session4() + - vdpa/mlx5: Restore cur_num_vqs in case of failure in change_num_qps() + - gre: Don't accidentally set RTO_ONLINK in gre_fill_metadata_dst() + - libcxgb: Don't accidentally set RTO_ONLINK in cxgb_find_route() + - perf script: Fix hex dump character output + - dmaengine: at_xdmac: Don't start transactions at tx_submit level + - dmaengine: at_xdmac: Start transfer for cyclic channels in issue_pending + - dmaengine: at_xdmac: Print debug message after realeasing the lock + - dmaengine: at_xdmac: Fix concurrency over xfers_list + - dmaengine: at_xdmac: Fix lld view setting + - dmaengine: at_xdmac: Fix at_xdmac_lld struct definition + - perf tools: Drop requirement for libstdc++.so for libopencsd check + - perf probe: Fix ppc64 'perf probe add events failed' case + - devlink: Remove misleading internal_flags from health reporter dump + - arm64: dts: qcom: msm8996: drop not documented adreno properties + - net: fix sock_timestamping_bind_phc() to release device + - net: bonding: fix bond_xmit_broadcast return value error bug + - net: ipa: fix atomic update in ipa_endpoint_replenish() + - net_sched: restore "mpu xxx" handling + - net: mscc: ocelot: don't let phylink re-enable TX PAUSE on the NPI port + - bcmgenet: add WOL IRQ check + - net: wwan: Fix MRU mismatch issue which may lead to data connection lost + - net: ethernet: mtk_eth_soc: fix error checking in mtk_mac_config() + - net: ocelot: Fix the call to switchdev_bridge_port_offload + - net: sfp: fix high power modules without diagnostic monitoring + - net: cpsw: avoid alignment faults by taking NET_IP_ALIGN into account + - net: phy: micrel: use kszphy_suspend()/kszphy_resume for irq aware devices + - net: mscc: ocelot: fix using match before it is set + - dt-bindings: display: meson-dw-hdmi: add missing sound-name-prefix property + - dt-bindings: display: meson-vpu: Add missing amlogic,canvas property + - dt-bindings: watchdog: Require samsung,syscon-phandle for Exynos7 + - sch_api: Don't skip qdisc attach on ingress + - scripts/dtc: dtx_diff: remove broken example from help text + - lib82596: Fix IRQ check in sni_82596_probe + - mm/hmm.c: allow VM_MIXEDMAP to work with hmm_range_fault + - bonding: Fix extraction of ports from the packet headers + - lib/test_meminit: destroy cache in kmem_cache_alloc_bulk() test + - scripts: sphinx-pre-install: add required ctex dependency + - scripts: sphinx-pre-install: Fix ctex support on Debian + - Linux 5.15.17 + * rtw88_8821ce causes freeze (LP: #1927808) // Jammy update: v5.15.17 upstream + stable release (LP: #1959376) + - rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE + * Jammy update: v5.15.16 upstream stable release (LP: #1958977) + - devtmpfs regression fix: reconfigure on each mount + - orangefs: Fix the size of a memory allocation in orangefs_bufmap_alloc() + - remoteproc: qcom: pil_info: Don't memcpy_toio more than is provided + - perf: Protect perf_guest_cbs with RCU + - KVM: x86: Register perf callbacks after calling vendor's hardware_setup() + - KVM: x86: Register Processor Trace interrupt hook iff PT enabled in guest + - KVM: x86: don't print when fail to read/write pv eoi memory + - KVM: s390: Clarify SIGP orders versus STOP/RESTART + - remoteproc: qcom: pas: Add missing power-domain "mxc" for CDSP + - 9p: only copy valid iattrs in 9P2000.L setattr implementation + - video: vga16fb: Only probe for EGA and VGA 16 color graphic cards + - media: uvcvideo: fix division by zero at stream start + - rtlwifi: rtl8192cu: Fix WARNING when calling local_irq_restore() with + interrupts enabled + - firmware: qemu_fw_cfg: fix sysfs information leak + - firmware: qemu_fw_cfg: fix NULL-pointer deref on duplicate entries + - firmware: qemu_fw_cfg: fix kobject leak in probe error path + - perf annotate: Avoid TUI crash when navigating in the annotation of + recursive functions + - KVM: x86: remove PMU FIXED_CTR3 from msrs_to_save_all + - ALSA: hda/realtek: Add speaker fixup for some Yoga 15ITL5 devices + - ALSA: hda/realtek - Fix silent output on Gigabyte X570 Aorus Master after + reboot from Windows + - ALSA: hda: ALC287: Add Lenovo IdeaPad Slim 9i 14ITL5 speaker quirk + - ALSA: hda/tegra: Fix Tegra194 HDA reset failure + - ALSA: hda/realtek: Add quirk for Legion Y9000X 2020 + - ALSA: hda/realtek: Re-order quirk entries for Lenovo + - mtd: fixup CFI on ixp4xx + - Linux 5.15.16 + * UBSAN: array-index-out-of-bounds in dcn31_resources on AMD yellow carp + platform (LP: #1958229) + - drm/amd/display: Fix out of bounds access on DNC31 stream encoder regs + * Jammy update: v5.15.15 upstream stable release (LP: #1958418) + - s390/kexec: handle R_390_PLT32DBL rela in arch_kexec_apply_relocations_add() + - workqueue: Fix unbind_workers() VS wq_worker_running() race + - staging: r8188eu: switch the led off during deinit + - bpf: Fix out of bounds access from invalid *_or_null type verification + - Bluetooth: btusb: Add protocol for MediaTek bluetooth devices(MT7922) + - Bluetooth: btusb: Add the new support ID for Realtek RTL8852A + - Bluetooth: btusb: Add support for IMC Networks Mediatek Chip(MT7921) + - Bbluetooth: btusb: Add another Bluetooth part for Realtek 8852AE + - Bluetooth: btusb: fix memory leak in btusb_mtk_submit_wmt_recv_urb() + - Bluetooth: btusb: enable Mediatek to support AOSP extension + - Bluetooth: btusb: Add one more Bluetooth part for the Realtek RTL8852AE + - fget: clarify and improve __fget_files() implementation + - Bluetooth: btusb: Add two more Bluetooth parts for WCN6855 + - Bluetooth: btusb: Add support for Foxconn MT7922A + - Bluetooth: btintel: Fix broken LED quirk for legacy ROM devices + - Bluetooth: btusb: Add support for Foxconn QCA 0xe0d0 + - Bluetooth: bfusb: fix division by zero in send path + - ARM: dts: exynos: Fix BCM4330 Bluetooth reset polarity in I9100 + - USB: core: Fix bug in resuming hub's handling of wakeup requests + - USB: Fix "slab-out-of-bounds Write" bug in usb_hcd_poll_rh_status + - ath11k: Fix buffer overflow when scanning with extraie + - mmc: sdhci-pci: Add PCI ID for Intel ADL + - Bluetooth: add quirk disabling LE Read Transmit Power + - Bluetooth: btbcm: disable read tx power for some Macs with the T2 Security + chip + - Bluetooth: btbcm: disable read tx power for MacBook Air 8,1 and 8,2 + - veth: Do not record rx queue hint in veth_xmit + - mfd: intel-lpss: Fix too early PM enablement in the ACPI ->probe() + - can: gs_usb: fix use of uninitialized variable, detach device on reception + of invalid USB data + - can: isotp: convert struct tpcon::{idx,len} to unsigned int + - can: gs_usb: gs_can_start_xmit(): zero-initialize hf->{flags,reserved} + - random: fix data race on crng_node_pool + - random: fix data race on crng init time + - random: fix crash on multiple early calls to add_bootloader_randomness() + - platform/x86/intel: hid: add quirk to support Surface Go 3 + - media: Revert "media: uvcvideo: Set unique vdev name based in type" + - staging: wlan-ng: Avoid bitwise vs logical OR warning in + hfa384x_usb_throttlefn() + - drm/i915: Avoid bitwise vs logical OR warning in snb_wm_latency_quirk() + - staging: greybus: fix stack size warning with UBSAN + - Linux 5.15.15 + * UBSAN warning on unplugging USB4 DP alt mode from AMD Yellow Carp graphics + card (LP: #1956497) + - drm/amd/display: explicitly set is_dsc_supported to false before use + * Support USB4 DP alt mode for AMD Yellow Carp graphics card (LP: #1953008) + - drm/amd/display: Enable PSR by default on newer DCN + - SAUCE: drm/amd/display: Fixup previous PSR policy commit + - drm/amd/display: Fix USB4 hot plug crash issue + - drm/amd/display: Creating a fw boot options bit for an upcoming feature + - drm/amd/display: Enable dpia in dmub only for DCN31 B0 + - drm/amd/display: MST support for DPIA + - drm/amd/display: Set phy_mux_sel bit in dmub scratch register + - drm/amd/display: Don't lock connection_mutex for DMUB HPD + - drm/amd/display: Add callbacks for DMUB HPD IRQ notifications + * Jammy update: v5.15.14 upstream stable release (LP: #1957882) + - fscache_cookie_enabled: check cookie is valid before accessing it + - selftests: x86: fix [-Wstringop-overread] warn in test_process_vm_readv() + - tracing: Fix check for trace_percpu_buffer validity in get_trace_buf() + - tracing: Tag trace_percpu_buffer as a percpu pointer + - Revert "RDMA/mlx5: Fix releasing unallocated memory in dereg MR flow" + - ieee802154: atusb: fix uninit value in atusb_set_extended_addr + - i40e: Fix to not show opcode msg on unsuccessful VF MAC change + - iavf: Fix limit of total number of queues to active queues of VF + - RDMA/core: Don't infoleak GRH fields + - Revert "net: usb: r8152: Add MAC passthrough support for more Lenovo Docks" + - netrom: fix copying in user data in nr_setsockopt + - RDMA/uverbs: Check for null return of kmalloc_array + - mac80211: initialize variable have_higher_than_11mbit + - mac80211: mesh: embedd mesh_paths and mpp_paths into ieee80211_if_mesh + - sfc: The RX page_ring is optional + - i40e: fix use-after-free in i40e_sync_filters_subtask() + - i40e: Fix for displaying message regarding NVM version + - i40e: Fix incorrect netdev's real number of RX/TX queues + - ftrace/samples: Add missing prototypes direct functions + - ipv4: Check attribute length for RTA_GATEWAY in multipath route + - ipv4: Check attribute length for RTA_FLOW in multipath route + - ipv6: Check attribute length for RTA_GATEWAY in multipath route + - ipv6: Check attribute length for RTA_GATEWAY when deleting multipath route + - lwtunnel: Validate RTA_ENCAP_TYPE attribute length + - selftests: net: udpgro_fwd.sh: explicitly checking the available ping + feature + - sctp: hold endpoint before calling cb in sctp_transport_lookup_process + - batman-adv: mcast: don't send link-local multicast to mcast routers + - sch_qfq: prevent shift-out-of-bounds in qfq_init_qdisc + - net: ena: Fix undefined state when tx request id is out of bounds + - net: ena: Fix wrong rx request id by resetting device + - net: ena: Fix error handling when calculating max IO queues number + - md/raid1: fix missing bitmap update w/o WriteMostly devices + - EDAC/i10nm: Release mdev/mbase when failing to detect HBM + - KVM: x86: Check for rmaps allocation + - cgroup: Use open-time credentials for process migraton perm checks + - cgroup: Allocate cgroup_file_ctx for kernfs_open_file->priv + - cgroup: Use open-time cgroup namespace for process migration perm checks + - Revert "i2c: core: support bus regulator controlling in adapter" + - i2c: mpc: Avoid out of bounds memory access + - power: supply: core: Break capacity loop + - power: reset: ltc2952: Fix use of floating point literals + - reset: renesas: Fix Runtime PM usage + - rndis_host: support Hytera digital radios + - gpio: gpio-aspeed-sgpio: Fix wrong hwirq base in irq handler + - net ticp:fix a kernel-infoleak in __tipc_sendmsg() + - phonet: refcount leak in pep_sock_accep + - fbdev: fbmem: add a helper to determine if an aperture is used by a fw fb + - drm/amdgpu: disable runpm if we are the primary adapter + - power: bq25890: Enable continuous conversion for ADC at charging + - ipv6: Continue processing multipath route even if gateway attribute is + invalid + - ipv6: Do cleanup if attribute validation fails in multipath route + - auxdisplay: charlcd: checking for pointer reference before dereferencing + - drm/amdgpu: fix dropped backing store handling in amdgpu_dma_buf_move_notify + - drm/amd/pm: Fix xgmi link control on aldebaran + - usb: mtu3: fix interval value for intr and isoc + - scsi: libiscsi: Fix UAF in iscsi_conn_get_param()/iscsi_conn_teardown() + - ip6_vti: initialize __ip6_tnl_parm struct in vti6_siocdevprivate + - net: udp: fix alignment problem in udp4_seq_show() + - atlantic: Fix buff_ring OOB in aq_ring_rx_clean + - drm/amd/pm: skip setting gfx cgpg in the s0ix suspend-resume + - mISDN: change function names to avoid conflicts + - drm/amd/display: fix B0 TMDS deepcolor no dislay issue + - drm/amd/display: Added power down for DCN10 + - ipv6: raw: check passed optlen before reading + - userfaultfd/selftests: fix hugetlb area allocations + - ARM: dts: gpio-ranges property is now required + - Input: zinitix - make sure the IRQ is allocated before it gets enabled + - Revert "drm/amdgpu: stop scheduler when calling hw_fini (v2)" + - drm/amd/pm: keep the BACO feature enabled for suspend + - Linux 5.15.14 + * alsa/sdw: add sdw audio machine driver for several ADL machines + (LP: #1951563) + - ASoC: Intel: sof_sdw: Add support for SKU 0AF3 product + - ASoC: Intel: soc-acpi: add SKU 0AF3 SoundWire configuration + - ASoC: Intel: sof_sdw: Add support for SKU 0B00 and 0B01 products + - ASoC: Intel: sof_sdw: Add support for SKU 0B11 product + - ASoC: Intel: sof_sdw: Add support for SKU 0B13 product + - ASoC: Intel: soc-acpi: add SKU 0B13 SoundWire configuration + - ASoC: Intel: sof_sdw: Add support for SKU 0B29 product + - ASoC: Intel: soc-acpi: add SKU 0B29 SoundWire configuration + - ASoC: Intel: sof_sdw: Add support for SKU 0B12 product + - ASoC: intel: sof_sdw: return the original error number + - ASoC: intel: sof_sdw: rename be_index/link_id to link_index + - ASoC: intel: sof_sdw: Use a fixed DAI link id for AMP + - ASoC: intel: sof_sdw: move DMIC link id overwrite to create_sdw_dailink + - ASoC: intel: sof_sdw: remove SOF_RT715_DAI_ID_FIX quirk + - ASoC: intel: sof_sdw: remove sof_sdw_mic_codec_mockup_init + - ASoC: intel: sof_sdw: remove get_next_be_id + - ASoC: intel: sof_sdw: add link adr order check + * Add basic Wifi support for Qualcomm WCN6856 (LP: #1955613) + - ath11k: change to use dynamic memory for channel list of scan + - ath11k: add string type to search board data in board-2.bin for WCN6855 + * Enable audio mute LED and mic mute LED on a new HP laptop (LP: #1956454) + - ALSA: hda/realtek: Use ALC285_FIXUP_HP_GPIO_LED on another HP laptop + * Add missing BT ID for Qualcomm WCN6856 (LP: #1956407) + - Bluetooth: btusb: Add one more Bluetooth part for WCN6855 + * Add Bluetooth support for Qualcomm WCN6856 (LP: #1955689) + - Bluetooth: btusb: Add support using different nvm for variant WCN6855 + controller + - Bluetooth: btusb: re-definition for board_id in struct qca_version + - Bluetooth: btusb: Add the new support IDs for WCN6855 + * Improve performance and idle power consumption (LP: #1941893) + - x86: ACPI: cstate: Optimize C3 entry on AMD CPUs + * [Yellow Carp] USB4 interdomain communication problems (LP: #1945361) + - thunderbolt: Enable retry logic for intra-domain control packets + * 1951111: + - scsi: lpfc: Fix mailbox command failure during driver initialization + * [Jammy] Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.3 for Ubuntu + 22.04 (LP: #1951111) + - scsi: lpfc: Fix premature rpi release for unsolicited TPLS and LS_RJT + - scsi: lpfc: Fix hang on unload due to stuck fport node + - scsi: lpfc: Fix rediscovery of tape device after LIP + - scsi: lpfc: Don't remove ndlp on PRLI errors in P2P mode + - scsi: lpfc: Fix EEH support for NVMe I/O + - scsi: lpfc: Adjust bytes received vales during cmf timer interval + - scsi: lpfc: Fix I/O block after enabling managed congestion mode + - scsi: lpfc: Zero CGN stats only during initial driver load and stat reset + - scsi: lpfc: Improve PBDE checks during SGL processing + - scsi: lpfc: Update lpfc version to 14.0.0.2 + * smartpqi: Update 20.04.4 to latest kernel.org patch level (LP: #1953689) + - scsi: smartpqi: Update device removal management + - scsi: smartpqi: Capture controller reason codes + - scsi: smartpqi: Update LUN reset handler + - scsi: smartpqi: Add TEST UNIT READY check for SANITIZE operation + - scsi: smartpqi: Avoid failing I/Os for offline devices + - scsi: smartpqi: Add extended report physical LUNs + - scsi: smartpqi: Fix boot failure during LUN rebuild + - scsi: smartpqi: Fix duplicate device nodes for tape changers + - scsi: smartpqi: Add 3252-8i PCI id + - scsi: smartpqi: Update version to 2.1.12-055 + * Let VMD follow host bridge PCIe settings (LP: #1954611) + - PCI: vmd: Honor ACPI _OSC on PCIe features + * Fix spurious wakeup caused by Intel 7560 WWAN (LP: #1956443) + - net: wwan: iosm: Keep device at D0 for s2idle case + * [uacc-0623] hisi_sec2 fail to alloc uacce (LP: #1933301) + - crypto: hisilicon/qm - modify the uacce mode check + * Jammy update: v5.15.13 upstream stable release (LP: #1956926) + - Input: i8042 - add deferred probe support + - Input: i8042 - enable deferred probe quirk for ASUS UM325UA + - tomoyo: Check exceeded quota early in tomoyo_domain_quota_is_ok(). + - tomoyo: use hwight16() in tomoyo_domain_quota_is_ok() + - net/sched: Extend qdisc control block with tc control block + - parisc: Clear stale IIR value on instruction access rights trap + - platform/mellanox: mlxbf-pmc: Fix an IS_ERR() vs NULL bug in + mlxbf_pmc_map_counters + - platform/x86: apple-gmux: use resource_size() with res + - memblock: fix memblock_phys_alloc() section mismatch error + - recordmcount.pl: fix typo in s390 mcount regex + - powerpc/ptdump: Fix DEBUG_WX since generic ptdump conversion + - efi: Move efifb_setup_from_dmi() prototype from arch headers + - selinux: initialize proto variable in selinux_ip_postroute_compat() + - scsi: lpfc: Terminate string in lpfc_debugfs_nvmeio_trc_write() + - net/mlx5: DR, Fix NULL vs IS_ERR checking in dr_domain_init_resources + - net/mlx5: Fix error print in case of IRQ request failed + - net/mlx5: Fix SF health recovery flow + - net/mlx5: Fix tc max supported prio for nic mode + - net/mlx5e: Wrap the tx reporter dump callback to extract the sq + - net/mlx5e: Fix interoperability between XSK and ICOSQ recovery flow + - net/mlx5e: Fix ICOSQ recovery flow for XSK + - net/mlx5e: Use tc sample stubs instead of ifdefs in source file + - net/mlx5e: Delete forward rule for ct or sample action + - udp: using datalen to cap ipv6 udp max gso segments + - selftests: Calculate udpgso segment count without header adjustment + - sctp: use call_rcu to free endpoint + - net/smc: fix using of uninitialized completions + - net: usb: pegasus: Do not drop long Ethernet frames + - net: ag71xx: Fix a potential double free in error handling paths + - net: lantiq_xrx200: fix statistics of received bytes + - NFC: st21nfca: Fix memory leak in device probe and remove + - net/smc: don't send CDC/LLC message if link not ready + - net/smc: fix kernel panic caused by race of smc_sock + - igc: Do not enable crosstimestamping for i225-V models + - igc: Fix TX timestamp support for non-MSI-X platforms + - drm/amd/display: Send s0i2_rdy in stream_count == 0 optimization + - drm/amd/display: Set optimize_pwr_state for DCN31 + - ionic: Initialize the 'lif->dbid_inuse' bitmap + - net/mlx5e: Fix wrong features assignment in case of error + - net: bridge: mcast: add and enforce query interval minimum + - net: bridge: mcast: add and enforce startup query interval minimum + - selftests/net: udpgso_bench_tx: fix dst ip argument + - selftests: net: Fix a typo in udpgro_fwd.sh + - net: bridge: mcast: fix br_multicast_ctx_vlan_global_disabled helper + - net/ncsi: check for error return from call to nla_put_u32 + - selftests: net: using ping6 for IPv6 in udpgro_fwd.sh + - fsl/fman: Fix missing put_device() call in fman_port_probe + - i2c: validate user data in compat ioctl + - nfc: uapi: use kernel size_t to fix user-space builds + - uapi: fix linux/nfc.h userspace compilation errors + - drm/nouveau: wait for the exclusive fence after the shared ones v2 + - drm/amdgpu: When the VCN(1.0) block is suspended, powergating is explicitly + enabled + - drm/amdgpu: add support for IP discovery gc_info table v2 + - drm/amd/display: Changed pipe split policy to allow for multi-display pipe + split + - xhci: Fresco FL1100 controller should not have BROKEN_MSI quirk set. + - usb: gadget: f_fs: Clear ffs_eventfd in ffs_data_clear. + - usb: mtu3: add memory barrier before set GPD's HWO + - usb: mtu3: fix list_head check warning + - usb: mtu3: set interval of FS intr and isoc endpoint + - nitro_enclaves: Use get_user_pages_unlocked() call to handle mmap assert + - binder: fix async_free_space accounting for empty parcels + - scsi: vmw_pvscsi: Set residual data length conditionally + - Input: appletouch - initialize work before device registration + - Input: spaceball - fix parsing of movement data packets + - mm/damon/dbgfs: fix 'struct pid' leaks in 'dbgfs_target_ids_write()' + - net: fix use-after-free in tw_timer_handler + - fs/mount_setattr: always cleanup mount_kattr + - perf intel-pt: Fix parsing of VM time correlation arguments + - perf script: Fix CPU filtering of a script's switch events + - perf scripts python: intel-pt-events.py: Fix printing of switch events + - Linux 5.15.13 + * Miscellaneous Ubuntu changes + - [Packaging] getabis: Add fwinfo.builtin to the ABI + - [Packaging] Add list of built-in firmwares to the ABI + - [Config] x86-64: SYSFB_SIMPLEFB=y + - [packaging] arm64: introduce the lowlatency and lowlatency-64k flavours + - [packaging] arm64: updateconfigs + - [Config] annotations: remove duplicates when arm64-generic == + arm64-generic-64k option + - [Config] annotations: introduce arm64-lowlatency and arm64-lowlatency-64k + kconfig options checks + - [Packaging] Update dependency of pahole / dwarves + - [Config] toolchain version update + * Miscellaneous upstream changes + - scsi: lpfc: Revert LOG_TRACE_EVENT back to LOG_INIT prior to + driver_resource_setup() + - scsi: lpfc: Correct sysfs reporting of loop support after SFP status change + - scsi: lpfc: Allow PLOGI retry if previous PLOGI was aborted + - scsi: lpfc: Update lpfc version to 14.0.0.3 + - Revert "rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE" + + [ Ubuntu: 5.15.0-18.18 ] + + * jammy/linux: 5.15.0-18.18 -proposed tracker (LP: #1958638) + * CVE-2021-4155 + - xfs: map unwritten blocks in XFS_IOC_{ALLOC, FREE}SP just like fallocate + * CVE-2022-0185 + - SAUCE: vfs: test that one given mount param is not larger than PAGE_SIZE + * [UBUNTU 20.04] KVM hardware diagnose data improvements for guest kernel - + kernel part (LP: #1953334) + - KVM: s390: add debug statement for diag 318 CPNC data + * OOB write on BPF_RINGBUF (LP: #1956585) + - SAUCE: bpf: prevent helper argument PTR_TO_ALLOC_MEM to have offset other + than 0 + * Miscellaneous Ubuntu changes + - [Config] re-enable shiftfs + - [SAUCE] shiftfs: support kernel 5.15 + - [Config] update toolchain versions + * Miscellaneous upstream changes + - vfs: fs_context: fix up param length parsing in legacy_parse_param + + [ Ubuntu: 5.15.0-17.17 ] + + * jammy/linux: 5.15.0-17.17 -proposed tracker (LP: #1957809) + + [ Ubuntu: 5.15.0-16.16 ] + + * 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" + + [ Ubuntu: 5.15.0-15.15 ] + + * 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 + + [ Ubuntu: 5.15.0-14.14 ] + + * 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" + + [ Ubuntu: 5.15.0-13.13 ] + + * 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 + + [ Ubuntu: 5.15.0-12.12 ] + + * 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" + + [ Ubuntu: 5.15.0-11.11 ] + + * 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" + + [ Ubuntu: 5.15.0-10.10 ] + + * 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 + + [ Ubuntu: 5.15.0-9.9 ] + + * 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 + + [ Ubuntu: 5.15.0-0.0 ] + + * Empty entry + + [ Ubuntu: 5.15.0-8.8 ] + + * 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 + * Rebase to v5.15 + + [ Ubuntu: 5.15.0-7.7 ] + + * 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 + * Rebase to v5.15-rc7 + + [ Ubuntu: 5.15.0-6.6 ] + + * 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" + * Rebase to v5.15-rc6 + + [ Ubuntu: 5.15.0-5.5 ] + + * 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 + * Rebase to v5.15-rc5 + + [ Ubuntu: 5.15.0-4.4 ] + + * 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" + * Rebase to v5.15-rc4 + + [ Ubuntu: 5.15.0-3.3 ] + + * 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 + * Rebase to v5.15-rc3 + + [ Ubuntu: 5.15.0-2.2 ] + + * 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 + * Rebase to v5.15-rc2 + + [ Ubuntu: 5.15.0-1.1 ] + + * 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" + * Rebase to v5.15-rc1 + + [ Ubuntu: 5.15.0-0.0 ] + + * Empty entry + + [ Ubuntu: 5.14.0-9.9 ] + + * 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 + + [ Ubuntu: 5.14.0-8.8 ] + + * 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" + * Rebase to v5.14 + + [ Ubuntu: 5.14.0-7.7 ] + + * 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" + * Rebase to v5.14-rc7 + + [ Ubuntu: 5.14.0-6.6 ] + + * Miscellaneous Ubuntu changes + - no changes upload (to avoid picking up libc6 from -proposed) + * No changes upload (to avoid picking up libc6 from -proposed) + + [ Ubuntu: 5.14.0-5.5 ] + + * 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 + * Rebase to v5.14-rc6 + + [ Ubuntu: 5.14.0-4.4 ] + + * 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" + + [ Ubuntu: 5.14.0-3.3 ] + + * 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 + * Rebase to v5.14-rc3 + + [ Ubuntu: 5.14.0-2.2 ] + + * 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" + * Rebase to v5.14-rc2 + + [ Ubuntu: 5.14.0-1.1 ] + + * 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" + * Rebase to v5.14-rc1 + + [ Ubuntu: 5.14.0-0.0 ] + + * Empty entry + + -- Khalid Elmously Thu, 10 Feb 2022 00:35:08 -0500 + +linux-gcp (5.15.0-1000.0) jammy; urgency=medium + + * jammy/linux-gcp: Initial bring-up of jammy-linux-gcp + + [ Ubuntu: 5.13.0-30.33 ] + + -- Khalid Elmously Tue, 09 Feb 2022 04:48:49 -0500 + +linux (5.15.0-22.22) jammy; urgency=medium + + * jammy/linux: 5.15.0-22.22 -proposed tracker (LP: #1960290) + + -- Paolo Pisati Tue, 08 Feb 2022 10:48:49 +0100 + +linux (5.15.0-21.21) jammy; urgency=medium + + * jammy/linux: 5.15.0-21.21 -proposed tracker (LP: #1960211) + + * Miscellaneous Ubuntu changes + - [packaging] unhook lowlatency flavours from the build + + -- Paolo Pisati Mon, 07 Feb 2022 11:30:18 +0100 + +linux (5.15.0-20.20) jammy; urgency=medium + + * jammy/linux: 5.15.0-20.20 -proposed tracker (LP: #1959881) + + * Jammy update: v5.15.19 upstream stable release (LP: #1959879) + - can: m_can: m_can_fifo_{read,write}: don't read or write from/to FIFO if + length is 0 + - net: sfp: ignore disabled SFP node + - net: stmmac: configure PTP clock source prior to PTP initialization + - net: stmmac: skip only stmmac_ptp_register when resume from suspend + - ARM: 9179/1: uaccess: avoid alignment faults in + copy_[from|to]_kernel_nofault + - ARM: 9180/1: Thumb2: align ALT_UP() sections in modules sufficiently + - KVM: arm64: Use shadow SPSR_EL1 when injecting exceptions on !VHE + - s390/hypfs: include z/VM guests with access control group set + - s390/nmi: handle guarded storage validity failures for KVM guests + - s390/nmi: handle vector validity failures for KVM guests + - bpf: Guard against accessing NULL pt_regs in bpf_get_task_stack() + - powerpc32/bpf: Fix codegen for bpf-to-bpf calls + - powerpc/bpf: Update ldimm64 instructions during extra pass + - scsi: zfcp: Fix failed recovery on gone remote port with non-NPIV FCP + devices + - udf: Restore i_lenAlloc when inode expansion fails + - udf: Fix NULL ptr deref when converting from inline format + - efi: runtime: avoid EFIv2 runtime services on Apple x86 machines + - PM: wakeup: simplify the output logic of pm_show_wakelocks() + - tracing/histogram: Fix a potential memory leak for kstrdup() + - tracing: Don't inc err_log entry count if entry allocation fails + - ceph: properly put ceph_string reference after async create attempt + - ceph: set pool_ns in new inode layout for async creates + - fsnotify: fix fsnotify hooks in pseudo filesystems + - Revert "KVM: SVM: avoid infinite loop on NPF from bad address" + - psi: Fix uaf issue when psi trigger is destroyed while being polled + - powerpc/audit: Fix syscall_get_arch() + - perf/x86/intel/uncore: Fix CAS_COUNT_WRITE issue for ICX + - perf/x86/intel: Add a quirk for the calculation of the number of counters on + Alder Lake + - drm/etnaviv: relax submit size limits + - drm/atomic: Add the crtc to affected crtc only if uapi.enable = true + - drm/amd/display: Fix FP start/end for dcn30_internal_validate_bw. + - KVM: LAPIC: Also cancel preemption timer during SET_LAPIC + - KVM: SVM: Never reject emulation due to SMAP errata for !SEV guests + - KVM: SVM: Don't intercept #GP for SEV guests + - KVM: x86: nSVM: skip eax alignment check for non-SVM instructions + - KVM: x86: Forcibly leave nested virt when SMM state is toggled + - KVM: x86: Keep MSR_IA32_XSS unchanged for INIT + - KVM: x86: Update vCPU's runtime CPUID on write to MSR_IA32_XSS + - KVM: x86: Sync the states size with the XCR0/IA32_XSS at, any time + - KVM: PPC: Book3S HV Nested: Fix nested HFSCR being clobbered with multiple + vCPUs + - dm: revert partial fix for redundant bio-based IO accounting + - block: add bio_start_io_acct_time() to control start_time + - dm: properly fix redundant bio-based IO accounting + - serial: pl011: Fix incorrect rs485 RTS polarity on set_mctrl + - serial: 8250: of: Fix mapped region size when using reg-offset property + - serial: stm32: fix software flow control transfer + - tty: n_gsm: fix SW flow control encoding/handling + - tty: Partially revert the removal of the Cyclades public API + - tty: Add support for Brainboxes UC cards. + - kbuild: remove include/linux/cyclades.h from header file check + - usb-storage: Add unusual-devs entry for VL817 USB-SATA bridge + - usb: xhci-plat: fix crash when suspend if remote wake enable + - usb: common: ulpi: Fix crash in ulpi_match() + - usb: gadget: f_sourcesink: Fix isoc transfer for USB_SPEED_SUPER_PLUS + - usb: cdnsp: Fix segmentation fault in cdns_lost_power function + - usb: dwc3: xilinx: Skip resets and USB3 register settings for USB2.0 mode + - usb: dwc3: xilinx: Fix error handling when getting USB3 PHY + - USB: core: Fix hang in usb_kill_urb by adding memory barriers + - usb: typec: tcpci: don't touch CC line if it's Vconn source + - usb: typec: tcpm: Do not disconnect while receiving VBUS off + - usb: typec: tcpm: Do not disconnect when receiving VSAFE0V + - ucsi_ccg: Check DEV_INT bit only when starting CCG4 + - mm, kasan: use compare-exchange operation to set KASAN page tag + - jbd2: export jbd2_journal_[grab|put]_journal_head + - ocfs2: fix a deadlock when commit trans + - sched/membarrier: Fix membarrier-rseq fence command missing from query + bitmask + - PCI/sysfs: Find shadow ROM before static attribute initialization + - x86/MCE/AMD: Allow thresholding interface updates after init + - x86/cpu: Add Xeon Icelake-D to list of CPUs that support PPIN + - powerpc/32s: Allocate one 256k IBAT instead of two consecutives 128k IBATs + - powerpc/32s: Fix kasan_init_region() for KASAN + - powerpc/32: Fix boot failure with GCC latent entropy plugin + - i40e: Increase delay to 1 s after global EMP reset + - i40e: Fix issue when maximum queues is exceeded + - i40e: Fix queues reservation for XDP + - i40e: Fix for failed to init adminq while VF reset + - i40e: fix unsigned stat widths + - usb: roles: fix include/linux/usb/role.h compile issue + - rpmsg: char: Fix race between the release of rpmsg_ctrldev and cdev + - rpmsg: char: Fix race between the release of rpmsg_eptdev and cdev + - scsi: elx: efct: Don't use GFP_KERNEL under spin lock + - scsi: bnx2fc: Flush destroy_work queue before calling bnx2fc_interface_put() + - ipv6_tunnel: Rate limit warning messages + - ARM: 9170/1: fix panic when kasan and kprobe are enabled + - net: fix information leakage in /proc/net/ptype + - hwmon: (lm90) Mark alert as broken for MAX6646/6647/6649 + - hwmon: (lm90) Mark alert as broken for MAX6680 + - ping: fix the sk_bound_dev_if match in ping_lookup + - ipv4: avoid using shared IP generator for connected sockets + - hwmon: (lm90) Reduce maximum conversion rate for G781 + - NFSv4: Handle case where the lookup of a directory fails + - NFSv4: nfs_atomic_open() can race when looking up a non-regular file + - net-procfs: show net devices bound packet types + - drm/msm: Fix wrong size calculation + - drm/msm/dsi: Fix missing put_device() call in dsi_get_phy + - drm/msm/dsi: invalid parameter check in msm_dsi_phy_enable + - ipv6: annotate accesses to fn->fn_sernum + - NFS: Ensure the server has an up to date ctime before hardlinking + - NFS: Ensure the server has an up to date ctime before renaming + - KVM: arm64: pkvm: Use the mm_ops indirection for cache maintenance + - SUNRPC: Use BIT() macro in rpc_show_xprt_state() + - SUNRPC: Don't dereference xprt->snd_task if it's a cookie + - powerpc64/bpf: Limit 'ldbrx' to processors compliant with ISA v2.06 + - netfilter: conntrack: don't increment invalid counter on NF_REPEAT + - powerpc/64s: Mask SRR0 before checking against the masked NIP + - perf: Fix perf_event_read_local() time + - sched/pelt: Relax the sync of util_sum with util_avg + - net: phy: broadcom: hook up soft_reset for BCM54616S + - net: stmmac: dwmac-visconti: Fix bit definitions for ETHER_CLK_SEL + - net: stmmac: dwmac-visconti: Fix clock configuration for RMII mode + - phylib: fix potential use-after-free + - octeontx2-af: Do not fixup all VF action entries + - octeontx2-af: Fix LBK backpressure id count + - octeontx2-af: Retry until RVU block reset complete + - octeontx2-pf: cn10k: Ensure valid pointers are freed to aura + - octeontx2-af: verify CQ context updates + - octeontx2-af: Increase link credit restore polling timeout + - octeontx2-af: cn10k: Do not enable RPM loopback for LPC interfaces + - octeontx2-pf: Forward error codes to VF + - rxrpc: Adjust retransmission backoff + - efi/libstub: arm64: Fix image check alignment at entry + - io_uring: fix bug in slow unregistering of nodes + - Drivers: hv: balloon: account for vmbus packet header in max_pkt_size + - hwmon: (lm90) Re-enable interrupts after alert clears + - hwmon: (lm90) Mark alert as broken for MAX6654 + - hwmon: (lm90) Fix sysfs and udev notifications + - hwmon: (adt7470) Prevent divide by zero in adt7470_fan_write() + - powerpc/perf: Fix power_pmu_disable to call clear_pmi_irq_pending only if + PMI is pending + - ipv4: fix ip option filtering for locally generated fragments + - ibmvnic: Allow extra failures before disabling + - ibmvnic: init ->running_cap_crqs early + - ibmvnic: don't spin in tasklet + - net/smc: Transitional solution for clcsock race issue + - video: hyperv_fb: Fix validation of screen resolution + - can: tcan4x5x: regmap: fix max register value + - drm/msm/hdmi: Fix missing put_device() call in msm_hdmi_get_phy + - drm/msm/dpu: invalid parameter check in dpu_setup_dspp_pcc + - drm/msm/a6xx: Add missing suspend_count increment + - yam: fix a memory leak in yam_siocdevprivate() + - net: cpsw: Properly initialise struct page_pool_params + - net: hns3: handle empty unknown interrupt for VF + - sch_htb: Fail on unsupported parameters when offload is requested + - Revert "drm/ast: Support 1600x900 with 108MHz PCLK" + - KVM: selftests: Don't skip L2's VMCALL in SMM test for SVM guest + - ceph: put the requests/sessions when it fails to alloc memory + - gve: Fix GFP flags when allocing pages + - Revert "ipv6: Honor all IPv6 PIO Valid Lifetime values" + - net: bridge: vlan: fix single net device option dumping + - ipv4: raw: lock the socket in raw_bind() + - ipv4: tcp: send zero IPID in SYNACK messages + - ipv4: remove sparse error in ip_neigh_gw4() + - net: bridge: vlan: fix memory leak in __allowed_ingress + - Bluetooth: refactor malicious adv data check + - irqchip/realtek-rtl: Map control data to virq + - irqchip/realtek-rtl: Fix off-by-one in routing + - dt-bindings: can: tcan4x5x: fix mram-cfg RX FIFO config + - perf/core: Fix cgroup event list management + - psi: fix "no previous prototype" warnings when CONFIG_CGROUPS=n + - psi: fix "defined but not used" warnings when CONFIG_PROC_FS=n + - usb: dwc3: xilinx: fix uninitialized return value + - usr/include/Makefile: add linux/nfc.h to the compile-test coverage + - fsnotify: invalidate dcache before IN_DELETE event + - block: Fix wrong offset in bio_truncate() + - mtd: rawnand: mpc5121: Remove unused variable in ads5121_select_chip() + - Linux 5.15.19 + + * Jammy update: v5.15.18 upstream stable release (LP: #1959878) + - drm/i915: Flush TLBs before releasing backing store + - drm/amd/display: reset dcn31 SMU mailbox on failures + - io_uring: fix not released cached task refs + - bnx2x: Utilize firmware 7.13.21.0 + - bnx2x: Invalidate fastpath HSI version for VFs + - memcg: flush stats only if updated + - memcg: unify memcg stat flushing + - memcg: better bounds on the memcg stats updates + - rcu: Tighten rcu_advance_cbs_nowake() checks + - select: Fix indefinitely sleeping task in poll_schedule_timeout() + - drm/amdgpu: Use correct VIEWPORT_DIMENSION for DCN2 + - arm64/bpf: Remove 128MB limit for BPF JIT programs + - Linux 5.15.18 + + * CVE-2022-22942 + - SAUCE: drm/vmwgfx: Fix stale file descriptors on failed usercopy + + * CVE-2022-24122 + - ucount: Make get_ucount a safe get_user replacement + + * CVE-2022-23222 + - bpf, selftests: Add verifier test for mem_or_null register with offset. + + * Miscellaneous Ubuntu changes + - [Config] toolchain version update + + * Miscellaneous upstream changes + - s390/module: fix loading modules with a lot of relocations + + -- Paolo Pisati Thu, 03 Feb 2022 12:09:37 +0100 + +linux (5.15.0-19.19) jammy; urgency=medium + + * jammy/linux: 5.15.0-19.19 -proposed tracker (LP: #1959418) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Jammy update: v5.15.17 upstream stable release (LP: #1959376) + - KVM: x86/mmu: Fix write-protection of PTs mapped by the TDP MMU + - KVM: VMX: switch blocked_vcpu_on_cpu_lock to raw spinlock + - HID: Ignore battery for Elan touchscreen on HP Envy X360 15t-dr100 + - HID: uhid: Fix worker destroying device without any protection + - HID: wacom: Reset expected and received contact counts at the same time + - HID: wacom: Ignore the confidence flag when a touch is removed + - HID: wacom: Avoid using stale array indicies to read contact count + - ALSA: core: Fix SSID quirk lookup for subvendor=0 + - f2fs: fix to do sanity check on inode type during garbage collection + - f2fs: fix to do sanity check in is_alive() + - f2fs: avoid EINVAL by SBI_NEED_FSCK when pinning a file + - nfc: llcp: fix NULL error pointer dereference on sendmsg() after failed + bind() + - mtd: rawnand: gpmi: Add ERR007117 protection for nfc_apply_timings + - mtd: rawnand: gpmi: Remove explicit default gpmi clock setting for i.MX6 + - mtd: Fixed breaking list in __mtd_del_partition. + - mtd: rawnand: davinci: Don't calculate ECC when reading page + - mtd: rawnand: davinci: Avoid duplicated page read + - mtd: rawnand: davinci: Rewrite function description + - mtd: rawnand: Export nand_read_page_hwecc_oob_first() + - mtd: rawnand: ingenic: JZ4740 needs 'oob_first' read page function + - riscv: Get rid of MAXPHYSMEM configs + - RISC-V: Use common riscv_cpuid_to_hartid_mask() for both SMP=y and SMP=n + - riscv: try to allocate crashkern region from 32bit addressible memory + - riscv: Don't use va_pa_offset on kdump + - riscv: use hart id instead of cpu id on machine_kexec + - riscv: mm: fix wrong phys_ram_base value for RV64 + - x86/gpu: Reserve stolen memory for first integrated Intel GPU + - tools/nolibc: x86-64: Fix startup code bug + - crypto: x86/aesni - don't require alignment of data + - tools/nolibc: i386: fix initial stack alignment + - tools/nolibc: fix incorrect truncation of exit code + - rtc: cmos: take rtc_lock while reading from CMOS + - net: phy: marvell: add Marvell specific PHY loopback + - ksmbd: uninitialized variable in create_socket() + - ksmbd: fix guest connection failure with nautilus + - ksmbd: add support for smb2 max credit parameter + - ksmbd: move credit charge deduction under processing request + - ksmbd: limits exceeding the maximum allowable outstanding requests + - ksmbd: add reserved room in ipc request/response + - media: cec: fix a deadlock situation + - media: ov8865: Disable only enabled regulators on error path + - media: v4l2-ioctl.c: readbuffers depends on V4L2_CAP_READWRITE + - media: flexcop-usb: fix control-message timeouts + - media: mceusb: fix control-message timeouts + - media: em28xx: fix control-message timeouts + - media: cpia2: fix control-message timeouts + - media: s2255: fix control-message timeouts + - media: dib0700: fix undefined behavior in tuner shutdown + - media: redrat3: fix control-message timeouts + - media: pvrusb2: fix control-message timeouts + - media: stk1160: fix control-message timeouts + - media: cec-pin: fix interrupt en/disable handling + - can: softing_cs: softingcs_probe(): fix memleak on registration failure + - mei: hbm: fix client dma reply status + - iio: adc: ti-adc081c: Partial revert of removal of ACPI IDs + - iio: trigger: Fix a scheduling whilst atomic issue seen on tsc2046 + - lkdtm: Fix content of section containing lkdtm_rodata_do_nothing() + - bus: mhi: pci_generic: Graceful shutdown on freeze + - bus: mhi: core: Fix reading wake_capable channel configuration + - bus: mhi: core: Fix race while handling SYS_ERR at power up + - cxl/pmem: Fix reference counting for delayed work + - arm64: errata: Fix exec handling in erratum 1418040 workaround + - ARM: dts: at91: update alternate function of signal PD20 + - iommu/io-pgtable-arm-v7s: Add error handle for page table allocation failure + - gpu: host1x: Add back arm_iommu_detach_device() + - drm/tegra: Add back arm_iommu_detach_device() + - virtio/virtio_mem: handle a possible NULL as a memcpy parameter + - dma_fence_array: Fix PENDING_ERROR leak in dma_fence_array_signaled() + - PCI: Add function 1 DMA alias quirk for Marvell 88SE9125 SATA controller + - mm_zone: add function to check if managed dma zone exists + - dma/pool: create dma atomic pool only if dma zone has managed pages + - mm/page_alloc.c: do not warn allocation failure on zone DMA if no managed + pages + - shmem: fix a race between shmem_unused_huge_shrink and shmem_evict_inode + - drm/ttm: Put BO in its memory manager's lru list + - Bluetooth: L2CAP: Fix not initializing sk_peer_pid + - drm/bridge: display-connector: fix an uninitialized pointer in probe() + - drm: fix null-ptr-deref in drm_dev_init_release() + - drm/panel: kingdisplay-kd097d04: Delete panel on attach() failure + - drm/panel: innolux-p079zca: Delete panel on attach() failure + - drm/rockchip: dsi: Fix unbalanced clock on probe error + - drm/rockchip: dsi: Hold pm-runtime across bind/unbind + - drm/rockchip: dsi: Disable PLL clock on bind error + - drm/rockchip: dsi: Reconfigure hardware on resume() + - Bluetooth: virtio_bt: fix memory leak in virtbt_rx_handle() + - Bluetooth: cmtp: fix possible panic when cmtp_init_sockets() fails + - clk: bcm-2835: Pick the closest clock rate + - clk: bcm-2835: Remove rounding up the dividers + - drm/vc4: hdmi: Set a default HSM rate + - drm/vc4: hdmi: Move the HSM clock enable to runtime_pm + - drm/vc4: hdmi: Make sure the controller is powered in detect + - drm/vc4: hdmi: Make sure the controller is powered up during bind + - drm/vc4: hdmi: Rework the pre_crtc_configure error handling + - drm/vc4: crtc: Make sure the HDMI controller is powered when disabling + - wcn36xx: ensure pairing of init_scan/finish_scan and start_scan/end_scan + - wcn36xx: Indicate beacon not connection loss on MISSED_BEACON_IND + - drm/vc4: hdmi: Enable the scrambler on reconnection + - libbpf: Free up resources used by inner map definition + - wcn36xx: Fix DMA channel enable/disable cycle + - wcn36xx: Release DMA channel descriptor allocations + - wcn36xx: Put DXE block into reset before freeing memory + - wcn36xx: populate band before determining rate on RX + - wcn36xx: fix RX BD rate mapping for 5GHz legacy rates + - ath11k: Send PPDU_STATS_CFG with proper pdev mask to firmware + - bpftool: Fix memory leak in prog_dump() + - mtd: hyperbus: rpc-if: Check return value of rpcif_sw_init() + - media: videobuf2: Fix the size printk format + - media: atomisp: add missing media_device_cleanup() in + atomisp_unregister_entities() + - media: atomisp: fix punit_ddr_dvfs_enable() argument for mrfld_power up case + - media: atomisp: fix inverted logic in buffers_needed() + - media: atomisp: do not use err var when checking port validity for ISP2400 + - media: atomisp: fix inverted error check for + ia_css_mipi_is_source_port_valid() + - media: atomisp: fix ifdefs in sh_css.c + - media: atomisp: add NULL check for asd obtained from atomisp_video_pipe + - media: atomisp: fix enum formats logic + - media: atomisp: fix uninitialized bug in gmin_get_pmic_id_and_addr() + - media: aspeed: fix mode-detect always time out at 2nd run + - media: em28xx: fix memory leak in em28xx_init_dev + - media: aspeed: Update signal status immediately to ensure sane hw state + - arm64: dts: amlogic: meson-g12: Fix GPU operating point table node name + - arm64: dts: amlogic: Fix SPI NOR flash node name for ODROID N2/N2+ + - arm64: dts: meson-gxbb-wetek: fix HDMI in early boot + - arm64: dts: meson-gxbb-wetek: fix missing GPIO binding + - fs: dlm: don't call kernel_getpeername() in error_report() + - memory: renesas-rpc-if: Return error in case devm_ioremap_resource() fails + - Bluetooth: stop proccessing malicious adv data + - ath11k: Fix ETSI regd with weather radar overlap + - ath11k: clear the keys properly via DISABLE_KEY + - ath11k: reset RSN/WPA present state for open BSS + - spi: hisi-kunpeng: Fix the debugfs directory name incorrect + - tee: fix put order in teedev_close_context() + - fs: dlm: fix build with CONFIG_IPV6 disabled + - drm/dp: Don't read back backlight mode in drm_edp_backlight_enable() + - drm/vboxvideo: fix a NULL vs IS_ERR() check + - arm64: dts: renesas: cat875: Add rx/tx delays + - media: dmxdev: fix UAF when dvb_register_device() fails + - crypto: atmel-aes - Reestablish the correct tfm context at dequeue + - crypto: qce - fix uaf on qce_aead_register_one + - crypto: qce - fix uaf on qce_ahash_register_one + - crypto: qce - fix uaf on qce_skcipher_register_one + - arm64: dts: qcom: sc7280: Fix incorrect clock name + - mtd: hyperbus: rpc-if: fix bug in rpcif_hb_remove + - cpufreq: qcom-cpufreq-hw: Update offline CPUs per-cpu thermal pressure + - cpufreq: qcom-hw: Fix probable nested interrupt handling + - ARM: dts: stm32: fix dtbs_check warning on ili9341 dts binding on stm32f429 + disco + - libbpf: Fix potential misaligned memory access in btf_ext__new() + - libbpf: Fix glob_syms memory leak in bpf_linker + - libbpf: Fix using invalidated memory in bpf_linker + - crypto: qat - remove unnecessary collision prevention step in PFVF + - crypto: qat - make pfvf send message direction agnostic + - crypto: qat - fix undetected PFVF timeout in ACK loop + - ath11k: Use host CE parameters for CE interrupts configuration + - arm64: dts: ti: k3-j721e: correct cache-sets info + - tty: serial: atmel: Check return code of dmaengine_submit() + - tty: serial: atmel: Call dma_async_issue_pending() + - mfd: atmel-flexcom: Remove #ifdef CONFIG_PM_SLEEP + - mfd: atmel-flexcom: Use .resume_noirq + - bfq: Do not let waker requests skip proper accounting + - libbpf: Silence uninitialized warning/error in btf_dump_dump_type_data + - media: i2c: imx274: fix s_frame_interval runtime resume not requested + - media: i2c: Re-order runtime pm initialisation + - media: i2c: ov8865: Fix lockdep error + - media: rcar-csi2: Correct the selection of hsfreqrange + - media: imx-pxp: Initialize the spinlock prior to using it + - media: si470x-i2c: fix possible memory leak in si470x_i2c_probe() + - media: mtk-vcodec: call v4l2_m2m_ctx_release first when file is released + - media: hantro: Hook up RK3399 JPEG encoder output + - media: coda: fix CODA960 JPEG encoder buffer overflow + - media: venus: correct low power frequency calculation for encoder + - media: venus: core: Fix a potential NULL pointer dereference in an error + handling path + - media: venus: core: Fix a resource leak in the error handling path of + 'venus_probe()' + - net: stmmac: Add platform level debug register dump feature + - thermal/drivers/imx: Implement runtime PM support + - igc: AF_XDP zero-copy metadata adjust breaks SKBs on XDP_PASS + - netfilter: bridge: add support for pppoe filtering + - powerpc: Avoid discarding flags in system_call_exception() + - arm64: dts: qcom: msm8916: fix MMC controller aliases + - drm/vmwgfx: Remove the deprecated lower mem limit + - drm/vmwgfx: Fail to initialize on broken configs + - cgroup: Trace event cgroup id fields should be u64 + - ACPI: EC: Rework flushing of EC work while suspended to idle + - thermal/drivers/imx8mm: Enable ADC when enabling monitor + - drm/amdgpu: Fix a NULL pointer dereference in + amdgpu_connector_lcd_native_mode() + - drm/radeon/radeon_kms: Fix a NULL pointer dereference in + radeon_driver_open_kms() + - libbpf: Clean gen_loader's attach kind. + - crypto: caam - save caam memory to support crypto engine retry mechanism. + - arm64: dts: ti: k3-am642: Fix the L2 cache sets + - arm64: dts: ti: k3-j7200: Fix the L2 cache sets + - arm64: dts: ti: k3-j721e: Fix the L2 cache sets + - arm64: dts: ti: k3-j7200: Correct the d-cache-sets info + - tty: serial: uartlite: allow 64 bit address + - serial: amba-pl011: do not request memory region twice + - mtd: core: provide unique name for nvmem device + - floppy: Fix hang in watchdog when disk is ejected + - staging: rtl8192e: return error code from rtllib_softmac_init() + - staging: rtl8192e: rtllib_module: fix error handle case in alloc_rtllib() + - Bluetooth: btmtksdio: fix resume failure + - bpf: Fix the test_task_vma selftest to support output shorter than 1 kB + - sched/fair: Fix detection of per-CPU kthreads waking a task + - sched/fair: Fix per-CPU kthread and wakee stacking for asym CPU capacity + - bpf: Adjust BTF log size limit. + - bpf: Disallow BPF_LOG_KERNEL log level for bpf(BPF_BTF_LOAD) + - bpf: Remove config check to enable bpf support for branch records + - arm64: clear_page() shouldn't use DC ZVA when DCZID_EL0.DZP == 1 + - arm64: mte: DC {GVA,GZVA} shouldn't be used when DCZID_EL0.DZP == 1 + - samples/bpf: Install libbpf headers when building + - samples/bpf: Clean up samples/bpf build failes + - samples: bpf: Fix xdp_sample_user.o linking with Clang + - samples: bpf: Fix 'unknown warning group' build warning on Clang + - media: dib8000: Fix a memleak in dib8000_init() + - media: saa7146: mxb: Fix a NULL pointer dereference in mxb_attach() + - media: si2157: Fix "warm" tuner state detection + - wireless: iwlwifi: Fix a double free in iwl_txq_dyn_alloc_dma + - sched/rt: Try to restart rt period timer when rt runtime exceeded + - ath10k: Fix the MTU size on QCA9377 SDIO + - Bluetooth: refactor set_exp_feature with a feature table + - Bluetooth: MGMT: Use hci_dev_test_and_{set,clear}_flag + - drm/amd/display: Fix bug in debugfs crc_win_update entry + - drm/msm/gpu: Don't allow zero fence_id + - drm/msm/dp: displayPort driver need algorithm rational + - rcu/exp: Mark current CPU as exp-QS in IPI loop second pass + - wcn36xx: Fix max channels retrieval + - drm/msm/dsi: fix initialization in the bonded DSI case + - mwifiex: Fix possible ABBA deadlock + - xfrm: fix a small bug in xfrm_sa_len() + - x86/uaccess: Move variable into switch case statement + - selftests: clone3: clone3: add case CLONE3_ARGS_NO_TEST + - selftests: harness: avoid false negatives if test has no ASSERTs + - crypto: stm32/cryp - fix CTR counter carry + - crypto: stm32/cryp - fix xts and race condition in crypto_engine requests + - crypto: stm32/cryp - check early input data + - crypto: stm32/cryp - fix double pm exit + - crypto: stm32/cryp - fix lrw chaining mode + - crypto: stm32/cryp - fix bugs and crash in tests + - crypto: stm32 - Revert broken pm_runtime_resume_and_get changes + - crypto: hisilicon/qm - fix incorrect return value of hisi_qm_resume() + - ath11k: Fix deleting uninitialized kernel timer during fragment cache flush + - spi: Fix incorrect cs_setup delay handling + - ARM: dts: gemini: NAS4220-B: fis-index-block with 128 KiB sectors + - perf/arm-cmn: Fix CPU hotplug unregistration + - media: dw2102: Fix use after free + - media: msi001: fix possible null-ptr-deref in msi001_probe() + - media: coda/imx-vdoa: Handle dma_set_coherent_mask error codes + - ath11k: Fix a NULL pointer dereference in ath11k_mac_op_hw_scan() + - net: dsa: hellcreek: Fix insertion of static FDB entries + - net: dsa: hellcreek: Add STP forwarding rule + - net: dsa: hellcreek: Allow PTP P2P measurements on blocked ports + - net: dsa: hellcreek: Add missing PTP via UDP rules + - arm64: dts: qcom: c630: Fix soundcard setup + - arm64: dts: qcom: ipq6018: Fix gpio-ranges property + - drm/msm/dpu: fix safe status debugfs file + - drm/bridge: ti-sn65dsi86: Set max register for regmap + - gpu: host1x: select CONFIG_DMA_SHARED_BUFFER + - drm/tegra: gr2d: Explicitly control module reset + - drm/tegra: vic: Fix DMA API misuse + - media: hantro: Fix probe func error path + - xfrm: interface with if_id 0 should return error + - xfrm: state and policy should fail if XFRMA_IF_ID 0 + - ARM: 9159/1: decompressor: Avoid UNPREDICTABLE NOP encoding + - usb: ftdi-elan: fix memory leak on device disconnect + - arm64: dts: marvell: cn9130: add GPIO and SPI aliases + - arm64: dts: marvell: cn9130: enable CP0 GPIO controllers + - ARM: dts: armada-38x: Add generic compatible to UART nodes + - mt76: mt7921: drop offload_flags overwritten + - wilc1000: fix double free error in probe() + - rtw88: add quirk to disable pci caps on HP 250 G7 Notebook PC + - iwlwifi: mvm: fix 32-bit build in FTM + - iwlwifi: mvm: test roc running status bits before removing the sta + - iwlwifi: mvm: perform 6GHz passive scan after suspend + - iwlwifi: mvm: set protected flag only for NDP ranging + - mmc: meson-mx-sdhc: add IRQ check + - mmc: meson-mx-sdio: add IRQ check + - block: fix error unwinding in device_add_disk + - selinux: fix potential memleak in selinux_add_opt() + - um: fix ndelay/udelay defines + - um: rename set_signals() to um_set_signals() + - um: virt-pci: Fix 32-bit compile + - lib/logic_iomem: Fix 32-bit build + - lib/logic_iomem: Fix operation on 32-bit + - um: virtio_uml: Fix time-travel external time propagation + - Bluetooth: L2CAP: Fix using wrong mode + - bpftool: Enable line buffering for stdout + - backlight: qcom-wled: Validate enabled string indices in DT + - backlight: qcom-wled: Pass number of elements to read to read_u32_array + - backlight: qcom-wled: Fix off-by-one maximum with default num_strings + - backlight: qcom-wled: Override default length with qcom,enabled-strings + - backlight: qcom-wled: Use cpu_to_le16 macro to perform conversion + - backlight: qcom-wled: Respect enabled-strings in set_brightness + - software node: fix wrong node passed to find nargs_prop + - Bluetooth: hci_qca: Stop IBS timer during BT OFF + - x86/boot/compressed: Move CLANG_FLAGS to beginning of KBUILD_CFLAGS + - crypto: octeontx2 - prevent underflow in get_cores_bmap() + - regulator: qcom-labibb: OCP interrupts are not a failure while disabled + - hwmon: (mr75203) fix wrong power-up delay value + - x86/mce/inject: Avoid out-of-bounds write when setting flags + - io_uring: remove double poll on poll update + - serial: 8250_bcm7271: Propagate error codes from brcmuart_probe() + - ACPI: scan: Create platform device for BCM4752 and LNV4752 ACPI nodes + - pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in + __nonstatic_find_io_region() + - pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in + nonstatic_find_mem_region() + - power: reset: mt6397: Check for null res pointer + - net/xfrm: IPsec tunnel mode fix inner_ipproto setting in sec_path + - net: ethernet: mtk_eth_soc: fix return values and refactor MDIO ops + - net: dsa: fix incorrect function pointer check for MRP ring roles + - netfilter: ipt_CLUSTERIP: fix refcount leak in clusterip_tg_check() + - bpf, sockmap: Fix return codes from tcp_bpf_recvmsg_parser() + - bpf, sockmap: Fix double bpf_prog_put on error case in map_link + - bpf: Don't promote bogus looking registers after null check. + - bpf: Fix verifier support for validation of async callbacks + - bpf: Fix SO_RCVBUF/SO_SNDBUF handling in _bpf_setsockopt(). + - netfilter: nft_payload: do not update layer 4 checksum when mangling + fragments + - netfilter: nft_set_pipapo: allocate pcpu scratch maps on clone + - net: fix SOF_TIMESTAMPING_BIND_PHC to work with multiple sockets + - ppp: ensure minimum packet size in ppp_write() + - rocker: fix a sleeping in atomic bug + - staging: greybus: audio: Check null pointer + - fsl/fman: Check for null pointer after calling devm_ioremap + - Bluetooth: hci_bcm: Check for error irq + - Bluetooth: hci_qca: Fix NULL vs IS_ERR_OR_NULL check in qca_serdev_probe + - net/smc: Reset conn->lgr when link group registration fails + - usb: dwc3: qcom: Fix NULL vs IS_ERR checking in dwc3_qcom_probe + - usb: dwc2: do not gate off the hardware if it does not support clock gating + - usb: dwc2: gadget: initialize max_speed from params + - usb: gadget: u_audio: Subdevice 0 for capture ctls + - HID: hid-uclogic-params: Invalid parameter check in uclogic_params_init + - HID: hid-uclogic-params: Invalid parameter check in + uclogic_params_get_str_desc + - HID: hid-uclogic-params: Invalid parameter check in + uclogic_params_huion_init + - HID: hid-uclogic-params: Invalid parameter check in + uclogic_params_frame_init_v1_buttonpad + - debugfs: lockdown: Allow reading debugfs files that are not world readable + - drivers/firmware: Add missing platform_device_put() in sysfb_create_simplefb + - serial: liteuart: fix MODULE_ALIAS + - serial: stm32: move tx dma terminate DMA to shutdown + - x86, sched: Fix undefined reference to init_freq_invariance_cppc() build + error + - net/mlx5e: Fix page DMA map/unmap attributes + - net/mlx5e: Fix wrong usage of fib_info_nh when routes with nexthop objects + are used + - net/mlx5e: Don't block routes with nexthop objects in SW + - Revert "net/mlx5e: Block offload of outer header csum for UDP tunnels" + - Revert "net/mlx5e: Block offload of outer header csum for GRE tunnel" + - net/mlx5e: Fix matching on modified inner ip_ecn bits + - net/mlx5: Fix access to sf_dev_table on allocation failure + - net/mlx5e: Sync VXLAN udp ports during uplink representor profile change + - net/mlx5: Set command entry semaphore up once got index free + - lib/mpi: Add the return value check of kcalloc() + - Bluetooth: L2CAP: uninitialized variables in l2cap_sock_setsockopt() + - mptcp: fix per socket endpoint accounting + - mptcp: fix opt size when sending DSS + MP_FAIL + - mptcp: fix a DSS option writing error + - spi: spi-meson-spifc: Add missing pm_runtime_disable() in meson_spifc_probe + - octeontx2-af: Increment ptp refcount before use + - ax25: uninitialized variable in ax25_setsockopt() + - netrom: fix api breakage in nr_setsockopt() + - regmap: Call regmap_debugfs_exit() prior to _init() + - net: mscc: ocelot: fix incorrect balancing with down LAG ports + - can: mcp251xfd: add missing newline to printed strings + - tpm: add request_locality before write TPM_INT_ENABLE + - tpm_tis: Fix an error handling path in 'tpm_tis_core_init()' + - can: softing: softing_startstop(): fix set but not used variable warning + - can: xilinx_can: xcan_probe(): check for error irq + - can: rcar_canfd: rcar_canfd_channel_probe(): make sure we free CAN network + device + - pcmcia: fix setting of kthread task states + - net/sched: flow_dissector: Fix matching on zone id for invalid conns + - net: openvswitch: Fix matching zone id for invalid conns arriving from tc + - net: openvswitch: Fix ct_state nat flags for conns arriving from tc + - iwlwifi: mvm: Use div_s64 instead of do_div in iwl_mvm_ftm_rtt_smoothing() + - bnxt_en: Refactor coredump functions + - bnxt_en: move coredump functions into dedicated file + - bnxt_en: use firmware provided max timeout for messages + - net: mcs7830: handle usb read errors properly + - ext4: avoid trim error on fs with small groups + - ASoC: Intel: sof_sdw: fix jack detection on HP Spectre x360 convertible + - ALSA: jack: Add missing rwsem around snd_ctl_remove() calls + - ALSA: PCM: Add missing rwsem around snd_ctl_remove() calls + - ALSA: hda: Add missing rwsem around snd_ctl_remove() calls + - ALSA: hda: Fix potential deadlock at codec unbinding + - RDMA/bnxt_re: Scan the whole bitmap when checking if "disabling RCFW with + pending cmd-bit" + - RDMA/hns: Validate the pkey index + - scsi: pm80xx: Update WARN_ON check in pm8001_mpi_build_cmd() + - clk: renesas: rzg2l: Check return value of pm_genpd_init() + - clk: renesas: rzg2l: propagate return value of_genpd_add_provider_simple() + - clk: imx8mn: Fix imx8mn_clko1_sels + - powerpc/prom_init: Fix improper check of prom_getprop() + - ASoC: uniphier: drop selecting non-existing SND_SOC_UNIPHIER_AIO_DMA + - ASoC: codecs: wcd938x: add SND_SOC_WCD938_SDW to codec list instead + - RDMA/rtrs-clt: Fix the initial value of min_latency + - ALSA: hda: Make proper use of timecounter + - dt-bindings: thermal: Fix definition of cooling-maps contribution property + - powerpc/perf: Fix PMU callbacks to clear pending PMI before resetting an + overflown PMC + - powerpc/modules: Don't WARN on first module allocation attempt + - powerpc/32s: Fix shift-out-of-bounds in KASAN init + - clocksource: Avoid accidental unstable marking of clocksources + - ALSA: oss: fix compile error when OSS_DEBUG is enabled + - ALSA: usb-audio: Drop superfluous '0' in Presonus Studio 1810c's ID + - misc: at25: Make driver OF independent again + - char/mwave: Adjust io port register size + - binder: fix handling of error during copy + - binder: avoid potential data leakage when copying txn + - openrisc: Add clone3 ABI wrapper + - iommu: Extend mutex lock scope in iommu_probe_device() + - iommu/io-pgtable-arm: Fix table descriptor paddr formatting + - scsi: core: Fix scsi_device_max_queue_depth() + - scsi: ufs: Fix race conditions related to driver data + - RDMA/qedr: Fix reporting max_{send/recv}_wr attrs + - PCI/MSI: Fix pci_irq_vector()/pci_irq_get_affinity() + - powerpc/powermac: Add additional missing lockdep_register_key() + - iommu/arm-smmu-qcom: Fix TTBR0 read + - RDMA/core: Let ib_find_gid() continue search even after empty entry + - RDMA/cma: Let cma_resolve_ib_dev() continue search even after empty entry + - ASoC: rt5663: Handle device_property_read_u32_array error codes + - of: unittest: fix warning on PowerPC frame size warning + - of: unittest: 64 bit dma address test requires arch support + - clk: stm32: Fix ltdc's clock turn off by clk_disable_unused() after system + enter shell + - mips: add SYS_HAS_CPU_MIPS64_R5 config for MIPS Release 5 support + - mips: fix Kconfig reference to PHYS_ADDR_T_64BIT + - dmaengine: pxa/mmp: stop referencing config->slave_id + - iommu/amd: Restore GA log/tail pointer on host resume + - iommu/amd: X2apic mode: re-enable after resume + - iommu/amd: X2apic mode: setup the INTX registers on mask/unmask + - iommu/amd: X2apic mode: mask/unmask interrupts on suspend/resume + - iommu/amd: Remove useless irq affinity notifier + - ASoC: Intel: catpt: Test dmaengine_submit() result before moving on + - iommu/iova: Fix race between FQ timeout and teardown + - ASoC: mediatek: mt8195: correct default value + - of: fdt: Aggregate the processing of "linux,usable-memory-range" + - efi: apply memblock cap after memblock_add() + - scsi: block: pm: Always set request queue runtime active in + blk_post_runtime_resume() + - phy: uniphier-usb3ss: fix unintended writing zeros to PHY register + - ASoC: mediatek: Check for error clk pointer + - powerpc/64s: Mask NIP before checking against SRR0 + - powerpc/64s: Use EMIT_WARN_ENTRY for SRR debug warnings + - phy: cadence: Sierra: Fix to get correct parent for mux clocks + - ASoC: samsung: idma: Check of ioremap return value + - misc: lattice-ecp3-config: Fix task hung when firmware load failed + - ASoC: mediatek: mt8195: correct pcmif BE dai control flow + - arm64: tegra: Remove non existent Tegra194 reset + - mips: lantiq: add support for clk_set_parent() + - mips: bcm63xx: add support for clk_set_parent() + - powerpc/xive: Add missing null check after calling kmalloc + - ASoC: fsl_mqs: fix MODULE_ALIAS + - ALSA: hda/cs8409: Increase delay during jack detection + - ALSA: hda/cs8409: Fix Jack detection after resume + - RDMA/cxgb4: Set queue pair state when being queried + - clk: qcom: gcc-sc7280: Mark gcc_cfg_noc_lpass_clk always enabled + - ASoC: imx-card: Need special setting for ak4497 on i.MX8MQ + - ASoC: imx-card: Fix mclk calculation issue for akcodec + - ASoC: imx-card: improve the sound quality for low rate + - ASoC: fsl_asrc: refine the check of available clock divider + - clk: bm1880: remove kfrees on static allocations + - of: base: Fix phandle argument length mismatch error message + - of/fdt: Don't worry about non-memory region overlap for no-map + - MIPS: boot/compressed/: add __ashldi3 to target for ZSTD compression + - MIPS: compressed: Fix build with ZSTD compression + - mailbox: fix gce_num of mt8192 driver data + - ARM: dts: omap3-n900: Fix lp5523 for multi color + - leds: lp55xx: initialise output direction from dts + - Bluetooth: Fix debugfs entry leak in hci_register_dev() + - Bluetooth: Fix memory leak of hci device + - drm/panel: Delete panel on mipi_dsi_attach() failure + - Bluetooth: Fix removing adv when processing cmd complete + - fs: dlm: filter user dlm messages for kernel locks + - drm/lima: fix warning when CONFIG_DEBUG_SG=y & CONFIG_DMA_API_DEBUG=y + - selftests/bpf: Fix memory leaks in btf_type_c_dump() helper + - selftests/bpf: Destroy XDP link correctly + - selftests/bpf: Fix bpf_object leak in skb_ctx selftest + - ar5523: Fix null-ptr-deref with unexpected WDCMSG_TARGET_START reply + - drm/bridge: dw-hdmi: handle ELD when DRM_BRIDGE_ATTACH_NO_CONNECTOR + - drm/nouveau/pmu/gm200-: avoid touching PMU outside of DEVINIT/PREOS/ACR + - media: atomisp: fix try_fmt logic + - media: atomisp: set per-device's default mode + - media: atomisp-ov2680: Fix ov2680_set_fmt() clobbering the exposure + - media: atomisp: check before deference asd variable + - ARM: shmobile: rcar-gen2: Add missing of_node_put() + - batman-adv: allow netlink usage in unprivileged containers + - media: atomisp: handle errors at sh_css_create_isp_params() + - ath11k: Fix crash caused by uninitialized TX ring + - usb: dwc3: meson-g12a: fix shared reset control use + - USB: ehci_brcm_hub_control: Improve port index sanitizing + - usb: gadget: f_fs: Use stream_open() for endpoint files + - psi: Fix PSI_MEM_FULL state when tasks are in memstall and doing reclaim + - drm: panel-orientation-quirks: Add quirk for the Lenovo Yoga Book X91F/L + - HID: magicmouse: Report battery level over USB + - HID: apple: Do not reset quirks when the Fn key is not found + - media: b2c2: Add missing check in flexcop_pci_isr: + - libbpf: Accommodate DWARF/compiler bug with duplicated structs + - ethernet: renesas: Use div64_ul instead of do_div + - EDAC/synopsys: Use the quirk for version instead of ddr version + - arm64: dts: qcom: sm8350: Shorten camera-thermal-bottom name + - soc: imx: gpcv2: Synchronously suspend MIX domains + - ARM: imx: rename DEBUG_IMX21_IMX27_UART to DEBUG_IMX27_UART + - drm/amd/display: check top_pipe_to_program pointer + - drm/amdgpu/display: set vblank_disable_immediate for DC + - soc: ti: pruss: fix referenced node in error message + - mlxsw: pci: Add shutdown method in PCI driver + - drm/amd/display: add else to avoid double destroy clk_mgr + - drm/bridge: megachips: Ensure both bridges are probed before registration + - mxser: keep only !tty test in ISR + - tty: serial: imx: disable UCR4_OREN in .stop_rx() instead of .shutdown() + - gpiolib: acpi: Do not set the IRQ type if the IRQ is already in use + - HSI: core: Fix return freed object in hsi_new_client + - crypto: jitter - consider 32 LSB for APT + - mwifiex: Fix skb_over_panic in mwifiex_usb_recv() + - rsi: Fix use-after-free in rsi_rx_done_handler() + - rsi: Fix out-of-bounds read in rsi_read_pkt() + - ath11k: Avoid NULL ptr access during mgmt tx cleanup + - media: venus: avoid calling core_clk_setrate() concurrently during + concurrent video sessions + - regulator: da9121: Prevent current limit change when enabled + - drm/vmwgfx: Release ttm memory if probe fails + - drm/vmwgfx: Introduce a new placement for MOB page tables + - ACPI / x86: Drop PWM2 device on Lenovo Yoga Book from always present table + - ACPI: Change acpi_device_always_present() into acpi_device_override_status() + - ACPI / x86: Allow specifying acpi_device_override_status() quirks by path + - ACPI / x86: Add not-present quirk for the PCI0.SDHB.BRC1 device on the GPD + win + - arm64: dts: ti: j7200-main: Fix 'dtbs_check' serdes_ln_ctrl node + - arm64: dts: ti: j721e-main: Fix 'dtbs_check' in serdes_ln_ctrl node + - usb: uhci: add aspeed ast2600 uhci support + - floppy: Add max size check for user space request + - x86/mm: Flush global TLB when switching to trampoline page-table + - drm: rcar-du: Fix CRTC timings when CMM is used + - media: uvcvideo: Increase UVC_CTRL_CONTROL_TIMEOUT to 5 seconds. + - media: rcar-vin: Update format alignment constraints + - media: saa7146: hexium_orion: Fix a NULL pointer dereference in + hexium_attach() + - media: atomisp: fix "variable dereferenced before check 'asd'" + - media: m920x: don't use stack on USB reads + - thunderbolt: Runtime PM activate both ends of the device link + - arm64: dts: renesas: Fix thermal bindings + - iwlwifi: mvm: synchronize with FW after multicast commands + - iwlwifi: mvm: avoid clearing a just saved session protection id + - rcutorture: Avoid soft lockup during cpu stall + - ath11k: avoid deadlock by change ieee80211_queue_work for regd_update_work + - ath10k: Fix tx hanging + - net-sysfs: update the queue counts in the unregistration path + - net: phy: prefer 1000baseT over 1000baseKX + - gpio: aspeed: Convert aspeed_gpio.lock to raw_spinlock + - gpio: aspeed-sgpio: Convert aspeed_sgpio.lock to raw_spinlock + - selftests/ftrace: make kprobe profile testcase description unique + - ath11k: Avoid false DEADLOCK warning reported by lockdep + - ARM: dts: qcom: sdx55: fix IPA interconnect definitions + - x86/mce: Allow instrumentation during task work queueing + - x86/mce: Mark mce_panic() noinstr + - x86/mce: Mark mce_end() noinstr + - x86/mce: Mark mce_read_aux() noinstr + - net: bonding: debug: avoid printing debug logs when bond is not notifying + peers + - kunit: Don't crash if no parameters are generated + - bpf: Do not WARN in bpf_warn_invalid_xdp_action() + - drm/amdkfd: Fix error handling in svm_range_add + - HID: quirks: Allow inverting the absolute X/Y values + - HID: i2c-hid-of: Expose the touchscreen-inverted properties + - media: igorplugusb: receiver overflow should be reported + - media: rockchip: rkisp1: use device name for debugfs subdir name + - media: saa7146: hexium_gemini: Fix a NULL pointer dereference in + hexium_attach() + - mmc: tmio: reinit card irqs in reset routine + - mmc: core: Fixup storing of OCR for MMC_QUIRK_NONSTD_SDIO + - drm/amd/amdgpu: fix psp tmr bo pin count leak in SRIOV + - drm/amd/amdgpu: fix gmc bo pin count leak in SRIOV + - audit: ensure userspace is penalized the same as the kernel when under + pressure + - arm64: dts: ls1028a-qds: move rtc node to the correct i2c bus + - arm64: tegra: Adjust length of CCPLEX cluster MMIO region + - crypto: ccp - Move SEV_INIT retry for corrupted data + - crypto: hisilicon/hpre - fix memory leak in hpre_curve25519_src_init() + - PM: runtime: Add safety net to supplier device release + - cpufreq: Fix initialization of min and max frequency QoS requests + - mt76: mt7615: fix possible deadlock while mt7615_register_ext_phy() + - mt76: do not pass the received frame with decryption error + - mt76: mt7615: improve wmm index allocation + - ath9k_htc: fix NULL pointer dereference at ath9k_htc_rxep() + - ath9k_htc: fix NULL pointer dereference at ath9k_htc_tx_get_packet() + - ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream + - rtw88: 8822c: update rx settings to prevent potential hw deadlock + - PM: AVS: qcom-cpr: Use div64_ul instead of do_div + - iwlwifi: fix leaks/bad data after failed firmware load + - iwlwifi: remove module loading failure message + - iwlwifi: mvm: Fix calculation of frame length + - iwlwifi: mvm: fix AUX ROC removal + - iwlwifi: pcie: make sure prph_info is set when treating wakeup IRQ + - mmc: sdhci-pci-gli: GL9755: Support for CD/WP inversion on OF platforms + - block: check minor range in device_add_disk() + - um: registers: Rename function names to avoid conflicts and build problems + - ath11k: Fix napi related hang + - Bluetooth: btintel: Add missing quirks and msft ext for legacy bootloader + - Bluetooth: vhci: Set HCI_QUIRK_VALID_LE_STATES + - xfrm: rate limit SA mapping change message to user space + - drm/etnaviv: consider completed fence seqno in hang check + - jffs2: GC deadlock reading a page that is used in jffs2_write_begin() + - ACPICA: actypes.h: Expand the ACPI_ACCESS_ definitions + - ACPICA: Utilities: Avoid deleting the same object twice in a row + - ACPICA: Executer: Fix the REFCLASS_REFOF case in acpi_ex_opcode_1A_0T_1R() + - ACPICA: Fix wrong interpretation of PCC address + - ACPICA: Hardware: Do not flush CPU cache when entering S4 and S5 + - mmc: mtk-sd: Use readl_poll_timeout instead of open-coded polling + - drm/amdgpu: fixup bad vram size on gmc v8 + - amdgpu/pm: Make sysfs pm attributes as read-only for VFs + - ACPI: battery: Add the ThinkPad "Not Charging" quirk + - ACPI: CPPC: Check present CPUs for determining _CPC is valid + - btrfs: remove BUG_ON() in find_parent_nodes() + - btrfs: remove BUG_ON(!eie) in find_parent_nodes + - net: mdio: Demote probed message to debug print + - mac80211: allow non-standard VHT MCS-10/11 + - dm btree: add a defensive bounds check to insert_at() + - dm space map common: add bounds check to sm_ll_lookup_bitmap() + - bpf/selftests: Fix namespace mount setup in tc_redirect + - mlxsw: pci: Avoid flow control for EMAD packets + - net: phy: marvell: configure RGMII delays for 88E1118 + - net: gemini: allow any RGMII interface mode + - regulator: qcom_smd: Align probe function with rpmh-regulator + - serial: pl010: Drop CR register reset on set_termios + - serial: pl011: Drop CR register reset on set_termios + - serial: core: Keep mctrl register state and cached copy in sync + - random: do not throw away excess input to crng_fast_load + - net/mlx5: Update log_max_qp value to FW max capability + - net/mlx5e: Unblock setting vid 0 for VF in case PF isn't eswitch manager + - parisc: Avoid calling faulthandler_disabled() twice + - can: flexcan: allow to change quirks at runtime + - can: flexcan: rename RX modes + - can: flexcan: add more quirks to describe RX path capabilities + - x86/kbuild: Enable CONFIG_KALLSYMS_ALL=y in the defconfigs + - powerpc/6xx: add missing of_node_put + - powerpc/powernv: add missing of_node_put + - powerpc/cell: add missing of_node_put + - powerpc/btext: add missing of_node_put + - powerpc/watchdog: Fix missed watchdog reset due to memory ordering race + - ASoC: imx-hdmi: add put_device() after of_find_device_by_node() + - i2c: i801: Don't silently correct invalid transfer size + - powerpc/smp: Move setup_profiling_timer() under CONFIG_PROFILING + - i2c: mpc: Correct I2C reset procedure + - clk: meson: gxbb: Fix the SDM_EN bit for MPLL0 on GXBB + - powerpc/powermac: Add missing lockdep_register_key() + - KVM: PPC: Book3S: Suppress warnings when allocating too big memory slots + - KVM: PPC: Book3S: Suppress failed alloc warning in H_COPY_TOFROM_GUEST + - w1: Misuse of get_user()/put_user() reported by sparse + - nvmem: core: set size for sysfs bin file + - dm: fix alloc_dax error handling in alloc_dev + - interconnect: qcom: rpm: Prevent integer overflow in rate + - scsi: ufs: Fix a kernel crash during shutdown + - scsi: lpfc: Fix leaked lpfc_dmabuf mbox allocations with NPIV + - scsi: lpfc: Trigger SLI4 firmware dump before doing driver cleanup + - ALSA: seq: Set upper limit of processed events + - MIPS: Loongson64: Use three arguments for slti + - powerpc/40x: Map 32Mbytes of memory at startup + - selftests/powerpc/spectre_v2: Return skip code when miss_percent is high + - powerpc: handle kdump appropriately with crash_kexec_post_notifiers option + - powerpc/fadump: Fix inaccurate CPU state info in vmcore generated with panic + - udf: Fix error handling in udf_new_inode() + - MIPS: OCTEON: add put_device() after of_find_device_by_node() + - irqchip/gic-v4: Disable redistributors' view of the VPE table at boot time + - i2c: designware-pci: Fix to change data types of hcnt and lcnt parameters + - selftests/powerpc: Add a test of sigreturning to the kernel + - MIPS: Octeon: Fix build errors using clang + - scsi: sr: Don't use GFP_DMA + - scsi: mpi3mr: Fixes around reply request queues + - ASoC: mediatek: mt8192-mt6359: fix device_node leak + - phy: phy-mtk-tphy: add support efuse setting + - ASoC: mediatek: mt8173: fix device_node leak + - ASoC: mediatek: mt8183: fix device_node leak + - habanalabs: skip read fw errors if dynamic descriptor invalid + - phy: mediatek: Fix missing check in mtk_mipi_tx_probe + - mailbox: change mailbox-mpfs compatible string + - seg6: export get_srh() for ICMP handling + - icmp: ICMPV6: Examine invoking packet for Segment Route Headers. + - udp6: Use Segment Routing Header for dest address if present + - rpmsg: core: Clean up resources on announce_create failure. + - ifcvf/vDPA: fix misuse virtio-net device config size for blk dev + - crypto: omap-aes - Fix broken pm_runtime_and_get() usage + - crypto: stm32/crc32 - Fix kernel BUG triggered in probe() + - crypto: caam - replace this_cpu_ptr with raw_cpu_ptr + - ubifs: Error path in ubifs_remount_rw() seems to wrongly free write buffers + - tpm: fix potential NULL pointer access in tpm_del_char_device + - tpm: fix NPE on probe for missing device + - mfd: tps65910: Set PWR_OFF bit during driver probe + - spi: uniphier: Fix a bug that doesn't point to private data correctly + - xen/gntdev: fix unmap notification order + - md: Move alloc/free acct bioset in to personality + - HID: magicmouse: Fix an error handling path in magicmouse_probe() + - fuse: Pass correct lend value to filemap_write_and_wait_range() + - serial: Fix incorrect rs485 polarity on uart open + - cputime, cpuacct: Include guest time in user time in cpuacct.stat + - sched/cpuacct: Fix user/system in shown cpuacct.usage* + - tracing/kprobes: 'nmissed' not showed correctly for kretprobe + - tracing: Have syscall trace events use trace_event_buffer_lock_reserve() + - remoteproc: imx_rproc: Fix a resource leak in the remove function + - iwlwifi: mvm: Increase the scan timeout guard to 30 seconds + - s390/mm: fix 2KB pgtable release race + - device property: Fix fwnode_graph_devcon_match() fwnode leak + - drm/tegra: submit: Add missing pm_runtime_mark_last_busy() + - drm/etnaviv: limit submit sizes + - drm/amd/display: Fix the uninitialized variable in enable_stream_features() + - drm/nouveau/kms/nv04: use vzalloc for nv04_display + - drm/bridge: analogix_dp: Make PSR-exit block less + - parisc: Fix lpa and lpa_user defines + - powerpc/64s/radix: Fix huge vmap false positive + - scsi: lpfc: Fix lpfc_force_rscn ndlp kref imbalance + - drm/amdgpu: don't do resets on APUs which don't support it + - drm/i915/display/ehl: Update voltage swing table + - PCI: xgene: Fix IB window setup + - PCI: pciehp: Use down_read/write_nested(reset_lock) to fix lockdep errors + - PCI: pci-bridge-emul: Make expansion ROM Base Address register read-only + - PCI: pci-bridge-emul: Properly mark reserved PCIe bits in PCI config space + - PCI: pci-bridge-emul: Fix definitions of reserved bits + - PCI: pci-bridge-emul: Correctly set PCIe capabilities + - PCI: pci-bridge-emul: Set PCI_STATUS_CAP_LIST for PCIe device + - xfrm: fix policy lookup for ipv6 gre packets + - xfrm: fix dflt policy check when there is no policy configured + - btrfs: fix deadlock between quota enable and other quota operations + - btrfs: check the root node for uptodate before returning it + - btrfs: respect the max size in the header when activating swap file + - ext4: make sure to reset inode lockdep class when quota enabling fails + - ext4: make sure quota gets properly shutdown on error + - ext4: fix a possible ABBA deadlock due to busy PA + - ext4: initialize err_blk before calling __ext4_get_inode_loc + - ext4: fix fast commit may miss tracking range for FALLOC_FL_ZERO_RANGE + - ext4: set csum seed in tmp inode while migrating to extents + - ext4: Fix BUG_ON in ext4_bread when write quota data + - ext4: use ext4_ext_remove_space() for fast commit replay delete range + - ext4: fast commit may miss tracking unwritten range during ftruncate + - ext4: destroy ext4_fc_dentry_cachep kmemcache on module removal + - ext4: fix null-ptr-deref in '__ext4_journal_ensure_credits' + - ext4: fix an use-after-free issue about data=journal writeback mode + - ext4: don't use the orphan list when migrating an inode + - tracing/osnoise: Properly unhook events if start_per_cpu_kthreads() fails + - ath11k: qmi: avoid error messages when dma allocation fails + - drm/radeon: fix error handling in radeon_driver_open_kms + - of: base: Improve argument length mismatch error + - firmware: Update Kconfig help text for Google firmware + - can: mcp251xfd: mcp251xfd_tef_obj_read(): fix typo in error message + - media: rcar-csi2: Optimize the selection PHTW register + - drm/vc4: hdmi: Make sure the device is powered with CEC + - media: correct MEDIA_TEST_SUPPORT help text + - Documentation: coresight: Fix documentation issue + - Documentation: dmaengine: Correctly describe dmatest with channel unset + - Documentation: ACPI: Fix data node reference documentation + - Documentation, arch: Remove leftovers from raw device + - Documentation, arch: Remove leftovers from CIFS_WEAK_PW_HASH + - Documentation: refer to config RANDOMIZE_BASE for kernel address-space + randomization + - Documentation: fix firewire.rst ABI file path error + - net: usb: Correct reset handling of smsc95xx + - Bluetooth: hci_sync: Fix not setting adv set duration + - scsi: core: Show SCMD_LAST in text form + - scsi: ufs: ufs-mediatek: Fix error checking in ufs_mtk_init_va09_pwr_ctrl() + - RDMA/cma: Remove open coding of overflow checking for private_data_len + - dmaengine: uniphier-xdmac: Fix type of address variables + - dmaengine: idxd: fix wq settings post wq disable + - RDMA/hns: Modify the mapping attribute of doorbell to device + - RDMA/rxe: Fix a typo in opcode name + - dmaengine: stm32-mdma: fix STM32_MDMA_CTBR_TSEL_MASK + - Revert "net/mlx5: Add retry mechanism to the command entry index allocation" + - powerpc/cell: Fix clang -Wimplicit-fallthrough warning + - powerpc/fsl/dts: Enable WA for erratum A-009885 on fman3l MDIO buses + - block: fix async_depth sysfs interface for mq-deadline + - block: Fix fsync always failed if once failed + - drm/vc4: crtc: Drop feed_txp from state + - drm/vc4: Fix non-blocking commit getting stuck forever + - drm/vc4: crtc: Copy assigned channel to the CRTC + - bpftool: Remove inclusion of utilities.mak from Makefiles + - bpftool: Fix indent in option lists in the documentation + - xdp: check prog type before updating BPF link + - bpf: Fix mount source show for bpffs + - bpf: Mark PTR_TO_FUNC register initially with zero offset + - perf evsel: Override attr->sample_period for non-libpfm4 events + - ipv4: update fib_info_cnt under spinlock protection + - ipv4: avoid quadratic behavior in netns dismantle + - mlx5: Don't accidentally set RTO_ONLINK before mlx5e_route_lookup_ipv4_get() + - net/fsl: xgmac_mdio: Add workaround for erratum A-009885 + - net/fsl: xgmac_mdio: Fix incorrect iounmap when removing module + - parisc: pdc_stable: Fix memory leak in pdcs_register_pathentries + - riscv: dts: microchip: mpfs: Drop empty chosen node + - drm/vmwgfx: Remove explicit transparent hugepages support + - drm/vmwgfx: Remove unused compile options + - f2fs: fix remove page failed in invalidate compress pages + - f2fs: fix to avoid panic in is_alive() if metadata is inconsistent + - f2fs: compress: fix potential deadlock of compress file + - f2fs: fix to reserve space for IO align feature + - f2fs: fix to check available space of CP area correctly in + update_ckpt_flags() + - crypto: octeontx2 - uninitialized variable in kvf_limits_store() + - af_unix: annote lockless accesses to unix_tot_inflight & gc_in_progress + - clk: Emit a stern warning with writable debugfs enabled + - clk: si5341: Fix clock HW provider cleanup + - pinctrl/rockchip: fix gpio device creation + - gpio: mpc8xxx: Fix IRQ check in mpc8xxx_probe + - gpio: idt3243x: Fix IRQ check in idt_gpio_probe + - net/smc: Fix hung_task when removing SMC-R devices + - net: axienet: increase reset timeout + - net: axienet: Wait for PhyRstCmplt after core reset + - net: axienet: reset core on initialization prior to MDIO access + - net: axienet: add missing memory barriers + - net: axienet: limit minimum TX ring size + - net: axienet: Fix TX ring slot available check + - net: axienet: fix number of TX ring slots for available check + - net: axienet: fix for TX busy handling + - net: axienet: increase default TX ring size to 128 + - bitops: protect find_first_{,zero}_bit properly + - um: gitignore: Add kernel/capflags.c + - HID: vivaldi: fix handling devices not using numbered reports + - rtc: pxa: fix null pointer dereference + - vdpa/mlx5: Fix wrong configuration of virtio_version_1_0 + - virtio_ring: mark ring unused on error + - taskstats: Cleanup the use of task->exit_code + - inet: frags: annotate races around fqdir->dead and fqdir->high_thresh + - netns: add schedule point in ops_exit_list() + - iwlwifi: fix Bz NMI behaviour + - xfrm: Don't accidentally set RTO_ONLINK in decode_session4() + - vdpa/mlx5: Restore cur_num_vqs in case of failure in change_num_qps() + - gre: Don't accidentally set RTO_ONLINK in gre_fill_metadata_dst() + - libcxgb: Don't accidentally set RTO_ONLINK in cxgb_find_route() + - perf script: Fix hex dump character output + - dmaengine: at_xdmac: Don't start transactions at tx_submit level + - dmaengine: at_xdmac: Start transfer for cyclic channels in issue_pending + - dmaengine: at_xdmac: Print debug message after realeasing the lock + - dmaengine: at_xdmac: Fix concurrency over xfers_list + - dmaengine: at_xdmac: Fix lld view setting + - dmaengine: at_xdmac: Fix at_xdmac_lld struct definition + - perf tools: Drop requirement for libstdc++.so for libopencsd check + - perf probe: Fix ppc64 'perf probe add events failed' case + - devlink: Remove misleading internal_flags from health reporter dump + - arm64: dts: qcom: msm8996: drop not documented adreno properties + - net: fix sock_timestamping_bind_phc() to release device + - net: bonding: fix bond_xmit_broadcast return value error bug + - net: ipa: fix atomic update in ipa_endpoint_replenish() + - net_sched: restore "mpu xxx" handling + - net: mscc: ocelot: don't let phylink re-enable TX PAUSE on the NPI port + - bcmgenet: add WOL IRQ check + - net: wwan: Fix MRU mismatch issue which may lead to data connection lost + - net: ethernet: mtk_eth_soc: fix error checking in mtk_mac_config() + - net: ocelot: Fix the call to switchdev_bridge_port_offload + - net: sfp: fix high power modules without diagnostic monitoring + - net: cpsw: avoid alignment faults by taking NET_IP_ALIGN into account + - net: phy: micrel: use kszphy_suspend()/kszphy_resume for irq aware devices + - net: mscc: ocelot: fix using match before it is set + - dt-bindings: display: meson-dw-hdmi: add missing sound-name-prefix property + - dt-bindings: display: meson-vpu: Add missing amlogic,canvas property + - dt-bindings: watchdog: Require samsung,syscon-phandle for Exynos7 + - sch_api: Don't skip qdisc attach on ingress + - scripts/dtc: dtx_diff: remove broken example from help text + - lib82596: Fix IRQ check in sni_82596_probe + - mm/hmm.c: allow VM_MIXEDMAP to work with hmm_range_fault + - bonding: Fix extraction of ports from the packet headers + - lib/test_meminit: destroy cache in kmem_cache_alloc_bulk() test + - scripts: sphinx-pre-install: add required ctex dependency + - scripts: sphinx-pre-install: Fix ctex support on Debian + - Linux 5.15.17 + + * rtw88_8821ce causes freeze (LP: #1927808) // Jammy update: v5.15.17 upstream + stable release (LP: #1959376) + - rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE + + * Jammy update: v5.15.16 upstream stable release (LP: #1958977) + - devtmpfs regression fix: reconfigure on each mount + - orangefs: Fix the size of a memory allocation in orangefs_bufmap_alloc() + - remoteproc: qcom: pil_info: Don't memcpy_toio more than is provided + - perf: Protect perf_guest_cbs with RCU + - KVM: x86: Register perf callbacks after calling vendor's hardware_setup() + - KVM: x86: Register Processor Trace interrupt hook iff PT enabled in guest + - KVM: x86: don't print when fail to read/write pv eoi memory + - KVM: s390: Clarify SIGP orders versus STOP/RESTART + - remoteproc: qcom: pas: Add missing power-domain "mxc" for CDSP + - 9p: only copy valid iattrs in 9P2000.L setattr implementation + - video: vga16fb: Only probe for EGA and VGA 16 color graphic cards + - media: uvcvideo: fix division by zero at stream start + - rtlwifi: rtl8192cu: Fix WARNING when calling local_irq_restore() with + interrupts enabled + - firmware: qemu_fw_cfg: fix sysfs information leak + - firmware: qemu_fw_cfg: fix NULL-pointer deref on duplicate entries + - firmware: qemu_fw_cfg: fix kobject leak in probe error path + - perf annotate: Avoid TUI crash when navigating in the annotation of + recursive functions + - KVM: x86: remove PMU FIXED_CTR3 from msrs_to_save_all + - ALSA: hda/realtek: Add speaker fixup for some Yoga 15ITL5 devices + - ALSA: hda/realtek - Fix silent output on Gigabyte X570 Aorus Master after + reboot from Windows + - ALSA: hda: ALC287: Add Lenovo IdeaPad Slim 9i 14ITL5 speaker quirk + - ALSA: hda/tegra: Fix Tegra194 HDA reset failure + - ALSA: hda/realtek: Add quirk for Legion Y9000X 2020 + - ALSA: hda/realtek: Re-order quirk entries for Lenovo + - mtd: fixup CFI on ixp4xx + - Linux 5.15.16 + + * UBSAN: array-index-out-of-bounds in dcn31_resources on AMD yellow carp + platform (LP: #1958229) + - drm/amd/display: Fix out of bounds access on DNC31 stream encoder regs + + * Jammy update: v5.15.15 upstream stable release (LP: #1958418) + - s390/kexec: handle R_390_PLT32DBL rela in arch_kexec_apply_relocations_add() + - workqueue: Fix unbind_workers() VS wq_worker_running() race + - staging: r8188eu: switch the led off during deinit + - bpf: Fix out of bounds access from invalid *_or_null type verification + - Bluetooth: btusb: Add protocol for MediaTek bluetooth devices(MT7922) + - Bluetooth: btusb: Add the new support ID for Realtek RTL8852A + - Bluetooth: btusb: Add support for IMC Networks Mediatek Chip(MT7921) + - Bbluetooth: btusb: Add another Bluetooth part for Realtek 8852AE + - Bluetooth: btusb: fix memory leak in btusb_mtk_submit_wmt_recv_urb() + - Bluetooth: btusb: enable Mediatek to support AOSP extension + - Bluetooth: btusb: Add one more Bluetooth part for the Realtek RTL8852AE + - fget: clarify and improve __fget_files() implementation + - Bluetooth: btusb: Add two more Bluetooth parts for WCN6855 + - Bluetooth: btusb: Add support for Foxconn MT7922A + - Bluetooth: btintel: Fix broken LED quirk for legacy ROM devices + - Bluetooth: btusb: Add support for Foxconn QCA 0xe0d0 + - Bluetooth: bfusb: fix division by zero in send path + - ARM: dts: exynos: Fix BCM4330 Bluetooth reset polarity in I9100 + - USB: core: Fix bug in resuming hub's handling of wakeup requests + - USB: Fix "slab-out-of-bounds Write" bug in usb_hcd_poll_rh_status + - ath11k: Fix buffer overflow when scanning with extraie + - mmc: sdhci-pci: Add PCI ID for Intel ADL + - Bluetooth: add quirk disabling LE Read Transmit Power + - Bluetooth: btbcm: disable read tx power for some Macs with the T2 Security + chip + - Bluetooth: btbcm: disable read tx power for MacBook Air 8,1 and 8,2 + - veth: Do not record rx queue hint in veth_xmit + - mfd: intel-lpss: Fix too early PM enablement in the ACPI ->probe() + - can: gs_usb: fix use of uninitialized variable, detach device on reception + of invalid USB data + - can: isotp: convert struct tpcon::{idx,len} to unsigned int + - can: gs_usb: gs_can_start_xmit(): zero-initialize hf->{flags,reserved} + - random: fix data race on crng_node_pool + - random: fix data race on crng init time + - random: fix crash on multiple early calls to add_bootloader_randomness() + - platform/x86/intel: hid: add quirk to support Surface Go 3 + - media: Revert "media: uvcvideo: Set unique vdev name based in type" + - staging: wlan-ng: Avoid bitwise vs logical OR warning in + hfa384x_usb_throttlefn() + - drm/i915: Avoid bitwise vs logical OR warning in snb_wm_latency_quirk() + - staging: greybus: fix stack size warning with UBSAN + - Linux 5.15.15 + + * UBSAN warning on unplugging USB4 DP alt mode from AMD Yellow Carp graphics + card (LP: #1956497) + - drm/amd/display: explicitly set is_dsc_supported to false before use + + * Support USB4 DP alt mode for AMD Yellow Carp graphics card (LP: #1953008) + - drm/amd/display: Enable PSR by default on newer DCN + - SAUCE: drm/amd/display: Fixup previous PSR policy commit + - drm/amd/display: Fix USB4 hot plug crash issue + - drm/amd/display: Creating a fw boot options bit for an upcoming feature + - drm/amd/display: Enable dpia in dmub only for DCN31 B0 + - drm/amd/display: MST support for DPIA + - drm/amd/display: Set phy_mux_sel bit in dmub scratch register + - drm/amd/display: Don't lock connection_mutex for DMUB HPD + - drm/amd/display: Add callbacks for DMUB HPD IRQ notifications + + * Jammy update: v5.15.14 upstream stable release (LP: #1957882) + - fscache_cookie_enabled: check cookie is valid before accessing it + - selftests: x86: fix [-Wstringop-overread] warn in test_process_vm_readv() + - tracing: Fix check for trace_percpu_buffer validity in get_trace_buf() + - tracing: Tag trace_percpu_buffer as a percpu pointer + - Revert "RDMA/mlx5: Fix releasing unallocated memory in dereg MR flow" + - ieee802154: atusb: fix uninit value in atusb_set_extended_addr + - i40e: Fix to not show opcode msg on unsuccessful VF MAC change + - iavf: Fix limit of total number of queues to active queues of VF + - RDMA/core: Don't infoleak GRH fields + - Revert "net: usb: r8152: Add MAC passthrough support for more Lenovo Docks" + - netrom: fix copying in user data in nr_setsockopt + - RDMA/uverbs: Check for null return of kmalloc_array + - mac80211: initialize variable have_higher_than_11mbit + - mac80211: mesh: embedd mesh_paths and mpp_paths into ieee80211_if_mesh + - sfc: The RX page_ring is optional + - i40e: fix use-after-free in i40e_sync_filters_subtask() + - i40e: Fix for displaying message regarding NVM version + - i40e: Fix incorrect netdev's real number of RX/TX queues + - ftrace/samples: Add missing prototypes direct functions + - ipv4: Check attribute length for RTA_GATEWAY in multipath route + - ipv4: Check attribute length for RTA_FLOW in multipath route + - ipv6: Check attribute length for RTA_GATEWAY in multipath route + - ipv6: Check attribute length for RTA_GATEWAY when deleting multipath route + - lwtunnel: Validate RTA_ENCAP_TYPE attribute length + - selftests: net: udpgro_fwd.sh: explicitly checking the available ping + feature + - sctp: hold endpoint before calling cb in sctp_transport_lookup_process + - batman-adv: mcast: don't send link-local multicast to mcast routers + - sch_qfq: prevent shift-out-of-bounds in qfq_init_qdisc + - net: ena: Fix undefined state when tx request id is out of bounds + - net: ena: Fix wrong rx request id by resetting device + - net: ena: Fix error handling when calculating max IO queues number + - md/raid1: fix missing bitmap update w/o WriteMostly devices + - EDAC/i10nm: Release mdev/mbase when failing to detect HBM + - KVM: x86: Check for rmaps allocation + - cgroup: Use open-time credentials for process migraton perm checks + - cgroup: Allocate cgroup_file_ctx for kernfs_open_file->priv + - cgroup: Use open-time cgroup namespace for process migration perm checks + - Revert "i2c: core: support bus regulator controlling in adapter" + - i2c: mpc: Avoid out of bounds memory access + - power: supply: core: Break capacity loop + - power: reset: ltc2952: Fix use of floating point literals + - reset: renesas: Fix Runtime PM usage + - rndis_host: support Hytera digital radios + - gpio: gpio-aspeed-sgpio: Fix wrong hwirq base in irq handler + - net ticp:fix a kernel-infoleak in __tipc_sendmsg() + - phonet: refcount leak in pep_sock_accep + - fbdev: fbmem: add a helper to determine if an aperture is used by a fw fb + - drm/amdgpu: disable runpm if we are the primary adapter + - power: bq25890: Enable continuous conversion for ADC at charging + - ipv6: Continue processing multipath route even if gateway attribute is + invalid + - ipv6: Do cleanup if attribute validation fails in multipath route + - auxdisplay: charlcd: checking for pointer reference before dereferencing + - drm/amdgpu: fix dropped backing store handling in amdgpu_dma_buf_move_notify + - drm/amd/pm: Fix xgmi link control on aldebaran + - usb: mtu3: fix interval value for intr and isoc + - scsi: libiscsi: Fix UAF in iscsi_conn_get_param()/iscsi_conn_teardown() + - ip6_vti: initialize __ip6_tnl_parm struct in vti6_siocdevprivate + - net: udp: fix alignment problem in udp4_seq_show() + - atlantic: Fix buff_ring OOB in aq_ring_rx_clean + - drm/amd/pm: skip setting gfx cgpg in the s0ix suspend-resume + - mISDN: change function names to avoid conflicts + - drm/amd/display: fix B0 TMDS deepcolor no dislay issue + - drm/amd/display: Added power down for DCN10 + - ipv6: raw: check passed optlen before reading + - userfaultfd/selftests: fix hugetlb area allocations + - ARM: dts: gpio-ranges property is now required + - Input: zinitix - make sure the IRQ is allocated before it gets enabled + - Revert "drm/amdgpu: stop scheduler when calling hw_fini (v2)" + - drm/amd/pm: keep the BACO feature enabled for suspend + - Linux 5.15.14 + + * alsa/sdw: add sdw audio machine driver for several ADL machines + (LP: #1951563) + - ASoC: Intel: sof_sdw: Add support for SKU 0AF3 product + - ASoC: Intel: soc-acpi: add SKU 0AF3 SoundWire configuration + - ASoC: Intel: sof_sdw: Add support for SKU 0B00 and 0B01 products + - ASoC: Intel: sof_sdw: Add support for SKU 0B11 product + - ASoC: Intel: sof_sdw: Add support for SKU 0B13 product + - ASoC: Intel: soc-acpi: add SKU 0B13 SoundWire configuration + - ASoC: Intel: sof_sdw: Add support for SKU 0B29 product + - ASoC: Intel: soc-acpi: add SKU 0B29 SoundWire configuration + - ASoC: Intel: sof_sdw: Add support for SKU 0B12 product + - ASoC: intel: sof_sdw: return the original error number + - ASoC: intel: sof_sdw: rename be_index/link_id to link_index + - ASoC: intel: sof_sdw: Use a fixed DAI link id for AMP + - ASoC: intel: sof_sdw: move DMIC link id overwrite to create_sdw_dailink + - ASoC: intel: sof_sdw: remove SOF_RT715_DAI_ID_FIX quirk + - ASoC: intel: sof_sdw: remove sof_sdw_mic_codec_mockup_init + - ASoC: intel: sof_sdw: remove get_next_be_id + - ASoC: intel: sof_sdw: add link adr order check + + * Add basic Wifi support for Qualcomm WCN6856 (LP: #1955613) + - ath11k: change to use dynamic memory for channel list of scan + - ath11k: add string type to search board data in board-2.bin for WCN6855 + + * Enable audio mute LED and mic mute LED on a new HP laptop (LP: #1956454) + - ALSA: hda/realtek: Use ALC285_FIXUP_HP_GPIO_LED on another HP laptop + + * Add missing BT ID for Qualcomm WCN6856 (LP: #1956407) + - Bluetooth: btusb: Add one more Bluetooth part for WCN6855 + + * Add Bluetooth support for Qualcomm WCN6856 (LP: #1955689) + - Bluetooth: btusb: Add support using different nvm for variant WCN6855 + controller + - Bluetooth: btusb: re-definition for board_id in struct qca_version + - Bluetooth: btusb: Add the new support IDs for WCN6855 + + * Improve performance and idle power consumption (LP: #1941893) + - x86: ACPI: cstate: Optimize C3 entry on AMD CPUs + + * [Yellow Carp] USB4 interdomain communication problems (LP: #1945361) + - thunderbolt: Enable retry logic for intra-domain control packets + + * 1951111: + - scsi: lpfc: Fix mailbox command failure during driver initialization + + * [Jammy] Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.3 for Ubuntu + 22.04 (LP: #1951111) + - scsi: lpfc: Fix premature rpi release for unsolicited TPLS and LS_RJT + - scsi: lpfc: Fix hang on unload due to stuck fport node + - scsi: lpfc: Fix rediscovery of tape device after LIP + - scsi: lpfc: Don't remove ndlp on PRLI errors in P2P mode + - scsi: lpfc: Fix EEH support for NVMe I/O + - scsi: lpfc: Adjust bytes received vales during cmf timer interval + - scsi: lpfc: Fix I/O block after enabling managed congestion mode + - scsi: lpfc: Zero CGN stats only during initial driver load and stat reset + - scsi: lpfc: Improve PBDE checks during SGL processing + - scsi: lpfc: Update lpfc version to 14.0.0.2 + + * smartpqi: Update 20.04.4 to latest kernel.org patch level (LP: #1953689) + - scsi: smartpqi: Update device removal management + - scsi: smartpqi: Capture controller reason codes + - scsi: smartpqi: Update LUN reset handler + - scsi: smartpqi: Add TEST UNIT READY check for SANITIZE operation + - scsi: smartpqi: Avoid failing I/Os for offline devices + - scsi: smartpqi: Add extended report physical LUNs + - scsi: smartpqi: Fix boot failure during LUN rebuild + - scsi: smartpqi: Fix duplicate device nodes for tape changers + - scsi: smartpqi: Add 3252-8i PCI id + - scsi: smartpqi: Update version to 2.1.12-055 + + * Let VMD follow host bridge PCIe settings (LP: #1954611) + - PCI: vmd: Honor ACPI _OSC on PCIe features + + * Fix spurious wakeup caused by Intel 7560 WWAN (LP: #1956443) + - net: wwan: iosm: Keep device at D0 for s2idle case + + * [uacc-0623] hisi_sec2 fail to alloc uacce (LP: #1933301) + - crypto: hisilicon/qm - modify the uacce mode check + + * Jammy update: v5.15.13 upstream stable release (LP: #1956926) + - Input: i8042 - add deferred probe support + - Input: i8042 - enable deferred probe quirk for ASUS UM325UA + - tomoyo: Check exceeded quota early in tomoyo_domain_quota_is_ok(). + - tomoyo: use hwight16() in tomoyo_domain_quota_is_ok() + - net/sched: Extend qdisc control block with tc control block + - parisc: Clear stale IIR value on instruction access rights trap + - platform/mellanox: mlxbf-pmc: Fix an IS_ERR() vs NULL bug in + mlxbf_pmc_map_counters + - platform/x86: apple-gmux: use resource_size() with res + - memblock: fix memblock_phys_alloc() section mismatch error + - recordmcount.pl: fix typo in s390 mcount regex + - powerpc/ptdump: Fix DEBUG_WX since generic ptdump conversion + - efi: Move efifb_setup_from_dmi() prototype from arch headers + - selinux: initialize proto variable in selinux_ip_postroute_compat() + - scsi: lpfc: Terminate string in lpfc_debugfs_nvmeio_trc_write() + - net/mlx5: DR, Fix NULL vs IS_ERR checking in dr_domain_init_resources + - net/mlx5: Fix error print in case of IRQ request failed + - net/mlx5: Fix SF health recovery flow + - net/mlx5: Fix tc max supported prio for nic mode + - net/mlx5e: Wrap the tx reporter dump callback to extract the sq + - net/mlx5e: Fix interoperability between XSK and ICOSQ recovery flow + - net/mlx5e: Fix ICOSQ recovery flow for XSK + - net/mlx5e: Use tc sample stubs instead of ifdefs in source file + - net/mlx5e: Delete forward rule for ct or sample action + - udp: using datalen to cap ipv6 udp max gso segments + - selftests: Calculate udpgso segment count without header adjustment + - sctp: use call_rcu to free endpoint + - net/smc: fix using of uninitialized completions + - net: usb: pegasus: Do not drop long Ethernet frames + - net: ag71xx: Fix a potential double free in error handling paths + - net: lantiq_xrx200: fix statistics of received bytes + - NFC: st21nfca: Fix memory leak in device probe and remove + - net/smc: don't send CDC/LLC message if link not ready + - net/smc: fix kernel panic caused by race of smc_sock + - igc: Do not enable crosstimestamping for i225-V models + - igc: Fix TX timestamp support for non-MSI-X platforms + - drm/amd/display: Send s0i2_rdy in stream_count == 0 optimization + - drm/amd/display: Set optimize_pwr_state for DCN31 + - ionic: Initialize the 'lif->dbid_inuse' bitmap + - net/mlx5e: Fix wrong features assignment in case of error + - net: bridge: mcast: add and enforce query interval minimum + - net: bridge: mcast: add and enforce startup query interval minimum + - selftests/net: udpgso_bench_tx: fix dst ip argument + - selftests: net: Fix a typo in udpgro_fwd.sh + - net: bridge: mcast: fix br_multicast_ctx_vlan_global_disabled helper + - net/ncsi: check for error return from call to nla_put_u32 + - selftests: net: using ping6 for IPv6 in udpgro_fwd.sh + - fsl/fman: Fix missing put_device() call in fman_port_probe + - i2c: validate user data in compat ioctl + - nfc: uapi: use kernel size_t to fix user-space builds + - uapi: fix linux/nfc.h userspace compilation errors + - drm/nouveau: wait for the exclusive fence after the shared ones v2 + - drm/amdgpu: When the VCN(1.0) block is suspended, powergating is explicitly + enabled + - drm/amdgpu: add support for IP discovery gc_info table v2 + - drm/amd/display: Changed pipe split policy to allow for multi-display pipe + split + - xhci: Fresco FL1100 controller should not have BROKEN_MSI quirk set. + - usb: gadget: f_fs: Clear ffs_eventfd in ffs_data_clear. + - usb: mtu3: add memory barrier before set GPD's HWO + - usb: mtu3: fix list_head check warning + - usb: mtu3: set interval of FS intr and isoc endpoint + - nitro_enclaves: Use get_user_pages_unlocked() call to handle mmap assert + - binder: fix async_free_space accounting for empty parcels + - scsi: vmw_pvscsi: Set residual data length conditionally + - Input: appletouch - initialize work before device registration + - Input: spaceball - fix parsing of movement data packets + - mm/damon/dbgfs: fix 'struct pid' leaks in 'dbgfs_target_ids_write()' + - net: fix use-after-free in tw_timer_handler + - fs/mount_setattr: always cleanup mount_kattr + - perf intel-pt: Fix parsing of VM time correlation arguments + - perf script: Fix CPU filtering of a script's switch events + - perf scripts python: intel-pt-events.py: Fix printing of switch events + - Linux 5.15.13 + + * Miscellaneous Ubuntu changes + - [Packaging] getabis: Add fwinfo.builtin to the ABI + - [Packaging] Add list of built-in firmwares to the ABI + - [Config] x86-64: SYSFB_SIMPLEFB=y + - [packaging] arm64: introduce the lowlatency and lowlatency-64k flavours + - [packaging] arm64: updateconfigs + - [Config] annotations: remove duplicates when arm64-generic == + arm64-generic-64k option + - [Config] annotations: introduce arm64-lowlatency and arm64-lowlatency-64k + kconfig options checks + - [Packaging] Update dependency of pahole / dwarves + - [Config] toolchain version update + + * Miscellaneous upstream changes + - scsi: lpfc: Revert LOG_TRACE_EVENT back to LOG_INIT prior to + driver_resource_setup() + - scsi: lpfc: Correct sysfs reporting of loop support after SFP status change + - scsi: lpfc: Allow PLOGI retry if previous PLOGI was aborted + - scsi: lpfc: Update lpfc version to 14.0.0.3 + - Revert "rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE" + + -- Paolo Pisati Fri, 28 Jan 2022 17:16:21 +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 --- linux-gcp-6.2.0.orig/debian.gcp/config/annotations +++ linux-gcp-6.2.0/debian.gcp/config/annotations @@ -0,0 +1,361 @@ +# Menu: HEADER +# FORMAT: 4 +# ARCH: amd64 arm64 +# FLAVOUR: amd64-gcp arm64-gcp + +include "../../debian.master/config/annotations" + +CONFIG_ACCESSIBILITY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACCESSIBILITY note<'LP: #1967702'> + +CONFIG_BLK_DEV_FD policy<{'amd64': 'n'}> +CONFIG_BLK_DEV_FD note<'LP:1729673'> + +CONFIG_BLK_DEV_NVME policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_BLK_DEV_NVME note<'Needed for minimal images'> + +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC policy<{'amd64': 'y'}> +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC note<'initial packaging'> + +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC note<'initial packaging'> + +CONFIG_GPIO_CDEV_V1 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_GPIO_CDEV_V1 note<'LP: #1953613'> + +CONFIG_KERNEL_ZSTD policy<{'amd64': 'y', 'arm64': 'n'}> +CONFIG_KERNEL_ZSTD note<'LP: #1931725'> + +CONFIG_NETFILTER_NETLINK_LOG policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NETFILTER_NETLINK_LOG note<'initial packaging'> + +CONFIG_NETFILTER_NETLINK_QUEUE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NETFILTER_NETLINK_QUEUE note<'initial packaging'> + +CONFIG_NF_CONNTRACK policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NF_CONNTRACK note<'initial packaging'> + +CONFIG_NF_CONNTRACK_PROCFS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NF_CONNTRACK_PROCFS note<'initial packaging'> + +CONFIG_NF_CT_NETLINK policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NF_CT_NETLINK note<'initial packaging'> + +CONFIG_PANIC_ON_OOPS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PANIC_ON_OOPS note<'keep working if at all possible'> + +CONFIG_RAID6_PQ_DEFAULT_ALG policy<{'amd64': '-'}> +CONFIG_RAID6_PQ_DEFAULT_ALG note<'LP:1812728'> + +CONFIG_RAID6_PQ_DEFAULT_ALG_BOOL policy<{'amd64': '-'}> +CONFIG_RAID6_PQ_DEFAULT_ALG_BOOL note<'LP:1812728'> + +CONFIG_RUST policy<{'amd64': 'n', 'arm64': '-'}> +CONFIG_RUST note<'required to enable Rust support, LP: #1993183'> + + +# ---- Annotations without notes ---- + +CONFIG_A11Y_BRAILLE_CONSOLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AAEON_IWMI_WDT policy<{'amd64': '-'}> +CONFIG_AHCI_BRCM policy<{'arm64': 'm'}> +CONFIG_APPLE_RTKIT policy<{'arm64': 'y'}> +CONFIG_APPLE_SART policy<{'arm64': 'y'}> +CONFIG_ARCH_BCM policy<{'arm64': 'y'}> +CONFIG_ARCH_BCM2835 policy<{'arm64': 'y'}> +CONFIG_ARCH_BCMBCA policy<{'arm64': 'y'}> +CONFIG_ARCH_BCM_IPROC policy<{'arm64': 'y'}> +CONFIG_ARCH_BRCMSTB policy<{'arm64': 'y'}> +CONFIG_ARCH_FORCE_MAX_ORDER policy<{'arm64': '13'}> +CONFIG_ARCH_INLINE_READ_LOCK policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_READ_LOCK_BH policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_READ_LOCK_IRQ policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_READ_LOCK_IRQSAVE policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_READ_UNLOCK policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_READ_UNLOCK_BH policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_READ_UNLOCK_IRQ policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_SPIN_LOCK policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_SPIN_LOCK_BH policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_SPIN_TRYLOCK policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_SPIN_UNLOCK policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_SPIN_UNLOCK_BH policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_WRITE_LOCK policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_WRITE_LOCK_BH policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_WRITE_UNLOCK policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_WRITE_UNLOCK_BH policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQ policy<{'arm64': 'y'}> +CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE policy<{'arm64': 'y'}> +CONFIG_ARCH_MMAP_RND_BITS_MAX policy<{'amd64': '32', 'arm64': '33'}> +CONFIG_ARCH_MMAP_RND_BITS_MIN policy<{'amd64': '28', 'arm64': '18'}> +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN policy<{'amd64': '8', 'arm64': '11'}> +CONFIG_ARCH_NR_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ARCH_WANTS_THP_SWAP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ARCH_WANT_HUGE_PMD_SHARE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ARM64_4K_PAGES policy<{'arm64': 'y'}> +CONFIG_ARM64_64K_PAGES policy<{'arm64': 'n'}> +CONFIG_ARM64_CONT_PMD_SHIFT policy<{'arm64': '4'}> +CONFIG_ARM64_CONT_PTE_SHIFT policy<{'arm64': '4'}> +CONFIG_ARM64_PAGE_SHIFT policy<{'arm64': '12'}> +CONFIG_ARM64_VA_BITS_39 policy<{'arm64': 'n'}> +CONFIG_ARM_BRCMSTB_AVS_CPUFREQ policy<{'arm64': 'm'}> +CONFIG_ARM_RASPBERRYPI_CPUFREQ policy<{'arm64': 'm'}> +CONFIG_ARM_SCMI_TRANSPORT_SMC_ATOMIC_ENABLE policy<{'arm64': 'n'}> +CONFIG_ARM_SCMI_TRANSPORT_VIRTIO_ATOMIC_ENABLE policy<{'arm64': 'n'}> +CONFIG_ARM_SMMU_QCOM_DEBUG policy<{'arm64': 'n'}> +CONFIG_BCM2711_THERMAL policy<{'arm64': 'm'}> +CONFIG_BCM2835_MBOX policy<{'arm64': 'y'}> +CONFIG_BCM2835_POWER policy<{'arm64': 'y'}> +CONFIG_BCM2835_THERMAL policy<{'arm64': 'm'}> +CONFIG_BCM2835_VCHIQ policy<{'arm64': 'm'}> +CONFIG_BCM2835_VCHIQ_MMAL policy<{'arm64': 'm'}> +CONFIG_BCM2835_WDT policy<{'arm64': 'm'}> +CONFIG_BCM4908_ENET policy<{'arm64': 'm'}> +CONFIG_BCM7038_L1_IRQ policy<{'arm64': 'y'}> +CONFIG_BCM7038_WDT policy<{'arm64': 'm'}> +CONFIG_BCM7120_L2_IRQ policy<{'arm64': 'm'}> +CONFIG_BCM_FLEXRM_MBOX policy<{'arm64': 'm'}> +CONFIG_BCM_IPROC_ADC policy<{'arm64': 'm'}> +CONFIG_BCM_NS_THERMAL policy<{'arm64': 'm'}> +CONFIG_BCM_PDC_MBOX policy<{'arm64': 'm'}> +CONFIG_BCM_PMB policy<{'arm64': 'y'}> +CONFIG_BCM_SR_THERMAL policy<{'arm64': 'm'}> +CONFIG_BCM_VIDEOCORE policy<{'arm64': 'm'}> +CONFIG_BGMAC policy<{'arm64': 'y'}> +CONFIG_BGMAC_PLATFORM policy<{'arm64': 'y'}> +CONFIG_BINDGEN_VERSION_TEXT policy<{'amd64': '-'}> +CONFIG_BLK_DEV_FD_RAWCMD policy<{'amd64': '-'}> +CONFIG_BLK_DEV_UBLK policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_BRCMSTB_DPFE policy<{'arm64': 'y'}> +CONFIG_BRCMSTB_L2_IRQ policy<{'arm64': 'y'}> +CONFIG_BRCMSTB_MEMC policy<{'arm64': 'm'}> +CONFIG_BRCMSTB_PM policy<{'arm64': 'y'}> +CONFIG_BRCMSTB_THERMAL policy<{'arm64': 'm'}> +CONFIG_BRCM_USB_PINMAP policy<{'arm64': 'm'}> +CONFIG_BUILD_BIN2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CACHEFILES_ERROR_INJECTION policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CEC_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CEC_PIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CEC_PIN_ERROR_INJ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CLK_BCM2711_DVP policy<{'arm64': 'm'}> +CONFIG_CLK_BCM2835 policy<{'arm64': 'y'}> +CONFIG_CLK_BCM_63XX policy<{'arm64': 'y'}> +CONFIG_CLK_BCM_NS2 policy<{'arm64': 'y'}> +CONFIG_CLK_BCM_SR policy<{'arm64': 'y'}> +CONFIG_CLK_RASPBERRYPI policy<{'arm64': 'm'}> +CONFIG_COMEDI_TESTS_EXAMPLE policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_COMEDI_TESTS_NI_ROUTES policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_COMMON_CLK_IPROC policy<{'arm64': 'y'}> +CONFIG_CONSTRUCTORS policy<{'amd64': '-'}> +CONFIG_CRYPTO_DEV_BCM_SPU policy<{'arm64': 'm'}> +CONFIG_CRYPTO_GF128MUL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CS_DSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DA_MON_EVENTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DA_MON_EVENTS_ID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DEBUG_PREEMPT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DMA_BCM2835 policy<{'arm64': 'y'}> +CONFIG_DRM_NOMODESET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DRM_USE_DYNAMIC_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DRM_V3D policy<{'arm64': 'm'}> +CONFIG_DRM_VC4 policy<{'arm64': 'm'}> +CONFIG_DRM_VC4_HDMI_CEC policy<{'arm64': 'y'}> +CONFIG_DTPM_DEVFREQ policy<{'arm64': 'y'}> +CONFIG_EFI_ZBOOT policy<{'arm64': 'y'}> +CONFIG_EROFS_FS_ZIP_LZMA policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_FORCE_MAX_ZONEORDER policy<{'arm64': '-'}> +CONFIG_FPGA_M10_BMC_SEC_UPDATE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_FW_UPLOAD policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_GCC_SUPPORTS_DYNAMIC_FTRACE_WITH_REGS policy<{'arm64': '-'}> +CONFIG_GENERIC_MSI_IRQ_DOMAIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_AAEON policy<{'amd64': '-'}> +CONFIG_GPIO_BCM_XGS_IPROC policy<{'arm64': 'm'}> +CONFIG_GPIO_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_GPIO_RASPBERRYPI_EXP policy<{'arm64': 'm'}> +CONFIG_HAVE_KERNEL_GZIP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HAVE_KERNEL_LZ4 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HAVE_KERNEL_LZMA policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HAVE_KERNEL_LZO policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HAVE_KERNEL_XZ policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HAVE_KERNEL_ZSTD policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HID_NINTENDO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_RAZER policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_HW_RANDOM_BCM2835 policy<{'arm64': 'm'}> +CONFIG_HW_RANDOM_IPROC_RNG200 policy<{'arm64': 'm'}> +CONFIG_I2C_BCM2835 policy<{'arm64': 'm'}> +CONFIG_I2C_BCM_IPROC policy<{'arm64': 'm'}> +CONFIG_I2C_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_I8K policy<{'amd64': 'n'}> +CONFIG_INFINIBAND_VMWARE_PVRDMA policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_INLINE_READ_LOCK policy<{'arm64': 'y'}> +CONFIG_INLINE_READ_LOCK_BH policy<{'arm64': 'y'}> +CONFIG_INLINE_READ_LOCK_IRQ policy<{'arm64': 'y'}> +CONFIG_INLINE_READ_LOCK_IRQSAVE policy<{'arm64': 'y'}> +CONFIG_INLINE_READ_UNLOCK policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_INLINE_READ_UNLOCK_BH policy<{'arm64': 'y'}> +CONFIG_INLINE_READ_UNLOCK_IRQ policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_INLINE_READ_UNLOCK_IRQRESTORE policy<{'arm64': 'y'}> +CONFIG_INLINE_SPIN_LOCK policy<{'arm64': 'y'}> +CONFIG_INLINE_SPIN_LOCK_BH policy<{'arm64': 'y'}> +CONFIG_INLINE_SPIN_LOCK_IRQ policy<{'arm64': 'y'}> +CONFIG_INLINE_SPIN_LOCK_IRQSAVE policy<{'arm64': 'y'}> +CONFIG_INLINE_SPIN_TRYLOCK policy<{'arm64': 'y'}> +CONFIG_INLINE_SPIN_TRYLOCK_BH policy<{'arm64': 'y'}> +CONFIG_INLINE_SPIN_UNLOCK_BH policy<{'arm64': 'y'}> +CONFIG_INLINE_SPIN_UNLOCK_IRQ policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE policy<{'arm64': 'y'}> +CONFIG_INLINE_WRITE_LOCK policy<{'arm64': 'y'}> +CONFIG_INLINE_WRITE_LOCK_BH policy<{'arm64': 'y'}> +CONFIG_INLINE_WRITE_LOCK_IRQ policy<{'arm64': 'y'}> +CONFIG_INLINE_WRITE_LOCK_IRQSAVE policy<{'arm64': 'y'}> +CONFIG_INLINE_WRITE_UNLOCK policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_INLINE_WRITE_UNLOCK_BH policy<{'arm64': 'y'}> +CONFIG_INLINE_WRITE_UNLOCK_IRQ policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE policy<{'arm64': 'y'}> +CONFIG_KERNEL_GZIP policy<{'amd64': 'n', 'arm64': 'y'}> +CONFIG_KERNEL_LZ4 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KERNEL_LZMA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KERNEL_LZO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KERNEL_XZ policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_AAEON policy<{'amd64': '-'}> +CONFIG_LIBCRC32C policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_MDIO_BCM_IPROC policy<{'arm64': 'n'}> +CONFIG_MDIO_BUS_MUX policy<{'arm64': 'y'}> +CONFIG_MDIO_BUS_MUX_BCM_IPROC policy<{'arm64': 'y'}> +CONFIG_MESON_EFUSE policy<{'arm64': '-'}> +CONFIG_MESON_SECURE_PM_DOMAINS policy<{'arm64': 'y'}> +CONFIG_MESON_SM policy<{'arm64': 'y'}> +CONFIG_MFD_AAEON policy<{'amd64': '-'}> +CONFIG_MLX5_EN_MACSEC policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_MMC_BCM2835 policy<{'arm64': 'm'}> +CONFIG_MMC_SDHCI_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_MMC_SDHCI_IPROC policy<{'arm64': 'm'}> +CONFIG_MTD_BRCM_U_BOOT policy<{'arm64': 'm'}> +CONFIG_MTD_OF_PARTS_BCM4908 policy<{'arm64': 'y'}> +CONFIG_MTD_OF_PARTS_LINKSYS_NS policy<{'arm64': 'y'}> +CONFIG_NETFILTER_NETLINK policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NFSD_V2_ACL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NF_DEFRAG_IPV4 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NF_DEFRAG_IPV6 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NINTENDO_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NPCM7XX_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_NTFS_RW policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NVMEM_BCM_OCOTP policy<{'arm64': 'm'}> +CONFIG_NVMEM_MESON_EFUSE policy<{'arm64': 'm'}> +CONFIG_NVME_COMMON policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NVME_CORE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_OMAP_GPMC policy<{'arm64': 'm'}> +CONFIG_PAGE_SIZE_LESS_THAN_64KB policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PANIC_ON_OOPS_VALUE policy<{'amd64': '1', 'arm64': '1'}> +CONFIG_PCIE_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_PCIE_IPROC policy<{'arm64': 'm'}> +CONFIG_PCIE_IPROC_MSI policy<{'arm64': 'y'}> +CONFIG_PCIE_IPROC_PLATFORM policy<{'arm64': 'm'}> +CONFIG_PCI_MSI_IRQ_DOMAIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PGTABLE_LEVELS policy<{'amd64': '5', 'arm64': '4'}> +CONFIG_PHY_BCM_NS_USB2 policy<{'arm64': 'm'}> +CONFIG_PHY_BCM_NS_USB3 policy<{'arm64': 'm'}> +CONFIG_PHY_BCM_SR_PCIE policy<{'arm64': 'm'}> +CONFIG_PHY_BCM_SR_USB policy<{'arm64': 'm'}> +CONFIG_PHY_BRCM_SATA policy<{'arm64': 'y'}> +CONFIG_PHY_BRCM_USB policy<{'arm64': 'm'}> +CONFIG_PHY_NS2_PCIE policy<{'arm64': 'y'}> +CONFIG_PHY_NS2_USB_DRD policy<{'arm64': 'm'}> +CONFIG_PINCTRL_BCM2835 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_BCM4908 policy<{'arm64': 'm'}> +CONFIG_PINCTRL_IPROC_GPIO policy<{'arm64': 'y'}> +CONFIG_PINCTRL_NS2_MUX policy<{'arm64': 'y'}> +CONFIG_PREEMPTION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PREEMPT_BUILD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PREEMPT_COUNT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PREEMPT_DYNAMIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PREEMPT_RCU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PREEMPT_TRACER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PREEMPT_VOLUNTARY_BUILD policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PTE_MARKER policy<{'amd64': '-'}> +CONFIG_PTP_1588_CLOCK_DTE policy<{'arm64': 'm'}> +CONFIG_PWM_BCM2835 policy<{'arm64': 'm'}> +CONFIG_PWM_BCM_IPROC policy<{'arm64': 'm'}> +CONFIG_PWM_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_PWM_RASPBERRYPI_POE policy<{'arm64': 'm'}> +CONFIG_QCOM_SPM policy<{'arm64': 'm'}> +CONFIG_RASPBERRYPI_FIRMWARE policy<{'arm64': 'y'}> +CONFIG_RASPBERRYPI_POWER policy<{'arm64': 'y'}> +CONFIG_RESET_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_RESET_BRCMSTB_RESCAL policy<{'arm64': 'y'}> +CONFIG_RESET_RASPBERRYPI policy<{'arm64': 'm'}> +CONFIG_RTC_DRV_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_RUSTC_VERSION_TEXT policy<{'amd64': '-'}> +CONFIG_RUST_BUILD_ASSERT_ALLOW policy<{'amd64': '-'}> +CONFIG_RUST_DEBUG_ASSERTIONS policy<{'amd64': '-'}> +CONFIG_RUST_OVERFLOW_CHECKS policy<{'amd64': '-'}> +CONFIG_RV_MON_WWNR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SAMPLES_RUST policy<{'amd64': '-'}> +CONFIG_SCSI_UFS_HWMON policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SENSORS_AAEON policy<{'amd64': '-'}> +CONFIG_SENSORS_RASPBERRYPI_HWMON policy<{'arm64': 'm'}> +CONFIG_SERIAL_8250_BCM2835AUX policy<{'arm64': 'n'}> +CONFIG_SERIAL_8250_BCM7271 policy<{'arm64': 'm'}> +CONFIG_SERIAL_8250_EM policy<{'arm64': 'm'}> +CONFIG_SERIAL_BCM63XX policy<{'arm64': 'm'}> +CONFIG_SERIAL_SAMSUNG_CONSOLE policy<{'arm64': 'n'}> +CONFIG_SFC_SIENA_SRIOV policy<{'amd64': 'y', 'arm64': 'n'}> +CONFIG_SND_BCM2835 policy<{'arm64': 'm'}> +CONFIG_SND_BCM2835_SOC_I2S policy<{'arm64': 'm'}> +CONFIG_SND_CTL_FAST_LOOKUP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SND_SOC_AMD_PS policy<{'amd64': 'n'}> +CONFIG_SND_SOC_AMD_PS_MACH policy<{'amd64': '-'}> +CONFIG_SND_TEST_COMPONENT policy<{'arm64': 'n'}> +CONFIG_SPEAKUP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPEAKUP_SYNTH_ACNTSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPEAKUP_SYNTH_APOLLO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPEAKUP_SYNTH_AUDPTR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPEAKUP_SYNTH_BNS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPEAKUP_SYNTH_DECEXT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPEAKUP_SYNTH_DECTLK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPEAKUP_SYNTH_DUMMY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPEAKUP_SYNTH_LTLK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPEAKUP_SYNTH_SOFT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPEAKUP_SYNTH_SPKOUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPEAKUP_SYNTH_TXPRT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPI_AX88796C_COMPRESSION policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SPI_BCM2835 policy<{'arm64': 'm'}> +CONFIG_SPI_BCM2835AUX policy<{'arm64': 'm'}> +CONFIG_SPI_BCM63XX_HSSPI policy<{'arm64': 'm'}> +CONFIG_SPI_BCM_QSPI policy<{'arm64': 'm'}> +CONFIG_SPI_INTEL policy<{'amd64': '-'}> +CONFIG_SPI_INTEL_PCI policy<{'amd64': 'n'}> +CONFIG_SPI_INTEL_PLATFORM policy<{'amd64': 'n'}> +CONFIG_SYSFB_SIMPLEFB policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_TASKS_RCU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEE_BNXT_FW policy<{'arm64': 'm'}> +CONFIG_TEST_DIV64 policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_TEST_SIPHASH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_THP_SWAP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_TOUCHSCREEN_IPROC policy<{'arm64': 'm'}> +CONFIG_TOUCHSCREEN_RASPBERRYPI_FW policy<{'arm64': 'm'}> +CONFIG_TRACE_MMIO_ACCESS policy<{'arm64': 'n'}> +CONFIG_TYPEC_WCOVE policy<{'amd64': 'n'}> +CONFIG_UBUNTU_ODM_DRIVERS policy<{'amd64': '-'}> +CONFIG_UNINLINE_SPIN_UNLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_USB_EHCI_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_VCHIQ_CDEV policy<{'arm64': 'y'}> +CONFIG_VERSION_SIGNATURE policy<{'amd64': '"Ubuntu 5.15.0-22.22-generic 5.15.19"', 'arm64': '"Ubuntu 5.15.0-22.22-generic 5.15.19"'}> +CONFIG_VFIO_PLATFORM_BCMFLEXRM_RESET policy<{'arm64': 'm'}> +CONFIG_VIDEO_BCM2835 policy<{'arm64': 'm'}> +CONFIG_VIDEO_ZORAN policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_VIDEO_ZORAN_AVS6EYES policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VIDEO_ZORAN_BUZ policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VIDEO_ZORAN_DC10 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VIDEO_ZORAN_DC30 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VIDEO_ZORAN_LML33 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VIDEO_ZORAN_LML33R10 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VIDEO_ZORAN_ZR36060 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VMXNET3 policy<{'amd64': 'm', 'arm64': 'm'}> --- linux-gcp-6.2.0.orig/debian.gcp/control.d/flavour-control.stub +++ linux-gcp-6.2.0/debian.gcp/control.d/flavour-control.stub @@ -0,0 +1,131 @@ +# Items that get replaced: +# FLAVOUR +# DESC +# ARCH +# SUPPORTED +# TARGET +# BOOTLOADER +# =PROVIDES= +# +# Items marked with =FOO= are optional +# +# This file describes the template for packages that are created for each flavour +# in debian/control.d/vars.* +# +# This file gets edited in a couple of places. See the debian/control.stub rule in +# debian/rules. PGGVER, ABINUM, and SRCPKGNAME are all converted in the +# process of creating debian/control. +# +# The flavour specific strings (ARCH, DESC, etc) are converted using values from the various +# flavour files in debian/control.d/vars.* +# +# XXX: Leave the blank line before the first package!! + +Package: linux-image=SIGN-ME-PKG=-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, =PROVIDES=${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-PKGVER-ABINUM-FLAVOUR +Recommends: BOOTLOADER +Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] +Conflicts: linux-image=SIGN-PEER-PKG=-PKGVER-ABINUM-FLAVOUR +Suggests: fdutils, SRCPKGNAME-doc-PKGVER | SRCPKGNAME-source-PKGVER, SRCPKGNAME-tools, linux-headers-PKGVER-ABINUM-FLAVOUR, initramfs-tools | linux-initramfs-tool +Description: Linux kernel image for version PKGVER on DESC + This package contains the=SIGN-ME-TXT= Linux kernel image for version PKGVER on + DESC. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends} +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}, wireless-regdb, linux-modules-PKGVER-ABINUM-FLAVOUR +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=. + --- linux-gcp-6.2.0.orig/debian.gcp/control.d/gcp.inclusion-list +++ linux-gcp-6.2.0/debian.gcp/control.d/gcp.inclusion-list @@ -0,0 +1,257 @@ +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/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/char/hangcheck-timer.ko +drivers/char/hw_random/powernv-rng.ko +drivers/char/hw_random/virtio-rng.ko +drivers/char/ipmi/* +drivers/char/ipmi/ipmi_msghandler.ko +drivers/char/lp.ko +drivers/char/nvram.ko +drivers/char/ppdev.ko +drivers/char/raw.ko +drivers/char/virtio_console.ko +drivers/crypto/nx/* +drivers/crypto/vmx/vmx-crypto.ko +drivers/firmware/efi/* +drivers/firmware/iscsi_ibft.ko +drivers/gpu/drm/ast/ast.ko +drivers/gpu/drm/drm_kms_helper.ko +drivers/gpu/drm/drm.ko +drivers/gpu/drm/ttm/ttm.ko +drivers/gpu/drm/vboxvideo/vboxvideo.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/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/misc/xen-kbdfront.ko +drivers/input/mouse/psmouse.ko +drivers/input/serio/hyperv-keyboard.ko +drivers/input/serio/serio_raw.ko +drivers/input/serio/serport.ko +drivers/input/touchscreen/usbtouchscreen.ko +drivers/leds/leds-powernv.ko +drivers/md/* +drivers/message/fusion* +drivers/misc/cxl/* +drivers/misc/eeprom/at24.ko +drivers/misc/vmw_balloon.ko +drivers/misc/vmw_vmci/vmw_vmci.ko +drivers/mtd/cmdlinepart.ko +drivers/mtd/devices/powernv_flash.ko +drivers/mtd/ofpart.ko +drivers/net/appletalk/ipddp.ko +drivers/net/bonding/bonding.ko +drivers/net/caif/caif_virtio.ko +drivers/net/dummy.ko +drivers/net/eql.ko +drivers/net/ethernet/8390/8390.ko +drivers/net/ethernet/8390/ne2k-pci.ko +drivers/net/ethernet/amazon/ena/ena.ko +drivers/net/ethernet/amd/pcnet32.ko +drivers/net/ethernet/broadcom/bnx2x/* +drivers/net/ethernet/broadcom/tg3.ko +drivers/net/ethernet/dec/tulip/* +drivers/net/ethernet/emulex/benet/* +drivers/net/ethernet/google/gve/gve.ko +drivers/net/ethernet/ibm/* +drivers/net/ethernet/intel/e1000/e1000.ko +drivers/net/ethernet/intel/e1000e/e1000e.ko +drivers/net/ethernet/intel/i40e/* +drivers/net/ethernet/intel/igb/* +drivers/net/ethernet/intel/igbvf/igbvf.ko +drivers/net/ethernet/intel/ixgbe/* +drivers/net/ethernet/intel/ixgbevf/ixgbevf.ko +drivers/net/ethernet/mellanox/* +drivers/net/ethernet/realtek/8139cp.ko +drivers/net/ethernet/realtek/8139too.ko +drivers/net/fddi/* +drivers/net/geneve.ko +drivers/net/hyperv/hv_netvsc.ko +drivers/net/ifb.ko +drivers/net/ipvlan/* +drivers/net/macvlan.ko +drivers/net/macvtap.ko +drivers/net/mii.ko +drivers/net/netconsole.ko +drivers/net/ppp/* +drivers/net/ppp/bsd_comp.ko +drivers/net/slip/* +drivers/net/veth.ko +drivers/net/virtio_net.ko +drivers/net/vmxnet3/vmxnet3.ko +drivers/net/vxlan.ko +drivers/net/wireguard/wireguard.ko +drivers/net/xen-netback/* +drivers/net/xen-netfront.ko +drivers/nvme/host/nvme.ko +drivers/nvmem/nvmem_core.ko +drivers/parport/parport.ko +drivers/parport/parport_pc.ko +drivers/pci/host/vmd.ko +drivers/platform/x86/pvpanic.ko +drivers/pps/pps_core.ko +drivers/ptp/ptp.ko +drivers/s390/* +drivers/s390/block/xpram.ko +drivers/scsi/aacraid/* +drivers/scsi/BusLogic.ko +drivers/scsi/cxlflash/* +drivers/scsi/device_handler/scsi_dh_alua.ko +drivers/scsi/device_handler/scsi_dh_emc.ko +drivers/scsi/device_handler/scsi_dh_hp_sw.ko +drivers/scsi/device_handler/scsi_dh_rdac.ko +drivers/scsi/hv_storvsc.ko +drivers/scsi/ibmvscsi/* +drivers/scsi/ipr.ko +drivers/scsi/iscsi_boot_sysfs.ko +drivers/scsi/iscsi_tcp.ko +drivers/scsi/libiscsi.ko +drivers/scsi/libiscsi_tcp.ko +drivers/scsi/libsas/* +drivers/scsi/lpfc/* +drivers/scsi/megaraid/* +drivers/scsi/mpt3sas/* +drivers/scsi/osd/libosd.ko +drivers/scsi/osd/osd.ko +drivers/scsi/qla1280.ko +drivers/scsi/qla2xxx/* +drivers/scsi/raid_class.ko +drivers/scsi/scsi_debug.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/vmw_pvscsi.ko +drivers/target/target_core*.ko +drivers/target/loopback/tcm_loop.ko +drivers/tty/serial/jsm/* +drivers/uio/uio.ko +drivers/uio/uio_pdrv_genirq.ko +drivers/usb/host/* +drivers/usb/storage/uas.ko +drivers/usb/storage/usb-storage.ko +drivers/vfio/* +drivers/vhost/* +drivers/video/fbdev/* +drivers/video/vgastate.ko +drivers/virt/vboxguest/vboxguest.ko +drivers/virtio/* +drivers/watchdog/softdog.ko +drivers/xen/* +! find sound/core -name oss -prune -o -name *.ko -print +fs/9p/* +fs/aufs/aufs.ko +fs/autofs/autofs4.ko +fs/binfmt_misc.ko +fs/btrfs/* +fs/cachefiles/cachefiles.ko +fs/ceph/* +fs/cifs/* +fs/configfs/* +fs/dlm/dlm.ko +fs/ecryptfs/* +fs/efivarfs/* +fs/exofs/libore.ko +fs/ext4/* +fs/fat/* +fs/fscache/* +fs/fuse/* +fs/isofs/* +fs/lockd/* +fs/nfs/* +fs/nfs_common/* +fs/nfsd/* +fs/nls/nls_cp437.ko +fs/nls/nls_iso8859-1.ko +fs/overlayfs/* +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/bpfilter.ko +net/bridge/* +net/can/* +net/ceph/libceph.ko +net/core/* +net/dccp/* +net/decnet/* +net/ieee802154/* +net/ipv4/* +net/ipv6/* +net/ipx/* +net/irda/* +net/key/* +net/lapb/* +net/llc/* +net/netfilter/* +net/netlink/netlink_diag.ko +net/netrom/* +net/openvswitch/* +net/packet/af_packet_diag.ko +net/phonet/* +net/rose/* +net/rxrpc/* +net/sched/* +net/sctp/* +net/sunrpc/auth_gss/auth_rpcgss.ko +net/sunrpc/auth_gss/rpcsec_gss_krb5.ko +net/sunrpc/sunrpc.ko +net/tipc/* +net/unix/unix_diag.ko +net/vmw_vsock/* +net/x25/* +net/xfrm/* +sound/drivers/pcsp/snd-pcsp.ko +sound/pci/snd-ens1370.ko +sound/soundcore.ko +zfs/* +ubuntu/ubuntu-host/ubuntu-host.ko --- linux-gcp-6.2.0.orig/debian.gcp/control.d/vars.gcp +++ linux-gcp-6.2.0/debian.gcp/control.d/vars.gcp @@ -0,0 +1,6 @@ +arch="amd64 arm64" +supported="amd64" +target="Geared toward GCP/GKE systems." +desc="=HUMAN= SMP" +bootloader="grub-pc | grub-efi-amd64 | grub-efi-ia32 | grub | lilo | grub-efi-arm64 [arm64]" +provides="" --- linux-gcp-6.2.0.orig/debian.gcp/control.stub.in +++ linux-gcp-6.2.0/debian.gcp/control.stub.in @@ -0,0 +1,87 @@ +Source: SRCPKGNAME +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.9.4.0 +Build-Depends: + debhelper-compat (= 10), + cpio, + kernel-wedge , + dctrl-tools , + kmod , + libcap-dev , + makedumpfile [amd64] , + libelf-dev , + libnewt-dev , + libiberty-dev , + rsync , + libdw-dev , + libpci-dev , + pkg-config , + python3 , + 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] , + rustc-1.62 [amd64], + rust-1.62-src [amd64], + rustfmt-1.62 [amd64], + bindgen-0.56 [amd64], + clang [amd64], + llvm [amd64], +Build-Depends-Indep: + xmlto , + docbook-utils , + ghostscript , + fig2dev , + bzip2 , + sharutils , + asciidoc , + python3-sphinx , + python3-sphinx-rtd-theme , + fontconfig , + python3-docutils , +Vcs-Git: git://git.launchpad.net/~canonical-kernel/ubuntu/+source/linux-gcp/+git/=SERIES= +XS-Testsuite: autopkgtest +#XS-Testsuite-Depends: gcc-4.7 binutils + +Package: SRCPKGNAME-headers-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 arm64 +Multi-Arch: foreign +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils +Breaks: iscsitarget-dkms (<< 1.4.20.3+svn502-2ubuntu4.4) +Description: Header files related to Linux kernel version PKGVER + This package provides kernel header files for version PKGVER, for sites + that want the latest kernel headers. Please read + /usr/share/doc/SRCPKGNAME-headers-PKGVER-ABINUM/debian.README.gz for details + +Package: SRCPKGNAME-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 arm64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + You probably want to install linux-tools-PKGVER-ABINUM-. --- linux-gcp-6.2.0.orig/debian.gcp/copyright +++ linux-gcp-6.2.0/debian.gcp/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'. --- linux-gcp-6.2.0.orig/debian.gcp/d-i/firmware/README.txt +++ linux-gcp-6.2.0/debian.gcp/d-i/firmware/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# --- linux-gcp-6.2.0.orig/debian.gcp/d-i/kernel-versions +++ linux-gcp-6.2.0/debian.gcp/d-i/kernel-versions @@ -0,0 +1 @@ +# arch version flavour installedname suffix bdep --- linux-gcp-6.2.0.orig/debian.gcp/d-i/modules/none +++ linux-gcp-6.2.0/debian.gcp/d-i/modules/none @@ -0,0 +1 @@ +# Empty placeholder --- linux-gcp-6.2.0.orig/debian.gcp/d-i/package-list +++ linux-gcp-6.2.0/debian.gcp/d-i/package-list @@ -0,0 +1,203 @@ +Package: kernel-image +Provides: ext3-modules, ext4-modules, squashfs-modules +Provides_amd64: efi-modules, ext3-modules, ext4-modules, squashfs-modules +Provides_i386: efi-modules, ext3-modules, ext4-modules, squashfs-modules +Provides_ppc64el: ext3-modules, ext4-modules, fat-modules, squashfs-modules +Provides_s390x: ext3-modules, ext4-modules, ppp-modules, squashfs-modules +Description: kernel image and system map + +Package: dasd-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: DASD storage support + +Package: dasd-extra-modules +Depends: dasd-modules +Priority: extra +Description: DASD storage support -- extras + +Package: fat-modules +Depends: kernel-image +Priority: standard +Description: FAT filesystem support + This includes Windows FAT and VFAT support. + +Package: fb-modules +Depends: kernel-image +Priority: standard +Description: Framebuffer modules + +Package: firewire-core-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: Firewire (IEEE-1394) Support + +Package: floppy-modules +Depends: kernel-image +Priority: standard +Description: Floppy driver support + +Package: fs-core-modules +Depends: kernel-image +Priority: standard +Provides: ext2-modules, jfs-modules, reiserfs-modules, xfs-modules +Description: Base filesystem modules + This includes jfs, reiserfs and xfs. + +Package: fs-secondary-modules +Depends: kernel-image, fat-modules +Priority: standard +Provides: btrfs-modules, ntfs-modules, hfs-modules +Description: Extra filesystem modules + This includes support for Windows NTFS and MacOS HFS/HFSPlus + +Package: input-modules +Depends: kernel-image, usb-modules +Priority: standard +Description: Support for various input methods + +Package: md-modules +Depends: kernel-image +Priority: standard +Provides: crypto-dm-modules +Description: Multi-device support (raid, device-mapper, lvm) + +Package: nic-modules +Depends: kernel-image, nic-shared-modules, virtio-modules +Priority: standard +Description: Network interface support + +Package: nic-pcmcia-modules +Depends: kernel-image, nic-shared-modules, nic-modules +Priority: standard +Description: PCMCIA network interface support + +Package: nic-usb-modules +Depends: kernel-image, nic-shared-modules, usb-modules +Priority: standard +Description: USB network interface support + +Package: nic-shared-modules +Depends: kernel-image, crypto-modules +Priority: standard +Description: nic shared modules + This package contains modules which support nic modules + +Package: parport-modules +Depends: kernel-image +Priority: standard +Description: Parallel port support + +Package: pata-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: PATA support modules + +Package: pcmcia-modules +Depends: kernel-image +Priority: standard +Description: PCMCIA Modules + +Package: pcmcia-storage-modules +Depends: kernel-image, scsi-modules +Priority: standard +Description: PCMCIA storage support + +Package: plip-modules +Depends: kernel-image, nic-shared-modules, parport-modules +Priority: standard +Description: PLIP (parallel port) networking support + +Package: ppp-modules +Depends: kernel-image, nic-shared-modules, serial-modules +Priority: standard +Description: PPP (serial port) networking support + +Package: sata-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: SATA storage support + +Package: scsi-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: SCSI storage support + +Package: serial-modules +Depends: kernel-image +Priority: standard +Description: Serial port support + +Package: storage-core-modules +Depends: kernel-image +Priority: standard +Provides: loop-modules +Description: Core storage support + Includes core SCSI, LibATA, USB-Storage. Also includes related block + devices for CD, Disk and Tape medium (and IDE Floppy). + +Package: usb-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: Core USB support + +Package: nfs-modules +Priority: standard +Depends: kernel-image +Description: NFS filesystem drivers + Includes the NFS client driver, and supporting modules. + +Package: block-modules +Priority: standard +Provides: nbd-modules +Depends: kernel-image, storage-core-modules, parport-modules, virtio-modules +Description: Block storage devices + This package contains the block storage devices, including DAC960 and + paraide. + +Package: message-modules +Priority: standard +Depends: kernel-image, storage-core-modules, scsi-modules +Description: Fusion and i2o storage modules + This package containes the fusion and i2o storage modules. + +Package: crypto-modules +Priority: extra +Depends: kernel-image +Description: crypto modules + This package contains crypto modules. + +Package: virtio-modules +Priority: standard +Depends: kernel-image +Description: VirtIO Modules + Includes modules for VirtIO (virtual machine, generally kvm guests) + +Package: socket-modules +Depends: kernel-image +Priority: standard +Description: Unix socket support + +Package: mouse-modules +Depends: kernel-image, input-modules, usb-modules +Priority: extra +Description: Mouse support + This package contains mouse drivers for the Linux kernel. + +Package: vlan-modules +Depends: kernel-image +Priority: extra +Description: vlan modules + This package contains vlan (8021.Q) modules. + +Package: ipmi-modules +Depends: kernel-image +Priority: standard +Description: ipmi modules + +Package: multipath-modules +Depends: kernel-image +Priority: extra +Description: DM-Multipath support + This package contains modules for device-mapper multipath support. + --- linux-gcp-6.2.0.orig/debian.gcp/etc/getabis +++ linux-gcp-6.2.0/debian.gcp/etc/getabis @@ -0,0 +1,14 @@ +repo_list=( + "http://archive.ubuntu.com/ubuntu/pool/main/l/linux-gcp" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-gcp" + "http://archive.ubuntu.com/ubuntu/pool/universe/l/linux-gcp" + "http://ports.ubuntu.com/ubuntu-ports/pool/universe/l/linux-gcp" + "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux-gcp" + "http://ppa.launchpad.net/canonical-kernel-team/unstable/ubuntu/pool/main/l/linux-gcp" + "http://ppa.launchpad.net/canonical-kernel-team/bootstrap/ubuntu/pool/main/l/linux-gcp" +) + +package_prefixes linux-image linux-modules linux-modules-extra + +getall amd64 gcp +getall arm64 gcp --- linux-gcp-6.2.0.orig/debian.gcp/etc/kernelconfig +++ linux-gcp-6.2.0/debian.gcp/etc/kernelconfig @@ -0,0 +1,7 @@ +if [ "$variant" = "ports" ]; then + archs="" + family='ports' +else + archs="amd64 arm64" + family='ubuntu' +fi --- linux-gcp-6.2.0.orig/debian.gcp/etc/update.conf +++ linux-gcp-6.2.0/debian.gcp/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/lunar +SOURCE_RELEASE_BRANCH=master-next +DEBIAN_MASTER=debian.master --- linux-gcp-6.2.0.orig/debian.gcp/modprobe.d/common.conf +++ linux-gcp-6.2.0/debian.gcp/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 --- linux-gcp-6.2.0.orig/debian.gcp/reconstruct +++ linux-gcp-6.2.0/debian.gcp/reconstruct @@ -0,0 +1,60 @@ +# Recreate any symlinks created since the orig. +# Remove any files deleted from the orig. +rm -f 'net/sched/cls_tcindex.c' +rm -f 'scripts/is_rust_module.sh' +rm -f 'tools/testing/selftests/net/bpf/Makefile' +rm -f 'tools/testing/selftests/net/bpf/nat6to4.c' +rm -f 'tools/testing/selftests/tc-testing/tc-tests/filters/tcindex.json' +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/checks/abi-check' +chmod +x 'debian/scripts/checks/config-check' +chmod +x 'debian/scripts/checks/final-checks' +chmod +x 'debian/scripts/checks/module-check' +chmod +x 'debian/scripts/checks/module-signature-check' +chmod +x 'debian/scripts/checks/retpoline-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/link-lib-rust' +chmod +x 'debian/scripts/misc/annotations' +chmod +x 'debian/scripts/misc/arch-has-odm-enabled.sh' +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/migrate-annotations' +chmod +x 'debian/scripts/misc/retag' +chmod +x 'debian/scripts/misc/splitconfig.pl' +chmod +x 'debian/scripts/misc/update-aufs.sh' +chmod +x 'debian/scripts/module-inclusion' +chmod +x 'debian/scripts/retpoline-extract' +chmod +x 'debian/scripts/retpoline-extract-one' +chmod +x 'debian/scripts/sign-module' +chmod +x 'debian/templates/extra.postinst.in' +chmod +x 'debian/templates/extra.postrm.in' +chmod +x 'debian/templates/headers.postinst.in' +chmod +x 'debian/templates/image.postinst.in' +chmod +x 'debian/templates/image.postrm.in' +chmod +x 'debian/templates/image.preinst.in' +chmod +x 'debian/templates/image.prerm.in' +chmod +x 'debian/tests-build/check-aliases' +chmod +x 'debian/tests/rebuild' +chmod +x 'debian/tests/ubuntu-regression-suite' +chmod +x 'drivers/watchdog/f71808e_wdt.c' +chmod -x 'scripts/is_rust_module.sh' +chmod +x 'update-dkms-versions' +exit 0 --- linux-gcp-6.2.0.orig/debian.gcp/rules.d/amd64.mk +++ linux-gcp-6.2.0/debian.gcp/rules.d/amd64.mk @@ -0,0 +1,30 @@ +human_arch = 64 bit x86 +build_arch = x86 +header_arch = $(build_arch) +defconfig = defconfig +flavours = gcp +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +loader = grub +vdso = vdso_install +no_dumpfile = true +uefi_signed = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_x86 = true +do_tools_hyperv = false +do_tools_bpftool = true +do_extras_package = true +do_tools_common = true +do_zfs = true +do_libc_dev_package = false +disable_d_i = true +do_doc_package = false +do_source_package = false +do_dtbs = false +do_common_headers_indep = false +do_dkms_nvidia = true +do_dkms_nvidia_server = true +do_lib_rust = false --- linux-gcp-6.2.0.orig/debian.gcp/rules.d/arm64.mk +++ linux-gcp-6.2.0/debian.gcp/rules.d/arm64.mk @@ -0,0 +1,27 @@ +human_arch = ARMv8 +build_arch = arm64 +header_arch = $(build_arch) +defconfig = defconfig +flavours = gcp +build_image = Image.gz +kernel_file = arch/$(build_arch)/boot/Image.gz +install_file = vmlinuz +loader = grub +vdso = vdso_install +no_dumpfile = true +uefi_signed = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_x86 = false +do_tools_hyperv = false +do_tools_bpftool = true +do_extras_package = true +do_tools_common = true +do_zfs = true +do_libc_dev_package = false +disable_d_i = true +do_doc_package = false +do_source_package = false +do_dtbs = false +do_common_headers_indep = false --- linux-gcp-6.2.0.orig/debian.gcp/rules.d/hooks.mk +++ linux-gcp-6.2.0/debian.gcp/rules.d/hooks.mk @@ -0,0 +1 @@ +do_enforce_all = true --- linux-gcp-6.2.0.orig/debian.gcp/tracking-bug +++ linux-gcp-6.2.0/debian.gcp/tracking-bug @@ -0,0 +1 @@ +2019838 2023.05.15-1 --- linux-gcp-6.2.0.orig/debian.master/abi/abiname +++ linux-gcp-6.2.0/debian.master/abi/abiname @@ -0,0 +1 @@ +21 --- linux-gcp-6.2.0.orig/debian.master/abi/amd64/generic +++ linux-gcp-6.2.0/debian.master/abi/amd64/generic @@ -0,0 +1,28512 @@ +ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux +BRCMFMAC EXPORT_SYMBOL_GPL 0x7da96663 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0xd126ff61 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x10df2ba8 devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x40e3fa99 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x4861218f counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x72e7df7a counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xac9d2096 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xcb969a59 counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xd94c8e01 counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xfc9eff5d counter_priv drivers/counter/counter +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x01bce813 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x24627f33 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa5a55cae crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x08025006 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0c503fa7 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x13968483 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x16e80cc8 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1c78d779 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1d8a1241 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x23bb31a5 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x243e9e78 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x25e6c539 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2a0bbc87 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2f0218ea devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x35c9e69f devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3d4e7bd3 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x44c53e22 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x47544737 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4ad74461 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4f5c414f cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5917fd2b devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5cc4cfce is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5d890b7b cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x635005f1 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x67744f73 cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x68aae719 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x74128f68 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7763a710 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x78b57e93 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7a077360 read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7b381470 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux +CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux +CXL EXPORT_SYMBOL_GPL 0x8636ab05 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8772b760 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x93c6739f is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x957ce596 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9eba0b89 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9f04e983 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa1c29cdd devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa7eb769a cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xad2b3ac1 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xafe37bb6 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbc205fa0 to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc898ba7e cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcc5d40a5 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd245ebf2 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd3a2aa86 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd50ee1d8 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd71e1cee cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd972bb41 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdb25303a cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdcf68e08 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdff79f99 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe0da3f44 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe49b83f2 is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe7384b44 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe75e2895 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xeb6a0e3e to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf7fa6ae1 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf8872e85 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfa1d547f to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfb156cbf cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfb4d4dc2 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xff04e136 cxl_bus_type drivers/cxl/core/cxl_core +DEVMEM EXPORT_SYMBOL_GPL 0x3c804b25 cpu_cache_invalidate_memregion vmlinux +DEVMEM EXPORT_SYMBOL_GPL 0xd6551b9c cpu_cache_has_invalidate_memregion vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x284615d8 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2db1d5ae dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3368b63b dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x359cb0a9 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3e1fa1b8 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4321327e dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6b955c66 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7250710b dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x76b954f2 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8b89813c dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9a037052 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9f9a65e2 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb9c3e091 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc7d0898f dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd83bee82 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xda42e5f4 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdf8102a6 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe02bf03d dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe0be96ee dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xed21f75a dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf61e2d1f dma_buf_export vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x2303b915 efivar_lock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x5a3c9dbb efivar_get_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xa336852c efivar_get_next_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xc961bff7 efivar_unlock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xefc77711 efivar_set_variable_locked vmlinux +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 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 0x0dd3a4d2 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x3838478e crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x438c0384 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x97911339 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xa68c8603 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xe4d6b7c2 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/sha3_generic 0x3999fa9c crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x6a43017f crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0xe9e4d38e crypto_sha3_update +EXPORT_SYMBOL crypto/sm2_generic 0xc95f5428 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 0x103735ba acpi_video_report_nolcd +EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight +EXPORT_SYMBOL drivers/acpi/video 0x48d8c7e7 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0x756c8f17 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xab17113b acpi_video_backlight_use_native +EXPORT_SYMBOL drivers/acpi/video 0xd1aaf8d4 acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x943c0d0e suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x35088ea1 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x681ee38f 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 0x142b2697 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x3ed05eb2 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4a159d69 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x57a27373 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x6dd8df5f pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x7c4ee5c0 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x91bb4066 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x9432e05d pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xa6cd077c pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xdd2cebb5 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xdfbe1a07 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xf6cc7e5c pi_read_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x65b7ac84 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x2674a519 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xd3e12666 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 0x0d3aaa1a 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 0x3d0cf5dc 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 0x7d2fad4e ipmi_add_smi +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 0xe98c507d ipmb_checksum +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xeb4f30ae ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/nvram 0x3ef38dc9 arch_nvram_ops +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0be68921 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4c665ca6 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa28f5fb6 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe31babcf st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x2bc7dfe9 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x712cb784 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa2d67e5b xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x4387f7f3 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x52f1ecb6 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xbdd31991 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x21724c23 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x52378113 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_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 0xefc60133 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_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 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1186f4bf fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1888fe1f fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x28aaa826 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x294528f7 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ba04c1f fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x307b135d fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x389558e1 fw_core_handle_request +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 0x43c2c75d fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d61fc78 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d7343c1 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4e7c3454 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x52425723 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x557aeb7f fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5f970fd1 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6737e36d fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x810b8c14 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x85388183 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa733f2f2 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb30cc029 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xca2428dd fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8959847 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd95154ab fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe525e945 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4fc1a30 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8769445 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfcc72527 fw_cancel_transaction +EXPORT_SYMBOL drivers/fpga/dfl 0xa9f61561 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xcab7c41f dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x3cdac2f1 sysconfig_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 0x063ac670 drm_dp_cec_unregister_connector +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 0x0991fcc0 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x09ac7045 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0ac7e74d drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0e77dc71 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13323358 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1369ee4a drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x15ec778b drm_scdc_read +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 0x161e8928 drm_dp_mst_update_slots +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 0x17c15a8a drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a124646 drm_dp_read_downstream_info +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 0x1d312e6d drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1d6ded04 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f906b65 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23fb8405 drm_dp_mst_atomic_wait_for_dependencies +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 0x26981369 drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x27a2c885 drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x28e93063 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2d47b3db drm_dp_mst_topology_mgr_set_mst +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 0x3065d736 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x387dd614 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x39bf7f50 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a323605 drm_dp_pcon_frl_prepare +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 0x3a83d82f drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3b30def6 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3c2d2ee5 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3dd2752d drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3eabbfda drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40b67d90 drm_dp_downstream_debug +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 0x4b1a0fe2 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4cb427eb drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d3f9215 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5168a302 drm_scdc_set_scrambling +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 0x56acd9d1 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5739a314 drm_dp_mst_topology_mgr_destroy +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 0x59c6da74 drm_dp_remove_payload +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 0x5a86f411 drm_dp_phy_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c8681fb drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5f45b51e drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5fe7dac7 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x62a6865a drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63577d24 drm_hdmi_avi_infoframe_colorimetry +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 0x65f13122 drm_dp_atomic_find_time_slots +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 0x66d5740b drm_dp_cec_set_edid +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 0x6c6c4c28 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6c9982e0 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6d1f28d4 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6e2e3ebd drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f3a90e4 drm_dp_pcon_pps_default +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 0x716c3b74 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x728f03e2 drm_hdmi_avi_infoframe_bars +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 0x738e12cb drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7505c29f drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7576416d drm_atomic_get_new_mst_topology_state +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 0x7b44c4aa drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7cdc5065 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7e6921e9 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82be3d4e drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x863168d7 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8701a35e drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x89529834 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x895b4425 drm_lspcon_set_mode +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 0x9017282b drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x90485a5b drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92a376e9 drm_dp_add_payload_part2 +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 0x96b7afcc drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x97cc15f5 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f81caba drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa0e4758a drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa20f97db drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2ea1685 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa3abee16 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa4573725 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5b4027f drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5d8eaf4 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa831a3b1 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xab3a9b9b drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xad94c0c4 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf5272d6 drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb2841131 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb955fde4 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbaa6942b drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbef68972 drm_dp_pcon_pps_override_buf +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 0xc42f6cc2 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc48cbc1e drm_dp_start_crc +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 0xc5d1acaf drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc833faff drm_dp_link_train_channel_eq_delay +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 0xc9b876a0 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xca06bd1a drm_dp_dual_mode_set_tmds_output +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 0xcdee0b67 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcdefdc8c drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce1e806a drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0636ad5 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0dbcfe3 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd2657ddb drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd364411d drm_dp_pcon_hdmi_link_active +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 0xd8229de1 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb4c3b87 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdf896334 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3c3ed81 drm_panel_dp_aux_backlight +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 0xe5b98179 drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe64023b9 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7a61a52 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xed9ddb71 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeebf0ebd drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeeead394 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0234766 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf2c33791 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf64f8798 drm_dp_aux_register +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 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb644b1d drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfbc00374 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm 0x002afe11 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01697f40 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0212d4c6 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0269b2d2 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02825aa3 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x054fd364 drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05578cb9 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0598d066 drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05eb5910 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0667bee1 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a30f14 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0737c3b0 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x074dc9e9 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0795c621 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08f5fb85 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x098ef50c drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09e22edd drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a381f85 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a40a892 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac03c19 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b101775 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b1b37e3 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c9c96cf drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb34f02 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d51701a drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only +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 0x0ed6d87a drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f8e61f7 drm_vblank_work_init +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 0x11960b33 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x119847c4 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x119f7159 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e9e828 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x145a7d50 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x155e496f drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c7d269 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x178a25e5 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17cd0487 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17d4abe7 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x191b1169 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19409314 drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194591c5 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19a8a786 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19ce11df drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a3dd2b3 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab95dde drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ae26cf7 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bc79040 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c25ecb9 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c4ac516 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c6b535e drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c75e718 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cef771c drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d222a55 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d49a068 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e33f635 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e457b4a drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ea3501a drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec52b80 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f1a30e7 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x213edcf7 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22689da7 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x226c3942 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2295cedc __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x237d2b53 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23da13a7 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23dc4946 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a52ee1 drm_gem_vm_open +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 0x24e9d9fa drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x250f2707 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27450f91 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2870ab41 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x295ced7c drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2979e2d4 drm_atomic_bridge_chain_pre_enable +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 0x2a9b5608 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b3c76ef drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b927cf1 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bcdbdb7 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be87614 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cd4794e drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d5411e6 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2df9cbb1 drm_gem_lru_scan +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 0x3097ed10 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30ea0afd drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30ec4f45 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x312c858f drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x319bc829 drm_connector_attach_tv_margin_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 0x32cd393a drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32f2b53b drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x331482d3 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x334e65c1 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34587e79 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x351e2637 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x372a0c3f drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38b9f5c1 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38f5f0f3 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3934ce9c drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a852cb1 drm_wait_one_vblank +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 0x3b517d9b drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c3bd457 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c4b88cd drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d4ee360 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ecbafe8 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f03fae9 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f075ce1 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f352dce drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41fe35cc drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x420ac493 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x426b7011 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43208f17 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4417741f drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c09da2 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45f58dba drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46af5860 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x484b24ef drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b94939 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x491a34be drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49245680 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x492fd975 drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x497486f1 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a4ec46f drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a6f247b drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b1c9ad7 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4baa05f2 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce085ca drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3c80b8 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d4b4985 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d681ecb drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dc70530 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de9dea5 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e061e70 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e51c19f drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fcc53cd drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5001ef51 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50ba193c drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x519bb5c2 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53a3381b drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x548587d7 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a6cebd drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5613ce4e drm_gem_mmap +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 0x57b84fc3 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a2bfad drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5946c98a drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f568af drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a0d0ac1 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aaf996e drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b2303b8 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b961f59 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c77bbeb drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d59cb88 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dd0a4bb drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f14d2d9 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f198025 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f3b7fdb drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x615e3b1a drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e0e399 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62185982 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63480863 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x643244e9 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64c28567 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64cce9a8 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64d8b80f drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x657483ab drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6641aaf5 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x673fd91e drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68818f63 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x693c5f99 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69b7da5d drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69d35812 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a5b287d drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b099bb0 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b8860 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b47412e drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6c9f97 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d783560 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e98e7a9 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6efc0f41 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f926ffd drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fc9ea0d drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x701aac94 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x710db3c9 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72d66f54 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c881c7 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74edfc25 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76eef3fd __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77ac3807 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x783b92f5 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x789c8316 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79d1f042 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a8f588d drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b246763 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd6b54b drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bddd90d drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0bd3b7 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c8100ff drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ecb9f60 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8072f992 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83f42951 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85e7049f drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86308e26 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87d129bc drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88d00ba5 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ff7b52 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x896d6b93 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89be9877 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a445c3d drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aae9ee4 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ac4fc45 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c87b006 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d7b1112 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e6f5c47 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ea81161 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ecae98e drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f131438 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fce54ee __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90034ae2 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9093e3fa drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x913ae0e4 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91bd68c4 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91c2fb17 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9340bc1a drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x949b3d13 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94a4b995 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94cf2331 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9540099b drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9565c98b drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97860b42 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x987d1a3f drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x994fb91e drm_atomic_state_clear +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 0x9ba322d5 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bd3f1f9 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bde966e drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c2ff952 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6fa65f drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df59199 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df7badc drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e77dc84 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7a34d4 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef6dab4 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f019df8 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f4200fd drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0099744 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa00ddd82 drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa144f35b drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1a5ed4a drm_atomic_state_init +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 0xa42218ea drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa496d83b drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5e3dc75 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa67106ee drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6d57291 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7aef543 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa94a74b8 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9e3b3c3 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa22c465 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa93f7de drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab155490 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabb404a3 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabd14936 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac41b577 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4b4f92 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad2c35ff drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad36e28a drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaef21e0d drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb001badf drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ade3c8 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2060707 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb249c27e drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43d1752 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb549e0b8 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a98dbb drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb69750a3 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6aa48dc drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb89664e3 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e74e80 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9d2791a drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb0d9e59 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc1a0221 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc3b4ff6 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc786045 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc84ff9e drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcbc3628 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd40b27d drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd771890 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0869b2 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfd33932 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbff61811 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04e7aaa drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0d785b5 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2a5bab5 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3bfd586 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3fb5c72 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc49fa502 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5fc5c22 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc63b3507 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc66b2fb4 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc760eafd drm_connector_attach_max_bpc_property +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 0xca629910 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaab7319 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb56f036 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb6d8617 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc807d39 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceddc161 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf01310d drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf4c4d79 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfd2e1bc drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd009f395 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd06340fa drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0de8541 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f77aec drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd19e1ce5 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3fa84ca drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd42904a2 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd61b35e1 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd794f50d drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd85e9a6c drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd87cae6d drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88b252b drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda4c3516 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda9b40d4 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab1dca8 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdacaf59e drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb526ff0 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd6cbba drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd77b4e drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeb9b4c4 drm_atomic_set_mode_for_crtc +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 0xe009b70f drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe013904f drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0e619a6 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe232f3de drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe250fbca drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4135117 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe480c47b drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5be666a drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5cfd708 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe631be8d __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe66354fd drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6fa2c0e drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe73a5a55 drm_gem_object_release +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 0xe92c9607 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe97bfd8d devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9e5ad00 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea2e03fc drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea4cdda1 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea54aa10 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb1c8043 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebe5b524 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec31605a drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec5f8ebf drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed342bae drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedb6efff drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef297a71 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf07c18ff drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1524b46 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1db361d drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2728168 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf283a832 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4843d28 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf578e1ab drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf64851b6 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf685b8ee drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6af103f drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c9e5e8 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf70668cf drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf77074a3 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8856223 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8a02ad9 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf94f4aba drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa809444 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfad3b350 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb29ff18 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc56e53b drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9e0cf3 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdefcb68 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfebd3726 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff4d2550 drm_bridge_chain_mode_set +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_dma_helper 0xca968d86 drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xf551a516 drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02980c18 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x061bbb73 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x084a5a75 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08fd023d __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09175ece drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a54f1d5 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a809acb drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b47f2a4 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c6e7ecb drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ee5e5a1 drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11c9c698 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x182c9d3c drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d070660 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d347eb4 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d3f687e drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ee59ef2 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fe5ce7d drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20316787 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21140564 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21b61d21 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2213ac8c drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22d67640 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2456469f drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24e74924 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2571f998 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2765f1df drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27b85ae6 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x286bb399 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29d2990e drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b9bed3b __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2db45cb5 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e36358b __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e6bce22 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e974de4 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x305d7b30 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3143627e __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32090756 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3307cbc0 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3371225e drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33c1a03c __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x348fd8eb drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36af9356 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3880acf2 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x394929ce drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a3fe685 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b5bba99 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bb960b0 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bfa65de drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c7aa802 drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c88be83 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ccb2c78 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dd9d5cf drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e84a894 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40b4a759 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40ee81f3 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42b92f1f drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x431359d4 drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4317c044 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43eec73c drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44dc563f drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ab72c00 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b9c6ec1 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4be7053b drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e1c8101 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50a3638d drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50a79a8f drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5185bcd2 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x527733a1 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x529c3bee drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52f84f14 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5552e495 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x557d43e6 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55f5d24a drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56454215 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56484350 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x574744bc drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x578bc963 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57dbe9d9 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59beea21 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 0x5c04cf2a drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c5176a2 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c9a41e1 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d648a50 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x610517a4 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6368dd05 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64e56c68 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67d446ba drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b59e37e drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ce3e253 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e81a6d5 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x700b2150 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72f1dacf drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7443cb65 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74e6c7c2 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75e4f884 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7616429a devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7628f872 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x775532c7 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79d7bcca drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae4a809 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e16ffff drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f120236 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8111c3ca drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x812e6d71 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8314d439 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8326b8d3 drm_gem_destroy_shadow_plane_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 0x88191dac drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dd23ee1 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fe17696 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x900d5a8d drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91c2bed9 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95462c4a drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x992a47fe drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9932d406 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9af32d98 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9db7e3b3 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9df065b5 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ed51b92 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1e905ec drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa211d54d drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa21c9d0d drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2d54ca9 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3896866 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5d2ae9e drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa746fbe3 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa75c3e59 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8bb72f4 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabdc5117 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac8e2868 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb552a67a drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8d5de4b drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8d638e6 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb91e5a1a drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbae4410c drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcfc7dac drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd0ac87f drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe5d3c48 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbeb95208 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbef32917 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf537ded drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc12e2be6 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc473631c drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5087907 drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc57cecd5 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 0xc63bb074 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6b925ab drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc901f82f drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc93c47d4 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc73a791 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc95306b drm_fb_helper_cfb_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfbdcaab drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfeca4f6 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd23d2bec __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3ddfafd drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7ea5f6b drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd94dc543 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9920261 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9da5b2c devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda87d547 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdac668ab drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdba51d77 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcea49dd drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcee0d26 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd789ec0 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfbd2f0c drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0969e32 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3899bee drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5642ffc drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe74ad677 drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7a6aa05 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea556aad drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea740810 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb2419ad __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb902ca0 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebcd9d12 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec232526 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec8b5330 drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed29a312 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed561868 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef1eedc7 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef9133e3 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefd022cb drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1647341 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf177f68e drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1c1f644 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1c57c01 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2303d1c drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2ae27d1 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf45974e8 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4c08218 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf942f140 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf983a6a3 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9d8d565 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbc3ec66 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfff7b027 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x01b0f27b mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x25fec890 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4363cbe0 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x527fd6f7 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x721875e1 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7758ac7a mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x85011ed3 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x90a4ed94 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x90c90144 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb38a7a5f mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb966ebba mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcb0b493d mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd5ad641a mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd6f6b416 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdceab1f7 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe25b1ba0 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe4792b84 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf7811988 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x111d3fef drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x285df220 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x28bbc7a8 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3d16f999 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x457545c3 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x4b59b670 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x83f3d55c drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa6ea48ca drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb0d43a23 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdfafa878 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x058daae6 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x3cca1152 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x5d708404 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7793390b drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd2266b59 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x329885a7 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5a25f31b drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x645312d9 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x72a98d80 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9120a044 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9d9a0aba drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa1680907 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xab8995cc drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb651f2c4 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc3ec0c7b drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc7fb1ca4 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcb2b14dd drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdaceaf73 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe82b583e drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf12876b9 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf53cdff2 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x008484b1 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0f34d68f drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x183db50d drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1d6c87a0 drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2ad42d7c drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2d0d0d30 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x31747420 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x34429793 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x49d4b5c6 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4aedcf8e drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5e181461 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7b5bc48d drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7d7f5334 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x822d68f7 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8456f9fa drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8f156406 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9ce36ebe drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa7c0135d drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb4f87c81 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc2c968a7 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xca7d2ee9 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcd85633a drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xce955c82 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd10ebd9c to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05dab4c4 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09ab522f ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09d6de1f ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fde814e ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14e6cd04 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16617be4 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20f3ea91 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2566fb1b ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2848c435 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28cf5da6 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32430f52 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c336fcd ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d0c406d ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x451961bc ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4606c071 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x497d9f87 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a1c9fd8 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c7f740b ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f2e70db ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f556a9c ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x551f14a7 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57aad1bc ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58aee864 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ced6444 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x611ae607 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a847134 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c6d791a ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ea7eb2e ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79fa2e63 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d27381d ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d65a705 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e0bb32e ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85336968 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x877e5a39 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ba9d4cd ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c9f96c6 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e45e199 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f74d89d ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ce05799 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f805c32 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa099f8c5 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0cffbd0 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2276b73 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4ec6822 ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4893ae6 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbcc5e3e ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbdace000 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe276758 ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe774d9d ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2fb276d ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3420815 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc739ca15 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce4840c9 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3147d78 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd569c583 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd580b64f ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd716f17 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0ca200f ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe439e275 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5518791 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe83c3898 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe962acef ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1b5fa1f ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7e5a67f ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf907356b ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb5cf78c ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/hid/hid 0xf146a8ae hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x01ee5712 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x030b689a ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x060f8be9 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x065d2384 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x17147d85 ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x27c01ad0 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x30f298e6 ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x31747b57 ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x34882e52 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x35abeae2 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x407b64a0 ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5d4ad271 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x61d8bbef ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x642c5421 ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6537ab81 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x68de7d2e ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x690eff53 ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x716e9bea ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8021fa8c ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x83b75b0b ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x89ee375e ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8d0d608f ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x939a24c6 ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x94d0d5c7 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa53f2b89 ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa81a0786 ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa8ada615 ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xaec334dc ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb173a18d ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb228347d ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb536219b ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb597efc3 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbf01acfe ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd3ce2099 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd4aaa0cb ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd52a1617 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd9e1aceb ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdcd328d3 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe08c86ee ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xef2f6dd4 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf8dedbef ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf96cbb2f ishtp_get_drvdata +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x13c7a064 vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x3cf7b296 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdd903796 vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x83e12441 adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x757293b0 ltc2947_pm_ops +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 0xce8cf85c sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x29502f96 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x320581ff i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x787f235e i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe4a22dff i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xed22d0f7 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x69d1b153 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 0x6c42faae iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xbe79c78c iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x54f31422 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdb11ed56 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x704e9b03 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x0190f652 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x1885e4d6 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2d98d2eb iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x36c94991 __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x4216d921 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x4af3dadd iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x5bd01953 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x6321fc27 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x6afcfa2b iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x76561f0a iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x77a64bb3 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x8fc10e01 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xa3a25b1c iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xa7e1abc6 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xb26bd4ee iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xc604850d iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xca37d907 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xdc9c3074 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xdea51b73 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xdfdc26b5 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xec3f8e17 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xf7e99ad7 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x7c1533b0 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x23f3bf38 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x27610868 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x5e8ae67f iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x80e1e264 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6ba071e3 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe6b3a1ea iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf1bbf265 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xfc1da95f iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x92355157 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xcdbb1208 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xfadb37b3 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1337ed4e ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1ece54f4 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x41412456 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x769bf756 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x80c7831b ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8c216b23 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x91d13672 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa311a01c ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xacc92281 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb81a30e9 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc335e346 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd0ee9ef6 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe85f993f ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf13853c6 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff40e3fc ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00c90efc rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02d905d7 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03da72ab ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03fc5411 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05a842c0 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07c19b28 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aef3071 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c97a3a2 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e6fd8ab ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fbfdc94 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x108e6458 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x118d60b5 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x125932bd rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b6a45aa ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b975968 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c4663ac ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c58ae90 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f166e4a ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f65b87a ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f822885 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21055ab1 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2147b4c6 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x217685b3 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x230cb94f rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23a6f59a ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23ea828e ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x261db235 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27ae2f6f rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b011d7 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27bea66b ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x292ea6e2 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91d8fd ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b912cc2 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c3460e0 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f27bf80 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fe9a6ba rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x304553dd rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30593798 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31b3b241 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3540d1ec _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35db5c37 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3905a04d ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b0b4664 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b3a6049 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c8eded0 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3da07590 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e1bc5ef rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e27c0d0 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b20d96 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x430ae2b5 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4320c84b ib_open_qp +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 0x476f847c rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x483a92dc rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a2997dc ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b01ab3e ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bbfe4cc ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c3a8ea5 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c509871 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d07e941 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dca6591 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4df54fec ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ffc6dfa rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50b4f0ad rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x525391be rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52eee47d ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53e16f83 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56280991 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x563ad2c9 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57a85b3c rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58a5974d rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x595f7376 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d20e962 rdma_dev_access_netns +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 0x6431b895 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64dce3e4 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64fa6015 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x677b8a1f ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6787d99a rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d26837 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6851dc9a rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b0e204d ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c8b35e4 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2e3d75 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6efe0242 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f4c4eb4 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x703e2f49 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7056f729 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x731e514c rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7581cc5d ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7617f278 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x779d3beb ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x783e4d1b rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x799d4202 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bd935e6 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7de419ea ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7df308ab rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e57e499 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x813acabc ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81690b99 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81c46e6b rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8326f9b1 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8589b2e8 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85c59496 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ca541a9 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cf4ab88 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d34b235 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92a16288 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96e04c82 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x982eb985 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98956aa5 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x999612fc ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b1c9282 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cbf149a rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ce8987f ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d37bb58 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dccd551 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e632cc0 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f6e9d1c __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fe6677f ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa05bccd7 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa069a97b rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2032723 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa49ea869 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4ecad69 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5bae185 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa73e5ec1 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9be0604 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa1bcaea ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaf5ea03 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0dfe79 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad3c5d0f ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae189d8d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf1dc45f rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf1e1eb6 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb21d9bcb ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb22e38e8 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4a6f60b ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d12052 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6476923 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6f61e06 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb72383aa ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb743eeaa ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb819f71b __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba740804 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb5269bf ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc57280c rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd1dcf1e ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd49dc71 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe1d85ce rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbee1f156 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf87e364 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2033586 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc21409d8 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2813cc2 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2b39554 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4902e3b ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4a2503c rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc847e5ad ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca5fb0a5 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc6c5564 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf7c8e5b rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd530847c ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd550d536 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5dad734 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd770a5a7 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd93e5b74 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc28e57b ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde390a98 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde93b8f3 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde97012f rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf8eadc3 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4330663 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5c34baf ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6480761 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6fdb4ef ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe716c3f9 rdma_roce_rescan_device +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 0xecbe7233 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xede36816 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef2d3a8f ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf13b8a01 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf20d2c19 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf38d6de3 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf60baa16 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf77cbe01 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf981676c ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd92a27e ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff941122 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x06c751d6 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0aba9cbc ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x253ba3b5 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26849ec3 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36896e43 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4865b9c2 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48aae9be ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4af4c01e uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53d04ef4 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53ec5c69 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57f4f22c uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c777a08 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61c9ee30 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6e5955ab ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6e910890 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a62e994 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7cf58f80 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x83c97681 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8dae15d9 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8de6486e ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e32adc4 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x903eada1 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x933a2bf1 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x99c95e16 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9a2d84fc ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e481906 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9f8c4914 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb2bffc95 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb534d84 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9db8e2d flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd9c2395 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd370aef2 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd53fe9d6 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe3015230 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe592f0ac uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeb10ff8a uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf41d6e65 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x04cae026 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1f063f12 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2610ff20 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4017481a iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x990fc8e2 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb2a32a06 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd6693f97 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xefbd2ee6 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10d02f5c rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x16539e83 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d3f6859 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x235b7b2a rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27a0df81 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2cd054ad rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2eec4b31 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x30fdb955 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x311f1c09 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3133dc67 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32f03db9 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x333c5490 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e97cd04 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50bbb87f rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b08237d rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69e3fb98 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6dc73307 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72a80098 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7935ed47 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c8a0cf1 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ca360ec rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x941f5790 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x998542dc rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9e1d1c04 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa393e1db rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac41e7ab rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb50ecab9 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc194b5af rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4c60bb4 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6529420 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xddb81b82 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8cba84a __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf33a55d4 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf97b7f1c rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x03804c26 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x23f33c86 rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3737f0c5 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4709bacf rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x48ff6edc rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4cc3270d rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4e9f6ac8 rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4ec0d18b rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4fd98d32 rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x55d04b5f rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x60dfbd29 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x73645ac9 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x84d3e4bb rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x87dd5fa0 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x94fd985f rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9e8df76a rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9faf40ff rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa6472425 rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb5a17a17 rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb693e514 rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcbd845c1 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd58e612c rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd766b277 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd8d1879c rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdf797910 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe598ecda rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9e395b8 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9f17371 rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf34f334c rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x198bc3f8 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9b4119b5 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa81a9532 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb0c83529 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb8f6cf10 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd2b0a1f9 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfea245e3 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1cf55464 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 0x2d78a306 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 0xabe5f72d rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xcdcde381 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0ec59f00 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4965cbc9 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9019ebf3 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x979a4122 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xad528a6f rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc3fbd910 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0a1f5577 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0e1febef gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2c41d2a6 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5785c41b __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x701826a8 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x880f992a gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa98f791b gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbb1319de gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc6f8eea3 gameport_unregister_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x2e8e0b1e iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x56a8c1d8 iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xaabf531e iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x4f26a9c8 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x38aeac77 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x476c94e7 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x84f658b9 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 0xb0041564 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xb723325a rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1bb1bd22 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4ecb98f6 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x8d530f9a sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbd1ba6fa sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe058bac7 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5eaa4ff9 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xeb5b9801 ad7879_probe +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x0db75db8 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x2816494f amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x309584a0 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x4f42580f amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x56bdaed3 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xf8fcc704 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2229ebd4 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x48e6eae5 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7602c612 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7db24419 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9633a650 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 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x48340dc0 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9c621edd mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbd55b72c mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbd9038b8 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x63e903b1 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe2a659c9 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x089ead7e recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1fb5de90 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x34bb4a87 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x356b23b1 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x35f6f598 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3fbd4985 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x42415aa7 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4bda729b mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4dc3299f mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x534649a4 mISDNDevName4ch +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 0x605e3c66 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6eda6abd recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x73bf0a5d mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x79fa6160 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7d7cdbcf mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c1296f0 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90b83cf1 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c0e75c5 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa00177b4 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc2ac1577 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc5af7e95 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe765ffec recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe82397e5 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xec6d29dd ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xfc8325ea ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/md/dm-log 0x026a3da5 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x0371fd69 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x902b8eb5 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xf006b784 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1207cb34 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x70decee0 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x767b5589 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbe97e35a dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe9183fa2 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xeffeebd2 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x0bc3978b raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x549dc8dc r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1b5fa7d3 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3bda5b94 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x59b08ba9 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5b3e3910 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5f4797e2 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa2d72b0f flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb7172490 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc6d6f63d flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd4e88115 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdfa4091d flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe3a414c8 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xea2b95d2 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf9588744 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/cx2341x 0x10e03b31 cx2341x_handler_init +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 0x32f1202c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7754ac8e cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xba1a4f5e cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd3fefa46 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 0x236b555d cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xd5125095 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xb11e6bbd 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 0x205ffc8a vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x79c2ebf9 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3df11de4 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5f8d510d vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6acea8fa vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8938a0c3 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xad2c0604 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe7afb1ec vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xe336e003 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06a946df dvb_net_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 0x1effcbfc dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x281036d9 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 0x3afdc6d4 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 0x3f895b7e dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x41e9920e dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a4c7e6a dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x56a86401 dvb_ca_en50221_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 0x68588f32 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7e7e029f dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f8edcfc dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95c054cd dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96fb6809 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x97f9a876 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9bf3ed8e dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9e304b86 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac003a3f dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb30e07ed dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7d48449 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7fe1ca2 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc5b62fe dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1fe932d dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe846aae6 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf56a7db8 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 0xa09f5644 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x12b59650 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x072edd06 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x118d17ff au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2dadcd53 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x85bef1f4 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa50cbda4 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb6b82d10 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb8740277 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xce878ded au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe8c2115c au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x6d02638e au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x2810b8d6 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xeb9e888c cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x90c66a05 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x4f901f23 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x53cf0ac1 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xee25baa6 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xa2b57dbe cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x9f68d474 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x58900b51 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe00e6c59 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x5da38a5e cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x67606100 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x78fff793 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x080c5359 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x03e280b4 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x38af898b dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3b349f02 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbfb48590 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc46adf26 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x316c822f dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x36942a6e dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3bf21e5d dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4035eea9 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x48715be2 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6f4375dd dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x71001e76 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x77436afe dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8bd9ff43 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8bf8d3ba dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa8ddca0d dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcecd4edf dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd2780c15 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xea640f2d dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeaadf7db dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x1e55eccb dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x177fc3f9 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3b72a23f dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x46022f1e dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x68eb757e dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x90647cc6 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x915175cc dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x37ef1326 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x811ebf05 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x816c80e1 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc19737a4 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x62577931 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x9335b6e3 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x11dac203 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1222b8e7 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x145168e0 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x24b15557 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2a935e54 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x341a2369 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5e82052e dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6444450f dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6666ed03 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6c300422 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9beb340f dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc081bbe9 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdda5f276 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x387b5dd8 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x58e9d021 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8602904b dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd6a0e0cd dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xfbc488c6 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x9adbbdc0 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xbaf5e524 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xcf4b6eb7 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x0012e4ba ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x8def9cff dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x2c016753 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x87cf433b dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8d213506 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x3de1d3dd ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x0197cc78 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x9416c383 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x251ca10c horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xde880338 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xabcabe59 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x34dc4802 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xf8ab613d itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xfa3c2e34 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x47069f08 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x447b9e52 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x6ddb75ba lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xf0d7b5b0 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x37ceafc7 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xa13603f6 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xd4a0c5a2 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x401f22ef lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xae03f51e lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x71fbba42 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd502afc7 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x6407833b lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x58857426 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf8471606 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x8e5f18be m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x9b296ecb mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xd91f563c mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xa4705821 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xeeda7fcf mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xd509fad8 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x8f88c60d nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x2385320e or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xed132e33 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x3a894684 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x57cec80d s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xb7a6aed1 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xeaa0277c s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xd9cc8492 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x42fe1173 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x918b37d5 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x08c07f2d sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x3312be39 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x353ba351 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x6e5b5557 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xace06ad8 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xe36c79dd stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x885b8c85 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0221924d stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7155c128 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd69d270f stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x52c11b7c stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x98363f8c stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x10f4d7df stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xc9386f28 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x1712f7b8 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x89752d3d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xa2552f35 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x27d6d36c tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xd3b50536 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x15b55fb5 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xae8fa5fb tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xf4ef505d tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x435ec70e tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x7c551c01 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x3d91f49b ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x93015634 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x600c76c2 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x91c4a85e ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x51b7f791 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x9f8e62aa zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x173c72a7 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xecd97228 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xcb32d3be zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1b5c9a03 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5bbc3b2b flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x626df4c0 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x632e116b flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6a2f4090 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6e03189d flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc430522c flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0ecfcfac bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x68597efc bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa4edcf4a bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xae1d7daf bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9a04acb8 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xcd1834ea bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xddf0863c bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x079edeec dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x14e1d4fc dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x395fa196 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4abb4f64 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5d288d96 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x61a84dbb dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x931c7341 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcd73946e dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe1826c33 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xc46c746c dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6167f496 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x730d49bc cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7c6ceda1 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa20e33cd cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xcc33fd7d cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x13e9f2ce cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x481de143 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5817ed46 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x86bc9a95 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x972613e1 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa9b39378 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdaa9a01c cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc400f7ee vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe7d1e4a5 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x082bfcec cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x54007ba0 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5901e3e5 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb37e18a1 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4da058eb cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5fb80596 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6201eb5e cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x63ac6a1a cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6ee1233e cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xca7bb00c cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf850685b cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01c38ef7 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x07c059ce cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1f1a6e59 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2b659b3f cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4e43acc4 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x53d00bc5 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c81ca2a cx88_sram_channel_setup +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 0x62087941 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x674494a6 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c2fd459 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c995acd cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x94cfb454 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d2769c1 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb8a61054 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbaf3da87 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd5f078e8 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xda401367 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeaae47d7 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf7821489 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfe83ea91 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xe8cbb787 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x125e3997 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x128a7a05 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x36aed089 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4210aa79 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x51beed86 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x54498d33 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5732c02f ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5e2deae1 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6d871f06 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x85fdce81 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8ee3ab32 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x91dee312 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc85c13d4 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd26d41a9 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdc1a6c44 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfdb70405 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfeb42d07 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0602b04a saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1e403d67 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5641c48b saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5c5ce8cb saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6ec9e198 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x74e9898f saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7c9f0ac0 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x95159511 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb3bd53e9 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc72b82b1 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf0bb89a8 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/radio/tea575x 0x30e0109a snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x73f98425 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x75645141 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x86322ebe snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa1739620 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd8cd0dfc snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf3ba5de7 snd_tea575x_enum_freq_bands +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 0xb4bf47d5 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/rc/rc-core 0xf374bc68 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x35d961ff fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xb065a7ab fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x32cc0a0d fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5b2e80e2 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x683f7dd1 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x999bd037 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x3b6e1007 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x1298cf32 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x9d57ae9b mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xbf834610 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x0470c563 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x92298360 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xfdfdfa1e 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 0x86f630c4 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x14159588 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x2f314ec5 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x4eafa327 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xbee9ba05 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x12f322cb dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1bfd0797 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5027385e dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5b91f9d4 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x79cfb806 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8986e2b0 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd54390d0 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf1876a72 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf2d22cd7 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x82938b73 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 0xb1079d07 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xce2a7880 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd2b0df07 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd49d24d7 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xefda1476 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 0xffaae5c3 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0520bacd dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6bcfa271 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x73d03315 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 0xb11f1266 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd2f1dc74 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf77683bc dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfa291e93 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfc49d5b4 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfee7c8cb dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x5378c519 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x59822b2a dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0c841338 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x406a1428 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18adab62 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x36bd283e go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4d5b3832 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5338ab8a go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7e56f256 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7e8caef2 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8c558399 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa3ed022c go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb6a2e0dd go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0b7176d9 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x189ea5ec gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1f784c4f gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4248fc59 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8c5cca16 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9cb3cf1b gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xab61f397 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe8283a9d gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x08a15b26 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x23665aec ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5a1adc50 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x85aad07e v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x88a50823 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xaee2ca30 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd0d4d295 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf005e1ff 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 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7c289506 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9abbd54a v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9deff9c4 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xca68fb8f 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 0x015b3b35 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07e7ff2a v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b8a0b3f v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0bba09c1 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f4a2edf v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22a010a7 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28ac1301 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28f9851e v4l2_ctrl_sub_ev_ops +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 0x36f06ac7 __v4l2_ctrl_grab +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 0x4993402f v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b1abbda __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52916c09 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x550ae9f7 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5550ac5a v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55c4e053 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56ba3509 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b037be5 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63261a07 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e32c1f8 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72eb46f9 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x779b041c v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x822699b2 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84226e58 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x844e0baf v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8450b088 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84e30b62 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b15cc10 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f231b37 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96ecd7f8 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2a25544 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2fda2dd v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3cbb7c5 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4ce7cc0 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5e7592d v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb4ae0 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf076f39 __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3c0487c v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4d74778 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7f3189a v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbaf2f8a8 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc30867bc v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc78c8919 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7d6dd6e v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9548162 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9853395 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9baa232 v4l2_subdev_call_wrappers +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 0xd33d9677 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6a48202 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb7c2baa v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbf14b56 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc78ca83 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe20a4cf9 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7fca61b video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedf7d73b v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0c677cd v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0cec50a 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 0xfad70ffd video_devdata +EXPORT_SYMBOL drivers/memstick/core/memstick 0x16128335 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2d2a2dd1 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3b9300e9 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x42440eb7 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5146e7f2 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x61844780 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x64e0e446 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7634d51b memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9f0ee947 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcf7f67c6 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf1f16fb4 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfa984ada memstick_remove_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ae143ef mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0af1f62e mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d7d66f1 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d9923a1 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x158f8a77 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x187fd4b5 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x200d08f0 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32f63bef mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35366003 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x387f26f8 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d5acb8e mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5075cd87 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x59c803f3 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6225190e mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63c7c127 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6658a37e mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68eb857c mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8cc87f07 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa2a0fffd mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf5a9276 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba5e7ddb mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd739920 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc679443a mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb916f08 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xddc4fcb8 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe12a73e6 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe3d11b68 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe61ac451 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb010afe mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00653f7a mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x070b0082 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0f38091b mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x21c77dd8 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3385ba5f mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x440da89b mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4ebfe53c mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x505d13e8 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50633caa mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x52335c59 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x589485e8 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5b6423c1 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d3a1833 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6ee82568 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7092b270 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x71d68111 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7b1a1497 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7ee6dbdf mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb728769d mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbb51609 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc137daf8 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1e36bbb mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc21177e4 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc8eb15ca mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd2475aa3 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe7fcbf4d mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7e2068c mptscsih_event_process +EXPORT_SYMBOL drivers/mfd/axp20x 0x546da65f axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x55ea254a axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xf30bbe33 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x153a02e5 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x23c95450 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x4f559f56 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe0728cb8 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf1da888d pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1900c569 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x215820a5 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2ddf948a mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x371d73ca mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x65261346 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6fffaae8 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa93df65a mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc82a1343 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc8e66812 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcb42e260 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe10e16c5 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +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 0x1839c617 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x3c846865 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x4116081d wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x732cb384 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb11ccff8 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xde740a30 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x04fb1f35 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe7529e21 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x4ea1f25e c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x8f15c7cc c2port_device_unregister +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 0x1f681435 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x2d042658 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x625fa58c __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x7f9cfe3c __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x8ca2661c __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xc8e73d93 __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xdb91b515 __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xea24e8a4 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xeeac66a2 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x23743d29 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x440d3063 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x482c0bbd tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x6c9c86dd tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x7788549b tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x984b8302 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa68a2c84 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xc8e1d682 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xd6a66309 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xde4f886c tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe719aa7f tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf5d5f4c6 tifm_has_ms_pif +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x08bb66ee cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x31523182 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x59eb93cb cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x7989e0f1 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd55b4ddd cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x4f056207 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe6609158 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x40e08c58 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x99b69d6c cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xac470c52 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbcd892ff cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcf647abc cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf4fd78bb cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfb58af77 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x48c5f123 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xacb686e1 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xced26697 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf3382991 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x3e7f6d03 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xd63a8e33 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x351f68ae simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x19053a30 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x9b2400a8 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x01ae07b2 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x055f1b2a nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0dbb36ad nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x31bfddc1 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x34875008 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x52265249 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x52aafc99 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5b61c103 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6f3b5635 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x70dd41f7 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x74b408b6 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7e4f94d1 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x861f8270 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x966dac2c nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9f63d1c9 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa0c6cd32 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaabd671d nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd0117bde nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdc8cb79a nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe9cda253 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xeff84f75 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf28bb918 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x422a264e onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x99e40e7b flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x479477f4 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xee631586 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x05be20be rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0c4af790 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x143c9c8a rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3330392c nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3ab71c97 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3d322dae nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x526dd7f2 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x65d06ac6 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x65d5c3e7 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6a708c88 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x72e53d4a nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7490701e nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x81b323b3 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9f25a89c nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc3c0b2b4 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdb7e3216 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf0632035 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0316134d arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x134dc066 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4894d472 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4edc0fa9 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x609bb45d arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7cd7093f arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa6953e65 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8166de0 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc8fefae9 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf0872a2b arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfb8dbff1 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1e674380 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa1ecf819 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc9967b89 com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x258a5ab9 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xbd44d771 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xead99762 ctucan_resume +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x29b96027 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xe959250f can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x05babc3c b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b52a9d4 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x154e189e b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2163c789 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x264a2abd b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29278f3c b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b7aa0fe b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d09614a b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x421eca5d b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4606a019 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x55f205c0 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5b317a10 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5d960bbd b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x61ecd888 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63b7b51a b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6946237a b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f8291c8 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ab7884f b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80110408 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8128771e b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x835e7eb6 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b9a942f b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ed8fc80 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9cd30d4a b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0d939d9 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa1c9940f b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa4a34cd3 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf00b1f1 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb5825228 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb724bc93 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb7274af1 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbcff8bb4 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5d4cd05 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf924c48 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8592daf b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdb9140b2 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc30cbbf b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd57d2ea b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x527fcdd7 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6394ca81 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8a3c2b01 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xce330c42 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x242cff57 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3b6fec1e lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x77533ec5 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x045d2c4d ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xbb465054 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xf516799e ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1a386623 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x68f2fa18 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9ede88e7 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x009b3166 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x27dcfd01 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x38e056ec xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa786c782 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/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x275357b7 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x56f30159 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x74d83506 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x83077b2c ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa6206198 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb105ff5f ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb5c22fb6 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe16f5dd0 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf3f278e9 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfb7f79b7 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xfe5d5783 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x8cc954e4 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xac4a33af cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xeda86758 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 0x0a3b080f cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1fbbd9d2 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2417d992 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2958bb25 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4c282e9c cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7474466f t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x781ecf68 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7ce164c1 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8c428957 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd27d7218 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xda522fce cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xda76c9f4 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe38e3a44 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xef763b36 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfa72ffc3 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfd97cebb cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x032d49d6 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b932ad8 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e4f7af3 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 0x11e42d25 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1999fef9 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2187bd1f cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x278b9eec cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30816bb5 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33b19305 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34cbafc0 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35069133 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x353908a3 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ac8e055 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41cddd40 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49429864 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4cc0947f cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4dbfa64a cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58a10807 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d582eb6 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x602a25b9 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62bc103d cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67a61f9b cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c1e175c cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c6df901 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ddeebb1 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75a5c10a cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x764efd08 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86ad8287 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e8e9d7d cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x936bbfba cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d41ffd8 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f308344 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1a33ce1 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2b2fc9f cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4be3c43 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaef46fb2 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7137948 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc304736 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd759f3e2 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb7159d2 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8ea81bb cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe977fb43 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe993e91a cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea851270 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb645faf cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xffeac348 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0f3f5316 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x19b4a1bf cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x68846dff cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7661dc89 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb8092e3f cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbac9621d cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc4424880 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x167a2ebb vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x19bec851 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x36563b2e enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7efcad17 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x957e4340 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf9fd8722 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2e62282f be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x30c3aa61 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x1f2738e3 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xa2a3ce62 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xb5814a5e fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xdb00bb84 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xcd67feed iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe4a09fcc 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 0x7618a4a9 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb6a047c6 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x038b0912 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06754ccd mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0de8c7d4 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13da03d8 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14a075ec mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16ae76ee mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae4c973 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1da04b6c mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f8bbc6b mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20379b61 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27a8d423 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f681c52 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c566c6c mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e4dd47f mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ef0813c mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f373b03 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4127be9e mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f905d6f mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5080d983 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53fa9762 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x594ed16b set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b860ced mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62d654d5 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x780e55b1 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bc84b8e mlx4_get_slave_pkey_gid_tbl_len +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 0x88436071 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dde8e23 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9faeea3f mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1abe1e9 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad65bcaf mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4f246fc mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6153610 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb73d3a5a mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb00e6dc mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbed68992 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc62936b7 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce3e687f mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe011c0c3 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3bdd340 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5a4df24 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe79ad863 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2c0c811 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaac4ee7 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfffb1e64 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00c61cb7 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01953b8e __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05f3eba6 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x073d2766 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x082a2813 __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a1e1d94 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a3db720 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a459a46 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b4cd363 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dc1ebc1 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4dfb34 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0feba401 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11595a54 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11861180 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12fda37b mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d565c7 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13ebeebb mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14176733 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15d64a16 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x191055be mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x196f0753 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19eee21b mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19fe8d9f mlx5_core_query_sq +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 0x1cc47209 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fbc1709 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2491f8cc mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x277b822b mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29564297 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29a7b145 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ac05f6f mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b578e3b mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ead8126 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31bbc37a mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33b27aa7 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3759212c __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38712882 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x389229a6 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38e3ad69 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3af9b06f mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b06ce85 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cb0ef02 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d679c55 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fc11175 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x407f7878 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x419c3842 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4270ed58 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x495c6f4e mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a29db53 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b7f2a8b mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e731bc7 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50e15dd1 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5178b445 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x569b8f9c mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56b660be __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a011b8e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a86f70c mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aafc401 mlx5_lag_get_num_ports +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 0x5d637491 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fff8589 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x623b6e14 __SCK__tp_func_mlx5_fs_add_rule +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 0x641714dd mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6482eeea __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x699d73ce mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69c56981 __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69cc733b mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6adea7ff mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f08a2f4 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x710fa037 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x750944ed mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75c11502 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76fa73bc mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7acff014 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b8596ef mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7beb208a __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c5beff3 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x805cf4e5 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81bf953d mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x829ba7d9 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x836e9e77 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85a5888d mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88024b26 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8936e3e9 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8efcb983 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f512075 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f768a31 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91ebcd0c mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96d730ef mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9808f484 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a03ad69 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c2691b2 mlx5_eswitch_reg_c1_loopback_enabled +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 0x9e36ee5f __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e4d96ef __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa13e9fd0 __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1de5ca7 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2651f73 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa544bb2b mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa811b128 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa852dbd8 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9524388 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa0e2789 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab0b472a mlx5_core_query_cq +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 0xae352d6a mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb05dc4cc mlx5_core_detach_mcg +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 0xb4473038 __tracepoint_mlx5_fs_del_rule +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 0xb91508bd mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9f6be58 mlx5_lag_get_roce_netdev +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 0xbf6db6fa mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0d1de42 __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1141797 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc14a794c mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc428e895 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc50082ba mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9028fb1 mlx5_cmd_cleanup_async_ctx +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 0xcce9ea36 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd015bba4 __traceiter_mlx5_fs_add_rule +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 0xd227a17e mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3a2cce6 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3d26397 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd49fdf55 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5a0ba5a mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd710098a mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd786ec95 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7e965a2 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd855a203 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9c793d4 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaa88cdf mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdab31d15 mlx5_vf_put_core_dev +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 0xdc491309 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd98c747 mlx5_eswitch_vport_match_metadata_enabled +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 0xe1a9d722 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe210984e __SCK__tp_func_mlx5_fs_del_fte +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 0xe5ad0cad mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe71ddf10 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe811fc69 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe83d8ba8 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea23c072 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea2835ae mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebfb7762 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0775eec mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf13ede4f mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2f6bab1 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf50d00a1 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf55aadc3 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf72d2adf mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf74fcd39 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9283dda mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc88fc05 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffa2d77d __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 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 0x01dbead5 mlxsw_core_port_netdev_link +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 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode +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 0x166d7ff7 mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16f4221d mlxsw_core_irq_event_handler_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +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 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x294c73bd 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 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47df6bc4 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get +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 0x56c4ac4c mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5b1ab19a mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 +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 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio +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 0x718d28f4 mlxsw_afa_block_append_vlan_modify +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 0x7e08c6e0 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x816e07ef mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x818e5a14 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x86817014 mlxsw_core_read_utc_nsec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x89a6f86a mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8fd7e978 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +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 0xa509fafd mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa5440881 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 0xa8e2509a mlxsw_afa_block_append_sampler +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 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 0xbda212df mlxsw_core_irq_event_handlers_call +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc7dcc239 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb53ad6d mlxsw_core_trap_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 0xcd903404 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag +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 0xd888ffb3 mlxsw_afa_block_append_ip +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 0xdc5c95df mlxsw_core_resources_query +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 0xe13298c3 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1860dde mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1933f73 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeab0109c mlxsw_core_rx_listener_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 0xef9391f4 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf0130f0b mlxsw_core_skb_receive +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_core 0xff0b141d mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xffcc1d23 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x6edf411b mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xf7bc94ef mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x0f618de9 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xedb38729 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02b9dc44 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08f4e9dd ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c405b56 ocelot_bridge_stp_state_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 0x1a18b6bc ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c7cb3ec ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d11b79d ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d495719 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e5c06f6 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x209b6533 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x240a5d5f ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25d0236b ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c4758d3 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2eb9abca ocelot_port_bridge_leave +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 0x328e7ed8 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33bd884c ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x349a10ab ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37e3f80c ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e48a290 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f277961 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f92585e ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x418f8707 ocelot_hwstamp_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 0x4356b935 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4445737f ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x444e1a87 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44c02a78 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x464f2edb ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x478de271 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49e10a47 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d69202d ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x52918d54 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x555b0224 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ec160c8 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f70b251 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x681c6037 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a6a77b2 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70b429f7 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a0a544f ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a22df20 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d5b1634 ocelot_mact_lookup +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 0x81fe9ec9 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82207030 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89e3ff2d ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d1b6d57 ocelot_port_bridge_flags +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 0x91831f37 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x924510f0 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94da087f ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b9ea518 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ddbefc5 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0bb365f ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3bb3bca ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac91a123 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad23b99b ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad26ee2f ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf69adae ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xafb64774 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +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 0xc47a3306 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbe06654 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd73b07c ocelot_xtr_poll_frame +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 0xcef70228 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfdfc520 ocelot_devlink_sb_register +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 0xd1941200 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd5d11859 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6687998 ocelot_sb_occ_max_clear +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 0xd7e76d08 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdabc4d57 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xddeea959 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf6ccddc ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec2fcc1e ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec7ddbe6 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 0xece8569c ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf53fbf28 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7397d2f ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf75dd256 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff1e7ead ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x32eb58a5 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7b6139a4 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 0x9df1054c qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xee6a87b1 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3ce80f56 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xbd0b86bf qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x078ac979 wx_clear_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2893c9f4 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x29ebd4cc wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2f5578ec wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3096ffb0 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3571ac44 wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x41e6fd85 wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x440b244a wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x604e68b1 wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6529b0b0 wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8b1433f1 wx_set_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb3cfecaf wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbced64f2 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe1cae233 wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf4367f5b wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf46e2d37 wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf54b180b wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfeb25582 wx_check_flash_load +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa45094cb hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb1cdf539 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbe166252 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xce05bebc hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfc228c8d 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 0x7e8fabde 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 0x23f68d0d alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x5f74af44 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7fb9a0d4 mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd37a5b2a free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x4b5dc81d cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xb0d80f01 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xd087927a mscc_miim_setup +EXPORT_SYMBOL drivers/net/mii 0x06227286 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x0f875822 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x1536fe1e generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x1f32b58a mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x5eb0c380 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x8c307efa mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x8fd7a245 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x9b38eaba mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xada54b4d mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xe3671c62 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x025da257 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0cad3e7a lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xd33d880a lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x5a9793ae bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0366dcd5 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3776fc41 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x736f189f pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe82ce87a pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0xda337158 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x26f06d4a team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x5543783d team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x591bcf26 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x699efd2f team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x6b71a62d team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x71238802 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x8de9b6d7 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xf3553104 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x05ef3244 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x46c89c05 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd81071f6 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x26995b3d unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2dc17770 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3c376552 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6e9d5d96 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x713fbb4f attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x83831c0b alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9a76fb87 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9d4bf492 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc5c50092 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc8542cb2 hdlc_close +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 0x16b67292 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1dc038a1 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x505997a9 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x84b0798c ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f777c7c dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x950a1c3b ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9786a5a3 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9bcbf7c5 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9eab8ed5 ath_is_mybeacon +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 0xb77ef5c3 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcd04daac ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd2c757fe ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xebe12f58 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01dc6efe ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01f5ce36 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02156970 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0225093a ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07700fa2 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09204ca2 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0baf137b ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0dbc10a5 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x103cfae4 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1fd1cc44 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2631e610 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a260529 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x365f5ef7 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a0d4d52 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x40ee3778 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41fee9e7 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43c6a2bb ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x442a3ab4 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4534a26d ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47378186 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x488e939e ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4a4f8d66 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51006575 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56553f53 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b3b252e ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6fa3faa3 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71c59609 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x761ed602 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81963f0f ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a5fd3f9 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b9566e5 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91046b23 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9244f2a7 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x94b871f1 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95a82a8a __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9651f94c ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e379d1c ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8bee0e4 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xadcd207a ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2b11ceb ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb727738e ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb35a521 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe5fb547 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc24d43ce ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2600311 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc564bb19 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc66b743b ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcea484e8 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd04f0cb6 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd53910cf ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5bd639c ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde334b77 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe7a21865 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed12c946 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf62582ac __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf95bedfa ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfa130f6a __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x01682dd6 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x03f6e3b3 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0ce420b6 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1ffd4c21 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x244e9978 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3e66cefa ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x416df778 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x42284e3c ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4ad87c3b ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4ccea14d ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f585ae3 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f8576ef ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x50b1174e ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x52daa41d ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x575b999b ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6068cb0d ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x64b7d449 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6e72afdb ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x793b8707 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8251a2f0 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x82931096 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x83ef556e ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x868fc554 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8711eb03 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8b219423 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x95f23c05 ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x99d94a9b ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9a11dcbd ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c8355ef ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb20fe30d ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd5ba489 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbfe244e9 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc9748592 __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcb68d51f ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd681f21f ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd6a39ed5 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd7f02edd ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdbda04a3 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe6d60464 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xee4c4dc6 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfadc6c99 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfafdfe4d ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2bf9dd26 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x502f3573 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x55e4cf0c ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x602a7849 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b695b42 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbd5bf7b8 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc046b047 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc9da0b9b ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd609a120 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf6f441fe ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfe7ff4ca ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x04e73e94 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b415d1a ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0f559b14 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x128672e9 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1650cd61 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x29155b46 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x34f70c95 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3cdc83b5 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4901774e ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b85841c ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x693c5133 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x74a89395 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x84a0b0c9 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x87531efb ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa269025d ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa87a6634 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb357bacf ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb438aee0 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb43d7242 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbce4d186 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc8f7578f ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd9440c16 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf9f64133 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0231089e ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03b3a885 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05f3b18c ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05fe15b1 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06b2a964 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08355381 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b4076a0 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c0d7ff0 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c693b39 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e360a39 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x151047fd ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16a6c791 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1871feed ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d0c4c5f ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c1e23c6 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2da68338 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2db936a1 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e04cde0 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x306139fc ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3643d8da ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x396da97b ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bb75b58 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3be03350 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d2506de ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e8f5a05 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45703ef3 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46514f35 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x475521db ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ad37bf6 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bb74d24 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5257e966 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x531c0cbc ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5830f04a ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59bd8225 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bcdba4e ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x631eec19 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x633c5c84 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x690d088e ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b670710 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c5fb326 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cf6b35e ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d89e356 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f16d229 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f49a9eb ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f5bd996 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79186e02 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79267aa0 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79c56d9e ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b311922 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ba0dca2 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bd43faf ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bf498f0 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c897637 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81b751c3 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84910b87 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x855d8891 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x879b616a ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b56c9a7 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x942d7375 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95555f10 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96efdd88 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97c23fef ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98ef5279 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b2f0f31 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa02dd389 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0f02b3d ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa25c7830 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa16669c ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa74caaf ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabffa738 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad1528d4 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb02bdcee ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1cd4761 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb481f8a8 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7067baa ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb826f85f ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb97012c0 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbce9615 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1fddba9 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3cae2aa ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4bd0a8c ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7e08ad7 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb4e4ad1 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc62f9f6 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd45df6f ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd7ae023 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3677c15 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4249a20 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9ecb7d9 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeee3c43 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3654261 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3a11a70 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe516177e ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed177b7d ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeee6d1fe ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef28a83a ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef5fcef2 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf010ef52 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf182e32b ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2ac133b ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6532480 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf98ea514 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfae3e433 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaf6d227 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc20c351 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc4a413e ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd264f97 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x113e99f2 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x6ab6c1be init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb2fcb7b4 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x09a352a7 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x13183496 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f93f14e brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x434f2dbb brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4453f0bc brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x760a5198 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8062af8f brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa076585f brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa49fac66 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbc5e209a brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd3c0f929 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 0xd8da662b brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xea19fa34 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x16ad4eb5 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x920d6b3b init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x9615caa5 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0163826a libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x06a219ec free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x16f5b091 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2400aa84 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3c067094 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x43d349a9 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x457b49c6 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5e7974b8 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x64b6c1fd libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x664e4417 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x66c4ebc9 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x97fbe924 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa06bee19 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xac939a8f libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xadd5f1f5 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbcbf69c6 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc0826fd4 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe6a253cc libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe7313543 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf74092d5 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04173144 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04e94059 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b944b46 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0fc1a798 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10e179f1 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x129bb453 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12c61222 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x139d7897 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1443dc97 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x156b096b il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15cde1f3 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a929bf1 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b0714f7 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b22aaf6 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ccabcb4 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dae5eb6 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1eec9b12 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22ba50dd _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x253abca6 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2622aa6e il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27c8f67a il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2887a5b4 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c33a608 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3019d260 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30c38358 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x338ecabd il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3413dc40 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x341762fe il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38911f82 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x392b7929 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d2dba26 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x462594ad il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46434009 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46e10f27 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48e11b87 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49077850 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f18ffe6 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ff82cc5 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x500d8061 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50742b82 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52a7c55c il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52d3e14f il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53b9193d il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53ce3de5 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5470c5a8 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55dbb593 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c446747 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f876688 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6263bc51 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63851428 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66463e57 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x683921a7 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6980d3c0 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x698295d4 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70df2489 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72cb3d01 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b990090 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c2637fb il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x854f549a il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94ab7491 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96a01b74 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x994c7132 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9acf3cd3 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9eec50fc il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2d0f0b9 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7a918ed _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8119b62 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa96aad56 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa3048a9 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf1edd97 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafa3c87c il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb12613bd il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1592a63 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb569005a il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb66cbf5e il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb734cad7 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9247c5a il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd18e92c il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfb5046b il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc61f337f il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc967cff9 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3c9c722 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd46d38f3 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4dfdfea il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd70deac1 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda08a310 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd4a475a il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdebae576 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3385b5f il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3398a60 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6a9f1eb il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6eb616c il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7da46c6 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed22fbcf il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeda015e2 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf185a26d il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfaa7ef84 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdfb9903 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x210df50f iwl_trans_pcie_remove +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 0x54564d03 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7eef52f4 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92613235 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a285084 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9d4fc1f1 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9f3d7ae5 __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc3da3139 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd60d7e46 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe9632ece __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1cdbbbd9 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x45a085e3 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x49ab2f84 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4d7a9139 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6261ff10 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6b33e3e7 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6bc86108 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6feee4d9 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73b35419 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7dcd7ac9 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x858fc9a5 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9a4b9d62 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9ac683fb hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa665531d hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xabb4c313 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xabf5b077 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb7d5de9b hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb88a827d hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb9254596 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd600ea98 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe24f2fcb hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe376a79f hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf15a124e hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf3496bf4 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfa7836f6 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x07ef6fb2 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0c9c59e6 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0fc0518e orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1e4728b7 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3ccc300b orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4fce14f0 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x70ae3284 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x734920c9 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x745f6adf alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8118353e orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9c025a37 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xaf8eeafc orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe5e36945 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xea511d12 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf077bafb orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xd6aeee9a mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x4af05903 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x089efea0 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1912996f rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a6e5bb0 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1daf4e2f rtl92c_bt_rssi_state_change +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 0x26ec9c82 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34524925 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x365349d5 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x375af67d rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3cd8d2e0 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x403dedde rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42cc9e32 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43928952 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49c8a7eb rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bbf2436 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b4c2551 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a06619a rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71318a66 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x719d6223 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7bd4fc88 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cbc864b rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x825f79d9 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89191cc2 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e2f6d50 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92687348 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x96f2f5bd rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x988e08e8 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99f36860 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cbddd2b rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1ba12e8 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd043e9d _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd539659 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc89d01fb _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcee7ef89 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd45bfae3 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7782f84 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda775d9c rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebe14e33 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0528f73 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf698b6ef _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf87abefc rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfeaa82da rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x35e98229 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3c4ad7cd rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaca97fa6 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xccfc3a8d rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x186075cc rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2a7824b9 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3b64a235 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd25c491c rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06401d98 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08b8a713 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b6a7804 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b012429 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x234afce2 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2bfc66e1 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c593a70 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b35c5c3 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45697e84 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x496e9af8 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61ff2b3f efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f5f69a4 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79f1b6c2 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83cb1251 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b011d88 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ee49311 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x956a4903 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c37e205 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9dc17c1d rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa896e0a3 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb96560be rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc037d964 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc69c2e6b rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9e086c5 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc2472cf rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcceb4245 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf0f6327 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9f3df52 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebd2f35c rtl_init_rfkill +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 0xf1de7deb efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xd32ba376 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x4eebd4fb rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x38cbd9c4 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xd709b2fa rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x00c609c5 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x046a1f8d rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f384f2f __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x173fd09a rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18d31cdc rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19001c1a rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d50b58e rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x271fbc25 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2a4a18af rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c4b33d3 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 0x361ccffc rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3781f4fc rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bf206ca rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3c06139d rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3fb5c298 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4028bf3b rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45c909ce rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x465c6e07 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x56826667 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a75b643 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a8f5da4 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f702078 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x61e7d180 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x63c6f9ae rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x684dc524 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78421df9 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e5df96c rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86350d10 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9399aef8 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9644344e rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d224c33 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f23c256 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1413422 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5ae2de0 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5e840b8 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa65fbacc rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb5991568 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb8510e7c rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9c33666 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba00f76b rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbb9226a5 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbbfdfa50 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbe41f53e rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf996844 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc4cda243 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd127a92b rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd249dd70 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5bae126 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd967a858 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdac82057 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xddbf6497 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3c604ee rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9ea7b83 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb2ddfb6 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee27e600 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeef12143 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf6b8e075 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9fc188b rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb124a1f rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfe233b69 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x33f95c20 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x66bcc1c7 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7e11f437 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x972baef3 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x079c2597 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x910e1e7d rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x162b4c45 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x61b59eb5 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xfa10d2da rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x03c4241b rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x03fa6ede rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0568e420 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x09b8320f rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c353adb rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x12586a30 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x12d5833e rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1ab376e8 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x223452e5 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x25400c7e rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x26d7afcb rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2d86af3c rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x399bd44b rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x39b4994a rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x41441e5e rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4220437a rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x43d23747 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x442b1660 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4d0142e7 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x55c512cb rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x576b0b6b rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x59714505 rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5c04656b rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x61801575 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x629d7353 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x69d860c0 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6c7f357d rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x73bc970c rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x74686101 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x755d9160 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x769946b7 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x80c9a5c8 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8131b712 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x82e0514f rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x84691f6e rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8df79ad4 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x91118326 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x976b3534 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9b264b21 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9d1ee5bf rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9dde6df2 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9e256c28 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9e90c693 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa0cb1949 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa3661f21 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xab24e95f rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb5f895c5 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xba639441 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc72220fb rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcfb068f9 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd038f19a __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe2d81154 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe760016d rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe87f3746 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe928e7af rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf3ef300f rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf41efa96 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf4a88242 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf549303b rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0fab2f28 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1deed882 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x59fae642 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5baf397b rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5cdab1c1 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6f96c69e rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x96cedff2 rtw89_pci_disable_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 0xcb9f5e2c rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd08d0bf8 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd09a6101 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd140a578 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd9006da2 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe1bdb1fe rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf1dcd682 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/realtek/rtw89/rtw89_pci 0xf8383d56 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xae9f48d8 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1c78afc6 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x59891e95 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x975f7874 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xaf245f37 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb7a2c924 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf8999327 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x30ccc2f4 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x90c6024d microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3767714f nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3844499c nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8f8ba09e nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xcb5e27d7 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xdda3bc03 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xec895171 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa6ba4254 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd1780b10 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe066d333 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/s3fwrn5/s3fwrn5 0xf855e9ad s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x042610ea st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x09a2972f ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x19186f56 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4211ebdd ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4b3b7278 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x705407be ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x95df2777 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa8552d25 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc9003a3d st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe930a64e ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0eebea25 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x15f3ffba st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x492139c7 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x503ea4fa st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x51018a4e st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5fe332bd st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x762a5aae st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa819989f st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xac3b70c9 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc2ea2e71 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc922d099 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd5fbe3db st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdeff6865 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdf575047 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe40bba74 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf3a9e41b st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf3f91612 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfc86c77e st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/ntb/ntb 0x11f2e7de ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x12f669e7 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x21e243ce ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2717cf9f ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x3d162a67 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x3db50300 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x41df08cd ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x44a9d552 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x56745f23 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x6a0c3cb9 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x6ef573ea ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x721906f8 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x73223693 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xb0c3c3dc ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xb8a646ab ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xb9246222 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xbb91c8f7 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xbedf85d1 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xca0cdbec ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xf18cfee5 __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x35b46347 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3c85b302 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x0d695b43 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x11abe951 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x21a15ed8 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x3165214d parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x3ce09ff6 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x4020ba39 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4903452a parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4fe69df7 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x5066837e parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5e5e1e72 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x6080c455 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x6689e928 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x6d35cb9c parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x6d5242cf parport_read +EXPORT_SYMBOL drivers/parport/parport 0x77c4f202 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x7c70aa80 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x9007736f parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x95ec2372 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xa0d75b69 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xa7c99934 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xafcd9884 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xb0a70d03 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xb300e542 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xb5908417 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xbc6a8e6d parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xdb7215bb __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xdc9de39b parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xee8e3ce4 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xf2043797 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xf5015a12 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xfa48a988 parport_put_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x0c0a6fe7 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x5e87e76e parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x013097f7 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1586bdf9 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x16347dd8 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x195dfb69 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x236b1d07 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x23dc057d pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x34051724 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4ecfe4bc pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x554d9144 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x78ddad97 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x841a3dc5 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9548600c pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa0e81399 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa10ac28a pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb8baba3e pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xde88a457 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe66f9b11 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe7b9f444 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x03baef6d pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x10dfe789 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1958866a pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4811307a pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x55a27e65 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x79ee4875 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaa750df1 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc82651a2 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdb084f8d pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf1138cb9 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe84c5112 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xf7e3e1e4 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2a2be8c2 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x42d303df cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x77b79263 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa01eb1e0 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init +EXPORT_SYMBOL drivers/platform/x86/dell/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/platform/x86/intel/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0xd857cac7 sony_pic_camera_command +EXPORT_SYMBOL drivers/platform/x86/wmi 0xef5525b8 __wmi_driver_register +EXPORT_SYMBOL drivers/platform/x86/wmi 0xfcf61493 wmi_driver_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x0a34409d rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xb972cbd0 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1a697948 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2f6b1161 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x30d9af29 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x47c66106 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x61552485 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6c08f83a rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x70163b60 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8afd073f rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x91b0f6c9 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x998ea4aa rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9c431d3d rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc92c60d4 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc9d7720f rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xccb709ea rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcf10f57b __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdcc14e77 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xebf324ab rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xed78dfa3 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf2ce18b7 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x277dd6d6 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x653091be ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x50d80d51 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0xc5804868 NCR_700_release +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5e78f809 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7ddbfff6 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa0bffd12 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb225f31c scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x25231f82 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3474118b fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x660b37f8 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x661b8c25 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6c54acb1 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaa210858 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaf3ad164 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbaaf40bf fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc9e16e5d fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdb3f9ee5 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeb10a83f fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0027d80c fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06f7d4e3 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x08efe591 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x095c8ba4 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09cd106f fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ee4181c fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14dea643 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1801077a fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e324e43 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e8dac0b fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2472e57d fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x303dd5ed fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x314216b9 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33817487 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35299dd6 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e16f089 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x423f8c46 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44e94b0d fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46e29490 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ce0da4e fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x534e334b fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53b42a41 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53dd48f9 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63b3b360 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63e89388 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6758c1e3 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6766a479 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6bd6e4dc fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d2d3638 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7336e2f2 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80cef0a5 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8631983a fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8817da15 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8cb8ab5a fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e555da0 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94a69ee8 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b84670c fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cdf9faa fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9eff0536 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f715c8d fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa88fea2d fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc30d3be7 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4ee03cd fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5da5168 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd003d4d fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd4c6b50 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcec78547 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4358397 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5aa4733 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2654c46 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe282770e fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea35bd25 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb852b54 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2321e19 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9eecc76 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc745437 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdd33aef fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff9af652 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0501d08a sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x077af665 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x68377163 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb01cf984 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x597331e0 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 0x195039c5 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2e54c168 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x30e1e5be qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4dcbfac9 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x50c13f42 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6ab501e7 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x84f5b9af qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa00a5a55 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb0ec2373 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb874702c qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xba9aa073 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe466fc98 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x194299d7 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2bb767f1 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd7e7ee qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x495bbb5b qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x6e02764e qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb325f4ae qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x4b5ea71a raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x508ff575 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xe48fe133 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0c60ab4d fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x173283a7 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x27a4595a fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x365c3083 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x45154a1f fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4e280722 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x50f81170 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x67711163 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6c35dc00 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x99ae132f fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9bb6d763 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd48252cb fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xed8250c1 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf094bf90 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf1f014e3 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf49547fd fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfb1f980d scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00d02387 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0d4d26e7 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x23e26420 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x363cf2cb sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x427ea2a2 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x429a47ce sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4cd37ba5 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50d9a300 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a0ca2cd sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5bb6f36c sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69c7fb25 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d602163 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x72835ed0 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x76e5bec8 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x909478cf sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e7879ab sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9fde30df sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd35a0578 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd423f8e7 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd42e4678 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd558d5f3 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6af7f19 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdca5062c scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2bba36d sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe7b1da56 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeac980e5 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xedae77e5 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf6541176 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf7b856f9 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x52ed7f4d spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x82b34e67 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa4eb42ba spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa56a64c8 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc22bea95 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x00a89e1e srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0823ed16 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4bd95420 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb861e55a srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf6def786 srp_rport_get +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1594e726 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x168bb666 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x275aa557 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x57902e55 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5dfeaa29 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8abd9899 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x92b73f3d qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb6b804f2 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xddb30068 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe08d30b2 qmi_handle_init +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x04f9b132 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0c468f57 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0e7dfbe3 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0f3a6727 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x13a92e9f sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x180a4fe7 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1d7c108b sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x250c01bd sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2692c51e sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x32a5b04c sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x35735cb4 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x37a80557 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3e2c82f5 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x45ec8a12 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4c30e854 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60212bd7 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6a626577 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x747630fa sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8b3d1797 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8d23c94c sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9319db1f sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f1ebc6c sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaeb1964f sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb637f29a sdw_compare_devid +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 0xc9211ba9 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe44dd4b7 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf6abc043 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0c182331 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1dd4c9a5 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2590de30 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x35566a8c cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3751a93e sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x58cd8112 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6d43bbe0 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6d88b30d sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6eb12516 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8510dc08 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x87396f16 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8f461517 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x98738509 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9caa3443 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd9ff19bf cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf5b28e80 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf6d5e93e sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x1a37454b sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x144f598a ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x1b976978 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3c997c0d ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x4d7a893a ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x5195dd21 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x53341bec ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x6cf993ce ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7c3c3acd ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x84ea1080 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa04c1819 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xa5420ed9 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xb21c2dd9 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xb7811795 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xbc9e4059 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xc47a72a3 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xc65b812b ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcc26f208 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xef431349 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xf3b1427e ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xfc88cfc6 ssb_bus_powerup +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x035b23fd fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07507d99 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x13761612 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3f785cde fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x46d02e7c fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4da985d3 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e9cd461 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x537b89b5 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e0f34db fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x714b6a1f fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x71ae9f43 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7301ad4e fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7b0c1762 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x81a09ba5 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x92e0245d fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9fac1eea fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb14f5995 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbb18e888 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbfa057a7 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc843ff9d fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc85e67ac fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcef572a3 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd2883a85 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd63996f9 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe79f5008 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2c1e98a5 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x4d37db79 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x5ee8a7a8 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf2177eda adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x666b284c ade7854_probe +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x001145d8 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1147811d free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11b69899 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c40ac6e rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2448c770 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29cfb4fe rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b9f0970 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cbd5d29 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3216d5db rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x373cad04 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42ec9dae rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43dbb9d5 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x486343f1 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ac7b1b2 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x663d4814 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75fc9ce1 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b07187a rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b0be22c rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e6ff0e0 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e8fe4cc rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84a9bcd1 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90719eaf rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91a2365e dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x949a307c rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa361edbe RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4de92e4 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7033e44 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8819f60 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8d1ce16 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaefc5214 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb313fb02 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb673ed87 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc30406df rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc37b1a9c rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc722d865 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc72915a6 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc938e35 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd77d5165 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd830d252 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8317cc2 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8545f0a rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde6e9f6d rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1621101 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1d11a57 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xec15e92a rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf38dd42e rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7667afd rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc156095 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc5ad58f rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08185126 ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0847fd03 ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0abf519a ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cbc1037 ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e4edd69 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22dbc717 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x257d75a9 ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2af54da1 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b5257c2 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45ed41cd ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x477b070d ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47f70212 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55d91e23 ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56283734 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68ad3e9b ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b500daa dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e446c49 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e71582a dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72c65afa ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7939820f ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a691778 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7aa617a3 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x811c8673 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81d2d1c2 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8384b37e ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86c43807 ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x894e8f34 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93f8edec ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94d728b9 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98d108ff ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x995113e1 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a3efee3 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ed4dfa9 ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2854fc7 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa653a972 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab4aa975 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xacab1686 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaed79bb8 ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb15a67f0 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3518b2b SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6946c1f rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8add23d dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc90460ee ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9fff7e5 ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6a155bd ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb184849 ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde58c330 ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe25219bb ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe53ec1c7 ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefb1cd1f ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf64b608f ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf80b360a ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa19b4f0 ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x038ed590 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05925fb7 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08218580 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21287393 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x216ab92c iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d7b7a2e iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3fc20a93 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44fd69d3 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b1f2cc8 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52c26838 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5402c7b3 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x583ac6bb iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59087b73 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59a1c667 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e0867ec iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6252954f iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a1cc569 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a9dba34 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72f7f7eb iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73d28c01 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78c014aa iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86cccf07 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8afb6753 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cb897d9 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x957dd61b iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x993ac69a iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e7cd73b iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa00c4cc7 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6785383 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae7f8211 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb83541e0 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc125a3b9 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc5373f4c iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc5d07aaa __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcce2c10b iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd2e340e iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd13e41c1 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5707a02 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8006f30 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec3627f7 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecfd461e iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xedf40f31 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1b6d971 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf86f4595 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa500f55 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x106560fd sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1dd0757d transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x220f6dba passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x22eaf01e sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x25ddc92a target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x27a912d6 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x300d3b7f transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x32708b71 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x3510e770 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x35bd2449 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x399e8814 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cb688c0 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d87b13d transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x40126f0c target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x43d3ab1e transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x43f9e536 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x451da079 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x456d3d58 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x49134192 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b62c7d9 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c08bf24 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c3ebde9 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d38da81 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e9a71c6 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x508d6489 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5244bac1 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x54d56505 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x55f03af6 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x666732e1 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a5b5451 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7661aaad core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x76f8693d target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x78a1defd target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x809563a7 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x80dfb1e4 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x818b35d2 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b03b859 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x9858a39d spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x992b0cba sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x9930b5b4 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cb2d9f9 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cd00cad sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d73c123 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9fc31a33 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0c9482e target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7d842fe target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xacee83a1 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb18c3b9b target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb29e59d4 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xb53dc8a2 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xb956faa5 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe3a4a38 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7611257 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9ad6aaa sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xca7a99ba core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb01684d transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xcebd24aa core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0af04c0 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd374b567 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd571e5c4 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5bb129f target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xd79c048a passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc60f619 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe222df77 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3faa7c7 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xe438b46e target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8d125c3 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf11d7b08 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf134fb4a transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf75fa3e2 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfad3e665 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb19759e transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc382ecf core_tmr_alloc_req +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 0x02959c41 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x205a6edc ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2207a78c ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x66459f99 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6ede3847 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x824053a3 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xaca3dc22 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xce1380a0 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x28f98947 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xf732732f tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x4aa90130 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x9a5e38bb ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x6a17f600 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x8fddd11c usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x25a95d04 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x125cff89 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x28f84ce2 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2c0bec56 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3284c8fa usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x603b8532 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x65aef6de usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9ec497c7 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa0f89929 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd28b551d usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe37480de usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe9d232f2 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1fb21187 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd11fd275 usb_serial_resume +EXPORT_SYMBOL drivers/vdpa/vdpa 0x1b17ce4a vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x087404e8 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0c321fb5 mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x567cd3c2 mdev_register_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5e9f57cb mdev_register_driver +EXPORT_SYMBOL drivers/vfio/vfio 0x01cadc84 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x54a6e292 vfio_unpin_pages +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 0xe80994b1 vfio_dma_rw +EXPORT_SYMBOL drivers/vhost/vhost 0xc0ea5cca vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xfe7abb34 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 0x6a3d5f20 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7d12252c lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8c65479f devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x97c2703f lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x08a508e8 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 0x31d06c53 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x540c3088 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x72e49e1b 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 0x87a88e12 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x90c121fe svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa6556841 svga_settile +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 0xce81370c sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x2be8455a sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x0395a833 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0378f53c cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xf039f492 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2859e99a matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x3b977322 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x84619cdd matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2bcd3f8d DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xac643d11 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc090c6ee matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd4663145 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xe1265736 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x92647efb matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x29ea4291 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x88e8b1b0 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8ee6f439 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x909b3afa matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x2b22a1c4 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xde9e118d matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7c78dc3d matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7e21643e matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x88c57920 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcf62f620 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xef667cb4 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 0x29ba4b3f vbg_get_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x40b55450 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 0x75a6a0b6 vbg_hgcm_call +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xee473825 vbg_put_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xf05193ab vbg_hgcm_connect +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7c3079fe virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x94562077 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x9c44f561 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf3510c36 virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa45656bc w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc1d792a5 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x2dd35b1f w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x74a2e0bf w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x440bb9ad w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x6874a190 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xb9d55bd5 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xbae9da05 w1_remove_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport +EXPORT_SYMBOL fs/fscache/fscache 0x068b2447 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x09c09ff8 fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x0f3a7c93 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x0f5131b8 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x1932a1ce __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1cb457f5 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1d6c552c __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x212d1d8e fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x32c68e5c __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3a0177a9 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x455cfc09 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4d5a376e fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x4f61b38a fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x52047150 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x53ede305 __fscache_relinquish_volume +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 0x5b85ef6d fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x5c808040 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6e6ec775 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x709e02da fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x7b1b25da __SCT__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7c87e02d __SCT__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x8cab4b1a __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x90f3cb18 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x92720d1e __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xa8b6e9a1 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb11826ec fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb441f9db fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xbbc65852 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xc0ba20a8 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc5a37f68 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xd2f2adfa __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd595254c __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xde9de96b fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe2133e00 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe2cfccf6 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0xfeca2aa9 fscache_withdraw_cache +EXPORT_SYMBOL fs/netfs/netfs 0x44c59e25 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x4527e3ab netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x4c0fccea netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xa577515a netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0xc1ce7ab7 netfs_stats_show +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x181732c9 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x24ad8de5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x6e0ca0bf qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xd822d321 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xdd758f87 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xfd67fc65 qtree_release_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crc8 0x9c5d5b94 crc8 +EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x6c713da5 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x916491ac 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 0x0cb562e6 lc_put +EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed +EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get +EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del +EXPORT_SYMBOL lib/lru_cache 0x28ae9df5 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x6777831c lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create +EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find +EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xf0e20f9b lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xfba16232 lc_get_cumulative +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 0x3d016011 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6c8b53bd lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7bd5af40 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa79497b9 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xaad796da lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xff99b8a5 lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x3b98e375 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x67e4591c unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x3342632e register_snap_client +EXPORT_SYMBOL net/802/psnap 0xee452215 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x05105425 __SCK__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x0539869f p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x11248cdf __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x145f009e v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x1536b51b p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x15b9820f p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x24828777 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x26330b1b p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x27b7f8ca p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2ecef4e5 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x32a4d397 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x3a259920 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3e0d21bd do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0x3f52173f p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x479ba0ea p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x47e10d55 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x4b212d19 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x4c269195 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x50f05d19 __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x5984d725 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x5c382d5a p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x5d6f48d5 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x600f89f9 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x6100096c p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x68b7c530 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x69a00032 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6ed5a16d p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x75c5a2a4 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x779df3fc p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x7929d015 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x88156745 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x8c93a3f3 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x8d074cbc p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xa353b265 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xae921c47 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xb798a888 __SCT__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xbd349a38 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xc5d62b88 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xc948b8b7 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xca96595b p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xcfc8b21c p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd878646f p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xe2666dff p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe8b24181 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xecb5363a p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xf11e839b do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0xfd8299e3 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xff585089 p9_client_fcreate +EXPORT_SYMBOL net/appletalk/appletalk 0x641bbd01 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x78d72836 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xb20a0432 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xb668b17b alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x02533c1c atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x0e88e220 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x1d81ef7b atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x29df5c51 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x30da5967 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x37943c0e atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x3fcc4105 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x50726f6b deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x6524c911 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x8483b191 atm_charge +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa2450b36 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb8cf744a atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xc8cba2d8 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x02f4b1a3 ax25_send_frame +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 0x4c7ccc9d ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8ebbb355 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x90fcd8d4 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x934e7fec ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xb95187d7 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc945d02d ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd5619e46 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x071403a3 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x08e9fd8d bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a105266 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a784b47 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0daf2614 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10da9ce1 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x183b3b74 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ce6d3a2 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a382de7 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e61c64b bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x323fb9d6 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x35dee1d9 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x361621f9 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x367513e7 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38e728a4 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3bebb298 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x497b43fb hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a87150c hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4aebdf89 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4baf6071 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4cbe9881 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5015b73b bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5d5f50cd hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ec49518 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x74db0d9b bt_sock_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 0x7bd9427a bt_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7cb91791 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8628d521 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x88136542 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a06813c hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8af996d5 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e7acea5 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa27704e9 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4809f06 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8b01cec hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa6df827 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0a980fb hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb483fcdc hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5847f3b hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb962a018 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9a1274a l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9ee3b27 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbce5003a hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc290c2e2 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc57d60b7 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc644a4af l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6b6a121 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8427503 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbb3ea91 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd1e30f6 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff6ca553 bt_procfs_init +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x44eac47c ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5af91275 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8ae57723 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xaf0b22c0 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc559e177 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc55ceda4 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x013ac1b6 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3c76a9f9 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x3fd39bd5 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5d27bcec get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x5dec4b50 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x1449389a can_rx_unregister +EXPORT_SYMBOL net/can/can 0x14944c13 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x5510ebe2 can_proto_register +EXPORT_SYMBOL net/can/can 0x73d304b6 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x9ab4e379 can_send +EXPORT_SYMBOL net/can/can 0xb57d4320 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x033f82c4 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x07eadf4b ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x090accc8 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x09b182e4 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x0c1294f0 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x0c8dbe7c ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x0db7a10f osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x103357e9 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x15a472a9 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x16e40a2e ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1712a47c osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x17b1283a ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x1b3278ee ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x202193bf ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x22a7c58e ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x22be86b6 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x24d68a3d ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x2a8ca134 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x30e4fa6c ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3be268e3 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3e1bbc73 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x42b6b67a ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x476ba534 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x4800161f ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x4842e570 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x4add4e41 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4d2e15e0 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x4daf8d7f osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x4f328ed5 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x52d92d86 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x59d5317f ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5d2eae37 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x6250f732 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x66573a9a ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x6a19b0d4 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6c21b100 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x6e4d3b8d ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x7079a028 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x71f02af1 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x79c9e133 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x79f1dae0 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7b40264d __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7f19c576 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x7ffa156d ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x839c48a4 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x84b19791 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x88769c73 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x8a898c01 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x8e172f34 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x8fde8d75 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x90ecae96 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x92be4fd0 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x955ec288 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x958929da ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x9685d68e ceph_osdc_notify +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 0x9cb3b475 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x9ecb662c ceph_monc_get_version +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 0xa1e3e210 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa32e4a26 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xa52b879a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa7595d35 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xaa45dfc1 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xaea6a417 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xaf117833 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb4b25a18 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb63868e6 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb74cca68 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xb75db3b7 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xb99684a6 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xb9b7e61c ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc1040857 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc4911c08 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xc7af84dc ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xc8077d45 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcb7ca996 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xcbe4b928 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xcddf6e67 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xd0394a4b ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4e4f420 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd4fc7eb8 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xd54b710f osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xd761bff8 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd9628c9b ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xda2fc49a ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xdae9f348 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xdb6244ef ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xdca0b319 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe00d366c ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xe0fbf1b7 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xe13ffd34 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe3681f40 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xe3f75ca5 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xe42bba22 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xe436f13d ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xe439ccc8 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe5f862b4 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xecaf3955 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 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 0xf1528e55 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xfa9610ab osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xfe0a81ac ceph_compare_options +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1a550c32 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x391ebeab dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x1a635a69 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x9dd2618f is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1e99b948 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2f52803d wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x51d29863 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x52e15667 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x634227ec wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe5e180bf wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x31877e2b __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xdb3ec71a __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xa6ed1d55 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x621335a7 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x88f1d6a7 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x92a14071 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf6390f03 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbd3a819e arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe11b4843 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe4f37358 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe9cab3fc arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x41904e0f ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa2d31897 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdb5d966e ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfa936a5f ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x02724caf xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x1a66ff15 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xce6bdf46 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x14e28f74 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x16ded17f ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4b856071 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4e9482db ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5dd50aaa ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x92fd184d ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x949da3d3 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa5586486 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd7b481cc ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2aafd550 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4e643de8 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9a8be0d0 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xee47f553 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x2e48bdf7 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x3900dcb6 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc47f56f8 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf96b6d69 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x09cecaa8 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x0d8497e1 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x201301fc lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x27c5ec9b lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x46926fa4 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x884eec63 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xa62fbb07 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xfc64eca0 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5b0a1701 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x872865f0 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xc5945efd llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xc8955b6b llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xe09171b8 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xe9ccf06a llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xf1a93b95 llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x04a02717 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x05c847c5 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x08ad182b ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x0b4f665a ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x151cc02b __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1caafd9c ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x1e26a2de ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x21cea4cd ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x246f88ef ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x278860fd __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x27b6e9e5 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x28402990 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x294bf42d ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x2bcf2bfe ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x2c0ddfcb ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x2c8ffbe0 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x2e69ba0f ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x360a23c4 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x36c9d72f ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x383a5dee ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x3a9ac1b5 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3bba402d wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3c260bf9 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x3d51d498 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x3ddee0b6 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x3ec7c205 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x48197608 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4c02cc1e ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x4c0de6f3 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x4c97ac0b ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x4d3566ed ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x4e0cb51d ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4e9a1d27 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x52619dae ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x585bf4e7 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5daea78b ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x5fb3ec05 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x609af68e ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x625226e5 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x65e1df34 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x699895b8 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x6b2ecdd0 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x6f677e71 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x71928bf9 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x7284e1da ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x733aa672 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x74999fec ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x75096b8c ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x7651b999 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x7719a0b8 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x78f058ed ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x7b204743 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x7cffa01e ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x89fa2fe7 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x8a7beb12 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x8ad4635e ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x90955663 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x93dbbe27 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0x96417600 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x98b3dccc ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9a61c799 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x9b5ffb83 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9d5dae5f ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x9e386873 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa2d09b6b ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xa6c184db ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xa6d997e6 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xa91ded74 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xaec7d02c ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xaf0a8c88 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xafcdc087 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xb174c285 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xb36c7153 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xb5f0779a ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xb611869b ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb6a881a6 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb8aac00c __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb9b35517 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xbb04a6c6 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xbb84656c ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbdb2ea22 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc0c59bb3 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xc15f0e1d ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xc362e880 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xcfdf9a19 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xd6c470f5 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xd922aaaf ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xda2937f9 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xdc8aa780 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xded58a0a ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe06b6253 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xe2f89a0d ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xe66d384f ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xe6a0ba69 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe7715a99 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xeb435dc1 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xedc19417 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xf0c189e1 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xf0ea721b ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xf9c81a98 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf9cc9075 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac802154/mac802154 0x4050e1e3 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x4c92538e ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x5925053f ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x69c972e8 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x733501f5 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa528beb0 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xb8e5bc26 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0xc4cd56c0 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xc4e4eed6 ieee802154_unregister_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x04fd2275 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ae3c8c9 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2b158248 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3fafa623 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x45a798b6 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x51143568 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x588a10ea ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7c93703e register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7de2c355 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa2db855a register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa2dc1c36 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9742927 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd08ec3c6 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd670cce9 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf2e3574e ip_vs_conn_new +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 0xa104c7e0 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0edc7a37 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x98a2d20f __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xb654d7ab nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xbf56e7f7 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x18220e26 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x39c946ba xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x956e9391 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x961f742c 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 0xb5cb4449 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xb9279dad xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xc5be4f86 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xcaac8039 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd322e8e2 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd40d9967 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x2c6baeb8 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x410a0533 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x414ed68a nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x4d0c689d nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x5f019505 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x609415b5 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x697c65f5 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x6f45e2d4 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x757a24ff nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x95bbec04 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xac51ea65 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xac755910 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xc2fd0dd4 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xd3274253 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xd532245f nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xde360c7a nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xe62f5288 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xeb89d550 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xf21c1db4 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf41bdf24 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xf484cd97 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x0dadde27 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0deb587c nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x22d1b0d3 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x2673b049 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x2ad41891 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x2bdc1882 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x38b060a9 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3bb5661b nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x3d32d1cc nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x524ef818 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x55716fcf nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6199b8f3 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x61e96685 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x62dbb169 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x63b80ad4 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x64389e07 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x6fe9db3b nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7e7a55e3 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x7fce4042 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x8dff3d8c nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x8f423ded nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x98022547 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc1fa967f nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xc7a61c45 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xce462182 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xce8e9336 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xd0cda5c4 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xd6a1d24a nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xd9dc420f nci_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x0f38944b nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x1c68142c nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x1d5f803e nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x246fd23b nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x2d987164 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x664d13f1 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x6aa7dc1e nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x6dc20c32 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x755079de nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x78b6b7f5 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x7e28af3b nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x8516b937 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x86309a58 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x880dbab5 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x9386d2ed nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xa359a7da nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xade7c3f0 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xb5a4c689 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xbdb1e133 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xc1a201a2 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xc6e773d0 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xcf655d04 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xebd361dc nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xedfc899a nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xf211a6d6 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc_digital 0x1e063848 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2d9545b2 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x394fb607 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa982797d nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x204cd410 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x2565ad1d pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x4b695d86 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x576c02d5 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x8678e4fc pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x87b7e5e3 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xa2d556a1 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xd3bfbb05 phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0575ead2 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x07c71089 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x193a8389 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1ef0a7fe rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x22c604eb rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31454a04 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x551e53ed rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5fe9b336 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6b761097 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x825cd59f rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x87862e07 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa3f38576 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa49895eb key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa7ad9781 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd06dd9b7 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xda13ed9b rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xea68841e rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xeecba200 rxrpc_get_null_key +EXPORT_SYMBOL net/sctp/sctp 0x3faf0d84 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x1e612b77 __SCT__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x29ccd52f __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x34c79180 __traceiter_smc_rx_recvmsg +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 0x5778fd10 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x7bb7954a __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x7be64091 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x7de4cfd1 __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x81f1fa0f __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x87ccd0c7 __SCT__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x9f9ff556 __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xa88c35f9 __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xab6dc8ce __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xb297a471 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xd5d9e0f1 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8c0959aa gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd67051d1 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xed0f3478 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x6a2b2d94 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x781607ef svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x8dc4234d xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x10958d09 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x1cbcc0bd tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x48345b31 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x8ec7f89c tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x3cfdf8cc tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x01b74306 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x02a3d248 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x0428beb4 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x17072469 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19c8f990 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x1a5baf50 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1c2db8f8 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1dd61fe9 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x1f995888 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x23d79a8a cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x242f631c cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x2480c9c6 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x2665c5cb cfg80211_conn_failed +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 0x27629311 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x288e5b17 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x2ac7ec6e cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2af4df82 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x2b7a60da ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x300f1cde cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x317f8677 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x32f344a9 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x35d8aa2c wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x386cdd6c __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x40c31a06 cfg80211_nan_match +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 0x453b2f44 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x453f7acd cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x468981c8 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x46f37134 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x488bdef4 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4b474c89 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x4c4d4034 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4d82d6b5 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x51744ddf cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x543812a9 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x5748e627 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x589a5e2f regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x5a6edb5a cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x5b56bf84 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5caadb78 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x609bf712 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x60ce540e cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x63088fed wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x63932f21 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x69faaaa2 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x6a5a6aed cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6f942a0e cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x77ecd330 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f8aaeda cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x8351510a cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x856195e9 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x868da0d9 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x87e1a80c cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x87f9a1f9 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x89b31278 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x8ba65af2 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x926e7032 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x93bb74c3 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x945d6c14 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x97ccc547 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x9a102a1b wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x9c79eee4 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9d851060 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x9e0b9f52 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xa0590649 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xa1001965 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xa6c85271 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xa847a044 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa9ffd478 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xac02694b cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xaeafad14 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xaf0ef1fe cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xb5b9fdd9 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xb5de012f regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xb63da436 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xb920cbb7 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xc3ec89b3 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b77edf cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc80eebd8 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xc8b3a19d cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xcb3aa8c4 cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xd2369f31 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd4888854 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd708d4f8 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc6b30e1 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xde2fe1b6 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xdfd343d3 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe3c2bb1e cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xe4910659 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xe4939410 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xe76d5934 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xec69da9a cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xede6b1cf __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf23310f1 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf44c5ff2 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xf48e6669 cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf8dc6384 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xfb94dd41 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xfce3d364 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfee1136e cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xff3c0c4e cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/lib80211 0x18314fff lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x1aef2984 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x3b5f8e12 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x73558a2d lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x7857d4f2 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd99a643e lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x1f9654b7 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x89d8595e 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 0x231e7a04 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5f419e8a 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 0x74fdf100 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe6d91549 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 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 0x66093a6e snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x088884f9 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x097d6a7f snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x0b01c75b snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0x1286e27c snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x17b091fb snd_pci_quirk_lookup +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 0x1d6e2933 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x1d998640 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x213c17a2 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2acd3f88 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x2b698533 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x2e422341 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x2f05f54d snd_info_register +EXPORT_SYMBOL sound/core/snd 0x341c0e5c snd_card_register +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x34b11b87 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x357628d6 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3c4dafac snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x4251bd90 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x457af535 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4c94803b snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x52316676 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x55acbe20 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x60390792 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x6240986a snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x6d9a7fe0 snd_ctl_find_numid +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 0x7499bd5d _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x782437da snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x78656aea snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x787ad287 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x795e07c8 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x7ead83a0 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8f62e5da snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x8f9c022a snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x9c6ca9c8 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9e7f2d1e snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xa2151b6f snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb54573a5 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xb7d6808f snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xb90207e1 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xbf106be3 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc867e39c snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xc8c82ca0 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xc8d0462f snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xccbae949 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xce45e64c snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xdc438ea3 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xe4315190 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xf64a5dbc snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xf66176d8 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xf67e6706 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x01523c16 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0x681918a7 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0xb03a16c9 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02e15b97 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x06772920 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x09ba9f21 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x10740354 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x1251e70f snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x136d6b88 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1396b752 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x2093fd64 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x2095f6e1 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x260b12ab snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x284008ea snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x2e3bcc62 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x2e61363a snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x322282d0 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x33714c07 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x36ca7846 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x36e2f723 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x38dd0709 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3d53280b snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x3e1f7d4e snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3ea3cf66 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x48988a7e snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x4d774bcb snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x53bbb54d snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x5ba87b33 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x63d8ba10 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6759edc1 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x6864980d snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x68912a79 snd_pcm_hw_constraint_integer +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 0x6cd43c47 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x6e051e4f snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x77f01b36 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x7ba00a9c snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x81803d48 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x833afb08 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8ee47276 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8ffa685a snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x96037404 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x99fa6fdd snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x9b919fe9 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x9f1ff7fe snd_pcm_release_substream +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 0xb46aaad4 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xb7197c71 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xd48740db snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xd713932b snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe61969d7 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xec579c2d snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xf95bbb0c snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xf97e6b35 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x221d3e19 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x25a3d367 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x42121ce3 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4e09527d snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5972e6d6 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x66c6bdfd snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x79a3b4a0 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7a246c83 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x837aac50 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x93be6075 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x97473b7e snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa3026d1f snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa8b242bc snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb818a69c snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc58d5ac9 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd241950c snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf6a5c9ce snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfb705359 snd_rawmidi_drain_input +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 0x5b5a56f9 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-timer 0x039e444f snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x05c0f032 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x1ab9d893 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x2247dd29 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x5c3bc973 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x5f37f0a0 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x61605846 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x64978e62 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x705cb7cd snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xb952b3d4 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xbe96a80b snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xc028ea3f snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xca471a8d snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xccc7dc80 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xee588e87 snd_timer_stop +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x50c3909d 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 0x28228dcc snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x33d3d63a snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x36e4b4a0 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x58e64837 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6a4091a1 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x80cb2cab snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbd30c281 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8561c7f snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf007130b snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b6a5337 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 0x35facd26 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3c4558f9 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5c0620dc snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x643f574f snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x687a691b snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xae9e7eaf snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcea0be6b snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xeb74ad0f snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x020d7f56 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x02640322 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08018468 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c7a7245 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f4ef4f9 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x18cc6f6b amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1af6d839 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2bf32175 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cb9f656 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cc8cda1 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e7ffc03 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x38a2a301 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x55f2e3ba fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x577f90d6 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x75e1374a fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78b6f468 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x937401a5 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97386a77 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a23a987 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa01a23a6 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xacf70f08 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3011bb3 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4742392 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb6a5c273 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce996dff amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6dc507b fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf8c6d261 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf9f5a04f amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xffaa481a iso_packets_buffer_init +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x13443b35 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/hda/snd-intel-dspcfg 0xb7b836b3 intel_nhlt_ssp_mclk_mask +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5da756b7 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb8a14a29 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0eb43160 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x475989ae snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x68faa7b1 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7bc1408b snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7f44d3a7 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fde53bf snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9b4a21aa snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbb3cebd3 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0fea82f8 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1208f767 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8b47d3e6 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa1b248c0 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa1b7f3bb snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xeb9ec772 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x033cd1ce snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x043081ed snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5b562104 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe120faa3 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0bd8e30e snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x90f47d2b snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0e85f51d snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1d17c61a snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x73691907 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x76d349fc snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa8e73314 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf28b2ec5 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1b9e1ee3 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4aabfdf5 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x79fdc167 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa44a9cdc snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb1f404bc snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xedd948f8 snd_i2c_readbytes +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x18b28524 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x25168a2b snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x40ef87af snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x47659cc2 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9b168feb snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc10a9b76 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc482d0c8 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcb39ed74 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd7694efc snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfba2b3e1 snd_sbmixer_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x21379463 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x249fc064 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2c0c9a61 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x33883b6e snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a53710e snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x43c2ed20 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x47171e29 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x54dc91f2 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x682a8166 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x73304b11 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80f378a8 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8a8e5e7e snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa27f439c snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe499d6f6 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe52b9ea6 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xec0da83e snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfe754bf0 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xbdb4f409 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x08a4d266 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x232fca9f snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4de17d56 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x702f0ac6 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7396eb26 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9bd938d4 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb757c69f snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xda032ea8 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf60f82f4 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0560db54 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2bf6f1b8 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc8e017c7 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x11fb12bf oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1c59549d oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x272924b9 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x28c41183 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ac6b795 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3df90433 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x48978d48 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5ebc45e3 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6fd0bc84 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x823ea848 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x916a0653 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4ee060c oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xae630805 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc0651600 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc4b57649 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc605d03b oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcbc0f69f oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd4c67627 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeded34b2 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef09c883 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x162a10db snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1d23b9be snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbf7e0236 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe29d7297 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfdd9918d snd_trident_start_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x382a2464 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x387b2a72 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xdb5f4479 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x42d7171e adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x85ea6b1f wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x06e35c3f pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x942dd745 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x150ac26a tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x1589fc69 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x200325b0 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x92f76e5a aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xce3fc395 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x4c35471b aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xb2390f16 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x03e50ba5 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 0x4f28b683 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x6aad17f4 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x26b59b74 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x32812231 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x8ac4f1a6 fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/snd-soc-core 0x1ed19442 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b7aa34a snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d289ce0 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x102e83a3 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1115c051 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x12a71555 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13619560 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17422230 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x189ce2b2 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1bc64e22 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d4ea6fa snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1fc10ae0 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x25430362 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3df901b5 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x42e555c5 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4515b475 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x452fcb00 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4ae967fa sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d06ccbf snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e968b30 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x51b92c43 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x52aba245 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x56557a22 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x601ad390 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61435908 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x63adb34a snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x65116d71 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x74f21d05 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7fa4831b snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7fe8785e snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80eba107 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82a472c4 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82bcfa50 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x882d51e0 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8fd2518d snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8fe305fe snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9158d2e7 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x93aa8fcb sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x93c06659 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x95c60d1e snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96d06c9a snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a7c0833 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa609b24a snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xada98a64 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb04a0cc1 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2060eb4 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbbc1ac1e snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0f58725 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc122d89d sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd034a197 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd910e0cc snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb44761d sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd800f99 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed01ad69 sof_ipc4_set_pipeline_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef1bcf19 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf8a39936 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfebd1756 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff86ae5f sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x7a0f6340 snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x37c2ab39 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x53e53fc9 sound_class +EXPORT_SYMBOL sound/soundcore 0x5c3d65f0 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xb36ddbef register_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd205d34b register_sound_special_device +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1df35178 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2ad11e14 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4391f5cf 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 0x6abb9863 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x799d01b0 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf138bef7 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 0x5bd81624 __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 0x00027f61 input_set_keycode +EXPORT_SYMBOL vmlinux 0x00049d17 textsearch_register +EXPORT_SYMBOL vmlinux 0x0007d502 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x001bad58 phy_start +EXPORT_SYMBOL vmlinux 0x0089f29d flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x0098064f udp_seq_stop +EXPORT_SYMBOL vmlinux 0x009bdfb9 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x009f8fb5 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x00a11f57 dquot_destroy +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00af807d phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x00b08ecc filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x00b4d7c9 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00fb782d bio_endio +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x010afce9 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01486284 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01b6edf9 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x01bb58b2 kobject_add +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01daaedc mmc_remove_host +EXPORT_SYMBOL vmlinux 0x01e29f94 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x01e43c8b mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x01e61d6c __x86_indirect_call_thunk_r12 +EXPORT_SYMBOL vmlinux 0x01ef663e dquot_quota_on +EXPORT_SYMBOL vmlinux 0x01fcb110 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x0207dea4 netdev_notice +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02115787 get_watch_queue +EXPORT_SYMBOL vmlinux 0x0223dd0a sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x022628c8 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x02266b7e scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x0233110f __invalidate_device +EXPORT_SYMBOL vmlinux 0x0235c309 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x0242893c cfb_imageblit +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x026818b0 netdev_emerg +EXPORT_SYMBOL vmlinux 0x026c0cbd hmm_range_fault +EXPORT_SYMBOL vmlinux 0x026e9f85 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027cea7e sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02ab0f5b generic_file_mmap +EXPORT_SYMBOL vmlinux 0x02b06f17 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x02b86716 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x02bfb356 input_copy_abs +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02cb8ca0 sock_pfree +EXPORT_SYMBOL vmlinux 0x02cfba0e bioset_exit +EXPORT_SYMBOL vmlinux 0x02d5bc4a begin_new_exec +EXPORT_SYMBOL vmlinux 0x02d81486 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x02ddd54d udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x02ec964b irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x02f6ab00 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x03197e29 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x033404c3 generic_fillattr +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03362766 dev_addr_add +EXPORT_SYMBOL vmlinux 0x034b45b4 vlan_dev_real_dev +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 0x036cce78 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x03771a3f acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03aa462e redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x03b8a1ac nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x03bd3411 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03bfe1f7 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x03c36a3e vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x03d539b3 kernel_write +EXPORT_SYMBOL vmlinux 0x03d955bc single_release +EXPORT_SYMBOL vmlinux 0x03ec3c73 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 +EXPORT_SYMBOL vmlinux 0x04643625 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x04678889 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x046d3028 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x04719cbe sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047dcf63 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x048f1e6c import_iovec +EXPORT_SYMBOL vmlinux 0x049277c5 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x04c33c05 fiemap_prep +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x04d84ec3 __alloc_skb +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051c9cad netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x051fb42f dm_unregister_target +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053671d4 amd_iommu_snp_en +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055cc07c __ip_dev_find +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x05703a4a cfb_copyarea +EXPORT_SYMBOL vmlinux 0x05759568 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x05781ea3 __free_pages +EXPORT_SYMBOL vmlinux 0x057dda59 ipv4_specific +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05c2a0a4 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x05c2b455 tcp_poll +EXPORT_SYMBOL vmlinux 0x05dad101 seq_lseek +EXPORT_SYMBOL vmlinux 0x05dc06fc jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x05f20b7b nla_reserve +EXPORT_SYMBOL vmlinux 0x0603cc80 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x06094c60 build_skb_around +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0624f3cd key_link +EXPORT_SYMBOL vmlinux 0x062da189 pci_disable_device +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x066eab0f vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x066fb1ab __neigh_event_send +EXPORT_SYMBOL vmlinux 0x069b6105 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06e1aff9 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x071b89d6 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073a6c97 udp_read_skb +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x0754f869 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a9b0f7 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07f55385 agp_backend_release +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f86dc9 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0814e5a9 read_cache_page +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x081fed9d pps_register_source +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x0839e6a3 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0845a628 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x0851d3c4 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x085d4a7a inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x08a1fa69 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x08ae9978 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x08cfbd2d flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x08df2ceb skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x09022814 nf_reinject +EXPORT_SYMBOL vmlinux 0x090c4a5d mmc_register_driver +EXPORT_SYMBOL vmlinux 0x090f4005 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x09201afb alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x0922f44b genl_unregister_family +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x09381ea0 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x093c566b find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x0966e107 __x86_indirect_call_thunk_r9 +EXPORT_SYMBOL vmlinux 0x09691c7b mpage_read_folio +EXPORT_SYMBOL vmlinux 0x0974259b tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x097afe43 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x0981b1aa uart_resume_port +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09930987 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09bbf33f bio_chain +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e11b8e vme_register_driver +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a0f07b0 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x0a17a7b4 param_get_long +EXPORT_SYMBOL vmlinux 0x0a19b956 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a44c9aa blk_finish_plug +EXPORT_SYMBOL vmlinux 0x0a4f55f0 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x0a5ef349 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0a5f255b t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x0a7341a7 napi_build_skb +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a810881 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a875aff backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x0a95e9d1 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x0a97b768 sock_edemux +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa3679c blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ab5cf8b sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x0abe2865 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x0ac614ca dst_discard_out +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad6f745 block_write_end +EXPORT_SYMBOL vmlinux 0x0b081902 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x0b0b839e netdev_update_features +EXPORT_SYMBOL vmlinux 0x0b0e28b3 udp_disconnect +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 0x0b2f9fe5 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x0b43c1b2 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x0b49d705 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x0b633d44 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff +EXPORT_SYMBOL vmlinux 0x0b678477 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x0b6a2aa9 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7a8468 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0b9d61be vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x0b9f515e netdev_alert +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba0eb72 skb_eth_push +EXPORT_SYMBOL vmlinux 0x0ba753de ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x0bb0c90e get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bca973e __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0bce7591 task_work_add +EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x0bea6363 cdev_add +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c039147 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x0c1996f6 tty_port_put +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c3ba0c1 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x0c4b60c1 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x0c4d1de6 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c68b548 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c6c0325 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x0c6dc28f unregister_qdisc +EXPORT_SYMBOL vmlinux 0x0c73548c jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x0ca46af9 genphy_update_link +EXPORT_SYMBOL vmlinux 0x0ca775f0 pci_find_bus +EXPORT_SYMBOL vmlinux 0x0ca96f49 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x0cb4a27d bpf_map_get +EXPORT_SYMBOL vmlinux 0x0cbfdafc dma_async_device_register +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cd23705 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdaa25d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cf4082b cdrom_open +EXPORT_SYMBOL vmlinux 0x0cfa1d35 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x0d0082af phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d2bc9f3 d_add +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d4aa22c inet_stream_ops +EXPORT_SYMBOL vmlinux 0x0d4d862e security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5a3b56 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x0d75aa6c fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x0d7787b3 tcp_connect +EXPORT_SYMBOL vmlinux 0x0d889313 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x0d969f12 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x0d99675a set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0d9f62ec thaw_super +EXPORT_SYMBOL vmlinux 0x0da1bfb6 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x0da2a9a3 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x0dc830a1 dquot_acquire +EXPORT_SYMBOL vmlinux 0x0dd396f5 blk_start_plug +EXPORT_SYMBOL vmlinux 0x0df9ac91 finalize_exec +EXPORT_SYMBOL vmlinux 0x0e0ab31d release_sock +EXPORT_SYMBOL vmlinux 0x0e0f7a50 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1f45df param_set_bool +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e30fba0 retire_super +EXPORT_SYMBOL vmlinux 0x0e31dcb4 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x0e385e10 param_ops_short +EXPORT_SYMBOL vmlinux 0x0e3e72fc sock_set_priority +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e54c434 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x0e639612 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x0e71d1c8 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x0e74d426 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x0e94f6f4 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x0ea331ae ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ebe9331 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec8e7be pci_enable_msi +EXPORT_SYMBOL vmlinux 0x0f06248c ether_setup +EXPORT_SYMBOL vmlinux 0x0f06f51b dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f3728f9 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f3bf397 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x0f3de8c3 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x0f41c58e kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x0f44f2fe vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x0f501ad5 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f69a241 set_pages_wb +EXPORT_SYMBOL vmlinux 0x0f83d83e jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f94657d devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x0fa26815 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb23bb5 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fcbb000 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x0fd4d1f0 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fda88c6 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x0fdd5eb7 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x0fe448b1 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x0ff58d1b folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x1009f2cd rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x101d3124 inet6_offloads +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x103c6258 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x104dbbfa call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x104f3a31 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x1060c039 dquot_initialize +EXPORT_SYMBOL vmlinux 0x10637030 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106a8bf1 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107dd046 __x86_indirect_call_thunk_r8 +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108ace25 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x108d736d sock_wake_async +EXPORT_SYMBOL vmlinux 0x10cfffa1 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10eac21c dev_lstats_read +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1109e842 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x1118a108 vfs_llseek +EXPORT_SYMBOL vmlinux 0x1151253b jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x11520f49 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x119627f1 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x11b60266 free_buffer_head +EXPORT_SYMBOL vmlinux 0x11b86726 set_posix_acl +EXPORT_SYMBOL vmlinux 0x11bda55b tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x11d62d64 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x11d7fd3e vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x11d9e5fe blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x11de3afa dst_release_immediate +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11f904f7 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x1214d059 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x121f563d xp_free +EXPORT_SYMBOL vmlinux 0x12265225 d_splice_alias +EXPORT_SYMBOL vmlinux 0x122c3a7e _printk +EXPORT_SYMBOL vmlinux 0x122c635a ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1251af4f xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x127bc107 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down +EXPORT_SYMBOL vmlinux 0x127e1872 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x128fe88a tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x12a954b7 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x12ac38bf udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fe9b0a netif_set_tso_max_size +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 0x1333b508 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x134c6280 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x1357bf17 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x135ff376 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x13603ff6 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x136f1b4a rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x13907e3e __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x139bd933 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13bd817a bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d4146a pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x13ef15fe mdio_bus_type +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x141e29b8 dget_parent +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x14606883 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x147fa5cb proc_set_user +EXPORT_SYMBOL vmlinux 0x1485d0dc sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x148735bc pcpu_hot +EXPORT_SYMBOL vmlinux 0x1496cb83 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x149812fa devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x14a1a145 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg +EXPORT_SYMBOL vmlinux 0x14af38a8 input_match_device_id +EXPORT_SYMBOL vmlinux 0x14c4bbf1 flush_signals +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14ce4e8f xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock +EXPORT_SYMBOL vmlinux 0x14f1989c inet_recvmsg +EXPORT_SYMBOL vmlinux 0x14fcd610 inet_put_port +EXPORT_SYMBOL vmlinux 0x14ff20ae register_cdrom +EXPORT_SYMBOL vmlinux 0x1511a15a input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152c9d15 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x1532ba51 vfs_get_link +EXPORT_SYMBOL vmlinux 0x1543ab2b qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x154a9f69 make_kuid +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15679250 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x156efd23 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x157c35c1 module_layout +EXPORT_SYMBOL vmlinux 0x158c56c2 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x15aa6661 pci_clear_master +EXPORT_SYMBOL vmlinux 0x15b68fe2 __dev_kfree_skb_irq +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 0x15cec980 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x15e0e22a sock_set_mark +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x16060da6 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x161ffde9 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x164a580f security_path_unlink +EXPORT_SYMBOL vmlinux 0x165c42ae xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x16759dac tcp_child_process +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x167ee43c jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x16825fb2 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x16966ea2 netlink_ack +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x16b1461e ihold +EXPORT_SYMBOL vmlinux 0x16b24c7d ___pskb_trim +EXPORT_SYMBOL vmlinux 0x16c7b504 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x16cca194 bio_free_pages +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16d2551d __check_sticky +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e42160 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x170659d2 inet_offloads +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x173c2631 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x1756ecc9 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x1758932f kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x176d210a jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x17837441 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x1798448b discard_new_inode +EXPORT_SYMBOL vmlinux 0x17991e0d jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x17a112b6 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x17a6816e sk_dst_check +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17d28dd8 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x17d9a1ac agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x17e09d45 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x17eb7df1 inc_nlink +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f52c09 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x17fd7900 dentry_create +EXPORT_SYMBOL vmlinux 0x181285fe scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x181460ff tty_vhangup +EXPORT_SYMBOL vmlinux 0x181eadca skb_copy +EXPORT_SYMBOL vmlinux 0x1833c9eb tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1857f8db security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x185bc625 xattr_full_name +EXPORT_SYMBOL vmlinux 0x185c0d71 netif_skb_features +EXPORT_SYMBOL vmlinux 0x185cca48 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x185d46d5 clear_user_rep_good +EXPORT_SYMBOL vmlinux 0x1868a4b5 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18a2d74e inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x18aa8933 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18d77398 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x18e43a87 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18fd2c2d __x86_indirect_call_thunk_r13 +EXPORT_SYMBOL vmlinux 0x1907adec configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x19383ba0 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x1945741d inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x1959b2bb __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x197b40bb dev_set_alias +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x199df100 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a8ec90 proc_create_data +EXPORT_SYMBOL vmlinux 0x19b12301 filemap_get_folios +EXPORT_SYMBOL vmlinux 0x19b5be4b fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c62e59 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x19e21dc7 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x19e721d8 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x19f79503 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1a0a37ea set_create_files_as +EXPORT_SYMBOL vmlinux 0x1a1bb41e fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x1a20eeb8 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x1a223ecc skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x1a2ffedd ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4a7de2 tcp_close +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a6c24bb pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x1a75125c unlock_buffer +EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0x1a8f1516 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac85e7c pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x1ad69a5a mmc_can_discard +EXPORT_SYMBOL vmlinux 0x1addda23 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x1ade48d9 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x1affa334 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x1b5f8ccb ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b819392 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x1b9ad92e rtc_add_group +EXPORT_SYMBOL vmlinux 0x1b9b5ccb i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x1b9ff3e4 finish_no_open +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bcb4808 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x1bcca9bb vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0x1bd2ba83 tty_name +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bd76832 neigh_table_init +EXPORT_SYMBOL vmlinux 0x1c026971 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x1c0bf7d9 inet_add_offload +EXPORT_SYMBOL vmlinux 0x1c0ea5c6 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x1c1b07b4 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x1c1f795c i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x1c2e4983 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x1c4a664a dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x1c5007e6 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x1c554ba7 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c6788b4 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x1c73dd4c user_path_create +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cd5b67f free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdc5252 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d09992e eisa_bus_type +EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d1d9056 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d2b7e08 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x1d3af8e6 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x1d3dc516 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d41f874 input_event +EXPORT_SYMBOL vmlinux 0x1d472610 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x1d5e30a2 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x1d68a817 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x1d73f090 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1da79ccd __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dc14b94 freeze_bdev +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de30ee5 param_set_ullong +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de89af8 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x1dea2d5c tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x1defa21c twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x1df0e0fb __bh_read +EXPORT_SYMBOL vmlinux 0x1df40d9c dump_skip +EXPORT_SYMBOL vmlinux 0x1dfa3752 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x1dfbe7ce param_set_uint +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e0e84a0 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x1e24f464 __register_binfmt +EXPORT_SYMBOL vmlinux 0x1e635ef7 km_query +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e828baf icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x1e9a8bad __block_write_full_page +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1e9fefe8 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x1eac56fc inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ebd581d udp_seq_next +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1eefc646 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x1f095001 ipv4_dst_check +EXPORT_SYMBOL vmlinux 0x1f1821ae efi +EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string +EXPORT_SYMBOL vmlinux 0x1f1ed762 file_update_time +EXPORT_SYMBOL vmlinux 0x1f3a5bb1 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f7a5d22 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x1f80a45e PageMovable +EXPORT_SYMBOL vmlinux 0x1f862da1 tty_register_device +EXPORT_SYMBOL vmlinux 0x1fb578d7 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x1fbac6a6 sock_i_ino +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcef0d8 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fea670b mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x1fee5c26 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20026b5e new_inode +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201ae277 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x20286b78 dev_get_by_index_rcu +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 0x206f812c param_ops_byte +EXPORT_SYMBOL vmlinux 0x208bd2f9 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ab1e38 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x20b9be9b __netif_napi_del +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 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20f77ad3 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x21085e2c tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x210de5f1 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x212bd071 param_get_bool +EXPORT_SYMBOL vmlinux 0x212e8839 md_update_sb +EXPORT_SYMBOL vmlinux 0x212f1fc9 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x21319ecf d_instantiate_new +EXPORT_SYMBOL vmlinux 0x2135049d disk_stack_limits +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21428252 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x2150b9a1 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x2172f60b tcp_release_cb +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x2178463c nf_log_register +EXPORT_SYMBOL vmlinux 0x21854fa0 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21a127d9 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x21af757e neigh_destroy +EXPORT_SYMBOL vmlinux 0x21afb88f put_fs_context +EXPORT_SYMBOL vmlinux 0x21b09c32 ppp_input +EXPORT_SYMBOL vmlinux 0x21b89d36 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21d5c62c jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21fdf43e qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x220efa57 __do_once_done +EXPORT_SYMBOL vmlinux 0x22271c75 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x22622435 phy_attached_print +EXPORT_SYMBOL vmlinux 0x2267cccf from_kuid_munged +EXPORT_SYMBOL vmlinux 0x22771cae generic_ro_fops +EXPORT_SYMBOL vmlinux 0x2295b9cd sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x229a58d5 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x22a1422d percpu_counter_sum_all +EXPORT_SYMBOL vmlinux 0x22a504b9 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x22ab0aaf __phy_resume +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22be9a2f proc_symlink +EXPORT_SYMBOL vmlinux 0x22c87a02 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x22cb8775 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x22cbfc5e end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x22f70fd3 fb_find_mode +EXPORT_SYMBOL vmlinux 0x22fe8848 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x22feb142 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x231bee9e sock_create_lite +EXPORT_SYMBOL vmlinux 0x232a26f6 sock_rfree +EXPORT_SYMBOL vmlinux 0x232bf8a5 input_inject_event +EXPORT_SYMBOL vmlinux 0x2347d059 param_set_bint +EXPORT_SYMBOL vmlinux 0x23571191 __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x23650457 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x2375b26e vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x237f011a pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x237f99ca __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x23a72f6a pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bcfb26 sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x23c874b7 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23cf7f96 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23ec2e6c xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x23ec6df9 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24052620 make_bad_inode +EXPORT_SYMBOL vmlinux 0x24060546 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x24081254 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x2417717d pci_get_class +EXPORT_SYMBOL vmlinux 0x2427c983 set_binfmt +EXPORT_SYMBOL vmlinux 0x2430e271 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x2433b782 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x2448502f ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x2458ecf0 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24689224 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x246f07b1 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x24722401 udp_ioctl +EXPORT_SYMBOL vmlinux 0x24800a13 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x248411ff rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x2488bb49 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x2489f9f8 scsi_print_command +EXPORT_SYMBOL vmlinux 0x248a897b vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x24922c03 dev_activate +EXPORT_SYMBOL vmlinux 0x24948fab jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x24a11e17 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x24c4c7d0 pci_get_slot +EXPORT_SYMBOL vmlinux 0x24c7ff67 override_creds +EXPORT_SYMBOL vmlinux 0x24cd92b5 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x24cde50a mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x24fc4fad tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x25017606 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x251916b9 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x2522f77e vfs_statfs +EXPORT_SYMBOL vmlinux 0x252b4449 param_get_string +EXPORT_SYMBOL vmlinux 0x2566204b security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x256f5a79 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258b9e39 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25900972 configfs_register_group +EXPORT_SYMBOL vmlinux 0x259347a8 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25de0c7b xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x25dff9f7 sock_no_connect +EXPORT_SYMBOL vmlinux 0x25e55bca remove_arg_zero +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25eb7888 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x25fe7f09 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x260863dc memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x2640c021 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x264be41d md_done_sync +EXPORT_SYMBOL vmlinux 0x264dad15 mr_table_dump +EXPORT_SYMBOL vmlinux 0x2658a7fb generic_write_checks +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26953fa0 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x26cf7560 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x26d83cc6 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26eaa09f tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x270829bf ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272a46f3 set_page_writeback +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273a5f44 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x27549024 devm_clk_get +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x279368ca truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c0778b phy_detach +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x2817bbac pnp_device_detach +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2829dee0 pipe_lock +EXPORT_SYMBOL vmlinux 0x2848ba89 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0x28527542 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x2869ab8a mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x289771bb commit_creds +EXPORT_SYMBOL vmlinux 0x28b7801a nf_log_packet +EXPORT_SYMBOL vmlinux 0x28bba68e pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28e1f675 tty_unlock +EXPORT_SYMBOL vmlinux 0x28e815b5 param_get_hexint +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x28f9b704 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x2914e086 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x29194dd1 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x291d0032 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x29263126 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0x294620d5 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x294d01c1 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x294dd03a iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x2953bd5f phy_device_free +EXPORT_SYMBOL vmlinux 0x295d05fb __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x295fde05 kset_register +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x29687c63 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x296ce74a tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x296e459d iterate_fd +EXPORT_SYMBOL vmlinux 0x297e3630 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x2989487b nla_append +EXPORT_SYMBOL vmlinux 0x2989a5eb vme_dma_request +EXPORT_SYMBOL vmlinux 0x299b6752 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x299fd67a unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x29a14b37 dev_change_flags +EXPORT_SYMBOL vmlinux 0x29a2b72d netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x29aca789 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29c666d5 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x29dce0df debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e767ad kthread_stop +EXPORT_SYMBOL vmlinux 0x2a17c3e1 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a372f5f blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x2a5cdbd2 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x2a6877ff tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable +EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x2a730760 fqdir_init +EXPORT_SYMBOL vmlinux 0x2a857a13 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x2a85b203 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits +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 0x2aa97665 eth_header +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab794a6 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x2aca8a81 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x2acb4eaf __x86_indirect_call_thunk_r11 +EXPORT_SYMBOL vmlinux 0x2ae12eb4 pci_release_region +EXPORT_SYMBOL vmlinux 0x2af2bd10 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x2af9ef91 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x2b014848 vfs_rename +EXPORT_SYMBOL vmlinux 0x2b0a26c5 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x2b12f695 bmap +EXPORT_SYMBOL vmlinux 0x2b245a44 mmc_get_card +EXPORT_SYMBOL vmlinux 0x2b25078f truncate_setsize +EXPORT_SYMBOL vmlinux 0x2b2f0c19 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x2b3835ac config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x2b575327 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b6e0aec pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x2b73175c dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x2b7d4438 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x2b90e059 put_watch_queue +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bae204e mt_find +EXPORT_SYMBOL vmlinux 0x2bb41a1f finish_open +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bb7c05d __x86_indirect_call_thunk_rsi +EXPORT_SYMBOL vmlinux 0x2bc7f2b1 from_kuid +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2be3ce2c vga_get +EXPORT_SYMBOL vmlinux 0x2be3d10d dev_disable_lro +EXPORT_SYMBOL vmlinux 0x2be88c91 dm_register_target +EXPORT_SYMBOL vmlinux 0x2c0b9b18 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x2c0c45c3 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c3560da fwnode_iomap +EXPORT_SYMBOL vmlinux 0x2c3d164c __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c6af180 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c7b001e get_thermal_instance +EXPORT_SYMBOL vmlinux 0x2c7b7da8 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c8bfe8f param_set_short +EXPORT_SYMBOL vmlinux 0x2c9853bc mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2cb70f1a sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x2cbcef39 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x2cc091e7 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd60189 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2ce2ef6a phy_suspend +EXPORT_SYMBOL vmlinux 0x2cec437f tcp_ioctl +EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table +EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x2cffd712 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d160fff bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x2d2e44ae xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d370883 tcp_mmap +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3acaf4 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x2d413c86 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x2d46815b mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d4fefa8 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x2d54a02b seq_dentry +EXPORT_SYMBOL vmlinux 0x2d7b59de mdiobus_write +EXPORT_SYMBOL vmlinux 0x2d7de8b3 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x2d7f0492 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x2d801cc3 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2dafb4f7 dm_get_device +EXPORT_SYMBOL vmlinux 0x2dc7f932 dm_table_event +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 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 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e7e2ab0 file_open_root +EXPORT_SYMBOL vmlinux 0x2e93370f tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x2e96dbfd mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x2e9a0ef2 sock_no_accept +EXPORT_SYMBOL vmlinux 0x2e9fb0ee copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x2eada295 deactivate_super +EXPORT_SYMBOL vmlinux 0x2ebcd1c5 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x2ebcdedd tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0abe7b node_data +EXPORT_SYMBOL vmlinux 0x2f0d78c8 lock_rename +EXPORT_SYMBOL vmlinux 0x2f0f34d2 inode_set_flags +EXPORT_SYMBOL vmlinux 0x2f1c1db1 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3c3e64 single_open_size +EXPORT_SYMBOL vmlinux 0x2f4eab38 dma_pool_create +EXPORT_SYMBOL vmlinux 0x2f5aa4f0 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f8b2334 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x2f919cda fb_blank +EXPORT_SYMBOL vmlinux 0x2fa25090 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x2faa000e sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x2fae7970 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x2fc8e227 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x2fca190e timestamp_truncate +EXPORT_SYMBOL vmlinux 0x2fcaf42b qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x2fcf0486 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x2fd747df pci_free_irq +EXPORT_SYMBOL vmlinux 0x2fdb6e43 sk_stream_error +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe2a6c2 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x2ff3ec5c netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x2ff6de82 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x2ff799c6 sock_i_uid +EXPORT_SYMBOL vmlinux 0x2ff934d8 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x2ff9713a dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x3000b80b input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x300eeb5e sk_net_capable +EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x303bfc01 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x304d22e5 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0x3072219f dcb_setapp +EXPORT_SYMBOL vmlinux 0x3075428c pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x308dacab netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x308fc966 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x3097aefa devm_ioremap +EXPORT_SYMBOL vmlinux 0x30a772da devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30ada072 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x30ae5c77 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x30c915c2 thaw_bdev +EXPORT_SYMBOL vmlinux 0x30e905e6 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x30e9973d scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x3105e838 key_unlink +EXPORT_SYMBOL vmlinux 0x3108583f noop_qdisc +EXPORT_SYMBOL vmlinux 0x310a5fe3 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x31205956 param_ops_string +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312b329e dquot_file_open +EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info +EXPORT_SYMBOL vmlinux 0x31366bc9 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x3156eb34 is_bad_inode +EXPORT_SYMBOL vmlinux 0x3188c401 genlmsg_put +EXPORT_SYMBOL vmlinux 0x319439de send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31b2dec9 dev_deactivate +EXPORT_SYMBOL vmlinux 0x31b41671 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x31c4b590 __napi_schedule +EXPORT_SYMBOL vmlinux 0x31cb1ee6 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x31d3fd3c skb_seq_read +EXPORT_SYMBOL vmlinux 0x31fa5981 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x320fd3e8 key_type_keyring +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x32172adb generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x321ed305 param_ops_bint +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x322c9d80 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x32505c5b ip_options_compile +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop +EXPORT_SYMBOL vmlinux 0x326f8e5c gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32a8789d path_has_submounts +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d0c268 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x32d86fe8 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x32de75a8 __x86_indirect_call_thunk_rdi +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load +EXPORT_SYMBOL vmlinux 0x32ead707 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x330885a0 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x3327b9aa ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x33286ec8 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x33344926 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x33600ec0 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x337959df tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x33b3e34a inode_permission +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33b8cf4d dma_map_resource +EXPORT_SYMBOL vmlinux 0x33c27ea2 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x33d07fee __x86_indirect_call_thunk_r10 +EXPORT_SYMBOL vmlinux 0x33e662ed tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f6e884 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x33fab0e4 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x33fc8c8c netif_device_attach +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 0x34066a41 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x340b118b softnet_data +EXPORT_SYMBOL vmlinux 0x340dd2f2 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x340fd120 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x341d97ad param_ops_ushort +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x342acbaf agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x342b2529 inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x343c86eb put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x34430807 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x34506019 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x34625fb4 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x348bc590 lookup_one +EXPORT_SYMBOL vmlinux 0x348ce533 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34c7c568 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f4c83d __scm_destroy +EXPORT_SYMBOL vmlinux 0x34f626a0 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x350f91b7 seq_path +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351d2217 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x351fb691 mmc_free_host +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x35448059 set_disk_ro +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x354c9cbe genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x355a684e bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x3563fd26 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356e1f57 d_add_ci +EXPORT_SYMBOL vmlinux 0x357964dd generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x35839743 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x35a3f898 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x35a44e4e compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x35a55de7 inet_addr_type +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35becbf3 register_shrinker +EXPORT_SYMBOL vmlinux 0x35c51022 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x35dcd405 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x35e0d47c seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x35eaf753 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x35ebf998 seq_read_iter +EXPORT_SYMBOL vmlinux 0x35ecc843 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x361a1ffd neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x3620ea11 d_invalidate +EXPORT_SYMBOL vmlinux 0x36220a2a phy_init_hw +EXPORT_SYMBOL vmlinux 0x363ca08f inode_init_always +EXPORT_SYMBOL vmlinux 0x36428e00 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x3649b98d vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x364f818b reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x365f9751 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x36700968 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3688d8f1 security_path_mknod +EXPORT_SYMBOL vmlinux 0x368a0869 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x368ede3a proto_unregister +EXPORT_SYMBOL vmlinux 0x36950675 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x369f2bc8 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x36a84a4d flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36b8b200 seq_printf +EXPORT_SYMBOL vmlinux 0x36c390a9 devm_clk_put +EXPORT_SYMBOL vmlinux 0x36d5b7f4 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x36e3f1c2 dcache_readdir +EXPORT_SYMBOL vmlinux 0x3703c071 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x37076c70 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x3711ef1b locks_copy_lock +EXPORT_SYMBOL vmlinux 0x3715f8c8 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x3725f557 phy_write_paged +EXPORT_SYMBOL vmlinux 0x372b4217 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x373051c7 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37459af2 pci_find_capability +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x3759e4ba inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x376cbde3 filemap_flush +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x378373a1 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x378cc078 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x37aaf457 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e7fb68 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x3804b988 do_SAK +EXPORT_SYMBOL vmlinux 0x3806773b generic_block_bmap +EXPORT_SYMBOL vmlinux 0x3806e0b9 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3836e24d proc_remove +EXPORT_SYMBOL vmlinux 0x384472d3 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x384a6cdb clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x384e4f28 udp_poll +EXPORT_SYMBOL vmlinux 0x384e9c7f ps2_end_command +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x38586dd4 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x386c2e53 param_set_ulong +EXPORT_SYMBOL vmlinux 0x387385ca unix_detach_fds +EXPORT_SYMBOL vmlinux 0x3877ce80 task_lookup_next_fd_rcu +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 0x3892af58 iov_iter_init +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x38a32c63 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x38a65026 blk_put_queue +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b3f33b fb_class +EXPORT_SYMBOL vmlinux 0x38c305c1 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x39121e1f request_firmware +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x3936426b sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393ca1ea rproc_add +EXPORT_SYMBOL vmlinux 0x393f1429 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x39404a93 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394a6f2b skb_store_bits +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x395a83ce flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x396cc224 dump_skip_to +EXPORT_SYMBOL vmlinux 0x3975372b nd_dax_probe +EXPORT_SYMBOL vmlinux 0x39835486 skb_expand_head +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x39b14593 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x39bf6c48 elv_rb_del +EXPORT_SYMBOL vmlinux 0x39cac601 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39defabe security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39e467de inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x39e72378 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x3a1a78f2 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x3a1aa07c icmp6_send +EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x3a49400d pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a549195 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x3a5e8e0e d_drop +EXPORT_SYMBOL vmlinux 0x3a79f3e3 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x3a9eb4bc mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x3aabae7e pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x3aafc43e vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x3ab18a3b nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock +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 0x3ae0bdde dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3aebe77a generic_file_open +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b0e7bb9 __scsi_execute +EXPORT_SYMBOL vmlinux 0x3b0f1588 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b28f7af sock_setsockopt +EXPORT_SYMBOL vmlinux 0x3b2b063f xp_can_alloc +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b39d229 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b72f08d preempt_schedule_notrace_thunk +EXPORT_SYMBOL vmlinux 0x3b7653db sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x3b7ba7e8 mpage_readahead +EXPORT_SYMBOL vmlinux 0x3b7c0c1d request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b966997 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x3bcc99b8 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x3c161e79 setup_new_exec +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c248363 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c4f46ab neigh_for_each +EXPORT_SYMBOL vmlinux 0x3c5d01e3 param_set_byte +EXPORT_SYMBOL vmlinux 0x3ca2f57a dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x3ca71127 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x3ca8ec66 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cb5ed38 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3cc48eec linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x3cd7e8d4 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x3cd84a8d scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x3cdbc635 seq_read +EXPORT_SYMBOL vmlinux 0x3cdc9af6 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce69861 phy_resume +EXPORT_SYMBOL vmlinux 0x3cf2dd98 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x3cff9112 block_dirty_folio +EXPORT_SYMBOL vmlinux 0x3d002cb9 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d0fea46 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x3d17d7b0 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d2d177f tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x3d311084 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x3d340f09 pci_restore_state +EXPORT_SYMBOL vmlinux 0x3d43ac20 add_to_pipe +EXPORT_SYMBOL vmlinux 0x3d44be64 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x3d4bcb5c dev_alloc_name +EXPORT_SYMBOL vmlinux 0x3d7d060f nd_device_register +EXPORT_SYMBOL vmlinux 0x3d98ecc2 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x3d9bcf66 simple_get_link +EXPORT_SYMBOL vmlinux 0x3d9e2153 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcfd7a7 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x3dd47880 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3df1fcaf vfs_symlink +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e087d42 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x3e32c477 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3e3357c2 dev_mc_del +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e3c2fe6 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x3e649670 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x3e6dffc3 napi_enable +EXPORT_SYMBOL vmlinux 0x3e7159ab default_llseek +EXPORT_SYMBOL vmlinux 0x3e8eaec2 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x3eac5b97 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit +EXPORT_SYMBOL vmlinux 0x3ed4979d fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x3edf54b9 drop_nlink +EXPORT_SYMBOL vmlinux 0x3ef11a87 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x3ef60bb3 inet_listen +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0d046f __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f44354c flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4936cc vga_con +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f80e4fc xp_dma_map +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f9a804e ps2_command +EXPORT_SYMBOL vmlinux 0x3f9c072f blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x3faa73c5 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x3faae64c insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x3fb0ef9a xsk_tx_release +EXPORT_SYMBOL vmlinux 0x3fbbdd5f blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc02d5b elv_rb_find +EXPORT_SYMBOL vmlinux 0x3fc19376 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x3fc3f375 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x3fcbaec5 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fdb0454 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fee491e alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x3ff7c47b inet_sendmsg +EXPORT_SYMBOL vmlinux 0x3ffb2268 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x400da5ef vfs_create_mount +EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x4034b1aa netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x405b3102 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x405ee916 param_set_copystring +EXPORT_SYMBOL vmlinux 0x408040f7 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40baa389 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x40c143a8 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x40c17cf5 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d185ac __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e1f7c0 d_lookup +EXPORT_SYMBOL vmlinux 0x40f24ec8 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x41084f8a __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x413994b0 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41846657 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range +EXPORT_SYMBOL vmlinux 0x41a5f7e3 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x41a93d74 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x41b1f543 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x41e437c4 user_revoke +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f2b494 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x41f66830 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x4202fc60 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x42109639 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x42127566 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x4212fd25 skb_checksum +EXPORT_SYMBOL vmlinux 0x4239ef00 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x4242eaf9 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42554382 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x4256a13b inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x4259d56e dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x425c6626 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x426acaea jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x42778768 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x42a9afc9 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x42bc51f4 kill_pgrp +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42cb9f71 filp_open +EXPORT_SYMBOL vmlinux 0x42d0f839 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x42edf7eb backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4308f4ff ipv4_mtu +EXPORT_SYMBOL vmlinux 0x430b214d pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x4312253f bdi_alloc +EXPORT_SYMBOL vmlinux 0x431524e4 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x4316e844 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x431e6289 netdev_crit +EXPORT_SYMBOL vmlinux 0x43212cc4 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x434e3b18 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435bb8a5 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x4363f7b3 nf_log_set +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43876579 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x438c831c init_task +EXPORT_SYMBOL vmlinux 0x439ded33 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x43a2b06d param_ops_invbool +EXPORT_SYMBOL vmlinux 0x43ab642e seq_write +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d71fe4 filemap_fault +EXPORT_SYMBOL vmlinux 0x43dc8d7a update_region +EXPORT_SYMBOL vmlinux 0x43e8907e iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x43ffd94d __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0x44032e5a input_setup_polling +EXPORT_SYMBOL vmlinux 0x440c649f create_empty_buffers +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x4445a61c elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4451d9af netif_carrier_on +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4481812e inet_sendpage +EXPORT_SYMBOL vmlinux 0x4483e759 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x4497c5b2 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b94603 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x44b9ab17 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x44c30b07 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x44cbf9ae skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x44e47e2b d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ea8674 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450639ab sg_last +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450a70b3 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x45128f99 netlink_unicast +EXPORT_SYMBOL vmlinux 0x4515df5c input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452f97bb sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x45387ab6 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x453add3b vfs_readlink +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x455c33df pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x456874bf posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x456f6464 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x4573f2af __mdiobus_read +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457b26a7 sock_bind_add +EXPORT_SYMBOL vmlinux 0x45809742 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x45828eee dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x45830469 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x45abd711 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x45b0e78d sg_miter_skip +EXPORT_SYMBOL vmlinux 0x45b5593f ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x45b7f756 padata_free_shell +EXPORT_SYMBOL vmlinux 0x45baf6e7 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x45fa2a53 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x4611a505 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x4616edd4 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x461ff2c2 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x46279917 registered_fb +EXPORT_SYMBOL vmlinux 0x463082b0 kobject_set_name +EXPORT_SYMBOL vmlinux 0x463f5461 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x464c3627 skb_ext_add +EXPORT_SYMBOL vmlinux 0x46564d65 path_put +EXPORT_SYMBOL vmlinux 0x46567e8b vc_resize +EXPORT_SYMBOL vmlinux 0x465ab08a ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x4664190a from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x46646cd0 register_md_personality +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x467fdf0c jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46ab81b9 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x46bd2f62 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval +EXPORT_SYMBOL vmlinux 0x46f264b6 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x46fb1936 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x46fc557f vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x47002cda simple_transaction_read +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x4733962d fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477391a3 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x478537ab end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x4794ac25 elv_rb_add +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x4798ecdb seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x47a929b1 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x47b5320e textsearch_prepare +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cd5ea9 generic_perform_write +EXPORT_SYMBOL vmlinux 0x47ce9aa5 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47ddc02f agp_enable +EXPORT_SYMBOL vmlinux 0x47de48e2 bio_init +EXPORT_SYMBOL vmlinux 0x47fade81 seq_putc +EXPORT_SYMBOL vmlinux 0x4801395a md_reload_sb +EXPORT_SYMBOL vmlinux 0x48104950 __remove_inode_hash +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 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x483a2203 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x483b6919 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4847dccf devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x48520b1f page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x4856e859 posix_lock_file +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x486358e6 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x4889e378 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48aaffa0 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x48b1363c eth_type_trans +EXPORT_SYMBOL vmlinux 0x48b26879 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c6070c sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48d88a2c __SCT__preempt_schedule +EXPORT_SYMBOL vmlinux 0x48da9546 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x48dafbd7 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x48e9fe33 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x48ecee41 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x48f6f5aa __break_lease +EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490999e0 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x491d5d9b flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x49418524 dentry_open +EXPORT_SYMBOL vmlinux 0x4946dbf6 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x4948ab82 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits +EXPORT_SYMBOL vmlinux 0x4986cdae locks_remove_posix +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49d0911f sync_filesystem +EXPORT_SYMBOL vmlinux 0x49f455fc rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x4a1c84b3 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x4a1fe099 inode_update_time +EXPORT_SYMBOL vmlinux 0x4a2367f6 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x4a24b196 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x4a2c98f7 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a4d20ef tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x4a5e147a phy_get_pause +EXPORT_SYMBOL vmlinux 0x4a875c63 key_revoke +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4acdbbef kobject_put +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b25163e scsi_done_direct +EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x4b41eec7 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x4b5609ee dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b63d569 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0x4b810aac peernet2id +EXPORT_SYMBOL vmlinux 0x4b9cdbd2 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x4ba574f2 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x4bbbca1d phy_error +EXPORT_SYMBOL vmlinux 0x4bcaaa4f find_inode_rcu +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4be83d16 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4c0053ab i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x4c042de4 inet6_bind +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x4c29d3bc skb_split +EXPORT_SYMBOL vmlinux 0x4c36f0a0 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c4ab593 address_space_init_once +EXPORT_SYMBOL vmlinux 0x4c4e2a95 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x4c51f26d bioset_init +EXPORT_SYMBOL vmlinux 0x4c8dffe1 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x4c940c44 con_is_bound +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4c9d5ecd simple_rmdir +EXPORT_SYMBOL vmlinux 0x4c9f0832 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x4ca44e53 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x4cc414ea get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4cdb8da5 mmc_command_done +EXPORT_SYMBOL vmlinux 0x4ce853cb devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x4d028c1b tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x4d081568 km_policy_expired +EXPORT_SYMBOL vmlinux 0x4d1ed2fa tty_write_room +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d2eb5e8 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x4d2f2ad7 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x4d37b3c2 tcf_classify +EXPORT_SYMBOL vmlinux 0x4d3875c1 config_item_set_name +EXPORT_SYMBOL vmlinux 0x4d3d6a17 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x4d475f34 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x4d513698 locks_free_lock +EXPORT_SYMBOL vmlinux 0x4d64d33f reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x4d6abd51 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x4d877969 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x4d8c5a61 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db34475 send_sig +EXPORT_SYMBOL vmlinux 0x4dbd432d tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x4dbe1aba iov_iter_bvec +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 0x4df18ca2 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df47c31 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4dfec6f7 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x4e02bc7f input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e353676 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e36ebb2 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e636d42 generic_fadvise +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6a04b7 write_inode_now +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e8bedbe fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x4e8dbb5b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x4e90fc11 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea78bab __x86_indirect_call_thunk_r15 +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb0b0ee cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ed3759d dev_mc_init +EXPORT_SYMBOL vmlinux 0x4ee6ba5f __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x4eefd3ce rproc_boot +EXPORT_SYMBOL vmlinux 0x4f0d0a92 find_vma +EXPORT_SYMBOL vmlinux 0x4f122d19 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1d7a04 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f21a787 devm_iounmap +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f24a326 __fs_parse +EXPORT_SYMBOL vmlinux 0x4f27af6c devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x4f2adcd0 dev_add_pack +EXPORT_SYMBOL vmlinux 0x4f34821c tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x4f448136 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 +EXPORT_SYMBOL vmlinux 0x4f71b363 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x4f770b58 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x4f77d420 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x4f878f97 security_sb_remount +EXPORT_SYMBOL vmlinux 0x4f9079bb __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x4f91c9a0 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x4fa032b1 dev_addr_del +EXPORT_SYMBOL vmlinux 0x4fa7fc65 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x4fba0036 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x4fc776fa tty_port_close_start +EXPORT_SYMBOL vmlinux 0x4fd3eb2e security_inode_init_security +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe7c27b ns_capable_setid +EXPORT_SYMBOL vmlinux 0x4ff41baf end_page_writeback +EXPORT_SYMBOL vmlinux 0x4ffb377b __nla_put +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500d1629 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x500d2d89 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x501b2e4b uart_update_timeout +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x502931a2 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x5029a9a7 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x50586509 simple_link +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5070d2c7 __folio_start_writeback +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 0x50ab24e5 __fput_sync +EXPORT_SYMBOL vmlinux 0x50ad8e76 mmc_can_erase +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 0x50bf1d85 __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x50cddd4a sg_alloc_append_table_from_pages +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 0x5123b70a md_error +EXPORT_SYMBOL vmlinux 0x513a5f52 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec +EXPORT_SYMBOL vmlinux 0x513d736e jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x5154b733 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x515b25f1 folio_add_lru +EXPORT_SYMBOL vmlinux 0x5162fb16 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x516f786c tty_unregister_device +EXPORT_SYMBOL vmlinux 0x51780ded neigh_ifdown +EXPORT_SYMBOL vmlinux 0x5186add0 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x518dd49b tcf_action_exec +EXPORT_SYMBOL vmlinux 0x5199c39a blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x519a4628 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x51a29209 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51a52bbe ip_defrag +EXPORT_SYMBOL vmlinux 0x51b8c787 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x51c0ce97 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x51c3ad75 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d59215 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x51e75c88 init_special_inode +EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 +EXPORT_SYMBOL vmlinux 0x51f4fc1d md_write_inc +EXPORT_SYMBOL vmlinux 0x51fc8445 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x523759c4 __block_write_begin +EXPORT_SYMBOL vmlinux 0x523d11f6 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x523f56b3 dev_load +EXPORT_SYMBOL vmlinux 0x52404740 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x5256c7aa convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x52581f54 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5276b0c8 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a9a1ea jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x52b18196 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x52c3fa95 has_capability +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52d834be done_path_create +EXPORT_SYMBOL vmlinux 0x52d964df blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x52dbde3f nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x530343b0 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x530517cb agp_bind_memory +EXPORT_SYMBOL vmlinux 0x530833ca genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x5312beb3 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53285e67 get_cached_acl +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x533bda8c rtnl_notify +EXPORT_SYMBOL vmlinux 0x5345f98b __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x5353b202 param_set_ushort +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x5362959a generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x53652efb pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x5366286d ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53bdadb1 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x53d0632d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x53d0810b tcf_block_get +EXPORT_SYMBOL vmlinux 0x53dd2973 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x53eced33 can_nice +EXPORT_SYMBOL vmlinux 0x53ed40e4 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x540714a5 __folio_lock +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x5426fe1c pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x5435edf3 vga_client_register +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54414006 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x54591757 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x547e07bb devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x5483a0e4 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x54930d75 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54fe0bde agp_copy_info +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55367cc3 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0x553e5178 dma_find_channel +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554c1874 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x55607366 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache +EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine +EXPORT_SYMBOL vmlinux 0x55716152 fb_get_mode +EXPORT_SYMBOL vmlinux 0x55807fc9 d_instantiate +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x558e2c74 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x559c841c pskb_expand_head +EXPORT_SYMBOL vmlinux 0x55c47f79 audit_log_start +EXPORT_SYMBOL vmlinux 0x55daf0ce pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x55fb9f05 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x561450f0 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x5615eca9 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x561d1552 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x5629c958 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x5631117e irq_set_chip +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56367106 vme_irq_free +EXPORT_SYMBOL vmlinux 0x563ed705 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564e83a3 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x565557e5 seq_bprintf +EXPORT_SYMBOL vmlinux 0x565cea4b keyring_clear +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56823653 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x56851b29 netdev_printk +EXPORT_SYMBOL vmlinux 0x568ef230 kobject_init +EXPORT_SYMBOL vmlinux 0x5691a211 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x5692f26c dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x56a9a2b2 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e347f7 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x56f19e80 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x57277b94 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x572ecc58 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x575535e3 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575c4ee8 noop_llseek +EXPORT_SYMBOL vmlinux 0x575de24e free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x577a2813 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x57835317 find_vma_intersection +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x57904158 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57aa61fa netif_device_detach +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57bcbaea __x86_indirect_call_thunk_r14 +EXPORT_SYMBOL vmlinux 0x57c2b268 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57e148e4 bio_split +EXPORT_SYMBOL vmlinux 0x57ef9497 __devm_release_region +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 0x5859031b netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x5874527f tty_devnum +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x588256cc scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x5882a8f4 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x58857ff8 dma_fence_describe +EXPORT_SYMBOL vmlinux 0x58a7a28d sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x58ac5eb3 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c78516 put_disk +EXPORT_SYMBOL vmlinux 0x58ce1aaf udp_seq_ops +EXPORT_SYMBOL vmlinux 0x58d26c36 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f30e73 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x59018f5c dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x590e9e78 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x5932004b param_ops_ulong +EXPORT_SYMBOL vmlinux 0x5934e3c9 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59591fd4 inet6_getname +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x595def90 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x597bd35d ethtool_notify +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b4002d xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59bbccb0 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x59c1c92c unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x59f64363 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x59fc22ee crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a18485d inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x5a201cb2 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a2df4a2 get_task_cred +EXPORT_SYMBOL vmlinux 0x5a2f1084 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x5a2f863a free_task +EXPORT_SYMBOL vmlinux 0x5a32e1b2 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a502849 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5a6f8230 __d_drop +EXPORT_SYMBOL vmlinux 0x5a72a6b8 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a947074 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5ad799a1 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5af220b0 regset_get +EXPORT_SYMBOL vmlinux 0x5b00960b security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x5b0c56e7 d_alloc_name +EXPORT_SYMBOL vmlinux 0x5b158ce2 rt6_lookup +EXPORT_SYMBOL vmlinux 0x5b1fa5dd follow_down_one +EXPORT_SYMBOL vmlinux 0x5b2d0b23 genl_notify +EXPORT_SYMBOL vmlinux 0x5b2edfa5 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b332cb2 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b556fd9 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b63be2c pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b66e8a5 param_get_short +EXPORT_SYMBOL vmlinux 0x5b70bd2a security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x5b7c143c tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk +EXPORT_SYMBOL vmlinux 0x5b8f92a7 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x5b90e510 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x5bb5e97f ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x5bcacf62 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x5bce3bd1 dma_ops +EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd4ffd1 seq_puts +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bf7fd44 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x5c13fbe0 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x5c1cc480 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c2dd7ea devm_rproc_add +EXPORT_SYMBOL vmlinux 0x5c337265 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c403006 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x5c44581c netlink_set_err +EXPORT_SYMBOL vmlinux 0x5c53df00 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x5c5420e2 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x5c8aa67e d_delete +EXPORT_SYMBOL vmlinux 0x5c9cd5ee d_tmpfile +EXPORT_SYMBOL vmlinux 0x5ca8e290 pci_release_regions +EXPORT_SYMBOL vmlinux 0x5cab9f89 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x5cbd943a blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x5cc4adf9 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x5cc4dfa7 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x5cdb7ad2 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x5cddbce2 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x5cf44242 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d23fd89 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x5d2c7283 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x5d2efe0a misc_register +EXPORT_SYMBOL vmlinux 0x5d392ef5 scsi_device_get +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d4c78b2 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x5d4dec91 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x5d7557a8 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x5d78f3ee tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x5d7c8c90 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x5d956653 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x5d97164d unpin_user_page +EXPORT_SYMBOL vmlinux 0x5d9b1a76 devm_memunmap +EXPORT_SYMBOL vmlinux 0x5daa7efa simple_transaction_get +EXPORT_SYMBOL vmlinux 0x5dbed6fe input_register_device +EXPORT_SYMBOL vmlinux 0x5de85e6c add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x5deb23f2 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x5e023576 folio_mapping +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e1bd866 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x5e1ec67e neigh_lookup +EXPORT_SYMBOL vmlinux 0x5e276df3 dput +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e6bc7f0 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x5e703e24 __neigh_create +EXPORT_SYMBOL vmlinux 0x5e74019d i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x5e7592f3 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e91662b __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5eac8960 freeze_super +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ec81ee0 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed77d60 __breadahead +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ef250ce genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f02d830 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x5f044ffe register_console +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f263460 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f401381 acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x5f48d6a2 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f58f9f5 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f90e088 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x5f91193b sg_miter_next +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5f999b3e blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x5f9c9c45 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x5fa515ac input_free_device +EXPORT_SYMBOL vmlinux 0x5fafcd45 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x5fb13efa inode_io_list_del +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fce1b6e pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x5fce2557 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5fe5b63e current_in_userns +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffc1a76 pci_choose_state +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 0x6018457e ip6_output +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6026ffbb nd_device_unregister +EXPORT_SYMBOL vmlinux 0x60336481 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60426b07 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x604eefa6 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x604fb968 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x607eef8e pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x6083cb69 mmc_sw_reset +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 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60a7176e kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x60a839c7 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60b6ab45 scmd_printk +EXPORT_SYMBOL vmlinux 0x60b9c82c __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x60bc3ec7 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e0f64d pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x60ec6c7c acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x60ecfd4e __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x610756b8 __x86_indirect_call_thunk_rdx +EXPORT_SYMBOL vmlinux 0x610b6c3c simple_open +EXPORT_SYMBOL vmlinux 0x610c23d4 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x611bc11a mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x6125bfdf __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x614f9b81 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x6155e36c cdev_device_add +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6159b500 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x616add85 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv +EXPORT_SYMBOL vmlinux 0x61b04188 build_skb +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bd3835 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x61c1e61e tcp_splice_read +EXPORT_SYMBOL vmlinux 0x61dfc2c1 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e7cd23 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61ee4c39 __brelse +EXPORT_SYMBOL vmlinux 0x61f17f3e mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x61f20433 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x61f2c448 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x62070acd security_sock_graft +EXPORT_SYMBOL vmlinux 0x62096ad3 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x620ab62e tcp_rcv_established +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 0x62398c47 __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x623bec94 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x6243604a kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x626e3553 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62870ad8 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x62888952 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x628939e2 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x62a5e905 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x62bc7350 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x62bd9e5b neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x62e9ff4f pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x630188b8 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x6304dd18 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x630b582c skb_pull +EXPORT_SYMBOL vmlinux 0x630f6100 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x634bb4d9 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x63674a6e __pci_register_driver +EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0x6395f097 __f_setown +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63adc85d has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x63b52259 skb_condense +EXPORT_SYMBOL vmlinux 0x63ba01e5 pci_set_master +EXPORT_SYMBOL vmlinux 0x63c0899b _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x63c40cb3 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x63ca6e66 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x63e3d953 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x63fb46d0 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x6448403d __x86_indirect_call_thunk_rcx +EXPORT_SYMBOL vmlinux 0x644b3e60 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x6454de1d unix_attach_fds +EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x645f1aa7 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x646f26b5 pci_match_id +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b18ccb qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x64b6bc36 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c5a8c7 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x64d24155 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x64e56a51 tcp_read_skb +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 0x652f6fd5 input_grab_device +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65443670 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x6547743c sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x65872922 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x6588d7ba devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x658a2a0a __x86_indirect_call_thunk_rbx +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658fdb64 block_commit_write +EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65cb488c devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x65d04049 tcp_v4_md5_hash_skb +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 0x65e6991f ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x65eac448 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x65ecb55f d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x660803f3 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x66253637 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x6632dbd4 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x6634cf2b lock_sock_nested +EXPORT_SYMBOL vmlinux 0x6647df6c fqdir_exit +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x66677d1a pci_set_power_state +EXPORT_SYMBOL vmlinux 0x6670983a filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x667b093f tty_check_change +EXPORT_SYMBOL vmlinux 0x667f26cc dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x668b9ed0 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x669b116e ip_local_deliver +EXPORT_SYMBOL vmlinux 0x669d8644 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x669ee2b2 param_get_uint +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b396c2 agp_create_memory +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66b76a4a max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0x66ccda28 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x66cd6e8d blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x66e7e330 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x66e8a503 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x66fe2ba9 nd_btt_version +EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x672283c0 phy_find_first +EXPORT_SYMBOL vmlinux 0x67267f35 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672c14eb key_alloc +EXPORT_SYMBOL vmlinux 0x67310936 qdisc_reset +EXPORT_SYMBOL vmlinux 0x6737bf65 single_open +EXPORT_SYMBOL vmlinux 0x6737ee4a devm_ioport_map +EXPORT_SYMBOL vmlinux 0x673971b6 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x674728fb md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x6747d13a pcie_set_mps +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x6766eded pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x6767dd64 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x677a46e8 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x6797d568 intel_gmch_gtt_get +EXPORT_SYMBOL vmlinux 0x67a02ecf rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x67a91fbb netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x67ad41be tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b4c8fa mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x67b688e3 inet_select_addr +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67cbebb5 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x67cc9453 __x86_indirect_call_thunk_rax +EXPORT_SYMBOL vmlinux 0x67f164a6 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x67f62341 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x68065905 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x681d8c48 __register_nls +EXPORT_SYMBOL vmlinux 0x6823c73a dquot_quota_off +EXPORT_SYMBOL vmlinux 0x683519ac eth_header_parse +EXPORT_SYMBOL vmlinux 0x683efbe5 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x685e5889 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x685ed0d8 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688186a6 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x688e72e1 __SCT__preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x6893897c seq_open_private +EXPORT_SYMBOL vmlinux 0x68a8ed3b __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x68b60b4a vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x68c37656 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x68f07027 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x690b04c6 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x6910d764 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x691713f3 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x691e65e5 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x694395b9 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x694a6bb7 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x694b6b92 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696cc223 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x697d11db sock_no_listen +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x6990a139 km_new_mapping +EXPORT_SYMBOL vmlinux 0x6999a857 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x699a6ee8 devm_memremap +EXPORT_SYMBOL vmlinux 0x69a5d766 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ba5765 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x69d7cd03 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e29132 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x69f01549 serio_rescan +EXPORT_SYMBOL vmlinux 0x69f20768 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x69fe0d1a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a2314ea copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x6a2c3c5c phy_connect +EXPORT_SYMBOL vmlinux 0x6a400469 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x6a423982 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x6a44604a get_tree_keyed +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a482874 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x6a4999e2 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x6a5a8021 __folio_alloc +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 0x6a874717 sk_capable +EXPORT_SYMBOL vmlinux 0x6a8b627b blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x6a99196f netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x6a9c0b28 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x6ab5b4b2 vme_master_request +EXPORT_SYMBOL vmlinux 0x6abcc8f0 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x6abf2fcc tty_do_resize +EXPORT_SYMBOL vmlinux 0x6ace7620 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af0547d xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x6b023bc7 vfs_setpos +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b158f47 km_report +EXPORT_SYMBOL vmlinux 0x6b1efb19 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2cb310 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3ee401 stream_open +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b695cf1 zen_untrain_ret +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bd64e xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b935903 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x6b938560 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x6b957835 d_move +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6bfa1f5c mmc_of_parse +EXPORT_SYMBOL vmlinux 0x6c03f9be generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x6c099133 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x6c1aef94 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x6c1c2855 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x6c20e828 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c32a814 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x6c38aba0 security_path_rename +EXPORT_SYMBOL vmlinux 0x6c5a53d6 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c7731bf ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x6c778b25 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x6c888c8e dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6c8aa5df neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x6c93daf5 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x6c999e5c sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x6c99c710 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x6caba1fd get_inode_acl +EXPORT_SYMBOL vmlinux 0x6cb000b2 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x6cb1640e seq_vprintf +EXPORT_SYMBOL vmlinux 0x6cb29e81 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x6cb45f21 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6cc46d85 key_task_permission +EXPORT_SYMBOL vmlinux 0x6ccd13d3 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x6cda85f7 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x6d078e98 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2b4ad0 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d3833d0 vme_irq_request +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d5fb4a5 __x86_indirect_jump_thunk_rsp +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d8d3804 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x6d8df868 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x6db5ee51 tso_build_data +EXPORT_SYMBOL vmlinux 0x6dba031b input_unregister_handler +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dba9a37 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dcdaf96 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df31390 intel_gmch_gtt_clear_range +EXPORT_SYMBOL vmlinux 0x6dfc71a3 bio_put +EXPORT_SYMBOL vmlinux 0x6e071da7 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x6e1db707 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x6e244e9b acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e663248 __destroy_inode +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e86e496 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ed70d7c __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6ef49ca7 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x6efd3024 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x6f0513b8 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock +EXPORT_SYMBOL vmlinux 0x6f2612b2 inet_bind +EXPORT_SYMBOL vmlinux 0x6f26434b xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x6f2a04c2 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f42047c dquot_resume +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f510106 qdisc_put +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f5b520c __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x6f5bfad3 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x6f5f0b10 filp_close +EXPORT_SYMBOL vmlinux 0x6f69f55b i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x6f716180 __inet_hash +EXPORT_SYMBOL vmlinux 0x6f7b4e7c phy_attached_info +EXPORT_SYMBOL vmlinux 0x6f7f0248 kernel_listen +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6fa39aa3 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x6fad035f i2c_clients_command +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7019a771 sock_wfree +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702eb228 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x703b08dd vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x705b4159 vm_map_ram +EXPORT_SYMBOL vmlinux 0x709f763b t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x70a5ae70 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70b2a0b2 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x70bb7de2 __x86_indirect_jump_thunk_rbp +EXPORT_SYMBOL vmlinux 0x70d8285d dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x70de34be inet_accept +EXPORT_SYMBOL vmlinux 0x70f60ed2 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x70fd1381 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x710056ac abort +EXPORT_SYMBOL vmlinux 0x71193f80 d_rehash +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7132bb13 unregister_nls +EXPORT_SYMBOL vmlinux 0x713cf88a lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x713d1385 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x71438131 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x71556d66 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x71559b20 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x715e04ab sock_kfree_s +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7175008e cdev_alloc +EXPORT_SYMBOL vmlinux 0x7175cdec inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x7179ad5e is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x7182de7b mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x718bd768 pcim_iomap +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c60ad4 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x71cd520c blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x71d7d0e0 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71e51bdc follow_up +EXPORT_SYMBOL vmlinux 0x71edf459 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x720d4281 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x720f3d34 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x72111619 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x72301300 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x723c85f4 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x7244b2a0 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x7256fd5a __netif_schedule +EXPORT_SYMBOL vmlinux 0x7257f863 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x7269d293 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x727b961b __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x72a96547 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b65fca vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bdc19b devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x72c08bdd scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x72cdd849 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x730f5499 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x73649ee6 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x736bcb26 pci_pme_active +EXPORT_SYMBOL vmlinux 0x737d75ca ps2_init +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73a5e1c2 config_item_put +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e2bf25 mr_dump +EXPORT_SYMBOL vmlinux 0x73f73ecf mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x740a4355 register_key_type +EXPORT_SYMBOL vmlinux 0x740c7a93 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x741543f3 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x74154af5 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x74252304 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742c6a2f scsi_remove_device +EXPORT_SYMBOL vmlinux 0x742f30ba page_pool_create +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x745d18fb scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x746f77d2 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x7473d943 mmc_erase +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x74781b94 skb_put +EXPORT_SYMBOL vmlinux 0x747da325 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x749f0bff flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74bca217 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74de670f inet_ioctl +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e8eb23 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x75316adb pci_dev_driver +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753a29f5 napi_get_frags +EXPORT_SYMBOL vmlinux 0x754779d1 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x75710120 vm_event_states +EXPORT_SYMBOL vmlinux 0x75784581 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75a277b8 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x75a30261 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdc637 kernel_accept +EXPORT_SYMBOL vmlinux 0x75c43a4c uart_match_port +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x76306ee9 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x76346b6c ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x763a6b69 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x763ffa8e devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x76477d32 may_umount +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76602602 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x76608b89 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x76637444 skb_copy_header +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766a3d95 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x76736bbb sk_mc_loop +EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x7698ad55 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76aec78d xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x76b4e7d5 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x76d35e96 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d923ad blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x76ddef99 vm_mmap +EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x772265e1 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x77237351 file_ns_capable +EXPORT_SYMBOL vmlinux 0x772fe0a3 dev_uc_del +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x77359104 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x77374739 bdi_register +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x7764fef4 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x7767acb0 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x776aa267 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x77712bb6 simple_lookup +EXPORT_SYMBOL vmlinux 0x77729455 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x7776b774 inet6_protos +EXPORT_SYMBOL vmlinux 0x7780b4e5 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x778bc528 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x77933ca0 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77da78e2 dev_trans_start +EXPORT_SYMBOL vmlinux 0x77dd0af3 __bread_gfp +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f8ffbc skb_unlink +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780dedae padata_do_parallel +EXPORT_SYMBOL vmlinux 0x78179d37 backlight_device_register +EXPORT_SYMBOL vmlinux 0x782720ce phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x78390d84 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x783dbb74 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x7844d8b7 vm_map_pages +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x787bb28e tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7882d07c mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x788baa0a tcf_em_register +EXPORT_SYMBOL vmlinux 0x788d1516 netpoll_setup +EXPORT_SYMBOL vmlinux 0x788d6c7c genphy_read_status +EXPORT_SYMBOL vmlinux 0x789dfbd3 kill_pid +EXPORT_SYMBOL vmlinux 0x78a1155b nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a81b80 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78d8a8b5 import_single_range +EXPORT_SYMBOL vmlinux 0x78dae75c i2c_del_driver +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e4bcd0 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x78f1b944 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x78f8251f xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x791ea8b8 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x794d5ab2 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x79606cb0 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x796223a0 from_kgid +EXPORT_SYMBOL vmlinux 0x797aa9ab tso_start +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x798700d8 set_cached_acl +EXPORT_SYMBOL vmlinux 0x79916849 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x79a14231 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79c41f7d fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x79d20d3d __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x79d516c9 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x79d620f0 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x79e91506 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x79fb7edc xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x7a108361 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a404b7f __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x7a4f74f7 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a7f923c d_obtain_alias +EXPORT_SYMBOL vmlinux 0x7a812839 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x7a874352 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a8f967b inode_to_bdi +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a96025a sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x7a973723 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x7a9c2983 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x7a9e449c pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa1ec4b vm_insert_pages +EXPORT_SYMBOL vmlinux 0x7aa82eab rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x7ac25688 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae47bdb phy_stop +EXPORT_SYMBOL vmlinux 0x7aeac727 vfs_unlink +EXPORT_SYMBOL vmlinux 0x7af082a4 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x7af28a5d skb_copy_bits +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7affca5f sg_miter_start +EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store +EXPORT_SYMBOL vmlinux 0x7b132995 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b551e08 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5cc1a0 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x7b78b023 unix_get_socket +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7ba6c624 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbca00f devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bdead01 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x7be40faa pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x7bec6470 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x7c0190d9 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c439fa7 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c47a231 read_cache_folio +EXPORT_SYMBOL vmlinux 0x7c4b1911 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x7c511d2e invalidate_disk +EXPORT_SYMBOL vmlinux 0x7c531c7e tcp_check_req +EXPORT_SYMBOL vmlinux 0x7c57aa81 logfc +EXPORT_SYMBOL vmlinux 0x7c57fd08 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x7c708080 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x7c85bbce nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x7c8815bd cdev_set_parent +EXPORT_SYMBOL vmlinux 0x7c8db046 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x7cbb8406 _dev_alert +EXPORT_SYMBOL vmlinux 0x7cc8e2c9 tcf_register_action +EXPORT_SYMBOL vmlinux 0x7cce21dd devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d07739e cdev_device_del +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 0x7d2d9935 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x7d2ebe6a unregister_console +EXPORT_SYMBOL vmlinux 0x7d3058de xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x7d35a4aa rproc_put +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d563034 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7d58b34b netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x7d59a8a8 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d72d239 vfs_fsync +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d750fad pcie_get_mps +EXPORT_SYMBOL vmlinux 0x7d8d334e flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x7d99a2d8 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x7da373dd bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db3d0da inode_init_once +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 0x7de54254 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfc7a4e scsi_host_busy +EXPORT_SYMBOL vmlinux 0x7dfe0ca8 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0x7e2d5d5e dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e5a2305 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7e7f0c57 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x7e8ab80f rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x7e904e71 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x7ecc50b8 netdev_features_change +EXPORT_SYMBOL vmlinux 0x7ed795de forget_cached_acl +EXPORT_SYMBOL vmlinux 0x7ee0c414 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x7ee790dd elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x7ee80ddd udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f12229c md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2bbfab devm_release_resource +EXPORT_SYMBOL vmlinux 0x7f3d93f0 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x7f4d11e5 napi_complete_done +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f53cfac serio_open +EXPORT_SYMBOL vmlinux 0x7f5e5782 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free +EXPORT_SYMBOL vmlinux 0x7f633879 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x7f6d0e6b blk_execute_rq +EXPORT_SYMBOL vmlinux 0x7f7b0f0c eisa_driver_register +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f819fc7 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x7f8340a0 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x7f88ea56 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x7f8d243b udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x7f97e1f6 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x7f9a3695 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x7f9d2b74 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x7fb3267b neigh_parms_release +EXPORT_SYMBOL vmlinux 0x7fbc8d58 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x7fd40150 sock_create_kern +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff1c33d security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x7ff2b171 dqput +EXPORT_SYMBOL vmlinux 0x7ffc9c1e tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x8018d992 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x801c68da mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x801ea9bc ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x803955c3 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x8040b61e vme_slot_num +EXPORT_SYMBOL vmlinux 0x8046f069 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x804865bf vfs_rmdir +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x805d89d4 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x806f34eb ilookup +EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80b1753c uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x80c5b4d2 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d296e7 page_get_link +EXPORT_SYMBOL vmlinux 0x80d2e1aa mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x810b22fd sock_init_data +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x8138b81b seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x81460213 block_write_full_page +EXPORT_SYMBOL vmlinux 0x8148b4c8 skb_trim +EXPORT_SYMBOL vmlinux 0x814c81a9 dst_release +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x8184617e mmc_can_trim +EXPORT_SYMBOL vmlinux 0x81878bb8 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x818ab589 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e2687b gro_cells_receive +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81fdb900 simple_unlink +EXPORT_SYMBOL vmlinux 0x822e3ef1 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x82355f69 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x8236551c vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x823fc235 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x8255e114 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x82931549 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x82b0dc44 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x82b22e7e __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x82c656d3 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82d2f05a tso_build_hdr +EXPORT_SYMBOL vmlinux 0x82dd0498 tcp_read_done +EXPORT_SYMBOL vmlinux 0x82e15fe9 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x82e45675 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x82f08101 arp_xmit +EXPORT_SYMBOL vmlinux 0x83005589 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x830226e5 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x83184bdc flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x83230eba rproc_free +EXPORT_SYMBOL vmlinux 0x834d38df free_netdev +EXPORT_SYMBOL vmlinux 0x8354317a unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8370bf8f set_security_override +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x8391cdbf dquot_alloc +EXPORT_SYMBOL vmlinux 0x83925971 netdev_state_change +EXPORT_SYMBOL vmlinux 0x83cac342 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x83d29cff clear_inode +EXPORT_SYMBOL vmlinux 0x83fa7689 is_nd_dax +EXPORT_SYMBOL vmlinux 0x84241c06 __bh_read_batch +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x843a2fbe pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x844b1a64 pci_request_irq +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x8463e01e simple_getattr +EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848329eb netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x8483e0c9 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x848efe1c pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x849141e6 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x84935297 fasync_helper +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84a12870 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x84ab2628 d_alloc +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84d45cdf input_reset_device +EXPORT_SYMBOL vmlinux 0x84dfd131 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x84ec30b0 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8519b641 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user +EXPORT_SYMBOL vmlinux 0x854dddc2 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x85661fbb xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857f2a17 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x8582cec6 nd_device_notify +EXPORT_SYMBOL vmlinux 0x858459d6 sock_efree +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a2b910 file_remove_privs +EXPORT_SYMBOL vmlinux 0x85a662de submit_bio_wait +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c6c4b6 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x85da12d8 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fbb148 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x86209dc5 flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x862bdc29 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x862de04a vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x8632c4b8 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x864afcb5 pci_dev_get +EXPORT_SYMBOL vmlinux 0x86618823 seq_release +EXPORT_SYMBOL vmlinux 0x86694084 eth_header_cache +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868d0db7 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x8691becd sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x86943c94 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x869a6780 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x86b0b1d2 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86c7d590 md_write_start +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86dddef1 sock_no_linger +EXPORT_SYMBOL vmlinux 0x86e1b259 __put_cred +EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8709492e jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x872d8700 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87659720 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x876e2fda d_make_root +EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x8770aa1b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq +EXPORT_SYMBOL vmlinux 0x878f604a md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x8796a2e3 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x87a1cd6a call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87dce3b8 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x87ddd392 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x87fd6cd1 km_policy_notify +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 0x8823ef75 intel_gmch_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x88249e1e bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x88266ca5 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x88427ed6 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x884bfc5c console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x884f16bc simple_nosetlease +EXPORT_SYMBOL vmlinux 0x8860134c fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x887e0c9e fget_raw +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x88856e99 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x888655ba put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x888a9b1a ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x888f815a arp_create +EXPORT_SYMBOL vmlinux 0x88934236 udp_set_csum +EXPORT_SYMBOL vmlinux 0x889affde jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88be5128 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order +EXPORT_SYMBOL vmlinux 0x8941e4c5 tcf_block_put +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x89494726 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x895deebc param_ops_charp +EXPORT_SYMBOL vmlinux 0x8965ad3d bio_uninit +EXPORT_SYMBOL vmlinux 0x896bd51b simple_write_begin +EXPORT_SYMBOL vmlinux 0x898f9be3 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x89b6645d uart_register_driver +EXPORT_SYMBOL vmlinux 0x89ddde6b ip6_xmit +EXPORT_SYMBOL vmlinux 0x89e0ffb9 udp_seq_start +EXPORT_SYMBOL vmlinux 0x89f13933 noop_fsync +EXPORT_SYMBOL vmlinux 0x89f6b285 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x8a2d181f param_set_long +EXPORT_SYMBOL vmlinux 0x8a35622c __nla_reserve +EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a447d7b phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a52d0c9 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x8a54670a __x86_indirect_jump_thunk_r14 +EXPORT_SYMBOL vmlinux 0x8a64b515 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x8a66118e ptp_find_pin +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a761cbc watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a91e6e3 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aafdf13 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x8ab3f7e6 start_tty +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ad072e5 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x8ae4a8d4 generic_write_end +EXPORT_SYMBOL vmlinux 0x8ae68a81 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x8ae75b92 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x8affde89 fs_bio_set +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b1e97b2 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x8b204b1d bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x8b28b0bd pci_iomap_range +EXPORT_SYMBOL vmlinux 0x8b2d6d3b rtc_add_groups +EXPORT_SYMBOL vmlinux 0x8b403e01 igrab +EXPORT_SYMBOL vmlinux 0x8b4fce8e fb_set_var +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b733426 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b916916 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x8b930459 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x8b940fc2 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8baa4dcf padata_do_serial +EXPORT_SYMBOL vmlinux 0x8bb1220d netlink_capable +EXPORT_SYMBOL vmlinux 0x8bc7eba5 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x8bceb6ac __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8bf87e3f __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x8c0c8570 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c26f6ae phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c403f23 km_state_notify +EXPORT_SYMBOL vmlinux 0x8c4abeba poll_freewait +EXPORT_SYMBOL vmlinux 0x8c55a40e fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x8c67373e sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8b9008 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb8b586 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x8cc379ce __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cd2b57d folio_alloc +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cf7bee5 iget5_locked +EXPORT_SYMBOL vmlinux 0x8d0908d3 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x8d0eeac0 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x8d15b71b dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x8d2308ad __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x8d2e66a3 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit +EXPORT_SYMBOL vmlinux 0x8d3534c3 unload_nls +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5d2564 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x8d6b43f9 param_get_ushort +EXPORT_SYMBOL vmlinux 0x8d6e047c processors +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x8d810903 param_set_charp +EXPORT_SYMBOL vmlinux 0x8d8ef036 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da51ec7 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x8da5c1dd fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x8dab52c3 dquot_drop +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8db832a8 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x8dc67698 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x8dcaceda unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de2566c pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8deb44d2 dm_io +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df6fd09 agp_bridge +EXPORT_SYMBOL vmlinux 0x8df7ea59 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e0f92d9 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e1bd3ef to_nd_btt +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e5951ce udplite_prot +EXPORT_SYMBOL vmlinux 0x8e7f9aab fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x8e86cbf0 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e981903 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x8eac0040 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8eba370f __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x8ebcd543 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x8ed1db3b blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x8efbc0e8 skb_queue_head +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f02f967 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x8f2407c7 get_agp_version +EXPORT_SYMBOL vmlinux 0x8f26e086 __bio_advance +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f39a74b request_key_tag +EXPORT_SYMBOL vmlinux 0x8f3d9220 sock_from_file +EXPORT_SYMBOL vmlinux 0x8f43236d arp_tbl +EXPORT_SYMBOL vmlinux 0x8f5b7e3f folio_wait_bit +EXPORT_SYMBOL vmlinux 0x8f7034f6 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x8f78b36f sk_free +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f821f93 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x8f8d849c generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa0f4f7 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fb87d74 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x8fc038db filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x8fc8f8ee cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x8fd3aa4f revert_creds +EXPORT_SYMBOL vmlinux 0x8ff32820 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x900576be flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x902323be ip_frag_next +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9036b1dd netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x903b56e2 __bforget +EXPORT_SYMBOL vmlinux 0x9040de7e devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x9048e017 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x904c398f pci_map_rom +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x9060eff2 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x9062a6a9 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x90806621 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x9080cd06 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x9082d1eb __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x90911f80 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x90920f78 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x909a6983 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x90a54951 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons +EXPORT_SYMBOL vmlinux 0x90edcdd0 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x910b0a71 secpath_set +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x914c29ca vfs_get_tree +EXPORT_SYMBOL vmlinux 0x914c856c bdi_put +EXPORT_SYMBOL vmlinux 0x9153df7c security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x91679fd7 phy_device_remove +EXPORT_SYMBOL vmlinux 0x9170125d zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x917778e1 thread_group_exited +EXPORT_SYMBOL vmlinux 0x9179bdda pci_read_config_byte +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 0x91aec9b8 generic_setlease +EXPORT_SYMBOL vmlinux 0x91b28901 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x91b66520 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x91c7539a inet_add_protocol +EXPORT_SYMBOL vmlinux 0x91d1c4c1 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x91d1d7f1 ilookup5 +EXPORT_SYMBOL vmlinux 0x91d9201d inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x91e3d59b _dev_notice +EXPORT_SYMBOL vmlinux 0x91e486d7 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x91eaa156 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x91ecca40 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x91efb1d0 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258bb57 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x926032bb iget_failed +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x927c28a4 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x929b783f sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x92a0e80b neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x92c982e6 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x92d33b0e inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e29246 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x92e32957 simple_fill_super +EXPORT_SYMBOL vmlinux 0x92e5cd87 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92ec8332 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x92f586b5 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x92f7c5c3 vlan_for_each +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931a8afb netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x9322ce12 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x933492f5 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x93461f68 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x934f564b __x86_indirect_jump_thunk_r15 +EXPORT_SYMBOL vmlinux 0x93663399 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x936778fa adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93813520 i2c_transfer +EXPORT_SYMBOL vmlinux 0x938f2185 proc_mkdir +EXPORT_SYMBOL vmlinux 0x93971499 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x939c42c6 pipe_unlock +EXPORT_SYMBOL vmlinux 0x93a0d786 is_subdir +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93a8fb21 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d10cbb jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93d8fc99 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x93d97372 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x941820c7 register_framebuffer +EXPORT_SYMBOL vmlinux 0x9420a496 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942c18fa rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x9434dfd0 set_trace_device +EXPORT_SYMBOL vmlinux 0x943503b0 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x944091f5 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9451419c bio_init_clone +EXPORT_SYMBOL vmlinux 0x945be222 genphy_resume +EXPORT_SYMBOL vmlinux 0x945f5647 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x946943c0 set_nlink +EXPORT_SYMBOL vmlinux 0x946afe19 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x94870e6d mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x9494a73f input_set_capability +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949dbb97 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x94a31ee5 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x94ac7eb7 param_ops_bool +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94d92ff4 da903x_query_status +EXPORT_SYMBOL vmlinux 0x94dc0e3d pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x94f09227 set_anon_super +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x951c5618 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x9545b30a nf_hook_slow +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9552043b iov_iter_zero +EXPORT_SYMBOL vmlinux 0x9579e2d5 set_page_dirty +EXPORT_SYMBOL vmlinux 0x9599dae5 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95c420ad param_get_ullong +EXPORT_SYMBOL vmlinux 0x95cf1206 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x95dfc012 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0x960970ed devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x96176880 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x962a9ec4 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x9637c124 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x96682d26 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x96758c17 pci_request_region +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9686e17a mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x968bdaa5 inet_getname +EXPORT_SYMBOL vmlinux 0x9694c340 padata_alloc +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96bc1b04 follow_pfn +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c30f13 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x96eadfd0 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x96f21e70 vc_cons +EXPORT_SYMBOL vmlinux 0x96f452f0 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x9704833e n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9746e806 unregister_key_type +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x976814ca inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x976d5d45 serio_close +EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat +EXPORT_SYMBOL vmlinux 0x97834518 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x97865aef _dev_info +EXPORT_SYMBOL vmlinux 0x978706a2 phy_print_status +EXPORT_SYMBOL vmlinux 0x97917ccc simple_statfs +EXPORT_SYMBOL vmlinux 0x979dbebd nf_log_unregister +EXPORT_SYMBOL vmlinux 0x97a2dfc9 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b41706 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x97b871d3 phy_init_eee +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97ccf170 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x97d57ceb __i2c_transfer +EXPORT_SYMBOL vmlinux 0x97e83220 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x980626f0 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98306354 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x9840016f dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x984d9c39 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x9853193c pcim_iounmap +EXPORT_SYMBOL vmlinux 0x9855f570 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 +EXPORT_SYMBOL vmlinux 0x988ef58c dev_mc_add +EXPORT_SYMBOL vmlinux 0x989ac479 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98d8daa6 phy_device_create +EXPORT_SYMBOL vmlinux 0x98e2ffe7 wireless_send_event +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x990f52e1 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x992566cc register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x994673bf neigh_update +EXPORT_SYMBOL vmlinux 0x994917a0 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9960cbe4 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x99651037 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x9979c2ec serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x99851ac2 scsi_host_put +EXPORT_SYMBOL vmlinux 0x9987172c eth_mac_addr +EXPORT_SYMBOL vmlinux 0x999e7a57 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99adee8c xfrm_register_km +EXPORT_SYMBOL vmlinux 0x99c6fd38 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x99d05d81 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99dece3d mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x99e1ebdd mdiobus_free +EXPORT_SYMBOL vmlinux 0x99e71d6a kmalloc_trace +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 0x99fbcd2b from_kprojid +EXPORT_SYMBOL vmlinux 0x9a005bf4 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a0f67db prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x9a1bd558 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a2c088f irq_stat +EXPORT_SYMBOL vmlinux 0x9a5508a2 netdev_change_features +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a690bf4 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x9a787013 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x9a852716 qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x9a8ccfd5 page_mapping +EXPORT_SYMBOL vmlinux 0x9a9fb476 skb_dequeue +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9aba2599 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x9abca419 km_state_expired +EXPORT_SYMBOL vmlinux 0x9ac78bfa fput +EXPORT_SYMBOL vmlinux 0x9acd3f6f get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9ad83516 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x9ae04dcf __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9af79d84 block_invalidate_folio +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 0x9b5f4a75 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b9871ef write_cache_pages +EXPORT_SYMBOL vmlinux 0x9b9ef5b9 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x9ba14157 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x9baa4762 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bc220d1 ram_aops +EXPORT_SYMBOL vmlinux 0x9bd804b0 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1aeaa9 ip6_mtu +EXPORT_SYMBOL vmlinux 0x9c2c1f46 blkdev_put +EXPORT_SYMBOL vmlinux 0x9c4dc5d6 param_get_invbool +EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c81d7ca mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c921f4a phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cc25978 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd68ff6 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cea0eef tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x9ceb59c2 fb_pan_display +EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x9cf6c3e2 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x9d00bc40 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0e99f2 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x9d0f2cf9 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x9d0f6c32 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d2923c7 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d3076c3 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x9d33807c xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x9d4da226 kern_path +EXPORT_SYMBOL vmlinux 0x9d4eb2c3 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x9d520e70 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d729bc9 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d9a4733 set_bh_page +EXPORT_SYMBOL vmlinux 0x9daa35f9 lookup_one_len +EXPORT_SYMBOL vmlinux 0x9db44088 module_refcount +EXPORT_SYMBOL vmlinux 0x9dc6c8aa flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x9de2adb8 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x9df1b8c8 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e139887 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e163455 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e405018 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5e5e26 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x9e75dbb3 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9c8b1c xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eaf940b tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x9eb1c206 skb_dump +EXPORT_SYMBOL vmlinux 0x9ebd4889 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ece2309 kernel_connect +EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large +EXPORT_SYMBOL vmlinux 0x9ed92544 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9f20dc0b sync_blockdev +EXPORT_SYMBOL vmlinux 0x9f23f6c1 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x9f2f1ada pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x9f3253a3 console_start +EXPORT_SYMBOL vmlinux 0x9f3323f4 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x9f3d583f configfs_unregister_subsystem +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 0x9f913212 tcp_filter +EXPORT_SYMBOL vmlinux 0x9f966682 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x9f97fd42 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fa7976e genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x9fa7e334 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fc8f4c1 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x9fcc6c15 tty_hangup +EXPORT_SYMBOL vmlinux 0x9fcd00a5 would_dump +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feeb009 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa003e936 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02c2ba7 flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa043fd99 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xa04b2e88 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa09d58d3 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xa09ef8a3 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xa0a1dd03 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0da75bc vfs_link +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e6cd63 ps2_drain +EXPORT_SYMBOL vmlinux 0xa0e9095d netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xa0ea0798 touch_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 0xa0f10085 __sg_free_table +EXPORT_SYMBOL vmlinux 0xa0f97989 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff716b xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10b25b5 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xa10e7bb4 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xa11ec5c0 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xa11f2e30 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xa1325990 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xa132a0e4 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xa138918d inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xa13d8c12 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xa1487841 clk_get +EXPORT_SYMBOL vmlinux 0xa1596837 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xa159abf7 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xa16fb12c tty_kref_put +EXPORT_SYMBOL vmlinux 0xa17b45b6 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xa1948397 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xa1a585aa flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xa1a7736e __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xa1aae2c2 unlock_rename +EXPORT_SYMBOL vmlinux 0xa1bb9513 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1ce09a1 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xa1ceaa58 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa1d05277 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xa1ee0b08 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa20ad2e9 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xa212f8bd update_devfreq +EXPORT_SYMBOL vmlinux 0xa22baf09 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24c1f79 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25a60bf pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa293cb73 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xa2a441f2 phy_loopback +EXPORT_SYMBOL vmlinux 0xa2b230d0 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa2bc39ee pci_iounmap +EXPORT_SYMBOL vmlinux 0xa2dc1f3e set_capacity +EXPORT_SYMBOL vmlinux 0xa2f490db _dev_printk +EXPORT_SYMBOL vmlinux 0xa313c0e6 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xa32c4196 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xa334cbf6 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xa34b8aa3 bdi_unregister +EXPORT_SYMBOL vmlinux 0xa35880d3 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xa378df73 md_handle_request +EXPORT_SYMBOL vmlinux 0xa37a10bf nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xa37be85b clk_add_alias +EXPORT_SYMBOL vmlinux 0xa38ad6f8 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xa38e91ea __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa3a0a6c4 unpin_user_pages +EXPORT_SYMBOL vmlinux 0xa3b0d09e dquot_commit +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3cbe874 path_get +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d3b94e security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3e9fe15 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa410ab2e agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa41d0969 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xa4435c33 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xa443be3b security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xa44f3e0f _dev_crit +EXPORT_SYMBOL vmlinux 0xa457fa2e devm_request_resource +EXPORT_SYMBOL vmlinux 0xa473a4e9 bpf_link_put +EXPORT_SYMBOL vmlinux 0xa49fa07d inode_nohighmem +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c12a76 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xa4ccb8cd mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xa4ce1c4b scsi_host_get +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4db9025 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xa4f1760e jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xa4f323af fddi_type_trans +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa4fdc13d mdiobus_read +EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0xa52179d3 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa52dff49 seq_pad +EXPORT_SYMBOL vmlinux 0xa539f1a4 misc_deregister +EXPORT_SYMBOL vmlinux 0xa53a18f3 make_kgid +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa553c081 config_item_get +EXPORT_SYMBOL vmlinux 0xa55f66f9 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xa56c151b __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xa577db42 del_gendisk +EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa592913b md_register_thread +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa617fe6f scsi_device_resume +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa640bfcd scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xa646533c serio_bus +EXPORT_SYMBOL vmlinux 0xa646ffe5 acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa6621395 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xa674aef2 fd_install +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xa6eff593 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xa6f1b6aa udp_gro_receive +EXPORT_SYMBOL vmlinux 0xa6f49513 vme_bus_num +EXPORT_SYMBOL vmlinux 0xa6f8be1b fb_validate_mode +EXPORT_SYMBOL vmlinux 0xa6fb4ed9 dquot_get_state +EXPORT_SYMBOL vmlinux 0xa6fe6006 pci_get_device +EXPORT_SYMBOL vmlinux 0xa70b7f07 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa71d8df1 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa73760b8 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xa73801e3 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xa7413f26 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xa742c164 dquot_operations +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa76fdd11 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xa7a712bc inet6_release +EXPORT_SYMBOL vmlinux 0xa7b13bf3 __scm_send +EXPORT_SYMBOL vmlinux 0xa7b61c34 unregister_netdev +EXPORT_SYMBOL vmlinux 0xa7c702c7 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xa7c81519 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xa7ce8ee4 cdrom_release +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7de16fe d_find_alias +EXPORT_SYMBOL vmlinux 0xa7df5fb2 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7efa0ef dquot_disable +EXPORT_SYMBOL vmlinux 0xa7f47b1f netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa806a763 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xa81563ae netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa82538f9 pskb_extract +EXPORT_SYMBOL vmlinux 0xa83236db generic_permission +EXPORT_SYMBOL vmlinux 0xa8332a4b dev_set_threaded +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +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 0xa8582b60 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa85bab48 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xa85c186f sockopt_release_sock +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa894e4aa migrate_folio +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89903b7 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8c47066 vif_device_init +EXPORT_SYMBOL vmlinux 0xa8c5f89d twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xa8c81c48 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xa8ca8485 vfs_getattr +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e3c857 put_cmsg +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8fbee7f __seq_open_private +EXPORT_SYMBOL vmlinux 0xa90ad7e5 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90f09fb dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index +EXPORT_SYMBOL vmlinux 0xa93efbd2 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa992a8cf set_pages_uc +EXPORT_SYMBOL vmlinux 0xa9b42fc9 edac_mc_find +EXPORT_SYMBOL vmlinux 0xa9bfccb3 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9f1f662 vme_slave_request +EXPORT_SYMBOL vmlinux 0xa9fb33cd d_set_fallthru +EXPORT_SYMBOL vmlinux 0xa9fec4a9 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa0df964 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xaa138015 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa317181 __skb_checksum +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa4a51a3 dst_alloc +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaac65f58 tty_port_open +EXPORT_SYMBOL vmlinux 0xaacb690c ptp_clock_register +EXPORT_SYMBOL vmlinux 0xaacf471f xp_alloc +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaadd10b8 open_exec +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaed9ca4 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xaafaa623 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaaff031a proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xab1404a5 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xab1cb73e phy_modify_paged +EXPORT_SYMBOL vmlinux 0xab1fd948 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xab2dfa91 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0xab31687d blk_sync_queue +EXPORT_SYMBOL vmlinux 0xab3308d1 ping_prot +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab4cf79e __hw_addr_ref_sync_dev +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 0xab6a23a6 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab77a95e __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab826c57 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xab8330f6 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xaba642df sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xabb42425 set_groups +EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0xabc93b5d netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xabd0be1c page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xabdae7b1 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xabf2d92e gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac0507f8 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xac0adae0 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xac128233 key_invalidate +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2bbac0 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac35be20 buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0xac432918 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac54da7d md_flush_request +EXPORT_SYMBOL vmlinux 0xac576ef9 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xac5fa932 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6bbf16 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xac755d34 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xac7eecac mdio_device_reset +EXPORT_SYMBOL vmlinux 0xac8d21a1 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xaca1396f nf_log_unset +EXPORT_SYMBOL vmlinux 0xaca8b830 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb6b1bb filemap_check_errors +EXPORT_SYMBOL vmlinux 0xacc22c8b ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xaccfcdb0 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdbf0d9 elevator_alloc +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace9b1f2 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacfbe8c2 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xacfc63f4 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad38ae95 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xad5024fd security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad53a002 __x86_indirect_call_thunk_rbp +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad6bc244 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad88a8e7 __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad9bc129 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xada1832d tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada549f7 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb451db empty_aops +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xade28cea iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xadeb0357 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xae01aba7 sk_error_report +EXPORT_SYMBOL vmlinux 0xae01eed8 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xae03385c vme_irq_handler +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae0494dd dev_open +EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled +EXPORT_SYMBOL vmlinux 0xae27c957 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae49a58d __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xae4a2c86 fb_show_logo +EXPORT_SYMBOL vmlinux 0xae54f81f vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xae67062d kill_litter_super +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 0xaebd5632 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xaed207b3 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xaef6ed16 pci_select_bars +EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf51c78b config_group_init +EXPORT_SYMBOL vmlinux 0xaf84a944 mdio_device_free +EXPORT_SYMBOL vmlinux 0xaf95a556 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xaf9a843a vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafb8ac14 folio_end_writeback +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xafdf78e7 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc +EXPORT_SYMBOL vmlinux 0xb03c1419 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xb03d16aa refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xb03e2089 cad_pid +EXPORT_SYMBOL vmlinux 0xb04824b7 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xb04923b5 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb04dcda2 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xb056b8f9 add_watch_to_object +EXPORT_SYMBOL vmlinux 0xb0570e65 setattr_prepare +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state +EXPORT_SYMBOL vmlinux 0xb067d4ac kset_unregister +EXPORT_SYMBOL vmlinux 0xb067e9c5 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xb06ab9c6 rproc_detach +EXPORT_SYMBOL vmlinux 0xb0840abe dev_get_iflink +EXPORT_SYMBOL vmlinux 0xb088abfc eth_validate_addr +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a45719 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb0aed24c jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xb0b76945 __x86_indirect_call_thunk_rsp +EXPORT_SYMBOL vmlinux 0xb0c3de82 pv_ops +EXPORT_SYMBOL vmlinux 0xb0c4399e ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e590e6 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb1193ae9 fget +EXPORT_SYMBOL vmlinux 0xb11e5a1d __kfree_skb +EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init +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 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb15cb4fe secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xb160467a netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xb1636a2e mmc_release_host +EXPORT_SYMBOL vmlinux 0xb194afc6 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb1acf71b netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d07fba dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xb1d4203c get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e43246 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xb1fc3bb3 __quota_error +EXPORT_SYMBOL vmlinux 0xb2026766 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xb206f115 con_is_visible +EXPORT_SYMBOL vmlinux 0xb20b8b8d mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb22d6047 ipv6_skip_exthdr +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 0xb23fb797 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xb24ff1c5 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xb252cfea give_up_console +EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb2621e8a pnp_start_dev +EXPORT_SYMBOL vmlinux 0xb26437ac phy_drivers_register +EXPORT_SYMBOL vmlinux 0xb2a06143 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xb2b44ddf tty_register_driver +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2bfd5d5 sget_fc +EXPORT_SYMBOL vmlinux 0xb2c31476 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xb2cf0593 posix_test_lock +EXPORT_SYMBOL vmlinux 0xb2cfda63 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xb2dcb3f0 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb317745a dcache_dir_open +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb337a76b mdio_device_remove +EXPORT_SYMBOL vmlinux 0xb3380d63 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xb33ba106 input_release_device +EXPORT_SYMBOL vmlinux 0xb3511d32 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xb35a894b jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xb361b979 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xb36875b9 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xb37de261 __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert +EXPORT_SYMBOL vmlinux 0xb38c2a9e dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xb394427c mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0xb39ce76a ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3b0a189 skb_push +EXPORT_SYMBOL vmlinux 0xb3b189fb brioctl_set +EXPORT_SYMBOL vmlinux 0xb3b22670 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xb3b5c437 __find_get_block +EXPORT_SYMBOL vmlinux 0xb3c9053f generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xb3d22390 input_allocate_device +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e0b383 register_netdev +EXPORT_SYMBOL vmlinux 0xb3e7598d filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xb3ebcf42 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xb3ebdd61 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f5af01 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f985a8 sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb3fbeb68 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb41c7f36 kobject_get +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42b56e9 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xb442b703 kill_block_super +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb4633838 f_setown +EXPORT_SYMBOL vmlinux 0xb464982c devm_of_iomap +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb480f36a fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xb481493d cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xb488b3d1 input_get_keycode +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xb4b493df xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xb4b51627 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xb4b88c30 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xb4cb6305 framebuffer_release +EXPORT_SYMBOL vmlinux 0xb4d3ddb0 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xb4e5669f dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xb53924a5 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb5480ab9 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xb5587953 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xb583709b rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xb5852c81 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xb586429d invalidate_bdev +EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0xb59a4f1a __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xb59f77f7 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined +EXPORT_SYMBOL vmlinux 0xb5ad0248 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xb5b2c427 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5be6779 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xb5cf7a92 cdev_init +EXPORT_SYMBOL vmlinux 0xb5d0160c flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xb5de2cc6 block_truncate_page +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb6051bfc xfrm_register_type +EXPORT_SYMBOL vmlinux 0xb6121f58 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb639ef3f page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb64420e7 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xb654be84 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb6588327 vga_switcheroo_client_fb_set +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 0xb68b680c set_blocksize +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6aea65d dcb_getapp +EXPORT_SYMBOL vmlinux 0xb6c56406 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6cdd36d tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xb6dfcf3d mmc_request_done +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb708206d agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xb7119dc1 convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb72c196f param_ops_hexint +EXPORT_SYMBOL vmlinux 0xb72e0040 device_add_disk +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb752eb7e abort_creds +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb75a0077 vme_lm_request +EXPORT_SYMBOL vmlinux 0xb76d7d8a iunique +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7c0d642 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c38944 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d76366 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xb7ec7c4c param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xb7f4a4d7 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb819637d alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xb81dced4 sock_release +EXPORT_SYMBOL vmlinux 0xb83b36f6 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xb862f7ea __x86_indirect_jump_thunk_rbx +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86ecf7a component_match_add_typed +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb8977921 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb9071c12 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb9195071 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +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 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb9a09ddd __x86_indirect_jump_thunk_rcx +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9c2435e alloc_pages +EXPORT_SYMBOL vmlinux 0xb9cc3122 kernel_bind +EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xb9e4cc3f devfreq_add_device +EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ff11c2 keyring_alloc +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba2449b3 __x86_indirect_jump_thunk_rax +EXPORT_SYMBOL vmlinux 0xba2a4b46 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5283b5 passthru_features_check +EXPORT_SYMBOL vmlinux 0xba7c7041 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba98a6af security_d_instantiate +EXPORT_SYMBOL vmlinux 0xba99c401 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xbab3ad13 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len +EXPORT_SYMBOL vmlinux 0xbac927c6 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xbadebe23 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xbae05ac0 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbafac507 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb07e535 legacy_pic +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb226f2a vfs_ioctl +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2a3b24 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb533690 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xbb55ebd0 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xbb586a13 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xbb6702bf kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xbb69075c fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xbb8dca41 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb9608b8 __sock_create +EXPORT_SYMBOL vmlinux 0xbb976706 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xbb9889f3 mmc_start_request +EXPORT_SYMBOL vmlinux 0xbb990e6c init_net +EXPORT_SYMBOL vmlinux 0xbb9a4a0e mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbbaaeeae simple_setattr +EXPORT_SYMBOL vmlinux 0xbbad382a __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xbbcc9ed0 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xbbd08d67 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc326e2a cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xbc40beb1 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xbc61f989 to_nd_dax +EXPORT_SYMBOL vmlinux 0xbc6ecf6c security_sk_clone +EXPORT_SYMBOL vmlinux 0xbc882ff5 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xbc92cf79 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xbc9b402f locks_init_lock +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcaddded xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key +EXPORT_SYMBOL vmlinux 0xbcb94bf8 sk_alloc +EXPORT_SYMBOL vmlinux 0xbcc2ea4d jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xbcc5c420 param_set_hexint +EXPORT_SYMBOL vmlinux 0xbcd29197 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xbce5e5f1 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xbcef8b58 __x86_indirect_jump_thunk_rdx +EXPORT_SYMBOL vmlinux 0xbcf835d3 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xbd13f6be bio_copy_data +EXPORT_SYMBOL vmlinux 0xbd1bb21e tty_port_close +EXPORT_SYMBOL vmlinux 0xbd209556 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd3d6744 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd538627 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xbd54fa03 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xbd5bf74b tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xbd6396d4 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd6ade47 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xbd7b4961 rproc_report_crash +EXPORT_SYMBOL vmlinux 0xbd8427da finish_swait +EXPORT_SYMBOL vmlinux 0xbd9e1f2f ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xbda0698c ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xbdc94404 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xbdd5e591 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbdfd2ae4 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xbdffb1a8 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe0151ec bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xbe06a8a5 netdev_warn +EXPORT_SYMBOL vmlinux 0xbe263f36 cred_fscmp +EXPORT_SYMBOL vmlinux 0xbe2cae3c jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xbe2f563e tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xbe341a21 vga_put +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 0xbe72f5ac skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xbe77ddb2 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xbe7b60a2 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xbe80e422 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xbeab6ac7 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xbecab81f clear_user_erms +EXPORT_SYMBOL vmlinux 0xbed863dd agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf06d437 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xbf0f6cc6 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xbf12cbb7 udp_prot +EXPORT_SYMBOL vmlinux 0xbf1bccdf iptun_encaps +EXPORT_SYMBOL vmlinux 0xbf21f32f devm_free_irq +EXPORT_SYMBOL vmlinux 0xbf27bf0b mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xbf3068e4 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xbf3115d6 proc_create +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf41512f mdio_device_register +EXPORT_SYMBOL vmlinux 0xbf572c68 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf7be6e7 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xbf980ea6 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9e1ef6 __devm_request_region +EXPORT_SYMBOL vmlinux 0xbf9ff2cd clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc6f2c7 agp_free_memory +EXPORT_SYMBOL vmlinux 0xbfd10e5b seq_file_path +EXPORT_SYMBOL vmlinux 0xbfdac842 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xbff877bc sock_alloc +EXPORT_SYMBOL vmlinux 0xbff8d1fc gro_cells_init +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc0451ac6 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xc05086df get_vm_area +EXPORT_SYMBOL vmlinux 0xc05f7a1b generic_delete_inode +EXPORT_SYMBOL vmlinux 0xc063351f scsi_print_sense_hdr +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 0xc08d299e xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xc0967762 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xc0a78d8c mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xc0b8f3a9 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xc0e4a985 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xc0e6f9e6 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xc0eae11c shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xc0ed9a34 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xc0f1f189 mfd_cell_enable +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 0xc107c7f1 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc11a0237 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xc12ce26b rproc_del +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc14525f6 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1902e94 pci_dev_put +EXPORT_SYMBOL vmlinux 0xc19548e6 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xc1af83ec xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xc1bc9a7e folio_mark_accessed +EXPORT_SYMBOL vmlinux 0xc1c03d6c fsync_bdev +EXPORT_SYMBOL vmlinux 0xc1ca58bc sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1f63fef xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xc1fd09dc seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc243514c try_module_get +EXPORT_SYMBOL vmlinux 0xc244fed6 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xc266436b mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc29d1d0e pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xc2b2b4a4 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xc2ccb890 mount_bdev +EXPORT_SYMBOL vmlinux 0xc2df162c netdev_info +EXPORT_SYMBOL vmlinux 0xc2df8115 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xc2e0422d page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xc2e3f506 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f3188d rw_verify_area +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3198d70 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc31f335a nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc33176e1 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xc35916bb tty_lock +EXPORT_SYMBOL vmlinux 0xc35ba98e cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xc36e9d9b netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc390a0de flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xc391a697 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xc39dd574 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xc39f423a genphy_suspend +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xc3e5edb5 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xc3e7a8ea phy_read_mmd +EXPORT_SYMBOL vmlinux 0xc3fbb6b9 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42bb1da skb_checksum_help +EXPORT_SYMBOL vmlinux 0xc42d9d1f __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc43c4391 __ps2_command +EXPORT_SYMBOL vmlinux 0xc444051a __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xc44c869f phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xc450c977 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc4527944 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xc457a01f agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xc45b6d60 inet_frag_find +EXPORT_SYMBOL vmlinux 0xc45bb00b pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xc471a8be ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc4888105 d_path +EXPORT_SYMBOL vmlinux 0xc48f67ac inet_release +EXPORT_SYMBOL vmlinux 0xc495fb55 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4b42239 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xc4b85c10 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xc4beb08d ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0xc4f01d0b buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xc4f7c983 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xc50c2271 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xc50ce3ef tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xc515f1cd __x86_indirect_jump_thunk_r13 +EXPORT_SYMBOL vmlinux 0xc5165f6e xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc52b4d9e init_pseudo +EXPORT_SYMBOL vmlinux 0xc530a404 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xc5352ceb notify_change +EXPORT_SYMBOL vmlinux 0xc53db400 d_obtain_root +EXPORT_SYMBOL vmlinux 0xc547dcca splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xc54d50f2 napi_disable +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc580e3b0 pci_bus_type +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59a6770 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5db1a32 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xc5dcfe58 shmem_aops +EXPORT_SYMBOL vmlinux 0xc5dd4c26 drop_super +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc60869e5 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc60ddeca dm_kobject_release +EXPORT_SYMBOL vmlinux 0xc615bfbf config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xc61a7833 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xc61b1973 tcp_create_openreq_child +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 0xc644fd65 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xc64df262 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xc64f0cc5 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc66d9f55 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc69192c6 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0xc6acf284 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xc6b3256f amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xc6b6996a vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xc6bb2b0d inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xc6c1c2b3 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cc7dcc __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6ec9b4b validate_slab_cache +EXPORT_SYMBOL vmlinux 0xc6f055fe skb_append +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f5de22 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xc6fb3be3 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc70dbf14 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xc7151379 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72ecf9a __put_user_ns +EXPORT_SYMBOL vmlinux 0xc7657863 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a92e2c devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc7b06898 param_ops_int +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c15223 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc7c6f608 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xc7c72648 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7fa0eb3 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xc8017b17 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xc80a8214 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc80bc530 vfs_mknod +EXPORT_SYMBOL vmlinux 0xc80eec40 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc80f0d79 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc85c94b2 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xc8607986 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xc86417b0 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87bf442 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc882f558 rproc_alloc +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8bb926d jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xc8bbecb8 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xc8bd048c dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xc8beeb9f sk_reset_timer +EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table +EXPORT_SYMBOL vmlinux 0xc8d95231 make_kprojid +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e65e44 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xc91687a6 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc9336a14 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc95f3a00 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xc962f677 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9636a30 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a8bb31 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xc9a91c51 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xc9aa732a param_ops_long +EXPORT_SYMBOL vmlinux 0xc9ad099e netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xc9b4f6d2 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xc9ceaf13 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e1a168 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xc9f867b5 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xc9fb6fa6 get_tree_single +EXPORT_SYMBOL vmlinux 0xca015c34 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xca14b549 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca200120 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca4e7bce ip_output +EXPORT_SYMBOL vmlinux 0xca6677d4 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xca73123f dev_add_offload +EXPORT_SYMBOL vmlinux 0xca88520e kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0xca8eff6b nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcab24be8 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xcab75fff __register_chrdev +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcada36d8 trace_event_printf +EXPORT_SYMBOL vmlinux 0xcae6a73a dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xcaf31089 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xcaf4f943 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xcaf8de8a load_nls +EXPORT_SYMBOL vmlinux 0xcb01d528 vma_set_file +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb1ade79 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xcb20fb6b filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb43c1b4 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xcb47487c blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xcb5c1159 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xcb630c77 devfreq_update_status +EXPORT_SYMBOL vmlinux 0xcb6ec1f1 unlock_page +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb9ca699 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xcba68b21 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbcc1528 dm_put_device +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbdc1461 folio_unlock +EXPORT_SYMBOL vmlinux 0xcbf03af4 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcbfff541 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xcc16db36 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc1f7a84 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2a90dc netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xcc2b25eb call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc36b8b6 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c0797 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc60e9e7 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xcc61d1d4 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xcc702bb6 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xcc71162d pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xcc75555c security_unix_may_send +EXPORT_SYMBOL vmlinux 0xcc908cc7 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xcc91d8d7 scsi_device_put +EXPORT_SYMBOL vmlinux 0xcc9e13c9 iterate_dir +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccb2d184 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xccc64e8b genphy_loopback +EXPORT_SYMBOL vmlinux 0xccccd0c5 mdio_device_create +EXPORT_SYMBOL vmlinux 0xccd05577 scsi_partsize +EXPORT_SYMBOL vmlinux 0xccd2b7f1 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xccebb8ab dev_get_by_index +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 0xcd0832a7 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0xcd15b983 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xcd2228e2 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd3928ec dev_close +EXPORT_SYMBOL vmlinux 0xcd4cb2b1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xcd660bc2 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xcd6d1ab7 sk_wait_data +EXPORT_SYMBOL vmlinux 0xcd71b319 pci_request_regions +EXPORT_SYMBOL vmlinux 0xcd7f621b tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xcd85e1a8 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcdafa595 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0xcdbb7bfe dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd27919 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcde95231 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xcdf4f7a7 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xce031d65 bio_add_page +EXPORT_SYMBOL vmlinux 0xce10ebd6 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xce118066 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3d05e0 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5a0828 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce720f28 mtree_destroy +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce93cbc8 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcebd1067 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcedc1dc6 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xcee4063e mr_table_alloc +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf14b23e flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xcf25a1b7 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2c3cd3 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf4f830b mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf675dac ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xcf76443c generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xcf904e46 rproc_shutdown +EXPORT_SYMBOL vmlinux 0xcf9128f3 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xcf92ada8 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xcf985786 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xcf99413e vfs_fadvise +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfb063e7 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xcfb373f5 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd20071 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfde93a3 __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0xcfe9503a __mdiobus_register +EXPORT_SYMBOL vmlinux 0xcff4e19b vfs_create +EXPORT_SYMBOL vmlinux 0xd002d9e5 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xd01caab9 dma_resv_init +EXPORT_SYMBOL vmlinux 0xd0253497 pci_enable_device +EXPORT_SYMBOL vmlinux 0xd03b1049 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04c71c5 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xd052c26d msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xd052ff31 clear_nlink +EXPORT_SYMBOL vmlinux 0xd06412b5 __module_get +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0671b1a ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd0884e54 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0b89b7f kern_path_create +EXPORT_SYMBOL vmlinux 0xd0d7398f ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xd0dc167b phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xd0e4ebc3 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd11f1314 param_get_ulong +EXPORT_SYMBOL vmlinux 0xd122f7a4 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xd127fc81 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd1458d0a pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xd157adfd __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xd15cc805 may_umount_tree +EXPORT_SYMBOL vmlinux 0xd15f9758 dev_get_stats +EXPORT_SYMBOL vmlinux 0xd185f664 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xd18ba745 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xd19242ed dev_uc_add +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1b22e4f arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xd1b974eb inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xd1cd0d6a rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xd1cdccdf simple_release_fs +EXPORT_SYMBOL vmlinux 0xd1d7a10b wake_up_process +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1ee0b15 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xd1f1636f migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd202db94 cdev_del +EXPORT_SYMBOL vmlinux 0xd213ec2e clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd21ce12e kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd22d9b17 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xd236ad11 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xd23b83a6 ppp_input_error +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd26f032c tcf_exts_change +EXPORT_SYMBOL vmlinux 0xd270f413 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xd277fda0 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27e41d4 follow_down +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd297b28e simple_empty +EXPORT_SYMBOL vmlinux 0xd2bc3c99 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0xd2c24325 vfs_tmpfile_open +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 0xd32b21c2 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xd336e604 skb_tx_error +EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd3686137 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd38fbf78 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xd3b070d4 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xd3b3185c flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xd3d49ecd ppp_register_channel +EXPORT_SYMBOL vmlinux 0xd3e45fa2 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xd3fe5595 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4261bb2 file_modified +EXPORT_SYMBOL vmlinux 0xd432cb0c jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xd4333fa7 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4632658 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0xd46eaeb6 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd49568ed tty_port_close_end +EXPORT_SYMBOL vmlinux 0xd49afd55 pps_event +EXPORT_SYMBOL vmlinux 0xd4a6456a max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xd4b1ca81 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd4b252c3 generic_update_time +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c5434e vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4dd51ac devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd4e140ef get_phy_device +EXPORT_SYMBOL vmlinux 0xd4e5de71 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xd51f4f20 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xd5229a41 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52b2a18 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd54a9fd2 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xd55c61ee sock_create +EXPORT_SYMBOL vmlinux 0xd55daa02 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0xd56a0ff2 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xd58aa06c skb_pull_data +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5e39498 param_get_int +EXPORT_SYMBOL vmlinux 0xd5ec6961 path_is_under +EXPORT_SYMBOL vmlinux 0xd5f73c94 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd627eb75 pid_task +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd63527a6 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xd63f5faf tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd64b1fbb tty_port_hangup +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6732b46 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xd6742002 preempt_schedule_thunk +EXPORT_SYMBOL vmlinux 0xd68545ea blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6980698 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6b85485 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xd6d19962 readahead_expand +EXPORT_SYMBOL vmlinux 0xd6d9ff4b consume_skb +EXPORT_SYMBOL vmlinux 0xd6e667ac netdev_err +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd7063747 get_user_pages +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f5edb blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd7161b3a __lock_buffer +EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd7482f33 is_nd_btt +EXPORT_SYMBOL vmlinux 0xd76bc48a blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xd7739282 serio_reconnect +EXPORT_SYMBOL vmlinux 0xd77642ae inet_del_offload +EXPORT_SYMBOL vmlinux 0xd7862fda scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xd7977e32 phy_attach +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7b815af neigh_xmit +EXPORT_SYMBOL vmlinux 0xd7c3f923 devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e37bf2 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f86107 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xd802dd91 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xd80c2384 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xd811f854 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xd829ba2a zap_page_range +EXPORT_SYMBOL vmlinux 0xd8332918 bio_reset +EXPORT_SYMBOL vmlinux 0xd8375a22 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xd83ef007 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd8755df4 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xd890c467 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xd893e937 do_splice_direct +EXPORT_SYMBOL vmlinux 0xd897ba55 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xd89a6d01 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a163e4 redraw_screen +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit +EXPORT_SYMBOL vmlinux 0xd8bd29ef sync_file_create +EXPORT_SYMBOL vmlinux 0xd8ca8d2f kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xd8d35569 input_unregister_device +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8eb8917 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xd8ec0ac8 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd8fcf4ee tcp_prot +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd921e5b7 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xd921e77d pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xd924ad2b mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xd9254259 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9301789 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0xd934cfe3 register_netdevice +EXPORT_SYMBOL vmlinux 0xd948eb74 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd95cfdbc key_reject_and_link +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd97f0334 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9ab6fca mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xd9b56bf0 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9bf657a keyring_search +EXPORT_SYMBOL vmlinux 0xd9cb3190 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9ffafb2 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xda05c454 key_move +EXPORT_SYMBOL vmlinux 0xda08b437 flow_rule_match_vlan +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 0xda4505d5 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xda4804b9 netif_rx +EXPORT_SYMBOL vmlinux 0xda48edca xfrm_input +EXPORT_SYMBOL vmlinux 0xda5832b9 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xda60e02b jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xda620fc5 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xda766f4f _dev_warn +EXPORT_SYMBOL vmlinux 0xda7f6b28 __post_watch_notification +EXPORT_SYMBOL vmlinux 0xda8071e0 touch_atime +EXPORT_SYMBOL vmlinux 0xda95e15f simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xda9999af clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xdac1ff02 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xdac333dc __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdaeb6442 simple_rename +EXPORT_SYMBOL vmlinux 0xdaf571d3 dst_dev_put +EXPORT_SYMBOL vmlinux 0xdb0e6598 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb27ecde security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xdb4262dd input_register_handle +EXPORT_SYMBOL vmlinux 0xdb4c33d4 scsi_done +EXPORT_SYMBOL vmlinux 0xdb57c855 key_validate +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6ec39f amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8f746e kernel_getsockname +EXPORT_SYMBOL vmlinux 0xdb951a9d pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size +EXPORT_SYMBOL vmlinux 0xdb98f09b fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xdb9bda83 locks_delete_block +EXPORT_SYMBOL vmlinux 0xdb9c66aa fs_param_is_string +EXPORT_SYMBOL vmlinux 0xdba32f22 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xdbb28f5d filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbd429ef vlan_vid_add +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbea538f __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xdbfba075 nonseekable_open +EXPORT_SYMBOL vmlinux 0xdc002131 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xdc00681a register_quota_format +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc0ec08c __x86_indirect_jump_thunk_r12 +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc16daeb amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0xdc3bad2a inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc8c7517 lease_modify +EXPORT_SYMBOL vmlinux 0xdca88a20 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xdcb04d7d blackhole_netdev +EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xdcc12417 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xdcc23e00 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xdcc53768 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xdcc56475 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xdccb4f4a sock_no_bind +EXPORT_SYMBOL vmlinux 0xdccf04a8 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0xdcda3b07 console_stop +EXPORT_SYMBOL vmlinux 0xdcdb7f9f netif_tx_lock +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdcec33f3 __icmp_send +EXPORT_SYMBOL vmlinux 0xdcefba52 kill_fasync +EXPORT_SYMBOL vmlinux 0xdcfdc295 phy_disconnect +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd2a9138 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2f2e5e param_get_byte +EXPORT_SYMBOL vmlinux 0xdd368ebe bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xdd3a1dc3 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xdd3afbdc ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xdd3f74f4 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xdd51f051 d_genocide +EXPORT_SYMBOL vmlinux 0xdd54980a file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xdd553e98 ip6_dst_check +EXPORT_SYMBOL vmlinux 0xdd584c61 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd74b8af send_sig_info +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd82bbf8 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddc23fd1 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddcf09db cont_write_begin +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xde0433ab mount_subtree +EXPORT_SYMBOL vmlinux 0xde1798eb md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde4f5acf dma_sync_wait +EXPORT_SYMBOL vmlinux 0xde52bfb5 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xde5afadc rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xde6a1e67 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xde7a84c0 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap +EXPORT_SYMBOL vmlinux 0xde8e1266 dup_iter +EXPORT_SYMBOL vmlinux 0xde9aac8f __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xde9dceda regset_get_alloc +EXPORT_SYMBOL vmlinux 0xde9f0e06 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xdec28485 dst_init +EXPORT_SYMBOL vmlinux 0xdec890f7 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded3a4c2 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xdee5a3b9 audit_log +EXPORT_SYMBOL vmlinux 0xdef4e5f4 pci_save_state +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xdf0882eb pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf32b26f jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf3fb6b3 proc_set_size +EXPORT_SYMBOL vmlinux 0xdf4b2c4f vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit +EXPORT_SYMBOL vmlinux 0xdf543f08 pci_find_resource +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf572d93 key_put +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf870dcc page_symlink +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0xdf8e60f1 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xdf90af77 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents +EXPORT_SYMBOL vmlinux 0xdf9cdf3a xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xdf9ed17f mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xdfacd439 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xdfae77e0 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xdfb78368 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfc5219a iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xdfdce686 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xdfe6e6be sock_register +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0073103 setattr_copy +EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xe019481c cfb_fillrect +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe04b74d3 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xe079ab8c dev_get_flags +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe07ef363 intel_gmch_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0adc6d8 param_get_charp +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xe0c4d507 mntput +EXPORT_SYMBOL vmlinux 0xe0d1ce13 pin_user_pages +EXPORT_SYMBOL vmlinux 0xe0de9897 param_ops_uint +EXPORT_SYMBOL vmlinux 0xe0e360a1 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xe0e46db0 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe16f53b0 complete_request_key +EXPORT_SYMBOL vmlinux 0xe1700d8d skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xe1732ab2 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xe17732e3 current_time +EXPORT_SYMBOL vmlinux 0xe180182a filemap_release_folio +EXPORT_SYMBOL vmlinux 0xe194f33b mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xe1b6a9a1 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr +EXPORT_SYMBOL vmlinux 0xe1c68377 param_set_int +EXPORT_SYMBOL vmlinux 0xe1da16c3 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1dd9de4 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xe1eabb8d xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xe20b5f60 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xe20f6e8f xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xe211e1c6 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe22597b9 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xe2364e51 pnp_possible_config +EXPORT_SYMBOL vmlinux 0xe258280b skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xe272128b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up +EXPORT_SYMBOL vmlinux 0xe299ce4e datagram_poll +EXPORT_SYMBOL vmlinux 0xe2b17881 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xe2c17b5d __SCT__might_resched +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d76da2 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xe2dd00c0 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr +EXPORT_SYMBOL vmlinux 0xe2e329d7 d_set_d_op +EXPORT_SYMBOL vmlinux 0xe2f07933 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xe2f84db4 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe318fcac folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xe31b9301 intel_gmch_gtt_flush +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe32cdaf8 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe3322d9b tcp_peek_len +EXPORT_SYMBOL vmlinux 0xe33ea290 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xe34627be sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0xe347501b inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xe386c0b0 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3a3696d tty_port_init +EXPORT_SYMBOL vmlinux 0xe3ac003f netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xe3c2cbd2 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xe3d1adf0 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xe3d6b063 block_write_begin +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3ea9f47 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3eecce1 submit_bh +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 0xe40b8f9c inode_insert5 +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe41d1bcf vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe4352965 input_close_device +EXPORT_SYMBOL vmlinux 0xe43b1713 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xe43b2d41 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xe43b7392 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xe453c625 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xe4578d8e __netif_rx +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe4657608 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xe470cfaf vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xe473b616 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xe475bc05 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xe47cc155 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xe494966e phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xe4b34d68 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4d07085 __pagevec_release +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe4ffb648 cpu_info +EXPORT_SYMBOL vmlinux 0xe502bb11 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xe516581d padata_free +EXPORT_SYMBOL vmlinux 0xe5165bc2 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe536b67c input_open_device +EXPORT_SYMBOL vmlinux 0xe54966c0 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xe549c31b tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xe54bce11 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xe552ecac seq_escape_mem +EXPORT_SYMBOL vmlinux 0xe558b2e2 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xe559d08b register_filesystem +EXPORT_SYMBOL vmlinux 0xe5615673 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0xe577bc96 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xe57a5d9a phy_register_fixup +EXPORT_SYMBOL vmlinux 0xe57dcee8 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5afd3a2 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xe5bdeb70 dev_uc_init +EXPORT_SYMBOL vmlinux 0xe5c510f6 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5f879ba xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xe5fc6596 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0xe604c939 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xe60bf763 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xe60c7e3c netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xe62c6f7c wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xe636fb9c scsi_add_device +EXPORT_SYMBOL vmlinux 0xe63dab2f sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xe63dfad9 skb_find_text +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe66bf5db nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xe67589d8 kthread_bind +EXPORT_SYMBOL vmlinux 0xe677971d max8925_set_bits +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe6b75c6b I_BDEV +EXPORT_SYMBOL vmlinux 0xe6c0877a sget +EXPORT_SYMBOL vmlinux 0xe6d06e19 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6ecb2e8 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe7141951 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe7271c25 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xe731cfe9 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xe734e19e __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xe7578bc6 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xe7606506 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xe7806dab devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xe783fa92 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe78b71e9 blk_rq_init +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7c61742 twl6040_power +EXPORT_SYMBOL vmlinux 0xe7cf204f dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xe7d3ec94 kern_unmount +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7f42abc amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0xe801bf79 prepare_creds +EXPORT_SYMBOL vmlinux 0xe8021f75 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe8052234 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xe81f0126 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xe82da658 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xe8460dd9 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xe84a0f86 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xe8543e81 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe867697a dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0xe872a4c4 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xe8944c2f __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xe89da8b6 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xe8c1cb79 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xe8c9204c neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xe8cf48c6 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len +EXPORT_SYMBOL vmlinux 0xe8f0fe0a __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe949740b netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe976659a phy_device_register +EXPORT_SYMBOL vmlinux 0xe9864445 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xe9a385e3 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9bdb960 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xe9c0b2eb skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xe9cbba5c jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9e336a0 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9edc916 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0xe9f054d5 file_path +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f7dcd2 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xe9fbe851 md_check_recovery +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea1b2b4e cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xea284cac component_match_add_release +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea407ce1 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xea5010d1 folio_write_one +EXPORT_SYMBOL vmlinux 0xea5c153c scsi_dma_map +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea902582 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xea92244d may_setattr +EXPORT_SYMBOL vmlinux 0xeaa76bf1 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xeaab0424 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xeaaba17b flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xeab23fc0 dev_addr_mod +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeac2ec54 request_key_rcu +EXPORT_SYMBOL vmlinux 0xeac7058e pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xead9603f kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xeadada51 scsi_print_result +EXPORT_SYMBOL vmlinux 0xeade4269 tcp_req_err +EXPORT_SYMBOL vmlinux 0xeadf9246 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb0949e8 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xeb19da23 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xeb1d5b20 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb24d028 __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3ebe6e clocksource_unregister +EXPORT_SYMBOL vmlinux 0xeb434f33 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb51c84d get_fs_type +EXPORT_SYMBOL vmlinux 0xeb77f512 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xeb7d3601 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xeb7ed04c pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb86a009 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xebf4bfd4 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xebf63876 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xec0b82e2 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec34c6cc mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xec35526e stop_tty +EXPORT_SYMBOL vmlinux 0xec43395b agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xec49677a devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec69fb21 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xec6b998c to_ndd +EXPORT_SYMBOL vmlinux 0xec833f78 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xec91f091 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xec986aa4 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecb8e406 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xecbcd219 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xecc58626 __serio_register_port +EXPORT_SYMBOL vmlinux 0xecc7c868 __x86_indirect_jump_thunk_r9 +EXPORT_SYMBOL vmlinux 0xecd6aef2 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed2a7b07 nf_log_trace +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed54afff tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed69c7ca netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xed82aa24 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xed98b502 load_nls_default +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedcc37e5 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xedcdff11 dump_page +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xeddaf538 submit_bio +EXPORT_SYMBOL vmlinux 0xeddf9d7f backlight_force_update +EXPORT_SYMBOL vmlinux 0xedea7090 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xee0dcd1e genl_register_family +EXPORT_SYMBOL vmlinux 0xee221d57 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee38a20e __x86_indirect_jump_thunk_r10 +EXPORT_SYMBOL vmlinux 0xee3f711f generic_writepages +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee6a2f7e devm_devfreq_unregister_opp_notifier +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 0xee9a75b4 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeaa9e5e xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xeeb121de seq_open +EXPORT_SYMBOL vmlinux 0xeebb3bc7 dst_destroy +EXPORT_SYMBOL vmlinux 0xeebea043 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xeec1c60f hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xeec2b686 register_qdisc +EXPORT_SYMBOL vmlinux 0xeec6dfe5 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xeef11f7f mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xeef9c2c5 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xef0df447 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xef18e8cf tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xef2df28b __skb_pad +EXPORT_SYMBOL vmlinux 0xef2f4739 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xef2fe76b blk_get_queue +EXPORT_SYMBOL vmlinux 0xef36a848 __x86_indirect_jump_thunk_rdi +EXPORT_SYMBOL vmlinux 0xef5aba7e scsi_register_interface +EXPORT_SYMBOL vmlinux 0xef600f0c dquot_release +EXPORT_SYMBOL vmlinux 0xef7a91db t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xef8733d9 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa2151e xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefbd51a6 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd26ec9 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xeff556db mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf02be2ea drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xf02d97c0 mount_nodev +EXPORT_SYMBOL vmlinux 0xf02e28ff tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xf03e2c7c mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xf05b82f9 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0acbd14 dquot_transfer +EXPORT_SYMBOL vmlinux 0xf0bd5cc5 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0xf0c25e1a __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xf0c62c43 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xf0d41d95 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xf0d74c94 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xf0e52e56 clear_user_original +EXPORT_SYMBOL vmlinux 0xf0e620e5 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xf0ebc17d mpage_writepages +EXPORT_SYMBOL vmlinux 0xf10d1a30 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xf1152177 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xf11a32d4 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf13390b1 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xf152413d sock_no_getname +EXPORT_SYMBOL vmlinux 0xf15c8260 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xf164492b __alloc_pages +EXPORT_SYMBOL vmlinux 0xf16ab2a8 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xf1769b2c pci_msi_vec_count +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 0xf1ac1513 fc_mount +EXPORT_SYMBOL vmlinux 0xf1be65db __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xf1ca3fc8 kobject_del +EXPORT_SYMBOL vmlinux 0xf1cd7997 dev_driver_string +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f2bcc1 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xf20e9056 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xf21a54ae __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xf22423e4 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xf2264355 mmc_put_card +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf2645bfe nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xf273550c kill_anon_super +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 0xf2aed107 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xf2b2c65f platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf325531c dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35f4f2e set_user_nice +EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf372d9c4 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xf378269f migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xf38dc006 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot +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 0xf3abf3eb jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xf3b6102f kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xf3c0466f nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xf3c15686 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xf3c6bb82 _dev_emerg +EXPORT_SYMBOL vmlinux 0xf3ce0003 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xf3cf2f31 poll_initwait +EXPORT_SYMBOL vmlinux 0xf3d5af88 flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e27e30 nla_put +EXPORT_SYMBOL vmlinux 0xf3e44996 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xf3e57c03 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xf3f33a7a lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xf3fcf3f9 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xf413aace mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf43e17df mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xf4415be8 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44f545a register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xf472f389 dump_emit +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf483143e release_pages +EXPORT_SYMBOL vmlinux 0xf496101a ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4ae9ded param_array_ops +EXPORT_SYMBOL vmlinux 0xf4b30c43 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4d7c6b2 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e4ab04 inet_protos +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f5777b inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xf50e2d68 md_integrity_register +EXPORT_SYMBOL vmlinux 0xf51602fd ata_print_version +EXPORT_SYMBOL vmlinux 0xf53c6b56 _dev_err +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf546d00f d_exact_alias +EXPORT_SYMBOL vmlinux 0xf5526dfe devfreq_update_target +EXPORT_SYMBOL vmlinux 0xf5690dff xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5516c forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5a6f2a7 module_put +EXPORT_SYMBOL vmlinux 0xf5b00aab boot_cpu_data +EXPORT_SYMBOL vmlinux 0xf5cb12ed serio_interrupt +EXPORT_SYMBOL vmlinux 0xf5dcf929 __x86_indirect_jump_thunk_r8 +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5ed3716 phy_read_paged +EXPORT_SYMBOL vmlinux 0xf6014da5 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf60b25e2 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0xf60c1edb tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf6444554 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xf65f1dbd __x86_indirect_jump_thunk_rsi +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf6726655 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf69c3aaa tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xf6b32439 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xf6b96c46 mount_single +EXPORT_SYMBOL vmlinux 0xf6b97e2e vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xf6dc61aa tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf704b018 mmc_add_host +EXPORT_SYMBOL vmlinux 0xf7213091 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xf723934f __x86_indirect_jump_thunk_r11 +EXPORT_SYMBOL vmlinux 0xf724aafc __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf746a32f page_pool_release_page +EXPORT_SYMBOL vmlinux 0xf753fb7c kfree_skb_reason +EXPORT_SYMBOL vmlinux 0xf769e345 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xf77dac5f invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xf78bd5b3 input_register_handler +EXPORT_SYMBOL vmlinux 0xf79c754e netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf79fdf7c security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xf7ab0746 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xf7cc68c9 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e152f9 ip_frag_init +EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf80625d1 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xf80a51e9 phy_ethtool_set_wol +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 0xf82982c6 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf839b4d3 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xf83dab5e xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xf83f32fe device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0xf844f4d1 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf84c7850 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xf8512974 config_group_find_item +EXPORT_SYMBOL vmlinux 0xf8515afd fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf860815f generic_listxattr +EXPORT_SYMBOL vmlinux 0xf8721793 ns_capable +EXPORT_SYMBOL vmlinux 0xf874dd0e reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xf8c24e9d genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xf8cceb27 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8e3ab70 aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf900ffa6 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xf9082edc scsi_ioctl +EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0xf9137552 dma_set_mask +EXPORT_SYMBOL vmlinux 0xf9195b39 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xf928b322 inode_init_owner +EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf948918b ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xf95999f1 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf97499f5 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xf99821f8 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9af9ebf fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xf9b4f85a iov_iter_npages +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9e6bedc security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xf9fb77bd pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa116189 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse +EXPORT_SYMBOL vmlinux 0xfa4df4c7 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xfa52f758 dump_align +EXPORT_SYMBOL vmlinux 0xfa578963 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa7e5089 phy_driver_register +EXPORT_SYMBOL vmlinux 0xfa973912 md_write_end +EXPORT_SYMBOL vmlinux 0xfaa92190 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfaad923a vm_insert_page +EXPORT_SYMBOL vmlinux 0xfab73fca fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xfab994ec generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xfabbb531 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xfabe8f8d qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xfac5707a remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfb2a0f5b input_flush_device +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb43e976 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xfb501287 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb5e87c1 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb74a9af __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xfb77d476 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xfb84976a md_finish_reshape +EXPORT_SYMBOL vmlinux 0xfb919f66 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xfb95addf sk_common_release +EXPORT_SYMBOL vmlinux 0xfb99fc26 vmap +EXPORT_SYMBOL vmlinux 0xfb9b5ab8 rio_query_mport +EXPORT_SYMBOL vmlinux 0xfba22702 proto_register +EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaa79ab input_set_timestamp +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 0xfbbbb28a pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd1886e posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbf6a2c8 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xfc04fed0 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xfc124361 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xfc2fc412 crypto_sha256_update +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 0xfc5133b6 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xfc5aff2a pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices +EXPORT_SYMBOL vmlinux 0xfc6cee66 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xfc929667 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xfcb253e6 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xfcc51ebd param_set_invbool +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcda8552 inet_shutdown +EXPORT_SYMBOL vmlinux 0xfcdd1414 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa9e79 page_readlink +EXPORT_SYMBOL vmlinux 0xfcfad70c nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xfd13b9c3 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xfd222e36 vme_bus_type +EXPORT_SYMBOL vmlinux 0xfd258a01 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfda2a3ab pci_release_resource +EXPORT_SYMBOL vmlinux 0xfda8e62c gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xfda9a3f1 intel_gmch_enable_gtt +EXPORT_SYMBOL vmlinux 0xfdaca656 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfde03c40 dns_query +EXPORT_SYMBOL vmlinux 0xfde260f4 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xfdeb4f57 arp_send +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfdfbd766 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe118813 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xfe13227a blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe356428 __folio_put +EXPORT_SYMBOL vmlinux 0xfe37a1d2 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe61d87b seq_release_private +EXPORT_SYMBOL vmlinux 0xfe79313b dqget +EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe90d199 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe97aa29 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xfe9bbace elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfea47970 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xfeb320ce inet_frags_init +EXPORT_SYMBOL vmlinux 0xfeb9d2cf mntget +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeead97b tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfeed17ec phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xfeef3b13 iget_locked +EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xfef4e1d4 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xfef73073 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff048e04 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xff0ae243 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xff10c278 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xff1352f2 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff292e89 iput +EXPORT_SYMBOL vmlinux 0xff2abe4b skb_clone +EXPORT_SYMBOL vmlinux 0xff3a51f4 slab_build_skb +EXPORT_SYMBOL vmlinux 0xff50ac23 pnp_is_active +EXPORT_SYMBOL vmlinux 0xff51f3af pci_iomap +EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff714c75 generic_read_dir +EXPORT_SYMBOL vmlinux 0xff7fa714 kernel_read +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xffa806fe inet_del_protocol +EXPORT_SYMBOL vmlinux 0xffafa3c1 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffba899f agp3_generic_tlbflush +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 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x2c8b5dbf camellia_ecb_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x339c33c5 camellia_cbc_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x0b901549 camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x69f4ff25 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d725052 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d9b761c camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xfe729ed6 __camellia_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xff09bd65 camellia_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x194b2841 serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x38800636 serpent_cbc_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x4140192a serpent_ecb_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x2fe26d7c sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x306750cb sm4_avx_cbc_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x34f17751 sm4_avx_ecb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x4e2735b6 sm4_cbc_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x773bec8b sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xbcec66ea sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xcc71f660 sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x1f491d36 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x7c7bf6e0 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00fcc81b kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01f01fa5 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02643e44 kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02e74471 kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0394204c __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x039b5fd8 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04d4c99a kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05eb448d kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06425a17 kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09707c2a kvm_vcpu_update_apicv +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 0x0ba9d4bb __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bff80cf __tracepoint_kvm_nested_vmexit_inject +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 0x0d1833c2 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d454452 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d837689 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0db1fe6b kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e81b5b1 kvm_gpc_deactivate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fa75744 kvm_vcpu_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1012fa71 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11a67c16 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1343a280 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x148a6388 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14f74904 kvm_find_cpuid_entry_index +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15080122 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15ba2d99 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15c672b8 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x165b9600 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16f03224 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18b075e6 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19403592 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19c3b75a kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a86c179 kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ab84392 mark_page_dirty +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 0x1d73917f kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e3f1a89 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e72c144 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f1cefd0 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f6814b8 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f8e9483 __SCT__tp_func_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20a38f6c __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21357ee2 kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21412449 __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x215adeaa kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21848c4d kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21fcc837 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23d59561 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24993b22 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2523d646 kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25ca4aae kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26405717 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b86f1cb __SCK__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bd8ec8a kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c1077ec kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ddf285a kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ead17e3 file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2eee73ae kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fb7ed80 __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32352b57 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32b1f962 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32d53d6b kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32f3b18a kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x346114c8 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34e8a92a __tracepoint_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37fee074 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x385c8eb5 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38f4b86a kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a3ffc1f kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3aafe765 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bfac489 kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c3f46b6 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c665e91 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d93fb92 __traceiter_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3df33eac kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e5323b6 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e690e3c kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ef76ca4 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40bb5ab9 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x418f3150 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41f8552d __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43e955b8 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45f70d58 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x474da4f8 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4787b3ff kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48644036 __SCT__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a9c1c98 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b705364 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bba7cc2 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cae43c4 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d878c9b kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e603c78 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ebf4d2f __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f582a15 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f8a9fb0 __tracepoint_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5162821a kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x516b6e9e mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x517392f0 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5259544a kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52a6d119 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52b2edc5 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53e2d4b8 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55036a53 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57e782b3 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x595f732b kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a0d8b2a __SCK__tp_func_kvm_nested_vmexit_inject +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 0x5d128583 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5eb4a447 kvm_is_linear_rip +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 0x6156eaf2 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616a2749 __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62376d31 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 0x63ed681f gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63f59a36 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64d91d4e kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x657cfe1b kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65f21af1 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66b15304 __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67544a0a gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67bb8a85 kvm_gpc_check +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6849efef kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a0e67ac kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a7074d2 __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a759a4b kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6aba89a2 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6af99847 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b697ef8 kvm_gpc_refresh +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bc792a4 kvm_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cb5387d __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cfed674 kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d06447f kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d2c9437 __SCT__tp_func_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d513740 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6eca486e kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f774832 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fcd3f01 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7078a307 __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70a717aa kvm_pmu_trigger_event +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7104aeeb kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71b7c5e1 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73087a87 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7374031a kvm_gpc_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73bd1da3 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74910627 __traceiter_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7510a39a __traceiter_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x756e8f8b __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x758460c6 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77ca58b1 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78399cb3 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3a0f8c __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bf7cdc4 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cd6b75b kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7efefd4c kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f51547e __traceiter_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7febb1bc kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80facad4 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x823f25d0 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82bbb2f9 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82c83ede handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82f1680b kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83bc986a kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8544db2e kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87f798dd __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a99abc1 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ba0d7ec kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c9fc0b6 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cbd5f6a kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d2ed6cf __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e062d5b kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f3a890e __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fca6fd6 hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90c02143 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912dd2a7 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x916ed677 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x928df351 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92e3665c kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x931b7789 hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a5ebc6 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dad22f __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x987f55ef kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x996c5343 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99febe54 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bd2bde2 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d98ac14 __SCK__tp_func_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fa632a3 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fb9cb24 kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa12509fe __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa21f40a4 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2636b23 __SCK__tp_func_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa318afa9 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa41fe09a __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa51a7e83 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5e5c5dd kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa646c10b kvm_emulate_monitor +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 0xa7c5da78 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8ca5997 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa289d1b kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab023cad __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac2dadbb kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad44cf53 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad8ba2c0 __kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae8a2dc8 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae8fc7ca kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaeb59cfc kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb24b751f kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2f8828c kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb332b817 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4a88559 __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6558b84 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb82c0987 enable_pmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb87fd316 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb88517f2 kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9fc7c9 __tracepoint_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbae7b0e6 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9d6dfc kvm_mmu_set_me_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbdb539ff load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe5a2815 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbeef13f8 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf2db932 kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf99e4e4 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc47d3a88 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4dbf32c kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fe55ac __traceiter_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcba53554 __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd713461 kvm_emulate_halt_noskip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce3c61f2 __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1c1fb59 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2b452b3 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3c2c258 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4479253 kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd475c188 kvm_pmu_cap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5e3be8f __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5e8b192 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6244b1b __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6f3a806 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd75cf69a kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc9d4a0f kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd8685b3 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddd743a7 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddee4971 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddf63a36 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde043e44 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdeb2b077 __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe154929a hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe485e28e kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4f6cd47 kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5df36d9 __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe61db43c kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe820a3bc __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8947247 kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9b5dda8 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9e94bb3 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1814cd gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1ce55b kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecccbfe8 __SCK__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef97600b gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefd50c64 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefea8997 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0109fd5 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0c48bcb kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1531adf __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1851922 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf191c799 kvm_emulate_xsetbv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2545f26 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf281e02b __SCK__tp_func_kvm_nested_vmexit +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 0xf473871e __tracepoint_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4d9b131 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf64677c3 __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6c664e9 kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa36dc9b kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab33e4c enable_mmio_caching +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfae40ace kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb024eda kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb156b28 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb244669 kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfea6ea01 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff1de672 kvm_set_msr +EXPORT_SYMBOL_GPL crypto/af_alg 0x0f966840 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1283dbbd af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x1595407b af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x1f3ff45b af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x277ce526 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x2c5519c0 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x454a4bdd af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x5359c20c af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x6f31a4b6 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x8253d5bf af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x887cf700 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x89f52b64 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x9f362e67 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xaca0eea0 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xb50acda5 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xb8a93cd8 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xd9b0959b af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe034f818 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0xd88132df aria_set_key +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xd3e7a5a3 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1725174d async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xbde4458c async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xad2b2f55 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xc4ca3124 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4c52616c __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6ba4b539 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd910cf49 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf957e349 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x16b8ab1e async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x40a2f1bb async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x88639f00 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe518560a async_xor_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x2f25704d blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x5085897c 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 0x5cc22fc3 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 0x000a99a9 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3cf57bcb cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x626825fd cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x64b9248c cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x6752599d cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x67e10502 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x784f188c cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8f78e217 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x94bb1991 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xa1bc77df cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xba498306 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc2e3d04e cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd65de746 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x31130d25 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x39eed6b3 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4b65542d crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x518bc286 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x60272e4e crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x66ee8f0f crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x673327ed crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6e6f6056 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x81851078 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9acd9537 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9ccfec81 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa3749d05 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xafeb21cf crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc3cef81c crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdd437da7 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x37b3d9fd simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x572bfda8 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x69b08ce5 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x9af88dc8 simd_register_skciphers_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/polyval-generic 0x1936413e polyval_mul_non4k +EXPORT_SYMBOL_GPL crypto/polyval-generic 0x49dece42 polyval_update_non4k +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x54c50d37 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 0x20deb3fc twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2bf2cd54 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x37256e50 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x416507ed 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 0x45eda959 spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4d520f79 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x69117d1a 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 0x89e44408 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8b008b1c spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb65c2b1b 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 0xc58f6e50 spk_get_var_header +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc59e46c9 spk_synth_flush +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 0xdc06bbb7 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xdd690f25 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xed9e6bb4 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf27f2b55 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf7da8292 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xffe88ccf spk_synth_is_alive_restart +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 0x5b6b9eb9 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa07284f0 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xcb314a78 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe6f5023f __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xfc706357 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register +EXPORT_SYMBOL_GPL drivers/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 0x096bff95 ahci_shost_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0b20a60a ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0e5f5272 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1dfe1084 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x29ed5ba4 ahci_sdev_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x31452b3d ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x391cd081 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x472ca65a ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x59473f81 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5e9fd430 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6592dad0 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7ce6c180 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x95598a54 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x976287a0 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9f31be6b ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa6a53815 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa8560031 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbb0a7650 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd289183 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcc0ec08e ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd9766e11 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdca6649b ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf66fe4ed ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xffa1562a ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x144ef1b7 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x15cbff5d ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x161d8f22 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x25091cda ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x38867b77 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3a4eadd6 ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x411767a2 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x46a02044 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x50f34575 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5f612b85 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8963d50c ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x91415081 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9887f7db ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbd20503e ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd5ca5301 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdac110b2 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdd18e001 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe349e962 ahci_platform_find_clk +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfbac43c8 ahci_platform_shutdown +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 0x8c88db4d linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xd6660dfb linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xf577191e __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x70dc2f2c __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xce48a27f __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x00dac6f1 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x78e08fc3 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2abdc076 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x74a36164 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x329745a3 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x478922f1 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x11706464 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x5eb0e43b __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4702571b __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x997995c0 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa8fd477a __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb92237e4 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x71b7ab4a __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x7831b422 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0aa6e98f bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x517c0a01 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55f3ddb2 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5d86af3e bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x72f0ad85 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7309fb5b bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x77886da2 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x832807a6 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x859a5d5c bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b9a882d bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d560d78 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e554689 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e936a16 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5ea672a bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb85ac899 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbafb96bc bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbd4b180d bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xce092ec8 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd54bb509 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda8fea6c bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe49173c6 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee57b65e __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe48194f bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe746801 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2bfc886d btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4036d0aa btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5d49668d btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x71c82944 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x772fcd98 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7b824dfe btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x92ba425a btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xac21630d btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x08712951 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x32bf0dc9 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x38ff7c2c btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4016015d btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x496db152 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x518a0160 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5fb69fda btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x614f90e0 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x788df888 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa0caaccd btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xab34243c btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb517a45a btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb8ae9114 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd7c3c0dd btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe6fa1725 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfe91e388 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xff3cda7e btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0117a5b5 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x51339073 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x59d8d07d btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x74f7542b btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7a1930d8 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x84b8f97c btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa6e46cd9 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa9c35410 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb8a386c1 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc4656bc3 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xce695b44 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x0dee6060 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xb7ebf9a3 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xda1108e0 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0c5521f3 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x313f8558 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x40edb74a qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa71b0210 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xffc8a9bb qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8820c1fe btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9efbea20 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb8adb64b btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xba88c69f btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbe033ed1 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd04e224d btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x29270686 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x2af69cc9 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x2bc90621 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7a207a05 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x12ad6139 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x1fb9417e mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x42ce9b33 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4a563fe8 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8003750e mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x9c7987ca mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xcbb38b99 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe824eb75 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x09f9d746 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0b5cd48c mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2ba252b2 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3dc25d1c mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x44b08ba6 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x498bb24a mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4b93f71a mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4c12361d mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4e362d0d mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5a61960c mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5b4fca22 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x679491e8 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x730297ba mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x73c689bd mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x76369ebc mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fd829c3 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x82830035 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x83d385c9 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x86d41d0d __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x86dbda6c mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x88e667f4 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8c3e04a4 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa9bf9160 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xac3599d2 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaecf9012 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd62e274d mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd68e4bd5 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe880f67c mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf1bc56ca mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf33448a3 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf57f0111 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0091805c comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x08cd3ea9 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0928b2fd comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0c229e77 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1294992e comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x28c64aa0 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2bfecba3 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e003f51 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e9b4d56 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3f5d870e comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x40cb2d41 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x44da788e comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x45dc9229 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4ff77278 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5878c63a comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x61be5896 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x64af62af comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x714c8beb __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x71bc7dc9 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7834161a comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x868b31d7 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x88f17140 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8952913d comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x95391af4 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaeaa4274 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb14c04c4 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb8073dd0 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xba442fd8 comedi_nsamples_left +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 0xc2e5e11c comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc35cdfbd comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc6722626 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd4b4af21 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd7d4d9de comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe248dc01 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf3600929 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf5cab2bd comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x11e662a0 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x31cb1d09 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x35862267 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x63a160ee comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7697a27e comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8317bd17 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x912dd2e1 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xef912a03 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x088199b7 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x0f1e7dca comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x3bdaca5c comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xc3adae3a comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xd2caf34d comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xe729400f comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xf249bde8 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5660447f comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7b81b94c comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa164a73a comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb90f52ff comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe766b8f2 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf8cb6daa comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xde5d7c25 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x03074af5 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x26ab89f9 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xddb68b5d amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0dc1b26c comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4a64668b comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4bc61a0c comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5f8c03bd comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x68c2273d comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x83629a2e comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x958ee571 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa4915a51 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbe27f846 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcd843a81 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe35e0d89 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe6738d38 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe8fa8370 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x0635e875 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x1c82211b subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa558d8a4 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x556da2a0 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xa48fcdf2 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xf60eeb38 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x6c1f72f9 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0d8fa8c0 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x18aaffa7 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x24739c2a mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x333cb351 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3a3a0f77 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x415caf93 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4da4f177 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x50b71b00 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x66402220 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x66902fe2 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c8bcea9 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x74da8479 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x86298dfe mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9c552315 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc68c8dc8 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd959a683 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xb04e4631 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xf4b6252f labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x06f4c903 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x34dfb538 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x4690bd68 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x5e3bddc6 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xe787968d labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3b4b110b ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4917273c ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5b84ef66 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5c4c972b ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x64ea0ab5 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x843e274a ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa8f9603e ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa9b942f0 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb12964ac ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb8654285 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbdff3e29 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc409d7a9 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcbdf1a7d ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd4637e57 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe6ca155b ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe87345ad ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0307e04d ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3fdaee7e ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x59c9a3bc ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa77d12da ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc8dcfc47 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf2cb5e7b ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4137d43b comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x529e2a7c comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6261165c comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9dcb3b7d comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xcdd7b11b comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe62efb6c comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe9e4c146 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x2e6a6147 psp_copy_user_blob +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3e059f28 sev_guest_activate +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4073e924 sev_guest_deactivate +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x85c62e7b sev_issue_cmd_external_user +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xe6cb75c4 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0025dc96 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0249f7de adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x02b7c06b adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x09121287 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0e5a4b79 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0efad105 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1a54dc03 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1caabb86 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x22de028c adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x23c69000 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x246649e8 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x24e61f26 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x271eacde adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b1ed092 adf_gen4_init_pf_pfvf_ops +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 0x2cb1f7af adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2cd3d2d9 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30bd0e32 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3905e0ef adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3acc02a3 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b491093 adf_enable_pf2vf_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 0x453d31d1 adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4dd48dd8 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x508d2a00 adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5141ddca adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x56557cb3 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x655bf348 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ab2301d adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ce9eae8 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6de3aab0 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7108170b adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7442b1d4 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x76d7a1fa adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7933eb6a adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x87546409 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8ab22c08 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8d66123e adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8e06ee30 adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9028642e adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91281768 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x93a67651 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9929d55c adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9af7af8c adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9f41b2b3 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa5e9c8ed adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa81e0153 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa949df50 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xada8c52f adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb4f57509 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf92862c adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc2c5c1ff adf_disable_sriov +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 0xc67d157e adf_gen2_get_num_aes +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 0xcf209581 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd0d9846c adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd15a8f76 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd5594b81 adf_flush_vf_wq +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 0xe2b0552a adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xefafb3c0 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf95ca18a adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfdfb5673 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xff4051aa adf_enable_aer +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x74609bf6 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x02eb92b0 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x030c4ff1 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x14709a9b register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x1801af1c dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x9938a3c4 dca3_get_tag +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 0xc92b36ec alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xcf587388 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x6e8b95cc dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xb63b22d5 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0d1fa713 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x15dbcc75 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x26a5b770 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4057f52e dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x50578f87 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6391a10b dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x83e87e38 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbe0f89d7 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc0e40a1c idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x57b5b0df hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x835f79ad 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 0x05629a66 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/fpga/altera-pr-ip-core 0x9e2f6da3 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0aae3c9e dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1f9970ca dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2209a7b7 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2f5119d0 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3052ab54 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x42f7829e dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x494f69fa __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x60baef01 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x61f829eb dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6b66acc6 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7f83cf4c dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fe6bfc4 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8502c592 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9e4c57dc dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xae8b1fbf dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbc3f33bb dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc6ce57c3 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc9b7f40f dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdde76a18 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe32f9f5b dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe4445bd8 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xed7bfe88 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfe7b32c3 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0a4261d9 fpga_bridge_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 0x392d602e fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8b62c6ef of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa9b7bec6 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xba4ad04a fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcd931f23 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdfa88e15 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe197e86a fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe71465f8 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x08a8c85b devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1cb07f78 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3ad107b8 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3ae094a6 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3dd0635d fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x501d9959 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x89e06560 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8ff80e6f of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb3f4e3d4 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb6779248 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xec4e185f devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf983138a fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfc878ad2 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x10f7b745 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1172ff02 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa64b02e7 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc89c0b89 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xef19bd5c fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x13b237a7 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x40d980f1 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x658f9916 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6984d1ea gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xbe6b7cc0 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x599ceb06 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x74e0d4db gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa9aa9c42 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xac54e3f5 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb7e49124 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x5d0e4276 idio_16_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x6495f119 idio_16_get_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x68830314 idio_16_state_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x70e2b625 idio_16_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xae1139f5 idio_16_set_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x054b4997 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x84cd270f __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0d3a4d29 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0f2682e1 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x124becf9 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x144d6c79 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x170b7b2f 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 0x80d50bcd analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe123766c analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xffe8057c analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xd2f4131d drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x07f7ead1 accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1129e464 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x16742745 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ad44175 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3ec7f6f5 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x435631a9 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7e4d5657 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8a498bd8 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9248a19a drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xacba9e24 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb327a512 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1fc2bdc drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd50ab8ab drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x21f8d4f5 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x350c0165 drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x3b1ab56c drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7134d3fd drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x8a0ea04b drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa170037f drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa7e6e5ab drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xaef4deaa drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc711648f drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xd6f62fba drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfde38483 drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfe4a4fe9 drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x062f4f2c drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x44ea49b8 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x816d07ef drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8357ab73 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x90e49925 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x99304dea drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa0344319 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcb6d324c drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xce5e0003 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd953af6c drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x171cb7f1 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x25ece55e drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x2b674ec4 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x479fec2f drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5ad72bf4 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb8da4b38 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc0f68c96 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd6fbb518 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 0x09e031bc ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x2efc4bca ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xe21c1838 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x01f240d9 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x032f7da4 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x080f5e90 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0fd17fbc gb_connection_destroy +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 0x18d107c6 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1947366b gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1b5f0474 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1c9caf2d gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1f86fdb5 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a7a075e gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2ebfe09e gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3163fb5a gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3638ef57 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36443013 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x365a8488 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x39804ef2 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e5aaf2b gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x48850f9c __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a54704d __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ac5bb20 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b1f95d5 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b9f393c gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f35a2ec gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f93b11c __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x509deaac gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x55ef0138 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5a7ac078 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5d7912c1 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x685a6355 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x801b9e35 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85845f69 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8934b420 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8adf961f __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e23abd5 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9d8c9a8f gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f91b21d greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa1ca9de0 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa757496 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa9dbab0 __traceiter_gb_hd_del +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 0xaf8a373e gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb4916040 __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb801dd94 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbe06549d gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0688d26 __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc4cb1e86 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7455eff __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc9dd465d gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xccb16381 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcd826ad5 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcfa7a769 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8feb231 __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec603ade gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf6cf6495 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf76dea00 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa3b6e2c gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0077ad02 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0106a038 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0368ba68 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0447a5ed hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04ae8898 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08698999 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e5de347 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1345c56b hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1702b66b hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1711981a hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1abe1389 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1dc52fce hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x20e606bf hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x246a2521 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25751e40 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2759a8b8 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x28dfeb3e hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x291a470d hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b88b152 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3139c239 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x314ce924 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b8f93e6 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3bd72d0b hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ea14fd8 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b2fe1d5 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x587f0a95 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d358759 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e60ea98 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x62baff35 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72c714ff hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x87fdbd64 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x884bf3d7 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a2c8638 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b2283a2 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa3d2fe76 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7ceb633 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb063ba58 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb69a87db hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba9097b1 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd400de6 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1a2242a __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc212434c hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc68bb403 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcce0ab5a hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd3c5885 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5254989 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb37555c hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdda0e08a hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2f10903 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xefceba9d hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x5b0f2d56 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xab6930b3 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb211302b roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbaa3aebc roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xca3c4ce9 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xda8b4571 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xedb66459 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x00cd7567 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6530cd07 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x73875a42 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x851d81a9 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc6e6bd7c sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd1a2a11e sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd4a7c540 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd66715c6 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdd79105d sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x3523e6c2 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x88fe5bbc vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1171ef40 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1e161e2c i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x412ee16e i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xaaa1b63e i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xceb5a69a i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x6a815f26 ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xcce518c9 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xf79bfc6d surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xfa74c21b surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x0ee0fdb2 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x2d02422f usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xbd1d8516 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x063aac2a hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x07538eab hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1733776b hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2785d07d hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2db3fbfc hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4cf27884 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4d6c8d6e hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4f803989 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7496dffb hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8e6cbb04 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8f23386a hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa09cfc53 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xafb29c61 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbeaa460d hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe6d38154 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe7621c3d hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xee3b82ca hsi_new_client +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0af5cb38 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0e306a6d vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2261612f vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x23c90492 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x26f48c51 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2acc594c __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x34edd70d __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x34f513ae vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x36f38a43 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3fcc21c2 __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3fe930b0 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 0x51bbd8d0 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x51c2c956 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5e89145d vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x617e8217 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6b07c49b vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7192600d vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8752591b vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8cd5ec48 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x91425617 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9146d241 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9583db05 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9fa60287 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa6092fec vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb754e957 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc233facb vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd1cd1c08 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe4a2a950 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf2e48bcb vmbus_close +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xffad44d4 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/nct6775-core 0x1de7158d nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x3322a68b nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x3efe06a6 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xa1dc6814 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xaf475eb2 nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xe303127e nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x423fe29e occ_shutdown +EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x7b468f1a occ_setup +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x18e5ec8f intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x29b2670e intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x39ca373d intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3e17bd98 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4fb0e702 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x92f87feb intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x973a82ea intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfc7dd1e9 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xff395804 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x08ec4e6f intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x399c4aca intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xd6a2e5bc intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x07835a85 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x10f7ec13 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x205bf36c stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4eda23d5 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x54c5ee0e stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x55ccdfcf stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x73633f5d stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xad16b22b stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb0a68d52 stm_data_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x1a0d6fa5 amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x37aa169e amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x44df822a amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x72faeb06 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x7b82bd26 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x9a8b02f6 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xf71b3dab amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xdad880d3 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xd4628acb nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x899b8587 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8bc7bcd0 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb823a218 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf8a80e15 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2007cec4 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8e96b8ff i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0b442b83 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0b553204 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x18f3d0d5 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x39d68c79 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x41bbe843 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x424d5dfb i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5c816832 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6c0d32c7 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x70a9abd2 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x80bd2dc2 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x87da4db6 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8a103952 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8a9ec2ab i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9245d80d i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x92b25ab5 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9883f6c6 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa5caf6ec i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa8d9e81d i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb37145b8 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb3ab578d i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb858ed66 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc494933a i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd1fcd069 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdfe496e3 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdff9f784 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe39107a7 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1f34cb3a 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 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7c99bcae 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 0xc0b07f1f iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x234826b2 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2465c2d9 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2be96fc2 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2fb140f3 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4c95056f iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x69793004 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6bd6b311 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x70abfbcb iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7692e1fd iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7c7e7482 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xda0279a7 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdc1154e9 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x349864a9 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 0x5a52f686 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x93b83df9 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 0x297d0ebe devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x9270f509 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x08b50959 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x26265681 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x497895a2 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8b0aa8a6 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8ce3e3cd cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8d7c38f3 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x950ad8d6 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 0xb51079a1 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd0298449 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xda0a52a3 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe7f073e8 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x730fb31d bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xac3408ce bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xeb9f2a11 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x8dadcf76 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x049b6617 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c1cd93c iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1270cea8 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1376d132 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17e2c115 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1bc94b62 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x34bf664e iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b30adfe iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3bd1ce9e iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3f3e1e66 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x426d94b7 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a22296a iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4e5c6b99 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x534700b7 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5570f9ce iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56a7e7e8 devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c086924 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5fd2d228 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63030d4d iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64366c94 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65027276 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6734e0b9 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73fd1278 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x762e1f81 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7850bd20 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8498f9ff devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8726b18f iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8cb13f96 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e9ef3ba iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x99841420 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x999c2d5a iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a964281 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b32207b iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3a08b89 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad203bbe iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0853b47 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb11c76af iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb6a3458c iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb94122d6 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb99d5988 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe85aa56 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbfb3acd0 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2e9ae5e iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd140d3d5 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd7c9ba96 fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdb0ed066 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf547f92 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdfdc5f1a devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe142292d __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2ca130f iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8281616 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9ed21e6 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed1cb0e5 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc1185ec devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1df7b928 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x217b8b33 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x36c988d1 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x53b9e938 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x76258ed2 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7d700906 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x85ac0535 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x866b1e2a rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa19e202c rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xad40fb81 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbcea8a72 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfdd7dc3c rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf043bf89 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x4287e71d matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x582ef94d adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0f7af959 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x15d99db3 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2d13ac5d rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x309211d2 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4bd303eb rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5611d558 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x58dc932c rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6234e146 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x62941891 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8aac71bb rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbd240a07 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe0641e50 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe8e277d4 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x4b7da788 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe522d6ea cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xeedde8ad cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x24c7eef1 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc652f615 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x3353b401 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x70a9a5fc cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0a6cebe7 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4343c19d tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x99810e6e tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xeeac2388 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x08bde6c5 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x140a97cf wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3bd23342 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5a3abe48 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8b2ea38c wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9432f45d wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9690bed6 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaa2911e4 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb4639349 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcf29b871 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdb213fb5 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe3aac778 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x00e0d5f6 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x256c183a ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4c8da4c4 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5163fe9e ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x55e1c7b6 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5cbd233a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa4104fe6 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa4b8a3ac ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe47d99bb ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x24a492a8 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2f9b69ea led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x90e67785 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9332c68b led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb7163503 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbc16d513 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcdcb5a2b led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd7a30ace led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2e13d7fd devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x46282095 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x546b8fe0 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc2082b4b led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xfcf84430 devm_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 0x03322987 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04ad6805 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06f9f10e __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08566839 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x088cad0a __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0ccaa2fd __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0cfb30a6 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0d667ea9 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0decbb15 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10dc5913 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1128276e __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16e6b203 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b49e793 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e6a8582 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x254d885c __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 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 0x2929cf3e __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2afbb876 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x34105370 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3668f8aa __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x366ab43e __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37938087 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x393e2f35 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dcaa88c __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3e562771 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x447055a8 __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4af54a1a __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b80a724 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4e40e7a2 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x529526e7 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x562dbe55 __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56ea5913 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x57267bef __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59a985e1 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e53c837 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x61799794 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x62e3647c __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x661f0539 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b63be23 __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6bf89ade __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7001071d __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x755772be __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x75f24464 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7bcf04b0 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7dc88b3b __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8332c47f __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x871ed37c __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x89765224 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8a22fb46 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90419105 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91b68f50 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x974b14f7 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9aa42cb8 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7f65f19 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab12a610 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad21ab70 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad7f63f0 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb0d70568 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb199b7dc __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb228dcaf __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb72c6810 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912a29e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbaf07d10 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbd265ad8 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe563cfe __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf54884b __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc31e281c __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcce8ed24 __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcd27b43d __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcd7a858e __tracepoint_bcache_gc_copy_collision +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 0xd33e0e02 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd39699de __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd440ff31 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5932461 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a376b3 __SCT__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a7fbec __SCT__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9174dd8 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd93cabd5 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdaf6db9b __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb29372e __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde903370 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdfa725cd __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe833f5a6 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb256100 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec5ebae6 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb8f6c86 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfe03e443 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfef7d15e __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xffaedb8a __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x005a442e dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x08b58a52 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x43bfe7b1 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4411f10d dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4a1dec1e 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 0x8a7dc7d7 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9b8e9b58 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaa9140bd dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab0d8405 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab6b8070 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb3d7ad86 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb51fb873 dm_bio_prison_free_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 0xc35898d4 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc9dd3589 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca57ed9c dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd53265c8 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 0xe5a4e03a dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb068117d dm_bufio_client_create +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 0x00aaaf0f 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 0xbc547876 dm_cache_policy_unregister +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 0x8701816f dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf7ba7159 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 0x17486a79 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 0x5bd837f0 dm_rh_inc_pending +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 0x91ad62eb dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9a54cc63 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe7803c3a dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfda2fd22 dm_rh_bio_to_region +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 0xa2b087be dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdf3a4e7d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0400d750 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0467771f cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1721c8be cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x23dfc62f cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x26e9f9bf cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x37102a2b cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x39fd73fc cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x46d6c333 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x49363dea cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x559f244c cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x72966f51 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x768ea40b cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7763fd31 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7f1f37e9 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa58a7c6a cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa9c89530 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 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 0xc6de5fbd cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xceffa18f cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe25dd94b cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe8c465e8 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf6cbaef3 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfeed4d1f cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x03a2ce59 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2153daa5 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x314241c3 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x35753eb4 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x375ec89c smscore_onresponse +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 0x4cb7c1ed smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6146bf75 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x77a6e4e0 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x866006df sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x951b6394 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa858953b smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xac97ab1a smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb39dbd01 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbce6ed66 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc068989e smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc4d89c52 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xed9c6583 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4a738cc1 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7e83543f tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x80aaf962 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xa8a3f406 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb052969d tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbc315dd tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xcaede3e2 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe2169014 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe6f04b89 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe7ee5819 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x03f784c0 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x127b23d4 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1335b6b5 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x14d594ee __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1780476f __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x19a6d373 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1ce22588 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x25591498 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x270d7f3a vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x27183547 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x280293d1 vb2_mmap +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 0x35a0d73d __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x35ba973c vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x39cf1cba vb2_core_reqbufs +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 0x5ce730a9 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6a778eee vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6cc53064 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x75abed6e vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x78b9ddef vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7f048d44 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83b792f5 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x84687fdd vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x87197de5 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x962b4f66 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x990043df vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9d49fd8a vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xae29a78f vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb61cb9b5 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb66f68ec __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb8d9912a vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc0068889 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc29b7ad1 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd2fb7fba vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd637215b __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8df3052 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xde24cf3d vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe0c0185b vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x39930102 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xe5185ec5 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x6f06e324 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x49eaf679 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x041bf224 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0ba07150 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x12b3795a vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x187aeb47 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18d2f0b1 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x24b53a5b vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x25a46260 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x29883e46 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2ce5a6e9 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3197c5d4 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x37888f22 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x37a7e29d vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3fe45251 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4c5d07aa vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4fb8fb1b vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5d3cf6e6 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6de4daca vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8e687fa4 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x955efbb0 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9d28965b vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9db30994 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa4b90a59 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xada805e2 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb31547de vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb521f7f5 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xca452000 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcbb5bebb vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd849b28d vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd89d005e vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdbc24261 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe9e667df vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeb7d12e2 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf9526960 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfed946cb vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x45b1980f vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x0d761294 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x568c9cfa dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x94eb2bc1 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa9d9cd92 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xa4e09b24 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x75984bea gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xc2bfd3ae mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x2b4ec171 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xdf73a517 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb837b9e9 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x98b95574 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x30324cd4 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1f4fb295 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2e21f9ce max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x553eec0a max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5f21e8f5 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6a600306 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x751f8783 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x91eef141 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa474a7ed max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa9a74b8f max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcf6fdd72 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdb4fc218 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe2544cc2 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf66918a0 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0650a008 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x065bc0fb media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0f42c94f media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1235472f media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x147c581e __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26ab5975 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29d80041 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2b8690d3 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31e1df0c media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x35df6bed media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b6e67e3 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4742cc0f media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a5387ce media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c08c77d media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4feb6b24 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x54c69f79 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5655d0de __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c9d03ce media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5dcf6e05 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5fd80326 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x653b69b8 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x664f24fb media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x66de701e media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6aa9a4c9 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7353b95d media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73d0e5d3 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77e32eaf media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7ab16117 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d02dff7 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x85c81eae __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87b849d5 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8f44419a media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9059d373 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x92cc9764 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9404a413 media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9754ef03 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa424de6a __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa9870e63 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaccd889d media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbfdffbde __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbfe06e07 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc075cf7d media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd68d87dc media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd8adeb8c media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd954621f media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb87a4cb media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdbcfec36 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xddac49ba media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdf2e3dfb media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe710af1c media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeb4b7707 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2d6853a media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfa76b272 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfea462cc __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x9478deb2 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0643dfa1 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x44896d1e mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5aa7b30c mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5d22835a mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ebd7f17 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6c6f1a61 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6e4e6ba6 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ff0e62c mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x71470715 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x765b0868 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8a6f52d2 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x934ffaf0 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9c7244ba mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa68e76e5 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xed53034b mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf019c30b mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf1647e08 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf423148c mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf5df9e6d mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0cfc9c87 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0ec1baeb saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x309fc9b8 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x33dcea32 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41e6e59f saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x53f4445c saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x67efdfe7 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7163fa91 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x77210eeb saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb2159e5e saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb714d11d saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc22ed962 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc48cc59 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcf7e8b6b saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd585f525 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd6c78e7e saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd6c899bf saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe46f778d saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee9d5393 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x0834c332 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x8fe34e8e mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xa4521506 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xa67ae1a6 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xfddf88c9 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8d1291d6 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x9a79dff5 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x318861f4 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x4164b677 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x771430c5 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa203759b si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xebb5b247 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03c35d91 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x08125b45 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x220bfeb7 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27e4d762 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e7ccb7e devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3fb9ae2c ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x484df164 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4a18e43a rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7330f89a ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8168b697 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x81e2009f lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x84b78679 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x98810bb1 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4cfc776 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb95906a9 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7406db8 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf547d4d8 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfb65813c ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x925ed9d4 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x85cbd6d4 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x312bd909 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xf7220d73 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x6f179028 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x7a76830f tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x4a8f25c3 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xb5628d0b tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x241b524d tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x02fa5482 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa8c87ab1 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7e8488f2 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x9bdd65a0 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x0eb80bf9 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x09f1cd11 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0a364a61 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0fcca8c8 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1cd00e65 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x20e7639e cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ad5a687 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2da28be3 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2fb004fd cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x317647b1 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5edf3f7e cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x618f482f cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x63169edd cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x702de624 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa9cc91a4 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb8dba992 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcdc7a5f9 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcfa84d2b is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe07ee6c6 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf3f4425d cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfaaecd66 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x5e20907d mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xdc3ce97f mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0fdf9b01 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x17f6e78e em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1ad9e2e1 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3550faa4 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x57f40685 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x62f197ba 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 0x7ffeb993 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x80c0dd23 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8fd1e118 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaaacdf3f em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xae52b21f em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb787956b em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc8b6daf2 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd4599160 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc857717 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe15e255c em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeb225d27 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf97c5f1c em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4d4cb901 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x753e4916 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x7690773f __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x813ed9d9 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x81803886 __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 0x1b4af4a6 v4l2_hdmi_rx_colorimetry +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 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 0x12941345 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x628796f5 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x64e51e39 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1d2ef4f7 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x321a054b v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x44d3e69b v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x64f0da35 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x734a6380 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc14c50d2 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdf83dee6 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf573bc17 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf84a2493 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xff465079 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x029a2570 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x03e822b5 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07860f52 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e25b637 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1032b9f3 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x130f6ffe v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b9cc8c2 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d53d694 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e313263 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a2d9b3d v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x318c4ae0 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e237d06 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x417b37e6 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ba6fee3 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4fcf95df v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5517f2b1 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x623b3199 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d1b6502 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x72654c75 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x76c854cd v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c565b2f v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x81e1d163 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ccd5be5 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e591f8c v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96b22297 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x994364ac v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa394b474 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac532568 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf0bda20 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6c20bd2 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf1f99a9 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0d16807 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5ac8904 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbc3675a v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbe28b52 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd20cda9f v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb0d6074 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdbdb2ce1 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd2ab963 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdeba354d v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe870b34e v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebee185a v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed4c7ea5 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee630552 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x065155d4 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x22d9b034 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2f4f2ed8 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4a1fc5bc videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x532348d3 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53ff0f72 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54471959 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e680111 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e2cd626 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e527af4 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6f610c35 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x977f97ec videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a87bc97 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d09cf93 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0a10534 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb13ce392 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb3c43198 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb55abae1 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdf01246d videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe6112286 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec1932ed videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf92656ad videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf9d6a846 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfa5e9a58 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x22d840b7 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x43b22f0f 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 0x80884e7b videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x88ffb5a5 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5f5c5945 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x61df1503 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xac08e133 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02dadde6 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0498dd5c v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05198ee5 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05d2f074 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06202ec3 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d4286cb v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a52fa90 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a97baa1 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f727735 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2287aabc __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25a6b7d8 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x305981ed v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32222461 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35100d68 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x36c8a963 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3751cc23 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3941ee9d v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fa4f8b7 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fe15839 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4827fef7 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4cd87383 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e04d925 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58064be8 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a96f3a3 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d1a7cb9 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f17bd5a v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61a2654e v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6391cfb7 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6589b992 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65ee5de0 v4l2_fh_open +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 0x6fd4e8e2 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x729eedbe v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75abed7c v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x766bade3 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b8181e9 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82352ce9 video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83b8e17f v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86a9526a __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8abe5ffa video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b698151 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8da853b7 video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f3bc203 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ab95304 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9aed2cd1 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b771eb8 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c59f39d v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e708f0c v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa44e509b v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaabfd3db v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac5f282e __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xacce89e6 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb15960f2 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb78042e3 __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8502799 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0d70445 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc74d8e30 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc7547a17 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcbda7e1c v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0523f5b v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd465ff5b __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda5e26df __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdee2f0cc v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe628a47b v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe67198cb __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe74ce969 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe86b0798 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee4c2aaf v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeecc49a8 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf03e2cfa v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf08fee33 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf152d0ea v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3969c47 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc9d1687 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcb011e6 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcdfd0bc v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5ace32eb pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x722327d8 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa93da2a8 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01b2994a cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0a15e978 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1be73f8c wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1e0eb140 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x216125f5 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2500fa38 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2d653c4d wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x33a302c7 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x54a462e1 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dffec0 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5dc0c71b arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x810866f2 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b6aa3e cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa58caafd wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa5cb9dba arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb263fbbd wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb7654278 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe237980 wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe6b46bb1 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe89ddf5e arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xeae98352 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x0b10b059 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x93f25cad atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2e249bb1 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x604055ca da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7f691ef8 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa899bd10 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc1ef79f2 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe3e8199a da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf81e16ac da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x0999ab89 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x5cf75689 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x73f48a4c intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x96365363 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe037d2ff intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x3fd33104 intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x7493f5d2 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xa9ee342c intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5dddc02c kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6a1b4b1b kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x970ab4c4 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa5b0b1f0 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa826a1c7 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb23a7d34 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd3df782f kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd4640495 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1a32212c lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xae756008 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd08646c1 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1a55fb7e lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3222b1e6 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc8ec00b6 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd5ddb2d3 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf23c209a lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf42a65be lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf669d8ad lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x21906e72 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7b396eee lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xdcc94e45 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e0709f7 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e0ad5b7 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7535188b cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7d3214fb cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7d3fc8bb cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8583254f cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x858ef90f cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d5652ff cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d5b8ebf cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaaaa3953 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaad74902 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaada9542 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb7f1be37 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb7fc6277 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc6b63843 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc6bbe403 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd10040c0 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdaffb019 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xde634ff3 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xde6e93b3 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe4d9319e cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9e2540e cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9ef884e cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf4c4a33b cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf4c97f7b cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf650ec0d cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfe2f4abf cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xffa4aaee madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2b8b1ee3 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3984eb8b mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3fb14fd9 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x793ea0ab mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb0c096a7 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcf67880d mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x03458145 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0d86c344 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x29613538 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3bb0ef88 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4683b665 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4ffe4bb8 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x75c77e0f pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8b760953 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbc2dfa5c pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc6f0d7c4 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd0ab2331 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf379be78 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x07fe7930 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x20dcb7b3 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1dbb2557 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x576b4eca pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa5847b91 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbdb3c390 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xee26d873 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x8296bc6f 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 0x0924ff78 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a239fd3 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14d36a21 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16be93b6 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ed44522 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21531911 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x22a049a1 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26229bee si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x312b18ad si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x31741961 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34f5a3fb si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4fe91fad si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c958b71 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x800cec16 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8addf008 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90059331 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9616a176 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96f1e3ce si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a0bc310 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1cb044d si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa39db684 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa8fefe5b si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb160d708 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb37eacab si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb79dd5df si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbbb6f114 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb674b53 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcbc5a1c2 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4102e51 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6d442c0 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb5df402 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3899caf si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe78fa707 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeca983df si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2a9ef3ec sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x45c3884a sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7f49053c sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb2fedf86 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf957eaee sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x71217f72 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x81ef8f4d am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb3a6b1e4 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe367982e am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x88369d6a ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x143ceb39 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x46a9cf08 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x525f741f alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x74dbaebd alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8509e911 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbf658101 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe5442711 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x06845ded rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15957256 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1b194f68 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1fd3da7c rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2ff8d1c1 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3a28002e rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x567493f9 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x66c172ea rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6df5218a rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8dbd2147 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x929f26a9 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x973b030f rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x97b55abc rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9b136bba rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb436389e rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbe66eaab rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc0fdf699 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc2cb14d8 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd1335c96 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd3ee0919 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe27251bc rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf62bb857 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf80dd164 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf8ce2268 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x02f6ca26 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0659afe8 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3cbd73bb rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3e6666da rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x492dcecd rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x87531925 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb3239c7a rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc7022b77 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xceb37056 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdb939e48 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe0ee9e95 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe2be69aa rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf2b1366a rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2fb319bf cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x34b1e640 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa9d24459 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xcff66234 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3dad089c enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x68626fb8 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x77faeaa2 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8c79ce23 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9d1f6033 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb7263177 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb98ef60d enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbb644b9f enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x102b18d6 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x25a63f4b lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x30b8480a lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8b483954 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa70f5495 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbb492f18 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd6c8279b lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xddf1994d lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x01f3f372 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x03794e2f mei_cldev_send_gsc_command +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x12014570 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1eb4e020 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2241c8ca mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x299b2c19 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x33878081 mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4ae95cc7 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x648d2e30 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x65bca759 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x731ac339 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x76568954 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7c226f0b mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7e0d7c2f mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x80673dbf mei_cldev_dma_unmap +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8501612c mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x89b72929 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x933ca222 mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9704347c mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x973e1f1f mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9762e902 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa3048de9 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa4bf248b mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa542ac6a mei_cl_all_disconnect +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa5adb8f3 mei_cldev_dma_map +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc488c6d1 mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd4ac169c mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd6ffede1 mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd826cca0 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdb421872 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xddb3679c mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe1817c00 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe1fd2216 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe36113b3 mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xffbf9202 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x051f202c mei_me_polling_thread +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x39c6c00c 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 0x930f3486 mei_me_dev_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xd0eef98f mei_me_irq_thread_handler +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x98a69b49 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 0x3a8dd3bd st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9d3ddcb4 st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x0899dade uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x2ad19e32 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x8e77232e 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 0x160c57d7 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x77cc3b1e vmci_qpair_peekv +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 0xdfb4e728 vmci_qpair_dequev +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 0x0049bc63 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x005c37e0 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0566d1f4 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0fc005cf sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x10b1e27f sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14037fa1 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x171363bd sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1e3e215c sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2e09ec8c sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3fd027a8 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4037c44b sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x43192e89 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x48e29229 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4c3572a7 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4f837807 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x50b8aceb sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x567fe783 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x577a142e sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x69c670e7 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f28647d sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x730c1307 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x76a84615 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x87aae50f sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8bf35691 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8f098125 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fc26652 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x927b2a36 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9cfcb673 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa4beabfc sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa68caf0b sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa87e9384 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa99bf60f sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb01c999a sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbd76a6a1 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc0d0fb05 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc2166647 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc5dd3145 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc7f0f9aa sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdde7cd08 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe5196203 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xec54f47c sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xecc072e6 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0ab5c045 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x72b2ab5d sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa1684868 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa6810c26 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xad3d1d0d sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xad42ed2b sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd9fbbe0e sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf49cca70 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf5b2163d sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0105f2fa most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1cc666e8 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x268c7823 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2971e918 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x46e6c2a7 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x72ce38bf most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x77300bb9 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x871e6ab8 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x87b63d47 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa923f88e most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb2c9c52e most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xcb8fe324 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd84f8292 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf2e8a4ff most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0b7e78a2 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x34575d4a cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc94978dc cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2bc3cfbe cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5591846e cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd83a0038 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xba04a939 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6de721b1 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7822ad9a cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xab6c9e1c cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xc5be3fa4 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xe88eea64 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01a6da61 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0746febe __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b568800 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0be132a5 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0dca5027 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x148793d3 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ad76f8f mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d15cfe1 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x28b3a6dc mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2b4347c6 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2bb7f455 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3980a9a9 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39dcfcfb mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f184b6e mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45b466f5 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x478852dd __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5535d051 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57930556 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5aa4e64d deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b0e3681 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x668f3503 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x680b2bd8 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a21e0d6 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ecaf5be __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x760834ac mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7d5655eb mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x830b18ef get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86609f99 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e2ae83f mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e5b9347 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x912f9eab mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x96963df3 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99f58ade mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa588c537 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7563ad0 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7e480d6 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab1b774b put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad3382cf of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb868060e unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb3dbcbe kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd5df0e0 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc06c2489 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca5b457b get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd10e7f72 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda3c2502 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdbe15c20 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdbf8480f mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe220a7e3 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe57d3f58 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb640828 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb92c0e8 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xedfaa048 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef8cdd10 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd8e0c59 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x39fd8ed7 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4af7cc00 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa3b90d4e del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc04ab90b add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf8578fb1 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x082286bd nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0eb678b8 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x12afe056 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x23a0e051 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x29127283 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x351994d1 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x378fd3f2 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3fa43214 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x41738ea5 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x63b33313 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x65b3d04b mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7d84eaf4 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x816e083e nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84413680 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84576964 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8c97d04a nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb6f2a468 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc1360811 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd1703181 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd68b0c60 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd7f4da98 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd996b5aa nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe3578499 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe832537d nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf5231c7a nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1fcad349 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xd0847985 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xed858f52 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x066487ef nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0f487a08 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1c20b72f nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x23acffa0 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x27f4800a 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 0x3a513bd4 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3a92dc08 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3afc85e7 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3c34d30d nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x89161440 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9cbaa592 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb53c1197 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbcdca063 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd0b058c7 nand_ecc_choose_conf +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 0xd6279977 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdba921bb nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe919e7a9 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe9fb3337 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf95516d6 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xff0a9fa7 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xff30bfdd nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xff530d5a nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xff7e08a9 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xff914bcc nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x96bcbfa6 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x6873b1ba spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x8ab6c939 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x045f7eb9 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0f3dbb29 ubi_close_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 0x4f9804bb ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x54af98e5 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5bfdf530 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5fa7ea5e ubi_leb_erase +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 0x8decd8d1 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8f6d7f8f ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaf2a56f1 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb55b9fde ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbfb8665a ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf133e3a8 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf6e6ff65 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfa39121c ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x203a16d6 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x25e301a9 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x44e82af6 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4bc48e71 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x659cd443 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9665440f mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb7e4fa57 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc3ddaff2 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd355ca41 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xddeee855 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe2893d7b mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe9c31162 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xec746c5e mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf5d843cb mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x784e8677 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe2d457f9 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2bdb76ea register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x47513c83 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x63c82e2d alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8d21af44 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd7b409f2 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd7fb1743 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x36adad7e unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x51091078 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5ecc3c0c alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa1801e62 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x05885f68 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x17bd9f83 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3196a024 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b4c1cf4 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3ddd3613 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3de151ac can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f3eb6b9 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4c717b3a unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54fea581 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x641514f1 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6e4a956c can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x738dcc5e can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x74475ff9 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fb399f5 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x85f2c808 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b320fee alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9d4f0dfb free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9de67e08 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa8b2cd1a can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xab66dc48 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb438ca4f can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbfea37cf alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc332149b can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcfb38ea4 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd038e5d5 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdeda6c29 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xec8013a5 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf0f21fd6 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf317f37a can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf9b6913d can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfefd9f2e register_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x08f152d6 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1ad26e2e m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x23df62ff m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2643f9ba m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4813599b m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x481a48f1 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8b031296 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd4093b27 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x24e276c9 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7377519c register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x90fd5e8f unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb2d49d8d alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x5ca1394f lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x1619cad9 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xbe54da9f rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0886a32c rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x08f34c33 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x21215a18 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x316a6448 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x38c133a0 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5216e8ff rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6994b716 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x78c1730f rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9e924ff9 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xef1149eb rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf4c43862 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfac41061 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0a50cb0d fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4e515181 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5433dfda fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x8244a7a1 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x911b32bb fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x952b33b2 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xcdc887f8 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdac4c8be fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdee581bd fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdee939f3 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe79e73ca fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xa0acbfa0 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xe881908a i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x01ac2b9a ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x361dcd9c ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x44d9c90c ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7acfba16 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb90086e6 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0052a4a0 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00fa5999 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0802ea4c mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x084b5712 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x091df100 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0efbcad3 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f684e5d mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1292a181 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x148a2b4b mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14f66fbd mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b2e8bb3 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bb78936 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f26b7ad mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22b2a798 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22bbd6ff mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x266d086f mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27a9b013 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x284c532f mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x288ceb4f mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ec411bd mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3177f82d mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32b513ad mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x365c18b0 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x378f7531 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3871311d mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38d2871f mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38e7b01d mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3abd44ec mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b5f5e1c mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41d88297 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x465c83bd mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47bd3094 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a136058 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ae86a89 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50417556 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51807942 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54c4d16f mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x565bb895 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ef7f77f mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5faca19b mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62283db0 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6343e7b2 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63f343d6 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64b19996 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ad1beef mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b2bc109 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b6d29aa mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74ce1dcd mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x799e1851 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ef116e4 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fcb6528 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fd6d66d mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdeee53 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8420aab5 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86db4bf3 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d0ecc1d mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8daeca89 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dd440e3 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8def22ef mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92ac379a mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92f9ca0e mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97bd67bb __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x995081e4 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a55bd8b mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a72ee3d mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c5210dd mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e425228 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0594155 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa44117b4 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa605adf2 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6129f04 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab8d3644 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba6db63 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac6910b4 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf1ec0d5 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf753b85 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaff94e0f mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1af83c6 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1ec291b mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3061ef9 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb995f9a6 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf713c19 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0a71c05 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc13279d9 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc19752f1 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1b86221 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3a8f613 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc535e26f mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5a5e3a7 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6cc22de mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7ff03bb mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8384f0c mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc94aaa9c mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca249756 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb7fa611 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd837c34 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdef34c9 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce437e3c mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd16eedb3 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd580bcdb mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd94095e8 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb5753cd mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc45abc2 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0bc52da mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe67c18ed mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe78837a9 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe917bc23 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed4b801b mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf17ad759 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1bdacb1 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf27737a2 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf32ba0f8 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf33b01fa mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf46d860a __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf534455b mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9e57d76 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa697832 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbfd9e81 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe8ec3fc mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfed2858a mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff728ebb mlx4_CLOSE_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 0x138debea mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17173201 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2317ca65 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2680fee5 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28d90ad5 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bd83c71 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e5358e6 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31f6ae5e mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x360a4017 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3de0479b mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42020056 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44312484 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x483a9c95 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48c51e53 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d4e91a1 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x543f6296 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x584e3878 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59fe4016 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ff6e013 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61e27b70 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bb2b022 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f02dbef mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fba9caf mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71cb42d1 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73e4bcdc mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75726583 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x760db928 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8029a169 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80b3cc34 mlx5_query_min_inline +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 0x835df5c1 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x876541ba mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c7db8f7 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x907fc38e mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9171e43d mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95caab4d mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x965bbb5d mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c023b6e mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0cba3a1 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1fdff5d mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa50f2fd6 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa60605e6 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8654987 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa928556b mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab24fe6d mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf7b1077 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb01ca6c0 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3307a1c mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba328865 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb8e9cbe mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc00c25b7 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc12f0ef4 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc51eafaa mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5a461f6 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc64aa8b3 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf049362 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd43066f4 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4b03dbc mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4e72564 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd33325d mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4093781 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe41ec7d3 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9ae9814 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeff59084 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf039556d mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf66883b9 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf75f3675 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcdca2f8 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x08c856a2 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x35e8a49f ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7b0255a5 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa9b39ad8 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x39246cb1 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 0x0ac80ef9 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11ebe373 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1210e27b ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12b8d973 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13ce5442 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x18779a21 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ba194dc ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cd5636b ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e8ff494 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40a62341 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4836a863 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56f0a978 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c4c6814 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ceaa104 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f5cdd50 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85b33ddf ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89315b93 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91321f5e ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x96ecad95 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x993052f3 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e3b881d ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6514696 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xabc3ac92 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6b2475b ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba59aa49 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbca08ce4 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc23f2a6e __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdce68bd ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd17bba84 ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd41526f7 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4793e39 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6b136f8 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe71c8357 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8e468d8 ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf65e1c1d ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf867667a ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9159062 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcf610b4 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4bf09514 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x741f6a19 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x80d8c711 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8f08b54f stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc75bdc38 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf585efac stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7179b139 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb2a5f62d stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe274c680 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf3c12f18 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf6b7b57d stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x002181ea w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4b0bba2d w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x644373ac w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb156722d w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x9ff35101 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2064f417 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3a8114b9 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb6a68cb3 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc8981520 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdc118848 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0x0d5b03a1 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x57bc619d macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x682b18f0 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7f61bbb0 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xba4d3990 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x4494d20b mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x6bca2701 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x90efe115 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0x4a70635b alt_tse_pcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x21c334f2 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3ef2b4d7 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa1ee6c6f xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa2f3c14 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xbd8cab80 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xda001f5f xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf31321c4 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x052b2e8e __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24e879c5 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x33339167 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3759a478 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3cee56f6 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4bd49c02 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c7e75b4 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5ee8cb8a bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x63f6cbd1 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6a265e87 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6aa4dd88 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b89e67a bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82298522 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8ce82bb4 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a603cfb bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa874e5e2 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xab209395 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb24a19d7 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbaadf977 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb02c20e bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbf16f552 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc525ffe0 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc8ad81fa __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd64c72ce bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd6dc2082 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda5b3be3 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdcd3020f bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd76fc10 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea4f0974 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed24f52b bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xee561005 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf027b17d bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf33c853a bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5c71fe6 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x0b063ad4 bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x249f3dfc bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x028d42c9 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x120d02ef 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 0x20cc59e2 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3f3a174a phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x43774330 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4ac10440 phylink_generic_validate +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 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x64a1a5ce phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x66e8b5b0 phylink_caps_to_linkmodes +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 0x859b1ff6 phylink_validate_mask_caps +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8981167a phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x90e30b6f phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x94592c80 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x95ea06a1 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd2ef6a40 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd903f419 phylink_get_capabilities +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +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 0xf926a606 phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xfef0e5af phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/tap 0x2760276a tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x691291bb tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x6c385129 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x89941157 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x9377b49d tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xbb83cbba tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xc52341da tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xe210cd67 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xf35b8f12 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x195ab9b9 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa183500d usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbf67af44 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc949cb35 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe1ca6dac usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xecc049f3 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf0536640 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x12e17170 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x15845304 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x19fd8aea cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2741805f cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x462f2e0f cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x80b511fe cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8a036490 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8fff2832 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x95752f36 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa800b1dc cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbe095a18 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x91e6abcc rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x46fe51f8 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x54899a9a rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa5adba56 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa861ff17 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb2f857cf rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xcd6dbf9f generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00e44ec8 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x076806cf usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0d65982e usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13d05d08 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x23800446 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27c177e7 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x284d92da usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28ca9eb2 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x358e3055 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a29414d usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x410dac6b usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41344dc7 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x51de9d16 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8044fb11 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x869729f3 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e4250d2 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa73fe983 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9421241 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9c5978a usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb49e6e25 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbf697480 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc217ab56 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc309cef8 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc3cfadca usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb5ba65f usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda0c04ba usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda2e2729 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd985b67 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde843616 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdfa007e0 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6f00d7e usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf748356e usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf75c630c usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfab2e2a8 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x10c4fcbc vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc150b77c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc3c2b70a vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xfc8ad245 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x1303c421 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10129ff1 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21d28438 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59078411 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1181721 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4ff62c9 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 0x0b824010 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x12f4387c p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1a8fe58f p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4aa4ee5a p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd9aa6041 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf0aabdfa p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf62adbb9 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfa7866ac p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfc6ff8ef p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0c09a75d lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x119f784f lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x18f969d4 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1fb8be18 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x39a5f03a lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3c716532 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x40199172 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x700e166d lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x800c0132 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8e4f3c02 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaca08a50 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaf1e09e5 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb0a892c4 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb9b4186d lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc6d5d385 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe6925b95 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0368f324 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1249a3c8 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x247a1874 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x481065f7 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x56d477f9 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6241daa0 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xae8a7b5f lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbda88612 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x02d0881b mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x12c66447 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x13596859 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1b59ba9d mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1f64d40d mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x28a4cdd3 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x29b3f1f8 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3a7f99e6 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3edcfb0e mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f011518 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x44b51525 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7a5777a4 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x865f93f1 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8dcbd671 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaa31832a mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbb6fb8de mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc63a6e89 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc88fc0e7 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc8da5a0b mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd1de3e81 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd54ad655 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xde50a3dd mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf1f16acb mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfb33a352 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0224af99 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02efde68 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03f1dd85 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0526ed0f mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07b737fd __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0bc424b8 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f9a1def mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10acd819 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x137c7ff9 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15ae7326 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19bb4e21 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c4d3c4e mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2049a571 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20871016 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x212b2498 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22c667bf __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22e03fd9 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b4f4483 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2df8494a mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ff8dcc9 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31fa73fc mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3352be60 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36962357 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ca5d6c9 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d75bb49 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3de64166 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45846ddc mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47587e57 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48e169fd mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4dedbf62 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f5ff889 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51d09a26 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54829af6 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54dfe108 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5556cfab mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x561a3e8a mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57fb744c mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a0b7fea mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ac571e8 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67023224 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c309be4 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73774501 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x772b0bcd mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x778f6e20 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d680a08 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8094a249 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x815813bd __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81837848 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x818378e5 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84c70824 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87d860c1 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8882113c mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b68a300 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8fbcc2f6 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96851d05 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ccd166f mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ed6f1fb mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa109b529 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4231d06 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5980ab4 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa66e9cf9 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8bdd48c mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0ac4f41 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1a60e37 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1bc77dd mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1d03cd8 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb416af5f mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb600be81 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb74d366 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc029701 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc05d9cca mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc79daf86 mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc7b1bb2f mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcab0d3b1 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcacae786 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcff3560c __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd32d5d0b mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd595cd25 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb502ec3 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe25ab161 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3660808 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe421f922 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe45628cb __SCT__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe95fe7b3 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9716a7e __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf168dd2e mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3f2ce8f __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf71539cf mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf787e1b7 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x03e33cea mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x05ef2048 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x06b5b156 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c583390 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10ccf338 mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18379e14 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x187f9200 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x197e73eb mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b1eec34 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1eed910a mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x22ade90f __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x23015006 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2382cc00 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x292a0061 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a7fef40 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2b4b8ea5 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2cc928a8 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f43f903 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34bf73dd mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x39f7e7c3 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4416b082 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47a8c0ab mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x49226f6a mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x494647d9 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x52403573 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x53c0dfd5 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5db89597 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6375d83b mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x69965939 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6baa6d4b mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72a9f6cc mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72d01979 mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x73b034b5 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x750aa79a mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7bd9d08f mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7da836cd mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x80bbe02c mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x81ccceea mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x840646f5 mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84e3c94d mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85c40ef1 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f86f9c8 mt76_connac2_mac_write_txwi +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 0x90fd2649 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9172d380 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9321b452 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x996dbc56 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9acf3db6 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9edb2723 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9f8f063a mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2659066 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae3a85e0 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3a32d34 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb4920063 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb722f45d mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb7b66f14 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb99e8576 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb9a1280b mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbc318172 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd680e2c mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc521c49f mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc6d14fd6 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd6938b5d mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda24bf95 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdcb686ea mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd6080b8 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdeae01f0 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe1b9a3b1 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xea85e355 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2d9d501 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf55246cb mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa2f7200 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc4cf1bd mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfeb65832 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfee10707 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x07d97f39 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1795363c mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2101de02 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x281fb62e mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x34c5be06 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3f4e83cd mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4167096d mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x446754da mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6bcc0f8a mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x81a476a2 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa00f5831 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa0cf9ad7 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa396a035 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb520fa7b mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd125d251 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xfb104b97 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x093b2b9a mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x226e7c41 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x32924219 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3cedbf7a mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4682de85 mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5a24e37c mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5bd8885f __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5cb1c8e6 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x71a1dd10 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7b5ea926 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9d8a5599 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa16dd57e mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc2992341 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc649641f mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0cdcf1fa mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x18107342 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x18e97c0a mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1c49467c mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ea6ecaf mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ef8fb9f mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x20930451 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2412f6eb mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x24fb3642 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2b24d902 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ac4e4d6 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3e70b62d __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5e37c4f8 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64fccd87 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7b03d118 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8093859e mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8da939bd mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8e399e87 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa1a81076 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xada04af0 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbb681bab mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc43966f3 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcd403dfb mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdd9f9167 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe1a29421 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeefd5439 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf29261ff mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf45e8cc9 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xd3233b43 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 0x782aebf4 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x85c29860 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xcd5e8a59 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xd6f39d8b mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2404b556 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2e350bef mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x364c9c3e mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6037e8c1 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8056bc35 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xae4e2caf mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe5092c0a mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x052714b6 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x08809d8e mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x08c999e7 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09a494c3 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a9e0efd mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0c449133 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x11b79f69 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13f48fd0 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x175a6463 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b085273 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1de577f2 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3161da14 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x39e6c761 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a205220 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x451205f2 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45f4bbb6 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48603660 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b0031c3 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d3aa833 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4de77772 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5267d89c mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56451def mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x58dedaaa mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bf1bbcd mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ce2c197 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e7daf6f mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6632be48 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c9ae7e6 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x73acd98a mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x76aa68a1 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78d83cb6 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fb823e7 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x802876dd mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82b48889 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8960953e mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89a80bc5 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x904eaf3d mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x916962f6 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9877ca8e mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9acf9bf4 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e86d01f mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e91e976 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa496d8ec mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4a22168 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8027224 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa1d29f4 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae170af2 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb75e2d24 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb81b03a0 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba1a4c7d mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbfa6165b mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1417bdf mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc28b7d35 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4028444 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc505ca56 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7f6e2b0 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd1e203c mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfb6ea82 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd301962d mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd42d7216 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4d5f312 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5d7e76c mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5e1dfa0 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe8ff8987 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee280a37 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf447b890 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4226dc9a mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x66907ad3 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7a9c9557 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7c8a1733 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x84c283ff mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8e2c7592 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa3555216 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf6a2be11 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x03143a64 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x170a80a7 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x24220b41 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2b3eacb0 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3f690c20 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x574b22d4 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x641d3703 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x670ea621 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7c7e8ffd mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9aefd5dc mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa2f7ac15 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa5f977b0 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd4a1b349 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdba47408 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xebbff2f9 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xef9164b0 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf88d8b31 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfc958f1a mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfe96ce45 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfed191a9 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x05b56530 mt7921_check_offload_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x105e422c mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1e2999f2 mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1e4fb8fe mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2452c4a3 mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x36e883d4 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3c848852 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4f082328 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5062f7fa mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5e402ae3 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x60d58136 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x69b3074c mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7cc50feb mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x895c0082 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8cf4fd6e mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x90d5e78a mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbfef2c39 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc04edd1d mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc46dced8 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc57594a3 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcff279f8 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd41c729e mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdb15f37a mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf9bb3156 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1322607e host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2277b794 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2ea8e47b wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4e0ed7ec chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4e5b32f8 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x525115fe wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7c3f1b0f wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x03f3e697 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x185b4720 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbc03d357 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc76bbe82 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xca9604aa qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd196206b qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0f84bf2f rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x11feba76 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a4de3f8 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b149a8a rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x25b3bfb9 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2f868c21 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ff36183 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3566f270 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35f53347 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3880541e rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3c608897 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4326093a rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x48eec752 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x518adbcf rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x52da1400 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c3d2c1e rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6258f03f rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x78e06535 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7adcdba2 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x80850aa8 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x80ec5a8f rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85cb2ddd rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9187675f rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9275c53a rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92ae96b0 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9bc39bfa rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa225e86c rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa3027145 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xac8ec1ce rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xadcac4cd rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb83eafc5 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf9acb66 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0e6ff08 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd31f2ea5 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd68266bc rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd95e80ef rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xde6644e8 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe3fbbb23 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea038ad0 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xecdfade2 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xefaa6769 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf362ae30 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf9220b85 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfdf40643 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1aee42ed rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2f5c2f86 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3f0878f2 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x51c069b8 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x54b0875c rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5d53be15 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6fa74e65 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x717beb3a rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x81bcb387 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xadeef23f rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb35d325c rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbc4b7e4e rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc16ec8b5 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc1c19a6a rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf10edfdf rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfd712584 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0611f979 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1374f067 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ccbb886 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20559584 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2328b888 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2f9f2c25 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x357ac97a rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3781ed1e rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38c4ddb2 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4030dffa rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x40dc453d rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47cc7227 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c8017dd rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55a62874 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x626b7b1e rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63623ac8 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x698de843 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x703b4bb7 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x779cc07b rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78a828b9 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7db1bf75 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x83b68beb rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a07d925 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a567304 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8bc9e027 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x903107ff rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x91238410 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9198df03 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93deac0e rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x972cb3ee rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x98e4fbaa rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9ab3b033 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e014ce2 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa09a3065 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa60e04b5 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa6c667cb rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab5aeea4 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac00c7cf rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac01dc5e rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf7bcd50 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4221360 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4f7cf27 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc8f5a6f7 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcf214692 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdcd08968 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeb96ccb8 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xef5fe1d1 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2a58ded7 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x386ac616 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x67b46383 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6efd5af4 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xfd9e218c rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x118f5d25 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x122eac05 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb8fee5ae rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x24160a92 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x50291a82 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5115c104 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5671d759 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6df52edf rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x75af3189 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x815bdfbe rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x83f8814e rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa356d02f rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa8ffb936 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa9cbfa6b rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaf3c3a75 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd9323247 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe462f00a rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf42cd09e rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfb6f9335 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19bc4add rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26280d56 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42f2218c dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5818d17 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x06849990 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07ef3001 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0c68811e rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x13722d47 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x38cdf8f4 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 0x407124b7 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x408a7edd rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x45c2d7b9 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x640463cc rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d35b7eb rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x725f6d03 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x73b0c8b9 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5e88fb1 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7c9b51b rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb565da28 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb58777b9 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9625472 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbfcb42b7 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc433ed14 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd88c7230 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2d65a7e rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe739d780 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe8c9b3e1 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf9a317b0 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfa859e89 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x032e9caa rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07ce55f0 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0938b659 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c7e0f48 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 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 0x3778e892 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e15738a rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ab0240e rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a0825a7 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72ca1efe rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79778594 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a2eb99e rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x804c45aa rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81c4367a rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8da888bc rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94231dee rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b048ad5 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0095c2b rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc65ab60d rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc68b61c6 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8e94e4f rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9f8443a rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdafb4493 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb296440 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc10bf8a rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0f0d51b rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xace8bc55 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc9a14c8c rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf193841e rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf1ed997a rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfeff9e2f rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x61b6a985 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x931944b6 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xeb83b4c8 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf7826a15 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2047ebf6 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x400db67e wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x9fd39024 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0512dc9c 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 0x070bd2b0 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0989593e wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ad512e6 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10584353 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x113962ad wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1187eaf4 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1626222c wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c0dcfc9 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24126886 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e3ae75e wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4140682b wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47c55038 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4dc8920a wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x512fb744 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d17bdd4 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6582f0cb wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x66862e8c wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6cc7728f wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x780bf68f wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7d5250f1 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e9821ea wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x869e97f9 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b298e37 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b7ee275 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x906c281b wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x949616e1 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9a359718 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bb8560f wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e09c7d3 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa2a42c19 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9e373a2 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbe55314e wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca9c6d9b wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xceda2abc wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xddba1f67 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf97cfbf wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeb125344 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec12cc23 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0243423 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf21d9710 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe97bdb4 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfff41ef4 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x111e87e3 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x9c06891b mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xad8265ae nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x218b42bc nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xab882788 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe3348343 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe35658fd nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1e1843e2 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5b578942 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x765a5ecb pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc4bd233b pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd79edec8 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe5fd98e8 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf7e3e16f pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x637fe4f8 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6e4f6f3c st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8e0803a1 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa8ee0e0c st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbe28f7b7 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc8ed36e3 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcbac477c st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd206fdcb st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x234de487 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9c14e890 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe1579237 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x16f38932 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 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa7d2a139 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xaf01261e ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 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 0x5d876994 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe42ad702 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x399d9ac8 nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6adadbb4 nvme_auth_free_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x82789d01 nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9070925e nvme_auth_extract_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xb361ebbc nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcfddcab1 nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02f49b9f nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x04b82c54 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0cb798fe nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e815fff nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1206202e nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b62c046 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2693a933 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d25d7d1 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ec69f74 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ee4fd33 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x368dce1a nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x37139bf5 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e3b4ffc nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x436749c7 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4ba3b391 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50dd85e9 nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x560093a2 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a0728b7 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x66a5da90 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x700090fd nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x73976701 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x77470244 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7776285e nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x791a726c nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a3cf3b2 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7b8fefb4 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fa16f5a nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fb5b2e0 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x81c0cc29 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82255ee3 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x838c1d38 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x87115643 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8740c41c nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b4db87f nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8fc7be79 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9509e0ba nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99bc481e nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9d74cdca nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9e1d2d37 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9eafd4a5 nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9eb68f2b nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaab3734b nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaca11c23 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xace4c87f nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xafa674af nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb22f952c nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb979fcd5 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc5b82930 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc757b9b5 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcdc79910 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcfc3e977 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd736dc0e nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde3398c1 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea7a57a8 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef4dbe30 nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xefd6df2b __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2c2d9cd9 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7498de97 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7c0ec5d9 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x842faae6 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa3c1d1e0 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcd0557a9 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcd44cf41 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe13e8ce8 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf076dcc1 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf7748635 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfa3ab2f1 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x1d47595b nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x21e609f7 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x154502fd nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x19897b79 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x42aa6f18 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4417723a nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x46d8a0d5 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x63ced310 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x85b941ea nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc0c5784e nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcb7580bc nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcdc56371 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe6d70f95 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ca2c232 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req +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 0xfde2d0a5 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7f2000a5 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x805475f1 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb02fd11e mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x92af383d cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xa6c4464f 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 0xd59d0a56 wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x013ed540 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x091e6544 __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x11f1a3bf ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x172ed0b0 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x201d7205 ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x22b13e6d ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x22c21d27 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x234f3336 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x24a0e86a ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x32ad9da1 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3cf82eae ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x465e9be5 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4d5ff338 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5bd79781 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x688eec38 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x706988fc __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x78aa6846 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x81f2329a ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x88664ba6 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8bebcc46 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9823c95d ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9ea0310a ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbc28e883 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbe7f3e47 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc32f3a9d ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc4bb4052 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd583be82 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd8a458f3 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe8c6c042 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xeac1939f ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xec10d22a ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf3ca831a ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x18080511 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/amd/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 0x97abb651 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xda6c8471 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 0x388a68ed dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x6e4c02b8 dell_smbios_register_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xa578f932 dell_smbios_unregister_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 0xe583db73 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 0x0ac20802 intel_pmt_dev_create +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x1a5f8ce9 intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x78ae6300 intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x723e2c86 isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x9a5c38f2 isst_store_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xf4d5e2f1 isst_if_cdev_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x665cd407 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x90551504 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x9deec96c telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xd14ffffc telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf9d5ad60 telemetry_get_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x065b4695 wmi_get_acpi_device_uid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x17b0f8ca wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x52db4138 wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x5d6b1c5b set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x69e4a453 wmidev_block_query +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x52e535f2 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x80458e06 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x96e93128 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x04e7bea9 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x445eb8b0 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb699de13 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x5a423ded rapl_add_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x74b53389 rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xacb26019 rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0b7207c3 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4a4baab4 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa42b711d mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x374adb1b wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5884985c wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x76f3b223 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7d018105 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe145524f wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe52497a1 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xc6167a74 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xa3d56489 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 0x01e6a5e5 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0589f278 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0aacf1cc cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f46532c cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15abffd4 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c0c0d8d cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c0d05b2 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21e4f965 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29f3a90b cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e875725 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e93959d cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3316d201 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e1468d6 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4174b1c5 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ccf26d4 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52072333 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5cf16ba2 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64aba84d cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71b05991 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72610008 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x728e92f3 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x750958b0 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7571b523 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7638857b cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d0a900a cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f206342 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f7e0aec cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e8d8698 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x949083f6 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa44bfe2f cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa49c9fab cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa692f1ec cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad03bbd5 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbaaf2279 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc472ee21 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9b84f1a cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd46d1579 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee00c3f8 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0a8933d cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf5e29079 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7a51f51 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf84ac693 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb96af22 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfbc94659 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x091f49f6 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x100b8c7e fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c28b5ad fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1cd176e6 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x228bfe39 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2bcc748b fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x39c5b795 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x41378e7c fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4aa09b7b fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5bb5d5ab fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66a7a9da fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8c2003df fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaea35615 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbb165f04 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3ff5ab5 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfdf8ea3c fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x7a5b97af fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x80ae6cba fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x14b8c7cc iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x283da288 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x449db109 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7214af48 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x72b8be4c iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcd8e3905 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcfcc5a25 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x5b449075 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14bc693e iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17ce4d87 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b3f3371 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d19d72c iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fb40393 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f17f1c7 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x417284fe iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x510c4178 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57c56afd iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5bb1dc3b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61e3e9c6 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a736fb6 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f2217ec iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f60e154 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fc852a5 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75a080ee iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x763a285a iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8439425c iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8746b051 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88f025ab iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9526f460 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x970031ea iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa11424ab iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3cbd32c iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4d2ed4c iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac116386 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad727654 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf6dbf61 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5026be8 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbacafa5b iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbbdaa993 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc283f9b4 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8405798 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd5531da iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcece9691 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcee05f06 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcff42878 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd05c657d iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4482efb iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd474e1cb iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd78630b9 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd839a57b iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdede3333 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea536c81 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf15e3aba iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf344d527 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf44b1201 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf53d8b9b iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x08c198d3 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x136f742a iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c5c1da0 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2d6b4248 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x36f61147 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4e2199d0 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55365c52 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5e8ed280 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x76ce61dd iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x88220a77 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8e93bb05 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8efd8a9a iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9174e1e7 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9c39b917 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdc1c1fac iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2858ce1 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe7995e2e iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02203bdc sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0e9ec56c sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1a34626c sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1edac487 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f205942 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d0c028e sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x362fd596 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b8579b1 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e0c1b67 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x40c0c7a5 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x421d6915 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49b115ed sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x51361c29 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e7884be sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x637620ef sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a1e0543 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ca3918b sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76f4cf1f sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fe85008 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x860294d3 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8cd1e3c0 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d615303 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8fa96f76 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9261cdd2 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f2e8934 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa5c61923 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc430f93c sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc5c6c52 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd833c507 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdcf1ef42 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd0d1e26 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd7bb46b sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee4fb55a sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf65ec81e smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf76f2214 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfe39eef6 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x08ce16da fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04789996 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04f75c2f iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x089dfce5 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12c2d69c iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ab22fbc iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e5244b7 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2638846e iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28380cb0 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b0b4c6f iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b370130 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e85b43c iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x336fba69 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x358b5ef1 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38bfc824 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43b3c39e __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x469d66f7 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x551c5ba0 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57c9c326 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a834a97 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x634a8184 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x659b8781 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65eb277e 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 0x722a122d __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79d425f1 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f1adea1 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f66c3ce iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8298463c __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83bc6525 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88f34b3a __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91e075d2 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9361fbbe __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95379af1 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9910d0ec iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9aaadef2 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cedf307 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9db88444 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3d18228 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7c66087 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5b03df8 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7440e7f iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb8531cc iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcfe826e __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf6022f1 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1ca452f iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc44d86c1 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc461b2c5 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6c2c80d __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9300c1e iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3bb9d3f iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5881199 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddab923a iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe114c22d __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe23c3961 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4685e89 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf289c42e iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc56f488 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc80b3f2 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe849532 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x29b26edb sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2c7ce4b8 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5ea933b0 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc926c812 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x74535ff4 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 0x07d2240b srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x274a7008 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd43c4d5f srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd6e21292 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xebd4ec37 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xec6dbddf srp_attach_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1d24affe siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb4a5264b siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb6ef8bbf siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd782bd9a __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xee68ddc2 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xff0b04cc siox_master_alloc +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x05bd5285 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x079a86c5 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x08651cef slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x10bd92a3 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1ebbfa70 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2a74e661 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2dacf923 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x314fc4b4 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x34150931 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3c6f6866 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4015f13d slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4ee9c284 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4feb4998 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x51531443 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x52b3ee12 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x707186c1 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x73cd0550 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7f568454 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9e034948 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa1a61fbd slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xba2d70c6 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc9e9f003 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe19e590a slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe6749f54 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf4b073f8 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfbabf8ee slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x41512283 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb38fe923 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xf318646d sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xab4f13f1 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xf7f88191 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x069df738 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x41d07a8e spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5ec9ca7f spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x60dd92f4 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xac79e2d8 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb4d00804 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-intel 0x552f51d7 intel_spi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x44473e3c spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x78901b1b spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xa9d8ca93 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0360ecc0 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03deaca1 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2ed09fa3 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3a5ecb99 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41e61a39 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4b1014e3 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x64ab8521 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9e2ec3e9 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa0c36e23 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa68b71a3 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb1c40c99 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb21e71c1 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc5f48242 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc64178ac spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd2827257 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xddbe9dfc spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe8c7b0d6 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf4d76705 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfa6eb54b spmi_device_add +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xc3b1bec6 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x3bc6ccf2 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x404ca937 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5e5d92a7 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa2f03f51 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0bbd79fc gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0d445656 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1b0153ce gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x20d23f5a gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2ac19132 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x36781f11 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3f53ad13 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x47f078f5 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6075bf91 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7630ba09 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8a2f7832 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8bd0fccf gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x970bb379 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x47508bdc gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4be0cb2d gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8cfcdd6c gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa1b0fee3 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa3564e13 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa383b0f2 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb084fdd2 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb5d1dd08 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc00f4a1a gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc93cdf31 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd1272d0b gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdb0feec9 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xde5ace13 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x30ce7f03 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xd1673ff1 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x11dccd87 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xedb38ef3 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x00942542 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x0c204065 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x0bb31866 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x888c4cb1 apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xd8358dc6 load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xeb41bc2b release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x17d2924d gmin_get_var_int +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x388973c3 atomisp_gmin_register_vcm_control +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x5ca7867d atomisp_gmin_remove_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xae4a00b6 atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xdf45f331 atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xf22dfd87 gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xfb753342 atomisp_gmin_find_subdev +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x10eba8c5 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x15b2511c target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa134279d target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xce6a36a4 target_init_cmd +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0e57764f tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x15d912b4 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x28ebaf03 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3a21ca0c tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x42d78f77 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5a8f3e91 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x668687ab teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x71b7fc90 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x78fcf863 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x805cb394 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x807f7a7b tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x908dd249 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa470100e tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb3852495 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc080dcb4 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc113d00b tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc328497e tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc4f31450 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xca736f61 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd276e845 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xda65c52e tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf0bb5bac tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x3bf35728 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x914a0a49 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x99baa03c int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x185f557a proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x788a8b1c proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xa04020e0 proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xb4907de9 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xc0c34b68 proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xc560bf72 proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x0147a8f8 proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xf098252d 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 0xd5225d9d proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x10a410b4 proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x391df331 proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x813a7621 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x9172eb05 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x977b2ac3 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xe93a1e55 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x006d8fbe tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1254a9d3 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x133b84c4 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1840f7bd tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3161e3cd __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x40a6d8f1 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4de301bb tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4ec344a7 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x62b07833 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x62d09368 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ef2aca7 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785de1be tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7bd54e32 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7da606ee tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8cef9206 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x915c96ac tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb494d2ed tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbc9db24f tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbdddd4a9 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbf2d6c17 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbfb52110 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd1a2d611 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd7c7cd1f tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd9eddd3c tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x14f33c5f ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1f8a6756 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x28b77ccd __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x34e19a86 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x39849a9b ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3ba0b903 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x51c568fd ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x60efe929 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x66b5d8b1 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x69da90c2 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x71b293c2 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7410c412 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x742295c7 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7622c093 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7f60362d ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa120bbfe ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa51e07b5 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb2f35482 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb9ea984d ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbfa0d462 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc4e392b4 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcb289dd8 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd3d162a6 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe79c6f02 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xef17f8af 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 0x7313fc7d ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x9b9f7176 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xa24baad2 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/uio/uio 0x36397422 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x959c7f41 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xabd49153 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe888f9bb __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0ccd22d5 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfe07aebd usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x51b8a828 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x54a21a2f cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x67d5eeb7 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x98f3b960 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xad15d88a cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb6e7b9f0 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb8aedd2e cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xbdcb2526 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xedf56b0f cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1be114fe hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5b5c61a5 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9ea63976 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xafe1a9e5 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x066c22f5 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x319e0b02 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x44d93767 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6e93a9bd ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbff411fa ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd4b25ec7 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0ac96051 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x148a1584 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x30f4255a u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4e79f25d u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5e3bf725 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6619625a u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x722526f9 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7ce15e08 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8e3c2c16 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9429cb00 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x96af730a u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc3e53708 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xcd002f02 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe33047f9 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe5cada1e u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x19aed740 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2b4af076 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3a772f86 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3ae16cbf gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5db0932b gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6a872591 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1a42bce gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa577719b gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xae8cf0b0 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb14c8e8d gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb8cf12fe gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xce353e78 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd17e7abe gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf126c557 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf25898f0 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf267b3d8 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 0x597c5f92 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc26f7538 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf904d0dd gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfd5fa284 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2680f4af 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 0xce0946c7 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x02162926 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x07401f8e fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x09a7f7d7 fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0de5fae8 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1235833e fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x178566c2 fsg_common_set_cdev +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 0x2cdaafd5 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x59f49419 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x619119d0 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 0x6e303dc1 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 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8e85033c fsg_store_removable +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 0x9e8dcb08 fsg_show_inquiry_string +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 0xa7824203 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab5070d9 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xabd332b5 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe0389fb9 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf61ac865 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf741a516 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x30a8725e rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3d98f219 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x46780558 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x57269075 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x57bb8c58 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5b55be9c rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x69e9407f rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7bd1e9bd rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7c276cf5 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fad6bdb rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9904d5ea rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbab6b736 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd2e4cebb rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe7b64134 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf1e25f2e rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0321cf7c usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17a3176a usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19c75877 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x22e123d1 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2425d881 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x324ae596 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3afbe6d0 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e0270bf config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x407bc1df config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b259df1 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x53ecd4c4 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5718a1c0 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x65bb0115 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68d0fef8 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c1e1b13 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x705b633f usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x70d2f675 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x73268a31 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77f5e81c usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x804376af usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x80ee042e usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9f6753f3 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa6c2c7b4 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa6798f2 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaffe4dcb usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb87f7e93 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc4d78748 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd870e789 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe6dced1b usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf71a0e23 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc422875 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x36ceb53b gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x40d2894d empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7439f12c udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9769a7b8 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb88c5929 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb8b3e865 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc4a11687 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xcbb03ed0 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe4ac2944 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0194c1a2 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x062d8931 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x110b0355 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1738ef99 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x18063f3c usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1b342f5a usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x29996832 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2b1355c3 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x31f7ab45 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4475b6b8 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x631c117a usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6b423fee usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6caf9f15 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7b524804 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x843a47d5 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8a52dd76 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x90e468b3 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x90e6e95c usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x988d373e usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa1580f99 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa2b0261 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc52bf448 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd7f36d24 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe44cfe65 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe84383f8 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeadf0e21 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeaf802ae usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed6a78d9 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf3e490a2 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x7e6823ce renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x312a4807 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xcfebd38c ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0aa29618 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6501fb17 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x89601271 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8c349e56 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x943e70ae usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbf252d2f ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc46887ae usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xccc59f3e usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xec3956ac usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x05dd93ce musb_interrupt +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 0x0c1970d8 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1aa1c72a musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x298c8e0c musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6ac075e9 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x70e41050 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5fa821de usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6662f12f usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7dd63bef usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xef5e27b9 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf8524075 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x37bde763 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x988ee8b7 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x028ac5e1 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x23047d55 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2e614156 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31e9b58c usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5fff1ee3 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x63006f80 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x798c2c32 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x854e071a usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa427e3eb usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa992923d usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad2a0a1d usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad305e4b usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaec3bb99 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc008fed2 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe27bf990 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe7b596b6 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xefe76763 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf6b44014 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfdf1be47 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff2b726c usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x42ec1d1d dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xddbdf33c 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 0xf402526d 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 0xb42a58c2 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x01530e1a typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0680737b typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0dccc050 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f5c08e5 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f7a285b usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13bba2b3 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15c786ee typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x16e0cc0e usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1860a63b typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1a1e5132 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x262f6d0c typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2935e46d usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29a929a9 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b550651 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30d56573 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30e50179 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x318d3bc8 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x32a15ae3 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36bd2ddd typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x37de2d76 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d07cfc2 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x42cf3f10 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45e7bd9b typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c0d6197 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c2c7800 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50c107d8 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x553a81ca typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x56b69177 typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x586c9985 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c02a174 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5d6fd78d typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5dbcc513 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x62c53758 usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x62e9c82b typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6840fd79 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x693438fa typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x74854065 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b68255d typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86bfb149 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8800871a typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8afb104a typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8d62aa0e typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e68068a typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e6c6434 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x900df4ce typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9780eaf1 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c029d87 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9d7a2f51 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9e48757e fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6c14c94 typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa71144dc typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7edd5c1 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaaa68461 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1aba816 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb3f4ccf2 typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb472e763 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb6be0ba1 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc0cfdeb1 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc2b36332 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3a3c2e1 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcae402bd typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb6e9d7f typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd302728f typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7e96b3b fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0b5510e typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe3a4049f typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xecb2a89b typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3f5626c typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf7be9631 usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfefe566e typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x69dc0bc8 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7bb47116 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7db972e7 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x81c01258 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x858e1a90 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8ee5ee4f ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc2083966 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd3d6541e ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe7f8c4bc ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x000b6d8b usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0d61569e usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1e22a6e4 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5093f094 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5bb694ff usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x785f09cf usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x95170ad8 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa09e4535 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb2c505f5 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbabe0e55 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd5acebeb usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdddad9d6 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe6b4ea4e usbip_recv +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x37542626 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3d58f044 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3f732700 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x446d0d65 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x503a92d8 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x52ceb8a8 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5a30daa7 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb630fb09 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc6ddab5c vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe415a917 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xec99d93c vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x51d44ded vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x177691fb vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1c3fd649 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x28476933 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x317c1392 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3f2aaa48 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4242255d vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x45bf7507 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5300860d vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x54319351 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x57f060ee vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5fac27d6 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x64a0589a vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa838760b vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb488c153 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xba4fe889 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xccd274e2 vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe411ad3e vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe8625845 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xefdbaf79 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x20f9b99e vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2c61ccbc vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x383d44d9 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x49be088f vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5fa6488d vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x716a4f37 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x786e68b8 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x78d297d2 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7a696e57 vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7f3ef07b vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8ffaf481 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x96600c4d vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9c557add vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xad4f3c51 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb39308bb vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb54edce1 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1a2239e vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd571a311 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe6d2f7a4 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xed93cbc6 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfb16d445 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14e759ff vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x218a8ba9 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22894c77 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x268e507d vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28bfde4c vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29db46e8 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31d1e7a6 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37629981 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37922126 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x38f86f7b vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a044032 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45ae74d5 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ff9bb66 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51503636 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57d22ba7 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x592a6de2 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x598430ff vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b853d49 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71453f98 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7467b3fb vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7828d72c vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c96c861 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fa282e1 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x811d24ac vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89bdbd64 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8fee6110 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ff912d4 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97123e43 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac6c8ac6 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb330542f vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8479032 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd3cd79e vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4dced49 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4ec5a71 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd9ebeb43 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe36fd455 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe59b4365 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1a9c05d vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8ff0431 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff9dbe5b vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +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 0x4fcff639 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6d12a9ed ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7165a3bb ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x73716873 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9772b1fb ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcc173df9 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdb3d7998 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x2898b1f1 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7a264d90 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xbd6ca89c fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x07205a18 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x74dc492b 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 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x8feb34e9 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 0xce990048 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3339f28b w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5e843830 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6b10a509 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x73642286 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8032679e w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x848e67a0 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9094661c w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x92ca18d7 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd68e515f w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe93e40c2 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf90f8c65 w1_touch_block +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x8470b0d1 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x913af253 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xcfac2a08 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xdb6c5078 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe264c70b xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x1ede9613 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x9e26a1e2 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5655094c dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xbca229d2 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 0xd6b19fa2 dlm_posix_get +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0c688508 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fc158ee nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x84427401 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96dcd86f nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcf95f5b9 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf57729ad nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6303f88 lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0172ebfc nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x019326a6 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x023f516e nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0255b54b __traceiter_nfs_xdr_status +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 0x049f76fb nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0510dc11 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08b8e1d7 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09164827 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x098fa263 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09f41fc7 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cf5c20d nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10f23b1c nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1112e0bd nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1137aa8d get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x114b5d15 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12825dfd nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15995762 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16a8decb nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1994a9a5 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19be9f95 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aea0a77 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b031c9a nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c1e3614 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1da6d8da __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e340160 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f2a3ce0 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20bfbd05 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x275434ad nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27662560 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28c9914b nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b27d064 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3460ebd5 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34b2ca47 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37cfaf4e nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bb79242 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bfd3ff2 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e770658 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3efa85fb nfs_init_server_rpcclient +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 0x41fe5184 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42645fcb nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4707e1fd nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x490a1cd2 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c22ee1b nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d1656ec nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52617d80 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x544dda9d nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x559f2149 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x599e6c88 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c5eb4dd nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c7bab18 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d2d1eb9 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60c4f148 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62bf9a32 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63aa2aea nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x643a2c89 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65d71add __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x667468ae nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67b78148 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68644e33 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69b7d7a4 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b8c9ff9 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f509d9d register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f87517b nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fbaeb50 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fea506f nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x701fe5df nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x707a3ea4 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71003038 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7367c043 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7374cfa1 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7494d336 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76341116 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x785642fa nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x786eb861 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a546f1d nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b2aea8d __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e670f04 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80127217 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80c4b7f0 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8502321c nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8554fb66 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88e010d7 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8975051e nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89bbd841 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dfc08fa nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ef9e4c8 nfs_free_inode +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 0x932d379f nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x946e2f9d put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9486c440 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x976679ef nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97d843d0 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9869512f nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99f6d121 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a223748 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ac7c7ca nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd58d61 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c5f80f7 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa35cce83 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6f3a977 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa92d42e0 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacd33ce8 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad3b6d51 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad449421 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1bed84d nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7dc100d __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8c746d4 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf4ffe19 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc06a955b nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0b962b5 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc141b17a nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15a93ac nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1a7f401 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2329475 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2c74404 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc442cd82 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4486922 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc67e96a5 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7ef067b nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc08c75c nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcee55748 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd07d5edf nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd76908de __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd78775e2 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8354ab1 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9166dd0 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcea7d77 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf9940f6 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1a86541 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1e52b17 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe25ea709 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe292cf4e nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe39c31a2 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea51339e nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed04edbe nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1e8cfa4 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2c0fe03 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf51a6ad4 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6a902aa alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6d7bad1 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf77527ce nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9dd2912 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb9a7194 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbb0691f nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc5a0aa2 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3c0de6 __SCT__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x8f08060a nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0120afb9 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x050f7692 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0576f52c pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09ad6f98 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b360cba __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b7566ff pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0eebb7e3 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18dd521d pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x199c784e pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e7b0e77 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f25114e nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2096dfd4 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x211c9e5f pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24d19f32 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e3d9ad6 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e94bd08 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x334b1466 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3971b41c pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4079b4d6 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40a4b9dc pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4322a805 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45c10285 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x471ae5e3 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48b1f352 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d43f521 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f9dacdf __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51cec0d3 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5300d5aa __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53d13aba nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54214c24 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55215f2b __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a67003b __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62dc5d0a nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63e9037e __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66bd0f5b nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68ecb734 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c5a6211 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d1299ab pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e8ec719 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6edc9ad5 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70f89e07 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bbab762 __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c48150c pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83cac28e pnfs_report_layoutstat +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 0x97f28f54 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98cea858 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x993e6edb pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b311cb2 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c3a9f78 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d7867be nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e095057 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa020b83a pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa259b30e __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa590031a __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa63aa20a pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa93a62ac __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa59d9b6 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab96f4b7 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabab55d1 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad0de422 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf722095 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb02e8311 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb074abcc __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0b8ddd6 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb16b4b5e pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2aea786 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb42f2f85 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb46c8330 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6e0d385 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb710ebf9 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb885d33 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbbe7d03 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbde9d15c pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf2becb6 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf352454 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf68523c pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc151bebb __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3644722 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4593033 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcba307da nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd10a8207 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd15df590 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2d664c2 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5a38657 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8dc04ef pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd989e36c nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9e45d6d nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcdec901 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd50eec3 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf4cd684 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe034f01a __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0f80c14 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe26d2470 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe287a313 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe78a957b pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe88ecad5 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9fc9078 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec5f866e __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee66b8d9 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee9c7237 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf04b5626 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf39ffdfc nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5722692 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5bd87e9 nfs4_proc_getdeviceinfo +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 0xfa52a2e0 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7b8092e3 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8f53c730 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9523e816 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x15e272d0 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x29523c52 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4a7605b2 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5418c640 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xa17a4676 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x16d01c10 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1e7ad089 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1ecb96bf o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2b1e6c14 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3cda0d7d 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 0x77322b9c o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xba4ebc69 o2nm_get_node_by_num +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 0x02a712d7 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x47b2b2b2 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4c438e6c dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7114a97e dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9215016d dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb24ea57a dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0e80a7ef ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4b97a99d ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x607e1e4e ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe80f451c ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xc40cc8a5 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xd16f0006 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x81d9f2a3 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xe2ac1a73 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 0x3c4af2f4 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xdd04d7dd notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc +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 0x63be75be lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc1388833 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x0814cc68 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x0c4ceae7 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x3e734328 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5225721a garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x55a2dea8 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xa977c7ab garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x597466b6 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x8d64305d mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x9fad14a1 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xa63c140d mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xab3f542f mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xb1ce8e22 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x639d2612 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xa7149dd9 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0b48524c p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xabe245a1 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xadd36af9 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1e22b940 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3e44902e bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x69a10498 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6e26270b l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7c5c7bf3 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa75992a4 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb02a27c5 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xba523579 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc4966840 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x20324f8f hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x02645c98 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x09ef5adc br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x16c89408 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x17e3975b br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x202442d5 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x21d131f3 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x233dd2dd br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c183623 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2fd58e25 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3181f375 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3a8ba121 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4a5005cc br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5b107329 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x646731cf br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x68df8059 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6fbb4a14 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7be46b9c br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x82a44d86 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x863b0439 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9bf115db br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa1f495b6 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc8b39753 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc9b274ff br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf3efa4ad br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf96d1de8 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/core/failover 0x1074ba15 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x33629d6c failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xea8d4720 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x03019312 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x08a90bed dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19275a49 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x218fccd4 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x24b70657 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29db8d57 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b26875a dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37f90870 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4214b778 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x451f7820 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4789fa06 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x48af15c9 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4bd51550 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x528b78ca dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ddec225 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fffde32 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x79ba1f63 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x804d5a82 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x83331bf4 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87214c59 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c88e4b3 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb183325c dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1a9258c dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1fc8938 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc25e7c88 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc749ecac dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd99d8246 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdbe44456 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1d8b05d dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa65281e dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa9dab41 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xff055628 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x00b9ddbd dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x013aeaaa dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3969d41e dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6c68490a dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbd9e6ef2 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd005165e dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x07293ca1 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0f2a3f0a dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x20313376 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x277e3ad0 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27f78009 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a4d9bc9 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x333a1029 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40e831c9 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x530be26f dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5953f246 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c4745b6 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x64a547ed dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x66c440f5 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c3af7b1 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x72c15e26 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7f271497 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x80fa2907 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x855b1675 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x891ba0c1 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9dfde36f 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 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc5c06b7a dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcd90942f dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7258c7b dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd85b5f7d dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe3582b76 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe8f55d8d dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe9150bd8 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeb70ba8e dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf5290169 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 0xfe1677db dsa_register_switch +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x110381c0 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x159655b0 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x368ba37b ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x98506bf6 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xddeb2173 nl802154_scan_event +EXPORT_SYMBOL_GPL net/ife/ife 0x21cf88d2 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x42ca18af 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 0x8f3aae2c esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xad027d9d esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf2dc79ef esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3dfe423f gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x852dd839 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5594d7f1 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c358462 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6bcc6ac9 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x71db4202 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9e9b533c inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9ec6af09 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf236f978 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf4d264de inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfff8d0de inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x71e77cc4 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1d0114b8 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x43ba36c7 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x44fca367 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5dcc1ced ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7648ced6 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x91ee1a82 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9b74e1d7 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9fe8b8eb ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xac99379b ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf1a7cae ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc58e7c01 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcb4af9a3 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd0501466 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd6c95085 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe3963f11 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xed8e26ca ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfe82f4db ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x125c3a94 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x7a1017e5 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x12f8b31a nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7d82894c nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xfc180d38 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x24b5fca7 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x43edf3dc nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x67b1805e nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x843b1cbf nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe4b05bf3 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xed75fd6e nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf990978a nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x84a6ee5f nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x146464d1 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x50acfe30 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x690c33b3 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xad48a60b nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbc8d9fab nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x00a1dd91 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2dfb65c2 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb00aafbb tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbe89a627 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe17c81c0 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x208b50e9 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8c39aa16 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x907f9b0b udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9ce67d9e udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbc0ed190 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbe852577 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc0f740ee udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd581ff1f udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x123a4990 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x80e5c74b esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x9ec6d8c5 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x25b7fba4 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x756dcd30 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9f9f8a8b ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0af84846 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x3df8e60c udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x6716d3b9 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5f167fc8 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9475859d nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xdeeda125 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x35db6074 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3be25d4d nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x46c53bf1 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x74f7940f nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8aa36f75 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9b3e6261 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb341916b nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe21bd7e7 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x03c14f36 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6d020120 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xa38203c0 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xddbd5258 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x85440cbb nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xc3040536 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x02994898 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1672883d l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x289066c2 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2e1c13bf l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2fdec312 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x431cbe96 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4c240f5d l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5db93b42 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65b007f7 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72be217c l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77c1bbfb l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaafd6210 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1a00844 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb488476e l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd616472 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2f8a9fc l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd6fd8a33 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdc9f3513 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdfbfaa9f l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe58d789f l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xec09c9a3 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xe9c7e8c3 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xa9a2ca0e l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1a810b04 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1e1801cb ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x20adab75 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x24b8fcbe ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3508174f ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x35f7933f ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x36901679 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3846e47e ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x455e7928 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5ad55e2a ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5d33073a ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6fb26829 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7c645f5d ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x816b411a ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8cc7a137 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc5868c4 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc0277165 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc3a0cc43 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xce1c6b3d ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd78f8969 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd836c705 ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8be2ff5 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe6cad08c ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2dde5a5 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfe44ae9b ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x95ba5772 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb8193865 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xce8a6be2 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf9159bc6 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfab56c52 mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0568249d ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ae5fdcc ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ede903d ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1413553c ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1c58bff0 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 0x33e511be ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x52104eaf ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x534c5539 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x563ef83d ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x615dc485 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x66b1e6e9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c3fed41 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa24f17c3 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc32602f6 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc3ceed04 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6ed50bf ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd4148d84 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe11ae185 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf9cb9cf1 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3da1b634 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7fb65433 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc5596cae unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xeb1d52df ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x06e963e9 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1a1df101 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x50ef9830 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa40172b0 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xab67f7be 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 0x01d573e5 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05611c2d nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x082a5ce5 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fe9f5a3 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13dbda8a nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ace10e4 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bd5baeb nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cb7f960 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f652a4c nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fe2bfbf nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20bac498 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x226dced4 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x226fe3a7 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x231e81d0 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x245be4e3 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x260635cf nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x269500a7 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x274d73c5 nf_ct_seqadj_set +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 0x2e5648df nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34b828a0 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x379c261b nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c3ca4a5 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4078e9ec nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x463d4db5 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eb99fd2 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eef23ca nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5206cf56 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55f17749 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56ea87be nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6214c49e nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x656c22af nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6616604a nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6631982d nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c327406 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71c29222 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x732a09e9 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73a92f06 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76089ce2 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ec96fa2 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f9457c8 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x837cd6d4 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83c2aa00 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x846da852 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x878110a7 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88f989fd nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ae1e6cd nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x982045aa __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99eb46b6 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c8bfdcc nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cc05771 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d8162e8 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fc99edd nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa16eb05c nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1b2b978 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7920c7c nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa933bbdf nf_connlabels_put +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 0xb15394bf nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb277152f nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2a652ca nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb44097da __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbae8c288 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd6bd1ff nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbebf6b1d nf_ct_iterate_cleanup_net +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 0xcb699545 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcca6dddb nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd23984ee nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd324d870 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4112ca7 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd80702e3 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd97457e7 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdab93c2a nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdea20a6a nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3b6bf70 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7cfca1b nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecef3b28 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedb97960 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1da08bb nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf36e82c7 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3fbc65b __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd1b5543 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd8b168d nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfea0b2f5 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffcd3eb4 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x08efe4da nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x1b9b8ebc nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xe5975cc4 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4f175309 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7c557040 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xa3bd7976 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xcfc86346 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2d3a3dd8 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3209496d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x40dc1e9b ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5cef44ed ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x724e9932 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x79f5a147 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xca0357d3 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xff27c7f6 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x56ce5775 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6b1d7af8 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x912bac1c nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe853b357 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0bafe2aa nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x189819ce nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1f4ce82e nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4d0e8ae3 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4d38e1ed flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4fcea233 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x606572c9 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7dab0c9e nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9790f263 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbdfbc40b nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc52fe7fa flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcffd3bf6 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd095bfa2 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd2505e0a flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe4da2d11 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf14a21d6 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf85cd337 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0fdaccb7 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x15e4dd45 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x224b9488 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2cd28fff 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 0x477e0380 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7239943a nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x803c3c37 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa99983e2 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaea1f1c2 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc20dad04 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc74fcddc nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcc9e6d90 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcd6fad05 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xced64e7a nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd3830ba2 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe52540f5 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe6d7e60f nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb661aaf nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x217eab4f synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4c958dc9 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x688d6be2 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x871261d1 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9b853c65 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa1d4fd4d synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaa37d1e8 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc1783fd6 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc873558a synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdbba060e synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xec5d8fef nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0089bbb5 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00968f76 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c9ac74d nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x122df741 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2fec9c8b nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x433ccee6 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x453be097 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bdc3445 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ca3484e nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x508206d2 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5278617d nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5734758e nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e392c3a nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ff46883 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60fa7321 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6208aada nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70595fbb nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70c03d2a nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x746ec274 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x759fee27 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81869610 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8731c353 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8ebce9e0 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x958425cf nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa160169b nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa27cbdf3 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa4af8550 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab1bc7e7 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf118e7b nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xafb7cc70 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb2c6d551 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb40b700c nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5768eac nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba9095b2 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1b9beb7 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc33daf0a nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc382644d nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd1cfee6 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd447834c nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd65bdafe nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd8cbfd2d 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 0xe3cd631f nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1b81369a nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1df1b26a nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x43e09181 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6281f913 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x63a914b4 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb4ffd2e nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf544acfd nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2625a8a8 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xaf12bdf2 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xea3685bd nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x58c374c3 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x8c801742 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4cdd7ebe nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6fac8d60 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x873d8851 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8c54bc24 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xff9b5413 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x637a48de nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xaa678bd8 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbe514469 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x123059c5 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1282a841 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1a816411 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x200e0659 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3eaaaef6 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40595337 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46c2851b xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46f2ef3f xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x58b4c25c xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5d1ba028 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d02f5a5 xt_target_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 0x843df12f xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb509e432 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb59a03cb xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb5f13299 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc590b343 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 0xdd4831cb xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde2d3fc9 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe1774b4f xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe492f2cb xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe5e990d2 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xee2e1cfc xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf2c4ee61 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0e605f4 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd7a6809a xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x96eac5b6 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa5e43a2c nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa68946c4 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x30e75f87 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x36568a7a nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9315b06e nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0xc47f29ed nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xc4af3e8d nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x04950df9 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3061004a ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x52839525 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x572c11d0 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6d27b360 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6dc054fc ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x18849a6d psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x323cd42d psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x387461ec psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xdded1496 psample_group_get +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x54e58f4d 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 0xe0a1773b qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe318949a qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x030436cd rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x03edf1ec rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x0cd9c19f rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x1ab0b253 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x22edc7eb rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2bea0863 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x447299e8 rds_message_unmapped +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 0x647523ff rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x6e317745 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6eae2e3f rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x737c7d53 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x777eba4b rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x7fdd47fe rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x80162f2e rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x8c554695 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x9024b0f7 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0xa02d0661 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xa1e1a2a7 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xa89ba707 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xadcc3cbc rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xb282de60 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc64da17b rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xca0d5044 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xd190b780 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xd1a33a6e rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xd3f3ec63 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xde4fbddd rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xf7138839 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x16a9ac5c pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x84867bcb pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x0c7755b6 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2d9f4f43 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x387c3a6e sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x875ad6f1 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x11686302 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x1be58cd8 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x2e8e11bf smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x3b1abac8 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x4f22543c smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x6cfc5b58 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7de7c5f8 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xba3a80c1 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xbffc1093 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xf971a8d1 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x05018485 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4185fecf svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xad09348f gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xad35983d svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01c8e634 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b69f35 xdr_stream_decode_string +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 0x09fec968 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ae3dbbf xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d1db090 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f5d451e svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10bacdf4 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1234ea2d rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x166a4283 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17a626ba rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18a720d7 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18a85ead rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1912182c rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1924e929 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1be533e2 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c2e5fe5 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c7c9cad svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c8438d3 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2c4f4a rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eae0ff5 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f9ccf70 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x212be215 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21bd2c8d rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21e7f36a xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2250abe1 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22b66da9 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d51a0e svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23315c97 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25ad68ec rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x262650bc svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29aa2092 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb609ce svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e7827ad svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e92d7e7 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f05520c xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f68e1cb xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fbd114b rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x303490c4 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30a16f26 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30d1e62c sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31f21438 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3214ed26 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32594151 xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f7e2a6 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343b6024 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35205adb svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35467524 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x358791e7 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3591d535 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3676a1b8 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3706222f xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3742fa3c rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x386830fe rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38a672fb rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b04e457 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c3e196e rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c5a6797 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ef50e4d sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f685069 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4130ab5e rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47e2d7fd xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48622187 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ba4cd0c svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bebb26b svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cfbbcf9 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dad45a8 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eb27e97 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50bbaf8d xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5192af7b xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51df9a88 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53be0ab8 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x573e4b95 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57b57023 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57c53c64 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a54203a xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d5f21e3 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d73d0f4 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e416168 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61025973 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61cde031 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62bb75bb rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6541b68d svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66a5eaf4 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ace1ec rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6752ee73 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68c0af2b rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6940dba4 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x699a0d82 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a1ddda0 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ac49309 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b521570 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bf01e79 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d5f1b80 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e28939b rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ff4361d rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f3dfa7 xdr_stream_move_subsegment +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 0x7265f2e5 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e77de5 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x736dacf9 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x737c648b rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x740556ce rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75201c45 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7748027d svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79fbe804 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aae02db svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c874371 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c883063 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d497c0b svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de9823c svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fad1a14 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x832411e8 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8394daad xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84864bb5 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86921190 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d48dd5 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x873d2891 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87ad7c18 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8889cc75 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89bf8557 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a17bda1 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a551e09 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bef4f3e xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cbc7526 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d15ee73 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f3f32cd xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x925d51be xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x933a69c8 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9417adae rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97b202d6 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b65bb32 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c5888c8 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13830ba svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa18ce950 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa51f83c3 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7aa6513 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7d528cd rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa92945b2 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac5c3c79 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad3601b7 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad847205 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad870f69 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xada6ae1b xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae27bcc1 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae40f961 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb06e3b44 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0802ab0 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2f51dbb svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb395c32f xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3f3de7e rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb462b5ed svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4bdb6a1 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb583ba4e svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5ca43db rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6459629 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb699c05f rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb76d9ca7 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9b1b8e6 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbac1bf57 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb9db858 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc9f59e7 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdadb64c rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdc35f97 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe2e503d xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbece6702 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf38df26 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc018c5d8 gssd_running +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 0xc23d0a9e xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2aaf31e svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2adedf6 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2c6c0cb svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc37ece17 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc540555e rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc689e023 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc76495f0 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8238a5e xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9253cfc rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca11318a svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca5c58de rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd7a1616 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce2a3ef6 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf67799e rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd008e93f rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd039ced3 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15f6ed7 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd652b1f1 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6c2ef36 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd70789a8 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7fbd12b svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd852d4c9 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9e1560f sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0fa335 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc5e016e rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcc14047 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd5b2723 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd8fded3 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c5c915 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe339563c rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3bec51d sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3cb1984 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe52f0fa0 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe611dda0 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe641470d rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe74e1b83 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7b02836 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe810e5bf xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9b35371 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeac072ce xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb746a70 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeba61e0d svc_xprt_close +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 0xef0996d9 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef80cb43 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf06219e4 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0d41787 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf124003d rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf265c9ae xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3e60fc3 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf436e080 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5459d7f svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d52b30 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf81486c7 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf83ac85e rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf937ae6f rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf972dfd9 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfada22b0 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfafa7659 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbcc1cc6 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd715c94 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd9acd95 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdc88df1 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe915645 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff2b64c8 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff597319 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff69ddce svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffea0f84 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/tls/tls 0x0a0f9001 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x3ec660f7 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x774dfec1 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x7ffa1759 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 0x064a2056 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b16386a virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0eabcbaf virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0f8de63e virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1531bbec virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1819d351 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x213c959b virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2df8fea5 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2fc2668a virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x43c89655 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x498cf436 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x510594fe virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55f417c6 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e276940 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x647573bc virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e094c39 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78fb1fe1 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b34de2c virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c7d382c virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x896be497 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8999bce4 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x930d0b60 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ec8a4ab virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa74f183b virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa846ce45 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb7b9fa89 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc8dda20b virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda5b4d6d virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdaf3077c virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb178080 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdc592d8a virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2e79317 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf509952c virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff0a53ac virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0b1ec8d7 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0eb60eb9 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1aae0994 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x209033d6 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x216bbc20 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x22ad9e68 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2bda4370 vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2cb16e44 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3578021d vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3a08ff7e vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x412723a7 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x41c08029 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x48cff2d8 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e2aab4f vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5784ddb5 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x62ce8b3d vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7bba678a vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a6694cf vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9933afc9 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa9fbedb vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe83216ef vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2400d716 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2bbcc93f cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x44289eee cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4cb35c83 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4e2737b4 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x52c4754a cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5d2dbf05 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x78706509 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x82d03d96 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x84314f81 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x932dacb4 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x96d36d25 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x986e2da3 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9d346e6a cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbf07cf03 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf7591733 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 0x60c9d946 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xca0903df ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe4c46868 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf86397ed ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x979cc040 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 0x040c2c21 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x058c3897 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x06faeb36 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x229ffcd0 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x4a81b301 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x5821dc2f snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x77e35e5a snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x7d802de2 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x7dbbc28f snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x81053d22 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xa2ff4dc5 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xa948c2f2 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xae16557f snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xba6102ab snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xc49d950b snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0xd6ccf492 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xd81e0c0c snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xe4e85a70 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xf63b0e7c 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 0x2afe322f snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x3bfa3347 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x077c3f2f snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x17ef6a93 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x29c1ac2d snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x85e5058c 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 0x958f8909 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9ad7eb34 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9b5d086b _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa185890a snd_pcm_hw_constraint_eld +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 0xb3a12c42 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc5ffb104 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcde1fadd snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd6ed2422 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe18a4152 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf3da38ce _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5805d40c snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x723e9279 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9654e06a snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9732016c snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x99ca30b1 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa728daa3 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xae0275bc snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb2ca125e snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbd55ae80 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe72dd182 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xec405cf2 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xedf531ee snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xbd1aea98 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xe76baf0e __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x051c5b9c amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x069d77fc amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x184cb903 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x229eca67 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x39dd613b amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5a43f7c1 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5daaf76e amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6bfe8cb0 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x74d1922e amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaaa08f16 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcef8c3cb amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdd98b11c amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe646a560 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0bd6da7f snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0e64e9b8 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1b0292dd snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1c655427 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x34f47687 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4a733adc snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4e8f1b8c snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x70729d85 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x73d25da9 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7a131849 snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8540d956 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x870ff6f0 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8c97f8fc snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x99bf0d0f snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa684deec snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa70f626e snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa83f5202 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa2c22bf snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xae1cac53 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaec7332b snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb5e28eac snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb878f498 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb90e1cff snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbbc7af26 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc5155119 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc64d1a27 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd8872776 snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xea70626c snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf584184a snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf7a5c65f snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf84bc064 snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00393c34 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x094a4c4f snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0996737a snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a028b24 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a09df9e snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bc3e029 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d59198f snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0daa0ffa snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0dbdd373 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a4a1be1 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bc51c20 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ce3338d snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x200eb268 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21fd876c snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28d80589 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x297dd1f9 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ba94fb6 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c6dcb3b snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e728646 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ea29a22 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3333ec1e snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35592683 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37758acc snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3830d2b2 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a6633fa snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fa9b89e snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42a59439 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43f0e3da snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x455808d5 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49a0a6d4 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5054e78c snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x553308d8 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55419362 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x588b0e97 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58930a51 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b08964e snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x611ef09c snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62b5afe7 snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64bd4247 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64f7922d snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x665393de snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x674007bc snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67b1c7c7 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b83b626 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x708ab2a5 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x727d388f snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x745f4040 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x795f7af9 snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b65057f snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7efda8a8 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80b2abb1 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89105ace snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b7c9dee snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c0f1e84 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x910fd56a snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92b61f2c snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96366cd0 snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9730b042 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x980adb1e snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x984bebbc snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9caffc45 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f5bc053 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5ea9a9a snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8744ea7 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa955ecd2 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9bd90f2 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbca5c308 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd0de007 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf1b1dc9 snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc364488d snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc62a46b3 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb25a79d snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce534503 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcff99193 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2aa8d3a snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2f5205e snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd679e073 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda6f1fd9 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc4f96db snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdda868a2 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe273e28d snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5c7e36a snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6a26366 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7106775 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7172ecd snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea2c0080 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed65f153 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed78db86 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf276f6e3 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3d09b5f snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3e4caf6 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5797e78 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa965533 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc4e4979 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x0dfb77da snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x455382b1 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x553a8c8a snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xb873051a intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5bf7ac5f snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x77e3ba24 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x90b56484 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbc005152 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbe80fcfc snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe527d89e snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02b2b9f1 snd_hda_multi_out_analog_open +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 0x06d3008a snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07ae2e6a snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x081c877a snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0933ac31 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b0c96c5 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e313810 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ee89245 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10015d0f snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1039befc snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x117d4982 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11a7aab5 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1289b2a4 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1630ba1f snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1894aaac snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a157b5d snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a6ca449 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ade47ef snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1afa637b snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2041bdd7 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2244ec9b snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22ca07de snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24d11ce2 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2acf2e55 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cc738d9 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d230541 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30803f1b _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39822478 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b0ccae7 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fc228be snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41ccf7e4 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4203c232 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42401056 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42ceb5b1 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x448169f4 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45282a3c snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48964c37 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ad80065 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bd61a4d snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cfa4bcb snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d433088 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x519c61ef azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5479b185 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x567911e8 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57499b24 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a8ec57b azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bc83058 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d9386c6 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5edab263 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f1a8583 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f6827bb snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6108df92 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6122cc6a snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x617827a6 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62411742 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63801539 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x666f19a5 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66715a0d snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68108167 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cb184a4 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d2d9c02 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e282564 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e29b960 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71d72be8 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72271eb6 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76e5666b snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x784cb0b3 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78ec244a snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a4463a1 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e0d4071 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f79dbdc snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8216d6ab snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85c4533c azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85cdf8f5 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x862e6cb6 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86572987 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88242fb2 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x890930c4 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89271431 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b91a84a snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8eb6a438 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f8439c2 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97f95a20 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98249ad3 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98c839c7 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bf0214f snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1c2478f azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9507cfb snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa97de1c snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacec57a4 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb22e25c5 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5834557 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb644dfa1 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb650b8f3 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb9254b0 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd05891a snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe437be3 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe856c99 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbff6ad8a snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc254d03f snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7d432c3 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc914f113 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc99f3f26 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb0b3bcd snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc606bd0 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccadccfe __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccf23779 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd07ab04 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4d22c1b snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd521954b snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5a16b82 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd905e03c snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb4e9f66 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde3ba8e2 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0bd76e2 snd_hda_codec_pcm_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 0xe3541d48 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea1d33b5 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea785acc query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeafc5cec snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb52bf17 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb8b33ce snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb9513fa snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebbede0d snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec29e319 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefa6a1a8 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0469a42 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0e41fa1 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3d9a059 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfff69f10 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x05e6ca67 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1dd9d73c snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2283f0e6 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x362e4647 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3704ad63 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x436fcacf snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x485e93aa snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4c849d49 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6890f787 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x711972a9 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7f3336a5 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x85e0a6ee snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x954ac400 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9a10b05f snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9fd91a8b snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xad9d3f3a snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb8f77fb6 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd129c68a snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd4831e51 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf89f872e snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfcf80227 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 0x74394911 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x6c36806e adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x982ed5ed adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x17b9d3a9 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4f6e2814 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4ff7c167 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6a167e34 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7983dd23 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x822adfa3 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa412dd06 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb98bceaf adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdd7fa31b adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xff40b49e adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x993beb5e adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x02893858 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0c44cbbb arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0e6e82ec arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x15733e39 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20fc9025 arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2ded74d0 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3397d471 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x35f89aab arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3af81b30 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x41dd2f1c arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x43e0960f arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x453ebea1 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4575cee1 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x550edff2 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x64166502 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x68600ee1 arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6f18382c arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x742a42c6 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fcb929a arizona_sample_rate_val_to_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x80ae2e07 arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x821815c1 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x860f4b1a arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8a3d5882 arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8cb19a09 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x938f911f arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x94bced5d arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x94f31a5a arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x956b897d arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x977f5e87 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa2678b82 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa875f41a arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xafc1f9ad arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb43b4735 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb5a0bff5 arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbbdeafdb arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbdaa45b6 arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbffa4a22 arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc021abe9 arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc172fd75 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc3bf56a4 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9a295da arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd30c4fb8 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd59a7416 arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd5ec26f5 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd9b1114a arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xda4c6d0a 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 0xe0ee67c5 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf05fa425 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf0ad0b09 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfb8eacf5 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfda57190 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x8deec2b7 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x99f244c2 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xd1d61714 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 0x047c0482 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x47c6b9df cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x54cac598 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x712c91cc cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8d2eee4d cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x919e4905 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xaa35a5dc cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xab41e9eb cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xae7c8295 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb918ae6d cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc7799713 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xce84e718 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xffb95ac0 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x274710dc cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xab0872ba cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7240379d cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x818e32ec cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x894c95f7 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9cedd512 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe35c94c1 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x152d05e2 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8cb80741 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe793e56e cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xce6fded5 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe432a438 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x3b5ea0f8 soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x54961d75 hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xab1aa8d6 snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x7e4252e5 snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x44d0f852 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xc1311a39 hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x8531080f lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x87e96057 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x449f0ea7 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x1d5b27f1 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x3cc070af max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x4af3a881 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x87f66c8e soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x19824d6c mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x8c0a1906 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xbaba5d56 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd76da369 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x4c3c9f7a nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x7c472e78 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 0x1e105fc7 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x36cd6738 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x3e10ac7f pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa3c6fe78 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa4765250 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xabbe8adc pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x07a053d8 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x418ea2e6 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x14a8f234 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3383e403 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7f2b5d0b pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xa0e33cda pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2667eff8 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x566176ee pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7600f658 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x962546cf 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-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 0x27dfa0af rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4328bcb4 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x507014ed rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5efdbf3b rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6c7525a7 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6fc6cb20 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x20ca98a7 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xafe1a090 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xee62e52c rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x7ffbf3b4 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x16f4c89c rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x65de834f rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xca7a234c rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xf3e5e79a rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xbd7d0f3c 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 0x024eaec3 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x18ac603d rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x40e7e692 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x67f33aca rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7d0cfcc5 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7d8501bb rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8486c95f rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x96b2bab8 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa42c3b30 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb759d0ef rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfcbf5c14 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x6ca5a2c0 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x38941e38 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6de2c95f sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x719918d7 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x811a5a4e devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9238405c sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xc5bfbf11 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x55f414d9 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x8e4271a5 src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xf850d200 src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x14448d5a ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x219515bf ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x806322c2 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xb4ad14bc aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x863c95ba 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 0x07d09146 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x78c49ebf wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7db29a59 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8cd531db wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xfde7e08b wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x22bdd87c wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x32dc9d05 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x34baf25d wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3bed6831 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x42a462d3 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4540600a wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ead3a12 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52303427 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 0x54818037 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x56013fa0 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8d25bc4a wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x97c5b171 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9e88a63f wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb47a200c wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbc09beb0 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbd57fa1b wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbe65979a wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc0fb8b14 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc459ede1 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xda8378ca wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe0cd0265 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe37085e9 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe5bb1964 wm_adsp_early_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 0xed28e7e4 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf58b9926 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x61311370 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xeae55fa7 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x01cf1443 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3ce5678a wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5d338b34 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdf03eb2b wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x1365f18b wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x123bec97 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd491fc94 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 0x00e1d1ff asoc_simple_is_convert_required +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x074b3656 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0fcc5f69 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x13ba431b asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x23c57c1f asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2887dc34 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2fac0ea3 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x355df2c6 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3f1299e4 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3f2b02e0 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x477e34f7 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5b95c1af asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7c45e18e asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x824cc2af asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x826c0ea8 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9306a4ee asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb4876dcb asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc39b77be asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc492d415 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd14f91fc asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdab1cda5 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeba5f8bd asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf5e26a3e asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x10b163a8 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x7a4a462e sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x555e6d06 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 0x7a88c3ac sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xbdfb2db2 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xd3b777e2 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xd5db4e89 intel_sst_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 0x2a8ee84d 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 0x631cea9b 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 0x82eeef32 snd_soc_acpi_intel_cnl_sdw_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 0x97b93477 snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xacdfa977 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 0xd68ba821 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 0xf589e194 snd_soc_acpi_intel_icl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfab1701c snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0884948f sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1051c9f6 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16e86983 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1f60b6ad sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x22257250 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3dd3f782 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4bed97d5 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x58b7c517 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7c0816e3 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87cdf7d2 sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x94414f96 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x967314a3 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd6673223 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd72a34c2 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe1dc8fb1 sst_dsp_outbox_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 0xf2aad06c sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf699c748 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x2246b3b6 sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x423a2676 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x58377baa sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6ec161cb sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x8e0c521f sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x90287fa9 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa379c417 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0ab66a35 skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1583d8bf skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1d951652 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x21fc0ee7 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x28937d3e bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2ea4ff5e skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x31f15511 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3630f942 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3cc25e43 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4295f9bd skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x429b4c5e skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x49aabb31 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x518f3061 cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x56bf438d skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5be47428 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x67a4a37e skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x683c293f skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6c4484cc skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7f89d12f skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9c3a9f13 skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa5ba9210 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb90adc1e skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbd38cffc skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbe1cd77f skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xce2b50a6 cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xcf39fdb4 bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd56d9d1d bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xdb64d82e skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xdf521b1e skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe22d82b1 cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe2796017 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe6c2c17e cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe7103a13 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe717ef02 skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfe7a4bc9 skl_ipc_bind_unbind +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 0x0229c4fc snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0427ba82 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05ea18c7 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06cf9265 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0963d10f snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09b394a4 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a8c49be snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b441b92 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c754e4a snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d475052 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d687931 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e8e658b snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f06cbee snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10f3db69 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11c02bb2 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11f355fe snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x136be5b7 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1444563b snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x144af315 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15c06f75 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17aaace0 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18c41edb snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18fe3528 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18ff3a57 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19692ace snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ac17b9a snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b067ca4 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x206d5981 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20d22b0a snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2123ec64 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2135413f snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2333f406 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26ab9d21 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27479f99 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28b79139 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2954ee07 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cb9353c snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d4c6110 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f0d93a9 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x302c65a6 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30a0ff81 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31b9f505 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33f92942 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x354f2074 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35d47d39 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36e30691 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x384165f5 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38d0e22a snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aca5aa7 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c44169e snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cfcbc9c snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3deb8759 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x412d77fe snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42e0d08b snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4431b19a snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x446969d7 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x446b17ae snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x446f5651 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x448c3c45 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4757b885 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4861fa8e snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48897d7a snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b6a69a5 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ff588cc snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51bc2ab9 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x520a63c7 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5353ac0a snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57aa8f33 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b7e55f3 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bb10437 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c9d2393 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6476f37b snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66c01b77 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66c4c095 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6808a807 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69672c05 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a861f1a snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d50af9f snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6faadbe3 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fcca4b6 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7006f9c9 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7112b735 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71c28de3 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71c60869 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x729b349a snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7418cd38 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75403b45 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7610c17b devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77884a81 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77a70ccd snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77e00e77 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78102e00 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x797ea183 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a06ab55 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b46324f snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c6c7152 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eefda54 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fff790f soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80c366d7 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81efd6e3 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x834be224 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83b113b5 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85ee4822 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8636530b snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89f88061 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a3a0d63 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a781d94 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c6e5ede snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d0304e9 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90368c90 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90712d50 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x920323a5 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x926e3db5 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92fdb015 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9486f293 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x966932db snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x983d6276 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98eb0ef1 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9931aaa7 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99f3de46 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9acd09a1 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b277ad4 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bc2da7a snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c3e92ab snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ead9ffa snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9edeab26 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ef99af8 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa12932d2 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1359360 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa245009e snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2f6cde5 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4aa0ef8 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa56f26a8 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa71e232d snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8d5a2ed snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacdb972e snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae173e41 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf836632 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0182c26 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb024c628 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0cc0201 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0fc1c6f snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb26de7ae snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2cebc11 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb311221a snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb327567c snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb364c98a snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5d0a839 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f940b7 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb931fbd2 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9ecadae dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb63dc9c snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbaa64cb dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd117d3b snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf18d9d1 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfa49238 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0bede4c snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0dbf4c1 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc143a808 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4c1aa5b snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc52aaf6c snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc56059d9 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5e3a6f2 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc617a43e snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6ff6cfb snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc70ffb0b snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc943c4a1 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb346937 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce16ea04 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd136fcf0 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2b60eb9 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2d13a25 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3647ec2 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8120f63 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9a09a87 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbe11118 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde403ee7 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde7cba9c snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde9c8fbf snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdee9a806 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe02bc83e snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe091fbb0 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3381fca snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3825605 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3a01edb snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4306244 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe497a979 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe754c519 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe84bdc9b snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9b2acb2 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea743d3a snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea812ff3 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec90ddb0 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xece20f14 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedcf5774 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee639d8e snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeffa4915 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf10784ae snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf12f2478 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4bc60aa snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4c07fee snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6178d09 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7141b01 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf84a9c13 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf86da1f0 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf97f2c2c snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfad5339e snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaf5abd1 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb8827b0 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbbd97e9 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc8cab6a snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd451a53 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfee19c0b snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x06eaabed snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x313c82ce snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6407597c snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb6226b59 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe778cfd4 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2ab7581b line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4d1d6c5a line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5a4f5ce5 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6b5113e7 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x788849de line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7a26986e line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x80a97688 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9c51bade line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa8fad403 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe3ae78f line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcae3c731 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd266c85f line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd7e62246 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe329c07a line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfafbe0e2 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfdef57a2 line6_send_sysex_message +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 0x000c0bf7 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x002caa8c root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x00382588 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x003a82a6 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x003e7258 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x004109ac fwnode_graph_get_endpoint_by_id +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 0x006030d3 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x00659c6e _RNvXs1N_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10tss_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0075040a bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00865bfe icc_put +EXPORT_SYMBOL_GPL vmlinux 0x0094ceb8 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x009bd97e fpu_alloc_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x009e0513 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x00a0127c fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x00acb926 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x00ae0a33 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x00bf1455 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e33285 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x00f89b06 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x010bcfe7 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x010db083 _RNvXs3v_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6i16x16NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x01203437 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x0123e5ff crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x0131908c debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x01499fb1 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x014cec62 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x016472e7 _RNvXsF_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_12CharSearcherNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x016aa1ee _RNvXsa_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_5clone5Clone5clone +EXPORT_SYMBOL_GPL vmlinux 0x016d9f85 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x01760220 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0176a46c regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x0182dd44 _RNvXsV_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01870019 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x0194b9d4 _RNvXs6_NtCs9WMcp1Hn5Bv_4core4charNtB5_11EscapeDebugNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01a11bf4 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x01a14efb devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x01af91dc wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x01b8ad58 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01c188ba component_del +EXPORT_SYMBOL_GPL vmlinux 0x01d360f3 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e2dae0 _RNvMNtCs9WMcp1Hn5Bv_4core3f32f8classify +EXPORT_SYMBOL_GPL vmlinux 0x01ea359d switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x01ea5564 _RNvXs5_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtBM_10InfallibleE4from +EXPORT_SYMBOL_GPL vmlinux 0x01ed7bab devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x01f1bdc7 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x01fda47d iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x020272fb __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x021260ad regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0220585b devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x02292fa4 _RNvMNtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB2_9Utf8Lossy10from_bytes +EXPORT_SYMBOL_GPL vmlinux 0x022e5b75 _RNvXsq_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_10static_keyNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023d9094 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x023f9aa6 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x0244628e _RNvNvXs1_NtNtCs9WMcp1Hn5Bv_4core5slice5indexINtNtNtBb_3ops5range5RangejEINtB7_10SliceIndexSpE17get_unchecked_mut8comptime +EXPORT_SYMBOL_GPL vmlinux 0x0246e131 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x02766cdd rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x02904a84 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x029cb38f rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x02aa91fa fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x02b1a45e __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02e04758 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x02eb604d memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x02ed4419 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x02f15c0a pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x02f578de regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0313b913 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x031f5694 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x031f9d20 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x032fe44a blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033bd0cd __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03463f7b hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x0365ead5 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x037eece6 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x0383b4e7 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0385ec99 _RNvXs3D_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16lru_gen_mm_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x03925442 _RNvXs1z_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18avx_512_hi16_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x039a7386 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x039dc407 _RNvNtCs9WMcp1Hn5Bv_4core6option13expect_failed +EXPORT_SYMBOL_GPL vmlinux 0x03a2ac39 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x03ad9db8 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x03b90b48 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x03bac351 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x03c0ba48 __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d230bc __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x03d318f8 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x03d7fac7 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x03dc8dee __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x03f2119f dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x03f5a58a scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x03f7bc76 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x03f8a523 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x03f8bb00 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x041b58ad virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x041d1c47 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x04248b96 _RNvXs28_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_20tlbflush_unmap_batchNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x043616d2 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x044b620e device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0473cfea ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x0482c8f3 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x0490cdb0 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04a17e06 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x04a35eca _RNvXs1O_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9irq_stackNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x04a5542b _RNvXs2K_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13rcu_segcblistNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x04b79328 pci_probe_reset_bus +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 0x04c5c18b cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04cc3ce0 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x04d12679 _RNvXs3u_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14vm_area_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x04dd9198 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e6acb9 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x05040edc _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB5_14Utf8LossyChunkNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0510300c input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep +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 0x0533cce0 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x053f8d3f _RNvXs37_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_2__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05524468 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x0557bedb pwm_lpss_bxt_info +EXPORT_SYMBOL_GPL vmlinux 0x056b71f2 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x057887d0 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x057f8756 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x0583cff1 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x058659d3 _RNvXs2G_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_8rcu_workNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058f8840 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x0591db7f lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x059e49a1 __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05a8a42b powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x05ab5dbf md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x05af06f2 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x05b41ca8 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x05b797a0 _RNvMNtCs9WMcp1Hn5Bv_4core3stre12escape_debug +EXPORT_SYMBOL_GPL vmlinux 0x05b99460 _RNvXs11_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB8_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x05e4551d _RNvXs29_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i32x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x05e52937 _RNvMsi_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIter3new +EXPORT_SYMBOL_GPL vmlinux 0x05f6892a devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x05f8d7c2 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x05feb9e5 _RNvXs3d_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u32x8NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x060511a6 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0607d9fa em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x06149879 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x061bb3c1 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x061c6c65 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain +EXPORT_SYMBOL_GPL vmlinux 0x063ef12a sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x06428bb8 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065b8ca8 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x066821cc _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core9core_simd7swizzleNtB5_5WhichNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0670641b inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x067281e3 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x067b1289 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_14ParseCharErrorNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0695d14b spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x06aadb52 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x06ad69e4 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06c18e7e tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06da428e bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x06dd137b pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x06e05576 _RNvXs0_NtCsiTPnVqBGVaY_6kernel3strNtB5_4CStrNtNtCs9WMcp1Hn5Bv_4core3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x06e43807 _RNvXs1G_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9fpu_guestNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x06ee1dad _RNvNvMNtCs9WMcp1Hn5Bv_4core5sliceSp23as_chunks_unchecked_mut8comptime +EXPORT_SYMBOL_GPL vmlinux 0x06ef00de _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0x06f30558 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x06f46549 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x06f65567 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x07015b13 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x070bcfc4 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x070c7170 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x07184853 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0724cfec devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x07282ffc clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x0732f233 shash_no_setkey +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 0x07572a35 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07644783 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x076d9b20 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x077089aa xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x07750511 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x0777c32e kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x0792a3bf _RNvNvXs0_NtNtCs9WMcp1Hn5Bv_4core5slice5indexjINtB7_10SliceIndexSpE13get_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0x07934dd0 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x07967238 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x07a52a7f pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x07aa0edf device_reprobe +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 0x07e73cf7 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x07f44b06 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x0812e962 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x082459c7 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x084367bb inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x08441d7f devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x08475f96 _RNvXs0_NtCs9WMcp1Hn5Bv_4core3anyDNtB5_3AnyNtNtB7_6marker4SendEL_NtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0865891c _RNvXs4g_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroU32NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x08681b05 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x086f461c powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x08743ef6 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08a0fc3e _RNvXs3N_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10mhp_paramsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x08a1f2bb __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x08a32d46 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08c869ae _RNvXs3b_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_6__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x08ebf69b usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x08f48ee7 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x08f7df1e crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x09021a77 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x0902dd79 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x09185b91 dm_submit_bio_remap +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 0x093be4f4 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x0947837d _RNvMs7_NtCs9WMcp1Hn5Bv_4core3numy14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0x0947ca36 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x094e7869 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x095a3108 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x097369f9 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x0984ae54 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x0987abf7 _RNvXso_NtCs9WMcp1Hn5Bv_4core3numjNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09c33a16 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x09f75a81 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x09fa519b sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x0a0e81ab vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0x0a13b7fc is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x0a39f47a crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x0a3f218f _RNvMNtNtCs9WMcp1Hn5Bv_4core3num3fmtNtB2_4Part3len +EXPORT_SYMBOL_GPL vmlinux 0x0a459242 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x0a47553f tdx_kvm_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x0a4aa2d6 _RNvXs3f_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18page__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a538cbf _RNvXsD_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_8___m128bhNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0a6115cf gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x0a62f373 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x0a70b11c nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x0a71a6b4 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x0a8d46ae _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_13ParseIntErrorNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0aa56f05 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_10AtomicBoolNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0ab963b1 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0af141f9 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x0afb99d1 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b08ce96 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x0b105ca4 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0b172784 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x0b195d35 _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0x0b19bdb5 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b207b84 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x0b21fef2 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b295e01 tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x0b2d94e3 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b484c74 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0b4b2ccf ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b59850f led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x0b59d4cb devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x0b630821 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b69e308 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x0b6d2ef6 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x0b6eed1a pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x0b7c3525 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x0b7d7ba8 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x0b81d79f _RNvXs3i_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_47folio__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled +EXPORT_SYMBOL_GPL vmlinux 0x0b952195 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x0b9610d8 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x0ba023c5 _RNvXs2_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationNtNtNtB7_3ops5arith9SubAssign10sub_assign +EXPORT_SYMBOL_GPL vmlinux 0x0ba7eb85 _RNvNtNtCs9WMcp1Hn5Bv_4core3str5count23char_count_general_case +EXPORT_SYMBOL_GPL vmlinux 0x0bbcaa97 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports +EXPORT_SYMBOL_GPL vmlinux 0x0bed78eb _RNvXs_NtNtCs9WMcp1Hn5Bv_4core5alloc6layoutNtB4_11LayoutErrorNtNtB8_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0bfacf1f usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x0c0cb3f0 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x0c13b5bf genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x0c20570d _RNvMNtCs9WMcp1Hn5Bv_4core3f64d16partial_classify +EXPORT_SYMBOL_GPL vmlinux 0x0c22da8d irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c524ae2 _RNvXs34_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0c58107f _RNvXs_NtCs9WMcp1Hn5Bv_4core4timeNtB4_8DurationNtNtNtB6_3ops5arith3Add3add +EXPORT_SYMBOL_GPL vmlinux 0x0c7836d7 _RNvXs3p_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i8x32NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c855948 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8ab5f1 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x0c8fd9b4 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x0c92f09c _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index27slice_end_index_len_fail_rt +EXPORT_SYMBOL_GPL vmlinux 0x0cb38ec5 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x0cb72a3d synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x0cb9f115 _RNvXs23_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i16x8NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0cbac084 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0x0cbc0f16 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc4036c alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ce827c6 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0cec7364 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x0cf24d64 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x0cf4c1c8 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x0d064e84 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x0d09285a clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d1557ed akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0d1b4056 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x0d387360 _RNvXs1B_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11xregs_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d466a63 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt6to_u16 +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 0x0d5d0a87 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x0d5eb47f fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x0d619c08 _RNvMNtNtCs9WMcp1Hn5Bv_4core3num5errorNtB2_15TryFromIntError13___description +EXPORT_SYMBOL_GPL vmlinux 0x0d650a63 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x0d6a2d92 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d718674 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x0d7790aa sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0d87ec21 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x0d88450e __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x0d8de3e1 _RNvXss_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB7_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0d918835 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x0da7b921 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0db46fdb __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0dbd9e93 _RNvNvMsZ_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroI6413new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0x0dbde5c4 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x0dc3b61b _RNvXs3E_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15lru_gen_mm_walkNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0dc4c576 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x0dc8b8a5 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x0dcbeb2e usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x0dce9c08 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x0dd2e9b0 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x0dd5d034 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0dd674a4 _RNvXsE_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB7_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0ddacdd3 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddcf784 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x0dde1955 pci_enable_rom +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 0x0e14d127 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e1b034f iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0e3bc2d9 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0e4088cb ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x0e5c0627 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data9lowercase6lookup +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e65cd09 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e7c466e p2sb_bar +EXPORT_SYMBOL_GPL vmlinux 0x0e85db3c perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x0e8aa9da gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x0ea2ceff inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x0ea49cea iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0eb2d837 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec15cac nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0ed70c55 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f136079 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1c0ea4 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f522fdf _RNvXs3C_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14lru_gen_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0f5bba03 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x0f5d54c6 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x0f67d9aa pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f80819a led_put +EXPORT_SYMBOL_GPL vmlinux 0x0f8939b6 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x0f954161 device_add +EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype +EXPORT_SYMBOL_GPL vmlinux 0x0fa603b5 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x0fa60641 _RNvXsH_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_55restart_block__bindgen_ty_1__bindgen_ty_2__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fbd858c __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read +EXPORT_SYMBOL_GPL vmlinux 0x0fca2311 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0fcb87d6 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fd1a849 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fdb8338 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x0ff198c2 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x1003a1cd virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x1006440d blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x10109a81 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102e6a95 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x1037df95 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x10476caf regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x10564df7 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x105d12f6 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x10758e63 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x107d270b clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x10ab0a3c usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x10aeb320 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10c9b80a _RNvXse_NtCs9WMcp1Hn5Bv_4core4cellNtB5_11BorrowErrorNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x10cfcfef __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10ddd0cb __SCT__perf_lopwr_cb +EXPORT_SYMBOL_GPL vmlinux 0x10e072ba gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x10e92424 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fe8969 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1107daa9 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1110e2a1 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x1111131e nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1117c6ad aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x111c962c sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x112fe550 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x114b01a2 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x1151daf5 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x11572d48 vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x115cea01 _RNvXs35_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_1__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x116940fb devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x1169d048 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x116d5929 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x117639db _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index27slice_end_index_len_fail_ct +EXPORT_SYMBOL_GPL vmlinux 0x119ecd14 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x11aed6af dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x11b2015c _RNvXs25_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_13EscapeUnicodeNtNtBa_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x11c4c78f _RNvXsA_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_5ErrorNtB5_5Debug3fmt +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 0x11e78e7b pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0x11fb7d67 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp +EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122b906d usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x122c6d63 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x1233f22e usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123ca1a2 __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x12417748 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x12448d64 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x124a0273 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x124f3024 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x12550e27 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x125c75c9 hsu_dma_probe +EXPORT_SYMBOL_GPL vmlinux 0x125e29ed _RNvXsp_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_8AtomicU8NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1269c275 _RNvXsP_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB7_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x127ab43f ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1291a2de vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x129ba323 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x129cfcfe devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x12b48f05 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3fmt7nofloatdNtB6_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x12b4ed69 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x12d22554 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x12d7324b device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock +EXPORT_SYMBOL_GPL vmlinux 0x12dd401a fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system +EXPORT_SYMBOL_GPL vmlinux 0x12ebb585 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f080f5 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x130da110 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x1311b444 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1326df5b dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x134668c6 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x134bdbfe rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1356303d _RNvXsL_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB7_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x135a1450 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13684142 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB5_9PanicInfoNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1369650a _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core4task4wakeNtB5_5WakerNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1376f1ed da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x1377293b _RNvXsf_NtCs9WMcp1Hn5Bv_4core4cellNtB5_11BorrowErrorNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x137fc04d usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x1382817e nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x1384e78b pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy +EXPORT_SYMBOL_GPL vmlinux 0x13955327 _RNvXs18_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25__fpstate_32__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x13991dd4 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x1399f8de gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x13ad017c fpu_swap_kvm_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x13af2eec sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x13bf19b5 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x13c4a988 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x13c53c4b crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d9c41d regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f1742f fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x141cc869 _RNvMs_NtNtCs9WMcp1Hn5Bv_4core4task4wakeNtB4_14RawWakerVTable3new +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x1428c6bd devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x14461ced devm_pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x1449e256 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x1452e0b1 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0x1464cb9e acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x1467b458 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x146827fa dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1475d603 xstate_get_guest_group_perm +EXPORT_SYMBOL_GPL vmlinux 0x147d4ba0 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x147dbafa gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x148446c9 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x1499184e usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x14a73ae4 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x14b28372 _RNvXs1A_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10xtile_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x14b50904 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x14ba1715 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x14bd87c6 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x14eb3c41 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14fa963f _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index29slice_end_index_overflow_fail +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x150a7318 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x150d2f92 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x1511adfa perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x1512efe3 _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index10into_range +EXPORT_SYMBOL_GPL vmlinux 0x15154d7b gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x15256a68 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155785d2 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x155e2994 _RNvMs1_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_10ArgumentV110from_usize +EXPORT_SYMBOL_GPL vmlinux 0x155e8d51 _RNvXsO_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB7_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x15639d44 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x1565e7ee edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x156b5060 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x15759e33 _RNvNvNtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x868avx512bw19__mm512_bslli_epi1284mask +EXPORT_SYMBOL_GPL vmlinux 0x157c2344 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x158024cb _RNvXs3a_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_5NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x159a88bf __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b842b6 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave +EXPORT_SYMBOL_GPL vmlinux 0x15c1afd9 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x15e3cd15 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15ea4e32 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x15ef7d2f __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x15f5e560 _RNvXs4p_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_12NonZeroIsizeNtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x15f93988 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x160372e9 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x16114ed5 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x161ebe6b devres_release +EXPORT_SYMBOL_GPL vmlinux 0x16234dbf posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x164438fe dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165b08eb __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x16602129 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x16629b2d crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x166fd03a __rio_local_write_config_16 +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 0x1698dbe1 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x16a9b1bf _RNvXs8_NtCs9WMcp1Hn5Bv_4core3ffiNtB5_6VaListNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x16abbc92 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x16c16b35 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16db37e8 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16ec6ede validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16fb986e driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x16fd74e3 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x16fec596 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x16fed36c __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x17066558 _RNvXs1u_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12swregs_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1706d374 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x170ca284 dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1724f2f7 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x1729fe39 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x17354ce9 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x173ed5f1 _RNvNtCs9WMcp1Hn5Bv_4core3str16slice_error_fail +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x1749f58c rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x174b159e pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x174fd848 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0x17560983 _RNvXsm_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_25FromBytesWithNulErrorKindNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x175a2fee _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt6to_u32 +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 0x1773bffc irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x17782049 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1782ee7f _RNvXsE_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_22pcpu_hot__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x17a040bd rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17afe19c fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x17bd1f5e fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x17c8570e _RNvXs3p_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15page_frag_cacheNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x17c8d2f6 __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x17cd9cd0 _RNvXs3R_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_19x86_legacy_featuresNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x17ce64c9 _RNvXs2k_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_38maple_node__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x17ce800a xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x17da8f03 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x17deef81 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e3c69d __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x17e9f355 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18032a23 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x181a571c serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x181b0cda genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x18252575 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x1829f1d0 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x184531dd spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x18463891 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x184c3e69 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1854e0e4 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core5slice5asciiNtB5_11EscapeAsciiNtNtNtNtB9_4iter6traits12double_ended19DoubleEndedIterator9next_back +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x187a4713 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x187ee98f cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x1883996a iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x18897d8d _RNvXs1q_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1898721b pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x189a0d28 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x189fcab2 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x18bf6b74 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x18c2db2f of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x18d40791 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18eb4319 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x18eebe23 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_16CharTryFromErrorNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x18f63d49 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fdba53 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x18fe8b75 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x18ff86d6 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x19000733 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x1912066b iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x1927f7fa tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x192be48d rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x19417e06 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x1947b629 _RNvXs32_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12mm_context_tNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x194b5ab9 _RNvXs1_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeUnicodeNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x194cecc4 _RNvXs3x_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9mm_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x195010f0 _RNvXs44_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_39local_apic__bindgen_ty_29__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1955cfae pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x195a40a6 _RNvXsI_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_41restart_block__bindgen_ty_1__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1986f08c uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x1998227b fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x199bc5c5 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x199c4833 __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19aa38b2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x19c39512 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x19c580da rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x19d91c2b i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x19d97da2 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x19dc4d38 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x19de48bb access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ed2ab0 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x1a0f4c32 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a12c4de __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a2273af hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x1a231607 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x1a68fb50 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a782127 _RNvXs3q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9vm_regionNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1a7e8329 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc +EXPORT_SYMBOL_GPL vmlinux 0x1a8e5bcd gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x1a8f5467 _RNvMNtNtCs9WMcp1Hn5Bv_4core5slice5asciiSh10trim_ascii +EXPORT_SYMBOL_GPL vmlinux 0x1aa95b7e driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1ab147d9 _RNvMsb_NtCs9WMcp1Hn5Bv_4core4timeNtB5_18FromFloatSecsError11description +EXPORT_SYMBOL_GPL vmlinux 0x1ab2584c _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1ab373fc cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad3e0d7 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x1af0dbd6 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af9c3e7 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b03d9d7 _RNvXst_NtCs9WMcp1Hn5Bv_4core3numoNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x1b079027 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1b24d49b __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x1b28e0f2 __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1b2ecb4f skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b614c3b simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x1b6e2989 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1b6f9add regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1b714f4e class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b9d6586 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1ba49eae _RNvXsl_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_7qrwlockNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x1bce255f _RNvNtCs9WMcp1Hn5Bv_4core9panicking15panic_no_unwind +EXPORT_SYMBOL_GPL vmlinux 0x1bf3d517 _RNvXsu_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_7__ddebugNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1bf86c41 __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x1c0a0a45 _RNvXs10_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_20paravirt_callee_saveNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1c14f89f regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x1c177d65 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x1c18a48c usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c242ec4 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x1c25e396 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x1c31b9c5 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x1c4924b1 spi_mem_supports_op +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 0x1c60925c dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend +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 0x1caa6cb1 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cbb9bcd gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x1cbbb57d watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1cbca9d6 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cd14c65 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1cd84fa0 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral +EXPORT_SYMBOL_GPL vmlinux 0x1cdde65d gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x1ced8374 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB4_22FromBytesUntilNulErrorNtNtB8_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1cf27db9 _RNvXs3H_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i64x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1cfb3ba7 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4804 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d0ff8c8 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d26af95 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x1d280f91 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x1d28984b pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1d4a7066 _RNvMs1_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_11DebugStruct21finish_non_exhaustive +EXPORT_SYMBOL_GPL vmlinux 0x1d568698 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x1d5ec1f8 _RNvXsc_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m128iNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1d82bfb1 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x1d89cf99 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1d8b4027 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x1d92da28 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d9eed92 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x1db5174e _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings7WARNING +EXPORT_SYMBOL_GPL vmlinux 0x1dbe29b0 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x1dcff715 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x1dd6971f ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x1dd72f8b noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x1de73153 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x1def9b29 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0x1df951d9 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e03c72f _RNvXs2_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits8iterator8Iterator4last +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0826a8 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id +EXPORT_SYMBOL_GPL vmlinux 0x1e1e5f10 _RNvXs3o_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_5folioNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e407042 rtnl_get_net_ns_capable +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 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e5c9b1e __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x1e777264 _RNvXs36_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d69a8 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x1e83930e usb_root_hub_lost_power +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 0x1ead8fb8 _RNvXs39_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_4NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1edc58c5 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x1edc95b9 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1f1ad7ba phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x1f1e6be4 _RNvMs0_NtCs9WMcp1Hn5Bv_4core3numl14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f44a789 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1f44ef1d _RNvXs10_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB8_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1f48b0af _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1f4b1bcf set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x1f4bf0b5 _RNvMs2_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_10DebugTuple5field +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 +EXPORT_SYMBOL_GPL vmlinux 0x1f5fd2dd pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x1f768998 _RNvXsJ_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_8___m512bhNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1f80fb25 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f94352c fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x1f9d1743 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x1f9d2442 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb8785a pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x1fbbc8b8 devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x1fc6d8b3 _RNvMNtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB2_9PanicInfo7message +EXPORT_SYMBOL_GPL vmlinux 0x1fcc0934 _RNvXs2p_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_8ma_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1fcc42af tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1fe016bc ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe70bc3 _RNvXsd_NtCs9WMcp1Hn5Bv_4core3fmtbNtB5_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1fe8fb16 _RNvXsU_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_11EmptyNeedleNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1ff816cc ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x1ffe0979 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x20110118 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2023d2d2 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x2030be0b fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x20557901 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x205c4d76 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x2060bf28 _RNvNvMsx_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_12NonZeroUsize13new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0x20740a27 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x20809970 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20857721 _RNvXs3S_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16x86_platform_opsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x20896208 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x20971c58 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x2097f8d9 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp +EXPORT_SYMBOL_GPL vmlinux 0x20a7f7ce ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x20ad71e5 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x20c6b32d rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x20d47ccb inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x20d97731 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x20e0589b dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x20e1e2ea spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x20e8f669 _RNvXsw_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_16ddebug_class_mapNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x21147da4 _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3cmp5implszNtB7_10PartialOrd11partial_cmp +EXPORT_SYMBOL_GPL vmlinux 0x2123979e _RNvXs12_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB8_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy +EXPORT_SYMBOL_GPL vmlinux 0x213b0f7d device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x21445d34 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x21591d44 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2161849e blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x21622cc8 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x217b2c1a _RNvXs19_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x217fbaef _RNvXs1U_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_11EscapeDebugNtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x21a4784d ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b120c9 _RNvXs5_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impyNtB9_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x21b1f96a ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x21bc1963 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21c95f17 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d0609b bus_register +EXPORT_SYMBOL_GPL vmlinux 0x21d3e772 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x21da80d0 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x21df26ba phy_create +EXPORT_SYMBOL_GPL vmlinux 0x21e337e5 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data10alphabetic6lookup +EXPORT_SYMBOL_GPL vmlinux 0x21ed6f82 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2203f328 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x221301dd clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x2219d682 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x222061b7 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x2222285d devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x223946ac pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0x223bc78b dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x223f78c8 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x22437ce7 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x2249c17e usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2250f012 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x226c394f _RNvXs4o_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_11NonZeroI128NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x227083b7 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x2277aad4 _RNvMs_CsiTPnVqBGVaY_6kernelNtB4_10ThisModule8from_ptr +EXPORT_SYMBOL_GPL vmlinux 0x2285bfc6 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x2295d9c6 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x2298b10f scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22abb826 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0x22accfb4 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x22c68834 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x22cad586 scsi_host_block +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 0x22fb3527 _RNvXs1l_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10saved_msrsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2305fd44 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x230d52a7 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x231e5301 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x23336c1a tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x2336cf4e serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x2339f1ef tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x23421c11 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x23433149 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x2349403a pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x234d050b platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x235dbec1 _RNvXs2_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3implNtB9_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x235f9089 _RNvNvMNtCs9WMcp1Hn5Bv_4core3f32f7to_bits13ct_f32_to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x23722719 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9debug_set +EXPORT_SYMBOL_GPL vmlinux 0x2379dfa7 _RNvXs2c_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_42maple_range_64__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2392e2fa irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x23951120 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23cd44a6 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x23cf7373 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x23eb87e6 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2403dada __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x2435ac63 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x2435c353 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x2442e6e6 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x245425d3 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x245eccf3 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x246e0788 _RNvXs13_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB8_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2473c09b l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x247858cb devm_memremap_pages +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 0x24a27b5b fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24bd3cec xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x24bd82e2 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x24c4ebb8 zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0x24ca8703 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x24cf305f nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x24d4032f devres_add +EXPORT_SYMBOL_GPL vmlinux 0x24d472dc firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24eaec53 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f846c7 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24ff95e4 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x250432bd blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x250e5093 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2517c74c devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x252fac2a tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25375878 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253bc9d4 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x254c4bfb irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x254d07c9 _RNvXs2u_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10completionNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x2561f913 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x2563437c _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3str5errorNtB5_14ParseBoolErrorNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x257f4b16 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25983e8d regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x25b37235 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c4bfd6 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x25d0aa87 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x25d168a5 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x25d8104c _RNvXs7_NtCs8dagVACJQAP_5alloc11collectionsNtB5_15TryReserveErrorNtNtCs9WMcp1Hn5Bv_4core3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x25d84495 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f1036b _RNvXs0_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationNtNtNtB7_3ops5arith9AddAssign10add_assign +EXPORT_SYMBOL_GPL vmlinux 0x25f3a67b _RNvNtNtCs9WMcp1Hn5Bv_4core5slice6memchr19memchr_general_case +EXPORT_SYMBOL_GPL vmlinux 0x25fbf254 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x260fac6b mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x262a9976 hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0x262e08b7 _RNvXs37_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6u16x16NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x262f3597 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x2642dabf pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x264a154e xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x264b4bb7 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265a537c sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x265ac032 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter15debug_lower_hex +EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265f64b1 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x2663e141 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x2665fa8a ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266f26dd usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x2677e2b9 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2683191d _RNvXsF_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_8pcpu_hotNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x2686a7b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x268ad8e0 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x268cfe6b regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26a9871a _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings6NOTICE +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b6cdd0 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x26b72c1b phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x26d9ccb6 _RNvXs6_NtCs9WMcp1Hn5Bv_4core3ffiNtB5_10VaListImplNtNtNtB7_3ops4drop4Drop4drop +EXPORT_SYMBOL_GPL vmlinux 0x26dde6eb regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x26e2a8b4 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x26e2ed91 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x26eaf751 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26efb6a3 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x26f459dd dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x26f94e0c __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x27077bc8 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x270854d8 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x2710750d register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x27147821 _RNvXs4e_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_9NonZeroU8NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x271c814b _RNvNtNtCs9WMcp1Hn5Bv_4core5slice6memchr7memrchr +EXPORT_SYMBOL_GPL vmlinux 0x2728d652 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x2729200b sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x27346b30 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x2736989d ata_do_set_mode +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 0x27473a3b gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x27485516 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x27551b1a _RNvMsr_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_11StrSearcher3new +EXPORT_SYMBOL_GPL vmlinux 0x276f96cd usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x27786d48 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x2779bc67 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x27b34f88 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fbb933 power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x280a3174 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x281c72c0 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28274180 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x2829d3d7 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x282c4a06 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x282c5637 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x283a238d dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x2850b1c9 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x285c039c ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x285cf974 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x286e2364 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x2872408d posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2880d038 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x288147bd _RNvXsx_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_6___m512NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28a5bd1a crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x28a965b0 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x28bf15d8 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x28d1bb3f xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x28dd262a wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28eb5d49 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x28fc0db8 _RNvXsl_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_11Sip13RoundsNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x28ffd3e0 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x2901e38a _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index22slice_index_order_fail +EXPORT_SYMBOL_GPL vmlinux 0x29081d50 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x29167427 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x291e96d1 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x292f313d crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x2932d84f dm_put +EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x293d0590 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x294b7c1c pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x295f3721 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x296b80f2 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x297106d4 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x29769bc9 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x29782f7e _RNvMNtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB2_21FromBytesWithNulError13___description +EXPORT_SYMBOL_GPL vmlinux 0x2978664d cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x2991ba84 _RNvXsd_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impmNtB9_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x299836b2 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x29a06420 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x29a3471f _RNvXsx_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0x29abbdbd int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x29b652cb usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x29bb7ab8 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x29cd6b08 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x29e2ce1e skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x29e9e6ba tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a090fcd dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x2a09454a mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x2a0baf8d ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x2a2990f1 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms +EXPORT_SYMBOL_GPL vmlinux 0x2a36650e _RNvXsi_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m128dNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2a386696 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x2a3b2567 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2a3bb51f serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x2a46ad51 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x2a5bac9b unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x2a5dc065 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a9274bd strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x2a92dd98 _RNvMs_NtNtCs9WMcp1Hn5Bv_4core5panic8locationNtB4_8Location20internal_constructor +EXPORT_SYMBOL_GPL vmlinux 0x2a9590b8 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2aac7168 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ac9f972 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x2acfeabb iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x2ad443ac dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x2ae91ac6 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x2aea9a99 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x2af9110e usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x2afbd2af __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x2b021057 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2b0b8eca ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b1127d7 _RNvNvNtCs9WMcp1Hn5Bv_4core3ptr13read_volatile8comptime +EXPORT_SYMBOL_GPL vmlinux 0x2b13b377 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x2b18b530 _RNvXsr_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_15static_key_trueNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x2b2e6d8b skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x2b395f63 __traceiter_wbc_writepage +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 0x2b45ca3a crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x2b491422 _RNvXss_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_22FromBytesUntilNulErrorNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2b59f835 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b627c2b rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2b652a7e _RNvXse_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_9SipHasherNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b6bebf5 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b7da2c2 _RNvXs4k_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_9NonZeroI8NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x2b8d8ee9 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x2b967880 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x2b97456e sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2bb4a1c3 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x2bba040a pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x2bc2b32a __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bda81c8 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2bde400f pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2bebd82e irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x2beefe97 vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x2c09b293 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB4_15TryFromIntErrorNtNtB8_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2c15871b __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2618a7 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c303487 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c337e17 _RNvNvMNtCs9WMcp1Hn5Bv_4core5sliceSp15copy_from_slice17len_mismatch_fail +EXPORT_SYMBOL_GPL vmlinux 0x2c3a1361 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2c410d2f crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x2c415d53 _RNvXs3d_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_7NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6c1696 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x2c6ed997 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x2c7820a1 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2c7c5a79 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c818569 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x2c81a55c spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x2c8579f4 vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x2c8a96f2 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c9349ae __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x2ca595c4 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x2ca89fe7 snp_issue_guest_request +EXPORT_SYMBOL_GPL vmlinux 0x2ca8ff52 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x2caaf625 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x2cace6bf synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x2cb36059 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x2cb67855 _RNvXsa_NtCs9WMcp1Hn5Bv_4core3fmtzNtB5_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2cb70932 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2cc1791c _RNvXs_NtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB4_9PanicInfoNtNtB8_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2cdc1045 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x2ce7e6ad pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x2ceb94da ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x2cf1798a aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x2cf69721 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2d011a29 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x2d063aed dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element +EXPORT_SYMBOL_GPL vmlinux 0x2d3b9ffb trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d4d1960 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x2d5567b6 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d6c57be thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2d6cefe0 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d7f8e03 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x2d81a8a6 _RNvXs31_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u8x32NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2da0349a dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x2dab3a7c acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x2daeb908 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x2dafbcd4 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2db43195 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2dbcf545 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x2dc523bb genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x2dcb2c4b _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0x2dd4d42a ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x2dd53c2c _RNvXs3j_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u64x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2dd76df8 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2dff9b35 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0d8d66 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e25d6dd __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e45776a scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x2e5032a4 _RNvXs3K_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_8zonelistNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x2e68f3f3 _RNvNtCs9WMcp1Hn5Bv_4core3str19slice_error_fail_rt +EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2e8210a5 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e847ba5 balloon_page_list_enqueue +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 0x2ec96364 _RNvXs2b_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14rb_root_cachedNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x2ed3c935 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2eff3f35 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1df3f7 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x2f26e3a6 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f499611 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f78c07c _RNvMNtCs9WMcp1Hn5Bv_4core3stre14escape_default +EXPORT_SYMBOL_GPL vmlinux 0x2f7e219a scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x2f82d787 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x2f87905b skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x2f9fcf8c devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x2fa81ac5 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fcd2788 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2fd93a24 _RNvXsc_NtCs9WMcp1Hn5Bv_4core4timeNtB5_18FromFloatSecsErrorNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2fe79aa2 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2ff48810 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x2ff48be8 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x2ffc7179 put_device +EXPORT_SYMBOL_GPL vmlinux 0x300c3562 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x300c3f23 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x30295dff node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0x303d6e37 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x30411a02 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x30472326 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x3050e238 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x30562d6c dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x305eb374 vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x306b9f8e pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x30943909 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3098630e pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x30bbbeda skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x30c39167 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x30c8875c spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30d8440e bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x30dd7e5f kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e58ea8 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x30fd5597 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x3101121a bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3106d963 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x310e5d83 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x311021a4 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x3115db86 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x31245259 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312935b8 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x312b4f45 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x312cc63c find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x3133b2fa phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3135e9fa fpu_copy_guest_fpstate_to_uabi +EXPORT_SYMBOL_GPL vmlinux 0x3135fc2c mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0x313f1042 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x315fa0b4 _RNvXs25_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15pcpu_alloc_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x316473bc scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x3170f446 _RNvNtNtCs9WMcp1Hn5Bv_4core7unicode9printable12is_printable +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x31878e65 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319674d9 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x319e6828 _RNvXsT_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB5_5BytesNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b488be devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x31c2c2af sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x31c3d151 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d11281 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31d6d78f sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x31dc37fa acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3208beee devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config +EXPORT_SYMBOL_GPL vmlinux 0x3230d6ac platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x32448eec __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x32523f0f iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x32772b89 _RNvXs1F_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u16x8NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set +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 0x32c4a483 _RNvXs3_NtCs9WMcp1Hn5Bv_4core5asciiNtB5_13EscapeDefaultNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x32c5a928 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x32cb0d24 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x32cd0440 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x32ddebff sysfs_groups_change_owner +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 0x32ed165b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x32eebdb9 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x32f4e767 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3300352d platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x331f0bae __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x3329fc89 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x332fdfcc __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x3330208b pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x333e7037 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x33439c69 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3353e755 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3360926c ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x336636bb clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x337be088 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x3382b084 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x3386c111 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x338c3ab4 _RNvNtCs9WMcp1Hn5Bv_4core3str19slice_error_fail_ct +EXPORT_SYMBOL_GPL vmlinux 0x339c02e3 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x33a682bf __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x33b99ff2 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x33bda7ff pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x33bf4443 acpi_quirk_skip_acpi_ac_and_battery +EXPORT_SYMBOL_GPL vmlinux 0x33d2514a __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x33fb22f5 pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x34013cea ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x340584eb srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x341d5504 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x341d5e3c _RNvXs1m_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_17trace_print_flagsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x341f8bd4 _RNvXs1P_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_15SplitWhitespaceNtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x3428433f scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x34299c0a nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3437d61e dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x343fffe0 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344636eb reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x34573af1 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0x346b7e3f usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x347221a7 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x34793d73 md_start +EXPORT_SYMBOL_GPL vmlinux 0x347a13f1 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x347e7424 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x34aebe9f ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x34b79536 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x34c1bf0a pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x34c79f5f __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x34cf2b17 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34db67ec irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x34e349b2 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x34e4ace6 __rg_realloc +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34efca56 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x34f0498d _RNvXsm_NtCs9WMcp1Hn5Bv_4core3numxNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x34fd024a crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x35102129 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x3510b2d3 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x3515e412 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x3519d82e crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x351d1648 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x351e36f2 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x35286896 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35302f89 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x3535dcd2 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x354c7789 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x355d0787 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x35691649 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x356eef29 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x357147e8 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3572e1a6 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x35794580 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x357eb4aa gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x35861d31 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35ba62c5 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35eadb0a ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x35ed0a32 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x35ee0b00 _RNvXs20_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16wait_queue_entryNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x3606b670 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x360bbe69 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x3611c4c9 PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x3613d0f2 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x36409c93 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x3650846a dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x3654dab3 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x365ad9b8 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x365c2808 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x366598ca _RNvXsj_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imphNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x366dde01 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x366f2b2f follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x366f3bdf pwm_lpss_tng_info +EXPORT_SYMBOL_GPL vmlinux 0x36845862 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x3689d21c kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x368bb5b8 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x369cebc6 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36addee5 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x36b40493 _RNvMs2_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_13ParseIntError13___description +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36d5777a fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x36dc9820 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter19sign_aware_zero_pad +EXPORT_SYMBOL_GPL vmlinux 0x36e453c7 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x36f1c506 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3717653f shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x371a6d29 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x371b3a5f pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x372055db pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x372804e1 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x372960cd get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x3737398f __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x374706ff pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x3748d531 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x3750009a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x37523f15 _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index26slice_start_index_len_fail +EXPORT_SYMBOL_GPL vmlinux 0x37546f4e dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x3765d0ab blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x377fa038 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x37845b2b serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x378c3a38 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x378c77e9 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37947d1e gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x3799e41a _RNvXs1F_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_3fpuNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x379fe2cd _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings4CONT +EXPORT_SYMBOL_GPL vmlinux 0x37a0ee18 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x37aea9af _RNvXs1_NtCs9WMcp1Hn5Bv_4core3anyDNtB5_3AnyNtNtB7_6marker4SyncNtBG_4SendEL_NtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x37b40f4a housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c61dbd unregister_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x37dddfcf pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x37e2be5b cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x37eadaeb sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x37f81298 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38022dd7 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x3816e5a5 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x381f5232 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3827ec71 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x384e7984 _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings5ALERT +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 0x3886475c regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x389b0ed8 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b17255 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x38b6bb73 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x38bb00aa inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c47021 _RNvXNtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impaNtB6_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x38d2bc2b regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x38d5688b fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x38db0a3c iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x38dc80cb dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e6b9d9 _RNvXs3c_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_6NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x38ea9765 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0x38eb34aa gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x38ffe6ec sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x39005326 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x3910039a pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x3913bba3 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x391b8ec0 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x392d4e68 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x39462c23 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x3946db02 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x3961f598 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x39683cfa pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x396c0b00 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x3993dba3 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x39a2202e regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39af54bc device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x39be241f rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x39bf59a9 init_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x39c8772c intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x39e889ce phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x39f95e3c sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x39feada7 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x3a1f1bcb _RNvXs2T_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25arch_uprobe__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2f3e66 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3a349047 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x3a36a7b3 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3a36f055 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x3a3f1e64 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3a4075c2 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x3a453dd8 regmap_multi_reg_write_bypassed +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 0x3a5dca4e _RNvXs1M_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13x86_io_bitmapNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x3a6ab8cb regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a7fe294 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a91a4e1 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x3a965d74 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3a9770b9 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9f3233 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x3aaa575e fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x3aaea5e2 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x3ab7e256 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3abb3838 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location +EXPORT_SYMBOL_GPL vmlinux 0x3ac342fd dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3aca5375 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ae14885 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x3ae50092 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3af7c5d1 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b00032d fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x3b016c32 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x3b193802 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x3b28c230 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x3b2a8f81 _RNvXs1L_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u32x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x3b3ac07a _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3b3e3ee7 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5865fd skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x3b61810a __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 +EXPORT_SYMBOL_GPL vmlinux 0x3b7d2f9f pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x3b865767 _RNvXs18_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b9a1871 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba82730 pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x3bab595c acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x3bac40aa rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x3bc3b483 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3bc7724e sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x3bc77aef kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x3bcc740a tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x3bce52b1 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x3bd90679 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x3bdafc89 _RNvNvNtCs9WMcp1Hn5Bv_4core3ptr7replace8comptime +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf79fb3 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_15TryFromIntErrorINtNtB9_7convert4FromzE4from +EXPORT_SYMBOL_GPL vmlinux 0x3bf809cd __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x3c0d0deb pci_doe_submit_task +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c29f8e2 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x3c327abf hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x3c36ba45 _RNvXsO_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_17edd_device_paramsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x3c416bf9 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3c4a5266 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c642974 __rust_dealloc +EXPORT_SYMBOL_GPL vmlinux 0x3c648813 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c733664 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c77ef5b pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x3c87d039 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x3c985b70 _RNvXs1L_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_5LinesNtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x3cabaadc __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x3caff8ce xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x3cb615b5 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x3cba03a5 trace_event_buffer_lock_reserve +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 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd44f33 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x3cdaf92d trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3cedcb84 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x3cf164c2 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cfad198 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x3cfde8e5 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x3d0b6630 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x3d10d65f netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d156311 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x3d1f78e1 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x3d32ef45 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d63945b pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x3d65ee13 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x3d69d04d tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x3d6cf822 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d8dfced da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x3d9412f6 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3d9eeded _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data5cased6lookup +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3daadd6e mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x3dbb1d7e dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x3dbdf379 _RNvXs13_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10pv_mmu_opsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x3dbfca86 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x3dc00745 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x3dc48266 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3ddcfefb dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log +EXPORT_SYMBOL_GPL vmlinux 0x3df86801 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3e08b8e1 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x3e1e358b firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e1fd637 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x3e216685 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x3e232907 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x3e2a8666 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3e327153 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x3e414d61 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x3e451686 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3e4a0d6b _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3e4a29e0 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e4e19f1 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x3e56540e devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3e5f0d70 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x3e6285ea sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule +EXPORT_SYMBOL_GPL vmlinux 0x3e7917d9 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3e84fed9 _RNvXs27_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9page_fragNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x3e861058 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x3e8af482 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x3e8b1ffa vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea9a6fd _RNvXs1o_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15tracepoint_funcNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x3ebb702f metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type +EXPORT_SYMBOL_GPL vmlinux 0x3ecff10d bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x3ed26f65 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x3ed988ad perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put +EXPORT_SYMBOL_GPL vmlinux 0x3ee07ee8 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3ee3b948 _RNvNvMs_NtCs8dagVACJQAP_5alloc3vecINtB6_3VecppE11swap_remove13assert_failed +EXPORT_SYMBOL_GPL vmlinux 0x3ee77cce _RNvNvMNtCs9WMcp1Hn5Bv_4core5sliceSp14swap_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efdd3ad sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x3f05f300 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x3f193385 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x3f2cc7c1 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f49603a blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x3f49e583 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x3f6c96dc iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x3f760a36 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3f7d6ea6 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3f8087ec pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3f80a5a6 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f895909 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x3f9703bd nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x3fa39f63 _RNvMNtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB2_9Utf8Lossy6chunks +EXPORT_SYMBOL_GPL vmlinux 0x3fa85382 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3fa898ff xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3fabf517 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB4_19Utf8LossyChunksIterNtNtNtNtB8_4iter6traits8iterator8Iterator4next +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fc230f9 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ffb282d devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400b4503 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4014e9be _RNvNvMs5_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroU1613new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0x4025904c vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x40279e21 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x402d30cd verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x4035632f pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x403748a7 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40404aa9 xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0x40429527 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x404d9992 _RNvXsA_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_29static_call_key__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x404e220e pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x40625ce3 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406713e2 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x406c1435 __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x40734007 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x40763033 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x407c0442 _RNvXs2g_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11maple_allocNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x40936822 _RNvXs42_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25local_apic__bindgen_ty_20NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all +EXPORT_SYMBOL_GPL vmlinux 0x40b675b8 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x40c61aff __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0x40c7a6fe _RNvNvNtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x864sse219__mm_srli_si128_impl4mask +EXPORT_SYMBOL_GPL vmlinux 0x40cd6863 _RNvXs15_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB8_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x40dac1d9 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x40e30f80 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x40e95afb iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f1b6a4 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB4_5CharsNtNtB8_3fmt5Debug3fmt +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 0x411d0bea _RNvXs_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imphNtB8_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x41347479 hsu_dma_remove +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x4159042e gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4188ccef cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x418e315a sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x41951151 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x419a44b2 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41ae66b5 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x41b0d919 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41cff4f7 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x41e18d86 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41fbf499 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4221a5c6 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x42341ce4 _RNvXs9_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imphNtB9_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x42344b28 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4239118e start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x423b7e01 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x423d8e78 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4242bb9f pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x4244b155 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x42459647 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x4245ed2c dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4246f18d led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x424b2fe9 __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x424d0145 _RNvXsM_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_31edd_device_params__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x424d84c3 _RNvXs3L_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14deferred_splitNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4263e9c2 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x426a0aff kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428a084d spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x429f0408 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x42a3e1e6 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x42a4c6e3 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x42b3f453 _RNvXsv_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB7_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x42b543ae event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x42bc7754 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42d6fa71 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x42d71c60 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x42d93521 _RNvXs1N_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_8LinesAnyNtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x42de5132 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x42e974ec fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x42ecb72e usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x430da61e __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x431fb137 _RNvMs3_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_14ParseCharError13___description +EXPORT_SYMBOL_GPL vmlinux 0x432b9ac0 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x433771f7 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x433c1bc6 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component +EXPORT_SYMBOL_GPL vmlinux 0x435e441e genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x436d665d wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4382fcc8 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x43898960 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x438e2580 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x43977dc9 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x43a22341 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x43a4077d crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x43a7578a xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43bee1ff kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x43c86e7c fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x43c9fb17 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear +EXPORT_SYMBOL_GPL vmlinux 0x43d5c892 _RNvXs1p_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10tracepointNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x43d74f4f power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x43f4ac54 crypto_stats_skcipher_encrypt +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 0x4403b61c regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x440ff43c _RNvNvMsS_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroI3213new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0x441e6227 clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x44241f44 _RNvXs2s_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16swait_queue_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x444e4a1e cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x44687b22 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x4472c179 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448c8211 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x44944d6e ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x449ed4bc _RNvXs30_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13uprobes_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x44ba3aff __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c69ebf iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x44ce7260 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d9a684 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x44dd66e1 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4511dd0d _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core4char6decodeNtB5_16DecodeUtf16ErrorNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x4512477c io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x45237b48 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x452fe6d5 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x4536a2b6 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455792f2 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x456a5b5d phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x456bb1f2 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x456d7c63 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x456fcd82 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x45740212 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x4581d328 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x4582f272 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x4587399f fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x458ad02b __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45c33ef8 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x45c76fe7 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d396be mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x45d7b412 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45efc3d9 set_secondary_fwnode +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 0x461b51c2 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries +EXPORT_SYMBOL_GPL vmlinux 0x46290890 _RNvXse_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_10hlist_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x462cc365 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x4630143e msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x46305c4c cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4633e7eb _RNvXsB_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToUppercaseNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x4635ef21 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x463e6c6a regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x466bc12f ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x4675e38e power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x46790fa1 _RNvXs2w_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14___kernel_timexNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x467a22a5 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x46837224 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x4688ccc2 _RNvNvMNtCs9WMcp1Hn5Bv_4core3f64d7to_bits13ct_f64_to_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46922c6c rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x4692ff18 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4695755b i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page +EXPORT_SYMBOL_GPL vmlinux 0x46a7aea7 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x46aee32d max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x46aeee91 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x46b1b3c3 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x46b63f1a sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x46d81c30 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x46f2b305 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x46f6266a _RNvMs1_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_11DebugStruct5field +EXPORT_SYMBOL_GPL vmlinux 0x4700faf3 _RNvXs1t_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x47070537 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x4709329f tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x470a8d6d sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x470f0e26 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x471baff8 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47304b06 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x47504d88 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4776acce sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x47773aaf __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x477fde1e cpufreq_unregister_driver +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 0x479803b9 base64_encode +EXPORT_SYMBOL_GPL vmlinux 0x479cf9a4 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a418b8 _RNvXsh_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_12IntErrorKindNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x47aa62b0 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47bec922 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x47c8de53 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x47cb4a83 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47dd060e pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47eef4e9 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x48107648 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x48152e92 _RNvXsm_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_12raw_spinlockNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x481d63d9 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x48257918 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x4827f310 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x485a5ece lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x4869c01c fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x487e2d6d _RNvXsp_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4i8x4NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x488bcd45 _RNvXs3G_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13per_cpu_pagesNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x4891ed25 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x489c7987 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x48a0e71b dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48ab767e _RNvXs3H_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16per_cpu_nodestatNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x48d2d77b crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x48d56b2b modify_ftrace_direct_multi_nolock +EXPORT_SYMBOL_GPL vmlinux 0x48de4797 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x48def6af crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x48e080b1 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x48eab138 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_13ParseIntErrorNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x4900d2e0 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x49028d5d wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x4905c0e2 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x491439ce device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x491bf766 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x491d16bb fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4932dbf9 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x49336f54 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939777e gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x493deb3b acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x494c085a nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x49586bbc __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496c7cc9 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4982d134 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x498ed3cf pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49938c53 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x49a9f528 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x49b89fc1 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d61a6e bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x49df6801 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x49e46b1d trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f2a40b devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x49f785f9 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x4a04615c md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x4a0d29f7 fpu_free_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x4a0e9c40 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4a1028d9 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a198f47 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a233d21 _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4a340a2e _RNvXsX_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB7_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x4a352978 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a44dc71 intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0x4a56a3b7 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x4a6619bd pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x4a673a95 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x4a6a6f2d __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x4a7e70c5 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x4a93c02a pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x4a94ddcb device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x4a9cea85 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x4a9efd84 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4ad34507 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x4b18cbfe class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b1a63c9 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b244ef5 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x4b332df8 hv_get_tsc_pfn +EXPORT_SYMBOL_GPL vmlinux 0x4b442dc8 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x4b47c56c tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4b48c57e gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b6fe9d4 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b7e0fee crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4b96257f rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x4b9c1074 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4ba5d74b regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x4badeacc __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x4baf7ae5 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x4bbeb03a dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bcc0328 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4bf76fbe clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x4bf82d20 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x4bf86e0b kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x4bfb04ad mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c01ede9 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4c0b9ab3 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x4c18aae6 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x4c19cf5d virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x4c1faa53 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x4c2468fc _RNvXsp_NtNtCs9WMcp1Hn5Bv_4core3fmt3numNtB5_5OctalNtB5_12GenericRadix5digit +EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c3100fe _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x4c381946 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4c3e0147 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c519e4c blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4c527164 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4cae76f7 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cbf69e7 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x4cbf7312 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4cc7ac25 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x4ccdb272 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4cd56d1c usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x4cdcf2e2 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x4ce5dda7 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x4cf5c0d6 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x4cfb7ed5 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d023d27 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x4d0f57c0 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x4d1c96d1 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x4d203373 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x4d2a3c31 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4d40e37d phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4d5b8085 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d5e411d pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d63a6b6 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d77b2c8 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x4d815dd5 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x4d9215d4 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x4da0592a inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db523fd xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x4dc95f6c device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4dcaf096 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4dd61af5 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de5c16b xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x4deca14e __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e07e6e8 _RNvMs4_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugSet6finish +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 0x4e1bcfb6 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x4e1c19f6 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e249cd3 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x4e3b1cee nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e4e5da1 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e5819fa uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e669d32 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x4e68b768 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4e79da5f gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x4e927cf8 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x4e95db29 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4e9fa659 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x4ea4ff20 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb5aca5 _RNvXs3F_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_6lruvecNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x4ebd59ee synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x4ec5daf7 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed5b0d3 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x4ee25c54 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x4eec8ddf _RNvXs6_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impjNtB9_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef8c316 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f0a6f18 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x4f152f93 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f42f347 _RNvNtCs9WMcp1Hn5Bv_4core9panicking5panic +EXPORT_SYMBOL_GPL vmlinux 0x4f450b76 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x4f4bdc00 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x4f5a6512 _RNvXs3h_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_61folio__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x4f61b46f unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x4f65c8b8 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x4f6778a7 _RNvXsT_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB7_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f717ae6 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7e2267 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4f858b65 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4f8e4863 _RNvXst_NtNtCs9WMcp1Hn5Bv_4core9core_simd5masksxNtNtB5_6sealed6Sealed2eq +EXPORT_SYMBOL_GPL vmlinux 0x4f984180 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax +EXPORT_SYMBOL_GPL vmlinux 0x4fc6ff14 _RNvNtCsiTPnVqBGVaY_6kernel5print16call_printk_cont +EXPORT_SYMBOL_GPL vmlinux 0x4fc87c5f tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x4fcc94be fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x4fd9d5c2 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4fda6854 _RNvXsY_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB7_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4feb6199 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x4ff43b04 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x4ffffc40 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5022d8a1 _RNvXs1_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationNtNtNtB7_3ops5arith3Sub3sub +EXPORT_SYMBOL_GPL vmlinux 0x50253bf7 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x504537b8 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x504d06cb acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x504d6947 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x5052e95f gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50712b9a _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStrNtNtB9_3cmp3Ord3cmp +EXPORT_SYMBOL_GPL vmlinux 0x5076f73d inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x507929f9 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x5080c86e iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50933862 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5094a74b sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x509a6a6d switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x50a830de ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x50ac4448 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb +EXPORT_SYMBOL_GPL vmlinux 0x50b88218 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x50c62606 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x50cb6289 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x50ccbb6b serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x50cf30e0 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x50cf9f09 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50df4e3a regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e539d5 blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ead6de acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x50f06524 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x50f16bd2 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510040db clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x510166b5 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x5105d83c icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x511253f1 _RNvXsp_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_24static_key__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x5112fb74 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x5115fef2 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x5129e8ae _RNvMs3_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStr20from_bytes_until_nul +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x513a1c29 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x513bb9f1 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x514561ce __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x514f396e _RNvNtNtCs9WMcp1Hn5Bv_4core3str8converts9from_utf8 +EXPORT_SYMBOL_GPL vmlinux 0x5169dfb6 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x516e8f15 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x517412c0 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x518d4412 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x519a32a7 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51c9f8ae pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51e08476 devm_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x51e6e07d vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x51e8469b spi_async +EXPORT_SYMBOL_GPL vmlinux 0x51ed9894 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x51f9a367 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x51ff4e6e usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x52049938 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x5217f25c isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5221261f usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x522276de _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522f0756 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x522ff438 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x52327473 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x526cf471 clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x52707d22 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x5275f705 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x528e1e7f devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b75b3d devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x52c0109e perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52cb52c1 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x52cb5b65 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52dc38c9 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x52e3dc0e _RNvXs2h_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13maple_topiaryNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x52e8b579 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x52eead54 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x52fa7b30 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x52fcfa00 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x52fe5c53 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x53128643 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x5317bb2f rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x533a2686 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x533b9112 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x533cb6e2 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x534151f3 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x53482031 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x5353f41f acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x5367dd10 _RNvXs3_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtNtBO_5alloc6layout11LayoutErrorE4from +EXPORT_SYMBOL_GPL vmlinux 0x536e91d7 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x537d842d pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x537ef1c0 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0x53858566 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x538b6fe7 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538d1db9 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53a49c45 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x53b1709c _RNvXs4f_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11physid_maskNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x53b5c7a3 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c9a990 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x53ce4003 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x53d4b589 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x53d6b66a _RNvXsn_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_16CharTryFromErrorNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53e63ca8 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x53f11547 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x54077362 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5409b8cc agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5414f2a7 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x541a27a4 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5437c8f7 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x543df6cb pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x544068b6 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x544cd7ae irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5450c7ba _RNvXsl_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m256iNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5463e9c9 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x5466b31f pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x546754f0 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x547381db ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5473d092 _RNvXsc_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_18ftrace_likely_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x54885093 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x548f1057 _RNvXsq_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeUnicodeNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5493d400 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54bc47eb pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x54bc4ec9 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x54d5df0a pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x54d7fde4 __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x550c76eb devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x550d3394 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x55133277 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x55178c18 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x5522f11a _RNvXsf_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impyNtB9_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x55300228 _RNvXs1r_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_26fxregs_state__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x5539ee9a device_match_any +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 0x55475073 _RNvNvNtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x864avx219__mm256_bslli_epi1284mask +EXPORT_SYMBOL_GPL vmlinux 0x55532727 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x557360c1 _RNvXs7_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith9DivAssignmE10div_assign +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55988067 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x55a142c8 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x55a1dd57 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x55a273c8 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x55bf1656 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x55c3ab39 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x55c3ede4 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x55c53375 _RNvXse_NtCs9WMcp1Hn5Bv_4core3fmteNtB5_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55e16dec devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f62aa6 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x55fa82b8 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560a14f6 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x5612cab2 register_fprobe_syms +EXPORT_SYMBOL_GPL vmlinux 0x5616faa7 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562626eb governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x562879be devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x562ed097 _RNvXsr_NtNtCs9WMcp1Hn5Bv_4core9core_simd5maskslNtNtB5_6sealed6Sealed2eq +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5634bdbb is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x56353053 pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564e8a43 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x5652a754 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter3pad +EXPORT_SYMBOL_GPL vmlinux 0x56608d8a of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x566485f7 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x56764440 _RNvXsT_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_20jailhouse_setup_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x56873d0e regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x569aa01d sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x569cb416 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56ac0571 _RNvXs23_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_5mutexNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x56b1462a _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x56b20be6 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x56b94ece xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x56bbedfa dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0x56d9562d ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5707fc24 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x5761b61c devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x57629a67 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790bad2 vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5795959b sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a20719 _RNvXse_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToUppercaseNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint +EXPORT_SYMBOL_GPL vmlinux 0x57ab4a69 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x57ac4e1e pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x57b151e7 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x57b6943b blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x57cb2293 _RNvXsq_NtCs9WMcp1Hn5Bv_4core3numtNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x57cb8a64 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x57cd0584 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase +EXPORT_SYMBOL_GPL vmlinux 0x57e0b619 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x57e17f62 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0x57e4e2a5 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x57f27884 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f9fe5a anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x580031e3 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x5812f412 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x584e8b45 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x585bcfff debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x586a2d4b _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3cmp5implszNtB7_9PartialEq2eq +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x58725473 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x5872a786 _RNvNvNtNtCs9WMcp1Hn5Bv_4core5slice3raw14from_raw_parts8comptime +EXPORT_SYMBOL_GPL vmlinux 0x5877b374 _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x5884a5eb debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x58a29562 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x58a5b107 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter11debug_tuple +EXPORT_SYMBOL_GPL vmlinux 0x58ab0969 _RNvXs1g_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_17msr__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x58ab1d13 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x58af6158 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x58bcdc60 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58dde48c acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e43351 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x58e83f4b __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x58eeeef8 _RNvXsD_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_36pcpu_hot__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x59016668 _RNvNvNtCs9WMcp1Hn5Bv_4core10intrinsics11write_bytes8comptime +EXPORT_SYMBOL_GPL vmlinux 0x59083fbf nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x5912f2cb usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x5914df81 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5919bbb2 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x592c6c70 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x59470232 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x5949bc4b alloc_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index +EXPORT_SYMBOL_GPL vmlinux 0x595bb35e crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x59673613 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5977c716 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598bcc26 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x59903b3e sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x5993bb40 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x599846dc rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x599bef5d _RNvXs17_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13math_emu_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x59a9515c gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x59af6c70 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b3b348 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x59baffa9 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x59bb7e7c __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x59bcecaa usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59d61f38 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x59e2bad4 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x5a036dd9 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x5a12ecac ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x5a180df7 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x5a30131e _RNvXs14_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB8_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5a476a45 clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a55d394 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x5a60a679 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a62bf42 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x5a6aaa3b spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a90bc91 pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x5a983710 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x5a9ba3c7 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab01c49 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5abd3310 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x5ae126c1 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5ae41976 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x5af5fd3c strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x5b109d46 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5b14e6af _RNvNvNtCs9WMcp1Hn5Bv_4core10intrinsics4copy8comptime +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b40033e usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x5b48953a __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x5b53131d blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x5b62327a _RNvXsh_NtCs9WMcp1Hn5Bv_4core4cellNtB5_14BorrowMutErrorNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b9437ea unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x5b966d9a _RNvXsT_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicU64NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5b9a0bb7 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x5b9feeb7 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x5ba36722 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x5ba430d9 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bc92736 vp_modern_generation +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 0x5bde2775 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5be0d016 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x5be79107 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x5bf95ad7 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str +EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5c0c24e3 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c1aebfb ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c332527 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x5c52edd7 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x5c59f490 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5f0457 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x5c6b6921 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x5c7908bb _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index31slice_start_index_overflow_fail +EXPORT_SYMBOL_GPL vmlinux 0x5c7a747d usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x5c80ff28 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5ca3b75a bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb4bf98 _RNvXs2N_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11srcu_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x5cc02216 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x5cdedb45 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf6e64c devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x5cf8df42 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x5cfd11eb _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB6_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5d05b796 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x5d08ed8e pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x5d0a84ca _RNvXs3B_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i32x8NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d24707d devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d2ff405 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x5d380d93 _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings8generate +EXPORT_SYMBOL_GPL vmlinux 0x5d45add8 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x5d48cc2b regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x5d503051 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5d5f1ffd regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5d5ff33c _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0x5d632b0e rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5d74de85 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x5d803543 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5da107b1 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db239a0 _RNvXs1b_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i32x2NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dc0be78 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5dce836b devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5dd85cf4 _RNvXs1n_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_21trace_print_flags_u64NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x5de7e237 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x5e0b510c cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e2980ef trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x5e2f8b68 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x5e3a38b9 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x5e3a3ced sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x5e4cae6d ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x5e4e5f8a nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e57ffa7 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x5e598375 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x5e5ba474 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5e6ab049 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e884e25 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5e9a68ae dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x5ea02f71 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x5ea675de _RNvXsB_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_15static_call_keyNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x5ea70e34 _RNvXNtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB2_15PadAdapterStateNtNtB6_7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x5eacd737 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5ec7fd4b blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x5eca6a79 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5ee75f21 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x5f01e866 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x5f073681 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x5f18bda5 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x5f1e6c04 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2657c5 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x5f2cb61d rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f3e2eb2 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x5f5c40b9 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x5f6cc300 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f7a7e14 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x5f7ce420 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f9bc210 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5faa95f0 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x5fb88bcb devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x5fbf033c sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5fc7bb87 _RNvNvMNtNtCs9WMcp1Hn5Bv_4core3ptr9const_ptrPp7sub_ptr8comptime +EXPORT_SYMBOL_GPL vmlinux 0x5fd8f007 __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x5fdf2a71 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x5fdf7b32 smca_get_bank_type +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe8540f uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x5fecef60 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x5ff0d419 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x5ff8b759 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601eb035 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x6028725e skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x602c8689 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x603026ca trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x603eeaf0 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x60407405 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x605645b7 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x6075fda3 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x60780d40 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6082fc4f tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x608c7432 intel_cpu_collect_info +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60923c59 _RNvXs2f_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i64x2NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60c5841f ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x60c9cc88 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x60dca573 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x60dcc069 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x60e8ff89 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f02355 _RNvXs1d_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11__ymmh_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x610711b4 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x611514f5 intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x61178737 __traceiter_neigh_update +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 0x612dde0b pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x613b7401 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x6145c218 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61490d5a led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x614b689c _RNvXs1f_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7cpumaskNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x614df4a5 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x615208aa usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x616bfb18 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6176cc79 usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0x617730bf srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x617f6b7d gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x617f7e81 _RNvXs2D_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10timer_listNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61bcb65b usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61c701e5 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x61cb49af i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x61e0cfca nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x61e9b310 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x61ea60e3 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f6e8f0 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0x622c4e1f _RNvXs4j_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13___va_list_tagNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62309f7e devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x62378c4c get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x62580323 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x625a6ecf dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0x628b3080 _RNvXs45_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6i16x32NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x628d94a9 pci_p2pmem_find_many +EXPORT_SYMBOL_GPL vmlinux 0x62b41220 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x62b6072b _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings4INFO +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c794aa md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x62c7a97f __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x62d068da bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x62d4a7dd acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x62e38771 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x62e48d1c pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x630a3018 _RNvXs1L_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16entry_stack_pageNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x630b295b ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63165082 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631db1bd devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x6347b33d fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x634e8c25 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6350a013 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x635b7202 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x636f40e5 _RNvXs3Q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12cpu_topologyNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x637f4d75 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x639d38cf _RNvNtCs9WMcp1Hn5Bv_4core9panicking18panic_bounds_check +EXPORT_SYMBOL_GPL vmlinux 0x63a10156 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x63ae5950 _RNvXsn_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impmNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x63aebd3c pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x63b5d543 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x63c07f83 __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63d1de72 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x6400bc3e pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x6402f0de genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x643291d5 _RNvXsn_NtCs9WMcp1Hn5Bv_4core6markerNtB5_13PhantomPinnedNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x64460f73 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x6449b224 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x6450aeaa __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x645c704d crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x646b7990 mmput +EXPORT_SYMBOL_GPL vmlinux 0x6472884d _RNvXs1q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_17bpf_raw_event_mapNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x6472d866 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x64740397 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x647cc0a0 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x647dc01e do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x648a06f1 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x648a19bc watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x649adfb2 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64ac16a0 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x64e191d9 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e6e3fe _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter5width +EXPORT_SYMBOL_GPL vmlinux 0x64e985ac _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f88f6d ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x6505dc7f pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x650b9ad6 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x65156b7f usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x65192138 _RNvXNtCs9WMcp1Hn5Bv_4core4charNtB2_13EscapeUnicodeNtNtNtNtB4_4iter6traits8iterator8Iterator4next +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x652a2446 _RNvXs2r_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f64x2NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6543d6aa devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain +EXPORT_SYMBOL_GPL vmlinux 0x656021e8 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x656d881e __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6575713f irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x65811cf5 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x65841fbc _RNvXsZ_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0x65880c17 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x658a09d8 _RNvXs1H_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25cpuinfo_x86__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x65a4f96f extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x65a5bec5 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65b0ece2 _RNvMs_NtNtCs9WMcp1Hn5Bv_4core3num3fmtNtB4_9Formatted3len +EXPORT_SYMBOL_GPL vmlinux 0x65b98ecc blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x65bf1572 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x65cbdccb get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d7ed5b dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x65dc8054 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x6612a824 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661d82a2 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x662b06f9 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x66311940 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x664493f5 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x6674a40b folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66899515 _RNvXsG_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB7_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x66923823 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x66977473 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x66a91952 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x66b11a4f _RNvMs5_NtCs9WMcp1Hn5Bv_4core3numt14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x66c70d4a class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e2d9ca spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices +EXPORT_SYMBOL_GPL vmlinux 0x671f214a cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x67230bcc pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x6725df45 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x6728183c of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x672e727c mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x67315c67 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x67333840 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x6741285d md_run +EXPORT_SYMBOL_GPL vmlinux 0x67418a9c regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x675c219a reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x675f5d43 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x6762fe04 mnt_idmap_owner +EXPORT_SYMBOL_GPL vmlinux 0x676cc085 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x6773bdf9 _RNvXsY_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_11AtomicIsizeNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6775015b dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x677daf87 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add +EXPORT_SYMBOL_GPL vmlinux 0x67847104 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x67874644 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6799a27a genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x67a18a9f mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x67bcf924 _RNvXs3z_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12vma_iteratorNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x67c8a236 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x67cb5667 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x67cc5ee8 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x67cde561 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x67d54d77 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67df9850 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x67f08744 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x67f36b30 _RNvNvMsq_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_11NonZeroU12813new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0x67fa32c5 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x6808b7de driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x681082c1 acpi_device_fix_up_power_extended +EXPORT_SYMBOL_GPL vmlinux 0x68147c01 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x6816a650 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x681b4ffa dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683386d9 _RNvXsy_NtCs9WMcp1Hn5Bv_4core4charNtB5_11EscapeDebugNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6837d120 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x6846e4db device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x684e173c tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x685bd379 _RNvXs1h_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_3msrNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x685d3cf2 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x688099dc thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x6886f113 _RNvXs1U_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10llist_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a2e060 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x68b4cb08 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x68b58c63 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x68bf4f3f _RNvXsQ_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_3eddNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x68f36656 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x68f9b744 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x690be109 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x691222e8 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x6913ce42 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x69152fa0 _RNvXs2Z_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15return_instanceNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x69289c50 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x6954e8c9 _RNvXs4_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9ArgumentsNtB5_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x69666a62 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x69718e3c balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69845d40 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x6987e7a8 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x698fde07 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x69985be0 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x6999858c _RNvXs1T_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10llist_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x699f514a hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69a3de3f iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x69a74e78 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x69a76095 _RNvXsP_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_8edd_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x69c224e2 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x69c8ff0c ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x69c94c7e of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d5b810 pwm_lpss_bsw_info +EXPORT_SYMBOL_GPL vmlinux 0x69e65968 _RNvXs1w_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13reg_1024_byteNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +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 0x69f07e36 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x69f9e266 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a169ab7 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x6a1d5648 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6a26873b _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6a2e585a mmc_cmdq_enable +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 0x6a483d1b pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x6a499c27 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x6a4a1b5b _RNvXs1h_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i64x1NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a62eba9 _RNvXsy_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB7_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6a6bdf4c _RNvXsu_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicI16NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a9052aa driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x6a9fe9c1 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa9dc4c devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6aae7b09 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6aae88da vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x6ac257c1 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x6ac43925 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6aef2eef regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x6afad836 _RNvNvNtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x865ssse315__mm_alignr_epi84mask +EXPORT_SYMBOL_GPL vmlinux 0x6afc9eac bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x6b05d58d _RNvXs46_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25local_apic__bindgen_ty_29NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x6b0d9ef0 _RNvXsz_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicU16NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read +EXPORT_SYMBOL_GPL vmlinux 0x6b1421fd con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x6b21a892 _RNvXsS_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_15StrSearcherImplNtNtB9_3fmt5Debug3fmt +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 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b4dc724 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x6b52d1ee _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6b5ca474 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x6b5d26a1 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6b5e7bfb find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x6b6c215d virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x6b76137d mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8231ef __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x6ba25b9b iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bb119f5 _RNvNtCs9WMcp1Hn5Bv_4core3fmt5write +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bccae87 _RNvXsA_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB7_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bce66db genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdb6d16 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6bdce94e regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be1abde da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x6be1cfc1 _RNvXsW_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_14TwoWaySearcherNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6beaa882 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x6beac0bf __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x6beb40fd scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x6c0c79ec devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x6c0dba1d _RNvNvMNtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB4_9NonZeroU813new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c20b1aa x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4a21f1 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c50314a shake_page +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 0x6c7db305 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x6c9a04b1 _RNvXso_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_11Sip24RoundsNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cae928b ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6cb429ed powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x6cb5f319 __rg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6cc5f1b8 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x6cce6383 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x6cdf12a6 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x6ce79193 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x6cf9d760 _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index24slice_end_index_len_fail +EXPORT_SYMBOL_GPL vmlinux 0x6d004490 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x6d01dc96 pci_epc_clear_bar +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 0x6d0bc6b3 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x6d1805b2 component_add +EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3a65af sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6d3aa3d7 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x6d4f8f44 devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x6d61d308 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x6d6475e5 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6d6a8bf2 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6e789d msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7ce49a iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8e2f8d regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6db23b0d regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x6db9efd7 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbab547 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd57957 _RNvXNvNtCs9WMcp1Hn5Bv_4core9panicking21assert_matches_failedNtB2_7PatternNtNtB6_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6de296c8 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6de9f4c1 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x6dea0934 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x6dfd2ec4 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e1b0778 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x6e31db91 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e34416e skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e3ae96d devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e456ff5 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x6e4887c6 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x6e589e9e device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x6e5d02ec udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x6e660180 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6e6f276c _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index29slice_start_index_len_fail_ct +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8dc42c nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x6e93c6de skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x6e9bec59 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ebbccfb cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec5ff12 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6ee33031 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x6ee91af9 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x6eef4ffd extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efa8fb9 _RNvXs17_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6f08e4c0 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core4char6decodeNtB5_16DecodeUtf16ErrorNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f372368 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x6f41057c ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x6f422bc7 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x6f49e452 rust_begin_unwind +EXPORT_SYMBOL_GPL vmlinux 0x6f59dc34 acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x6f62f048 _RNvXsG_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_8___m256bhNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f7a209a crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f878ea8 _RNvMs_NtNtCs9WMcp1Hn5Bv_4core4char6decodeNtB4_16DecodeUtf16Error18unpaired_surrogate +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fabe0f5 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x6faf1115 _RNvXs2x_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f64x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6fb8dfbe vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6fc0f628 _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fdad597 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x6fdf1299 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6fe3a592 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6fe89ec3 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4i8x2NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6fe97408 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffcb36b xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev +EXPORT_SYMBOL_GPL vmlinux 0x70038ae8 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x70063a33 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700cd243 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x700d1014 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x701295e1 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x702fc24c vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x70393fb5 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x7039cc46 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x7046ca2d blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x7057469a phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x706cd052 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7074c941 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x708376d1 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x70895d6c fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x708e6b3b pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x70919343 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x70b23e84 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0x70b7032c _RNvXs16_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0x70b9bd74 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x70ba163b hvc_instantiate +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 0x70d80ad9 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x70d88f84 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x70df425a power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x70dfe692 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x70e636bd wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x70edd184 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70f51baa dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x71073933 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x710992a6 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711b0f63 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x7123565e phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x71324e0f msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x714f51ef _RNvXs1c_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x7160d6b9 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x717abae4 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x71995ffe ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71c930c5 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x71ef3d19 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x7201a1eb fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x720c26d8 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x720fe3bb gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7212e13f scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x721f0c6a _RNvXss_NtCs9WMcp1Hn5Bv_4core3numyNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x72358d53 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x725e47bf debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72740772 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727ed304 _RNvXs1Q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13thread_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72bb1493 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x72bf1eec _RNvXNtCs9WMcp1Hn5Bv_4core3ffiNtB2_6c_voidNtNtB4_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x72c29383 _RNvXs4t_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6f32x16NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x72d236b7 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72db57e0 fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x72dc9538 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x72e2eba7 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x72e6565d kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x72ede42f usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x73011204 _RNvXsg_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impjNtB9_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x730bcbeb fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x7329157c get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x732b123f alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x7339d7a8 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7341ab66 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x734f23f4 pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x735b5749 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x736390ad blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x736dcebe _RNvMNtCs9WMcp1Hn5Bv_4core3f32f13classify_bits +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738bee2b _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index29slice_start_index_len_fail_rt +EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x739811ea fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b841e5 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x73bb8ed3 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73cf7fd0 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x73d027a2 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x73e3ff0c sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x73f883a6 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x73fd78c7 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x7400bec6 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x741f388b user_read +EXPORT_SYMBOL_GPL vmlinux 0x742266ec __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x74251d40 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7438f32d clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x743a75a5 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x743c0c93 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x74408752 _RNvXsa_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToLowercaseNtNtNtNtB7_4iter6traits8iterator8Iterator4next +EXPORT_SYMBOL_GPL vmlinux 0x7444e1a3 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7449b39d devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x746c193b platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x7479323d sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x747fee87 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x748b0824 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x748ba064 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x749681d5 _RNvMNtCs9WMcp1Hn5Bv_4core3stre14escape_unicode +EXPORT_SYMBOL_GPL vmlinux 0x74a66262 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x74a88bfa acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x74b42568 _RNvXsr_NtNtCs9WMcp1Hn5Bv_4core3fmt3numNtB5_8UpperHexNtB5_12GenericRadix5digit +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74c9e063 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x74ca461f crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x74d33434 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area +EXPORT_SYMBOL_GPL vmlinux 0x74d821c6 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x74d92b06 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x74df4e71 _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStrINtNtNtB9_3ops5index5IndexINtNtBR_5range9RangeFromjEE5index +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x750d7b2d _RNvXsi_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impaNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7525f216 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x75273620 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x752a942d exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7548a4da crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x754a42c7 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x754c57b0 _RNvXsd_NtCsiTPnVqBGVaY_6kernel3strNtB5_7CStringNtNtNtCs9WMcp1Hn5Bv_4core3ops5deref5Deref5deref +EXPORT_SYMBOL_GPL vmlinux 0x7550a6fb __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x755299c5 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x755d6643 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7580b932 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x75909214 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7593cb71 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7598f01d lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75ae7bf8 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x75c790e8 _RNvXs4z_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i64x8NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x75d29c1a phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x75dd11d4 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x75e00954 _RNvXs3_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits10exact_size17ExactSizeIterator3len +EXPORT_SYMBOL_GPL vmlinux 0x75e1dc2e nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75eb309b pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x75ecd5a5 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x75ee0f43 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x75ff3c03 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x7608afb4 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7610e986 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x7615d37a tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x7617cf85 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x7632c9a9 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x764398cf dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub +EXPORT_SYMBOL_GPL vmlinux 0x765b12e4 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x765f9bf1 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x766dfd6e hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7684bfdd _RNvMNtNtCs9WMcp1Hn5Bv_4core5slice5asciiSh14trim_ascii_end +EXPORT_SYMBOL_GPL vmlinux 0x7699f4e3 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a30851 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x76a9afd6 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x76b61cc9 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x76b8668a tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x76bfc64d __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x76c42fbb _RNvXs2a_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7rb_rootNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76dc031e asm_exc_nmi_noist +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76ea21a8 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f99d11 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x76f9ffa5 _RNvXsj_NtCs9WMcp1Hn5Bv_4core3numaNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x76fc3e57 vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7718ca33 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x7732fef3 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x77330473 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x7734c402 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x7736b555 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x77397706 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x773adff6 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x77451e26 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x774b91ec dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7753bc82 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775ae36c param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x775fb1d6 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7778e25d _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9precision +EXPORT_SYMBOL_GPL vmlinux 0x778960e1 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x7789d5b2 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77a2bf59 _RNvXse_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToUppercaseNtNtNtNtB7_4iter6traits8iterator8Iterator4next +EXPORT_SYMBOL_GPL vmlinux 0x77a47959 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x77adb195 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77af5144 _RNvMNtCsiTPnVqBGVaY_6kernel5errorNtB2_5Error15to_kernel_errno +EXPORT_SYMBOL_GPL vmlinux 0x77b3c040 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x77be8259 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x77cb0bd9 dma_async_device_channel_unregister +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 0x77f33de4 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter12pad_integral +EXPORT_SYMBOL_GPL vmlinux 0x77f35e1a raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x77fe8593 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x7807ec06 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x7808e28c virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x780bf721 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x780d5d29 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x780e25ed ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x781271b2 hsu_dma_get_status +EXPORT_SYMBOL_GPL vmlinux 0x781b2f9e fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x781ce09c device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x7824c73b pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x783a0aae blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x7844a2c0 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x7859a36a pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78678caf crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x786f9789 _RNvXNtNtCs9WMcp1Hn5Bv_4core3fmt7nofloatfNtB4_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788238c9 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78949b36 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x789ca77b acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x78a0a1c5 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0x78a86032 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x78ac37ce crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x78c7f579 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x78d4f4ba devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e78446 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x78ffcede xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x7900b65a bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7910baeb acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x7912fc4d _RNvXsw_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB7_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x791abb15 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x793408a6 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x7940561f bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794a3635 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7979631e _RNvXsD_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB7_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x79817da0 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7989d0f5 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x798fbb6e led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x799386c9 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x799cfb84 acpi_subsys_runtime_resume +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 0x79e1353d _RNvXsK_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_27restart_block__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x79e63bcf fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x79ee1d96 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79f861c4 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x79ff7a61 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x7a0e834e xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7a169936 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7a19167a _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings3ERR +EXPORT_SYMBOL_GPL vmlinux 0x7a1c60b8 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7a1c9d63 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x7a2d01b8 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x7a2f9f97 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7a3413f4 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x7a38c729 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x7a3b38cb devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7a3e59e9 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a4260f2 _RNvXsd_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_9list_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x7a4f8804 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control +EXPORT_SYMBOL_GPL vmlinux 0x7a6c751c devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a895c6a ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x7a8c3a2e __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x7a92c4b2 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9c9250 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aa0aef3 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x7aa0fd3d tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7aa0ffd3 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7aca2836 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad63036 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7af5fd98 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b0bd28d device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x7b0cf022 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x7b0f5a5d pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x7b11f7d2 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7b182c13 _RNvXs2Q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_22blocking_notifier_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x7b185ba8 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x7b2bf174 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x7b35285e ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x7b375bab irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x7b446533 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5ad387 _RNvMNtCs9WMcp1Hn5Bv_4core3f32f16partial_classify +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b70d91b devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x7b71725e pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x7b737073 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x7b777066 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7b8113bb dw_pcie_ep_raise_msi_irq +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 0x7bc71a61 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7bdffc26 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x7be593fb acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x7be9cb1f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7beb1715 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x7bf0eb04 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x7bf1ccdb pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7c031913 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x7c08b209 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x7c1bb96d md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x7c1dd2f9 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c23f9b4 _RNvNvXs0_NtNtCs9WMcp1Hn5Bv_4core5slice5indexjINtB7_10SliceIndexSpE17get_unchecked_mut8comptime +EXPORT_SYMBOL_GPL vmlinux 0x7c24a2a1 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x7c26ad54 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7c26e3c4 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7c270ee0 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7c27e1b9 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2d963b page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x7c30b142 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x7c320417 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c3627d3 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c4aa445 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x7c595f77 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x7c5d2468 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c8c5397 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x7c92a8b9 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x7c92d1a2 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca0e24a pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7ca7dcbd irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7cace480 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x7cb0e5dc serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cca4f0e da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x7ccddecb dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd2a007 _RNvXs4f_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroU16NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0738e3 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d0f6569 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d4074e7 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x7d4e3cf6 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x7d55e6cc dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d7969c6 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7d7b337b ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7d849333 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x7d9cbd0c devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x7dac9371 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x7db9b0b2 genphy_c45_pma_setup_forced +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 0x7de75743 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7dec24c5 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x7e06afb2 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x7e06badd _RNvXsC_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_17cacheline_paddingNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x7e1f2ab2 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x7e36d258 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x7e38cbf2 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e4213f2 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x7e450922 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x7e4c5ce4 __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x7e4f5f25 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e736125 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e832c7b devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e9f26da acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb03d61 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x7eb624dc crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ebcc7f8 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x7ed1c054 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7ed806a4 _RNvXs3w_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_23mm_struct__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7efc154c netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f094106 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0x7f0cd579 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x7f161eef __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x7f234ad9 user_update +EXPORT_SYMBOL_GPL vmlinux 0x7f392551 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x7f477560 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x7f5191ba screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x7f52016a ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x7f5bb2b8 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7f6bda97 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f742505 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x7f75739c wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7f776b81 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f7d8cbc phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x7f81d062 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f8977a4 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x7f8ce0ff _RNvXsY_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_8idt_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x7f8d3701 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7f952d90 _RNvXss_NtCs9WMcp1Hn5Bv_4core4charNtB5_18EscapeUnicodeStateNtNtB7_3fmt5Debug3fmt +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 0x7faa6777 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x7faf7cc0 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x7fc515d8 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x7fc88f22 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc94123 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fd78594 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7ff2ba2c phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x80225f23 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8046712e divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x804eadd6 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x805b9484 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x805ccd22 _RNvXNtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB4_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x80629f21 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x806e88e3 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x807140c5 _RNvXNvXss_NtCs9WMcp1Hn5Bv_4core3fmtINtNtBa_4cell7RefCellpENtB8_5Debug3fmtNtB2_19BorrowedPlaceholderBU_3fmt +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807aa385 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x807c5014 _RNvXs21_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15wait_queue_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x807f122e sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x807f2286 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x8093f81b usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x809d8287 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x809deb7a inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x809fba36 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80cbdf66 acpi_dev_gpio_irq_wake_get_by +EXPORT_SYMBOL_GPL vmlinux 0x80cf144e dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x80d3c06c firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d9a824 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x80e74b21 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x80e86102 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x80e967b1 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x80ee0430 _RNvXs2P_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_20atomic_notifier_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x80f0e393 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x80f524f7 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x810324ac events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x8118fd2b pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x811dd633 _RNvXs1s_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x81263bb3 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x81307bd7 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816244b0 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x81631b99 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x817508fd ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x817a71c6 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x817eaffe devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8186ab7b regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8187e2fd blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x81888a70 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81c2e348 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x81c6b1fb _RNvXs1Z_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_11EscapeDebugNtNtBa_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x81d0f0d1 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81d31a19 get_device +EXPORT_SYMBOL_GPL vmlinux 0x81de4650 register_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81e47844 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x81e7e55a bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f4117e pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x820592f8 input_class +EXPORT_SYMBOL_GPL vmlinux 0x82077a81 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820a7892 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x82126e2e _RNvXs1R_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u64x2NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x821f4a12 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822714ff usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8232ac46 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x823fab4b sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x8245ab26 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x8246f1b8 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x825212b0 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x8257a110 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8271c213 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x82864f02 _RNvXs3A_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18vm_special_mappingNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x829d6e26 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e7e851 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x82f0eaec __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x82ff4669 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x83122f42 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x83154b1b _RNvXso_NtNtCs9WMcp1Hn5Bv_4core3fmt3numNtB5_6BinaryNtB5_12GenericRadix5digit +EXPORT_SYMBOL_GPL vmlinux 0x8324b35e _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8347346b devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x835d447b device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x8379b340 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x83845429 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x83acf6f3 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x83b19be9 _RNvXsx_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9AlignmentNtB5_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x83b836c5 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x83bdc473 _RNvMs2_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_13ParseIntError4kind +EXPORT_SYMBOL_GPL vmlinux 0x83ca3239 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x83cd6f6e pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x83d922ed dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x83e43efe dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x83f21c3d dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x840bc62b __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8410516f usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8416c7d8 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842ef64e crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x84305b73 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8440ba9b msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x8440ea45 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x84525741 _RNvXNtCs9WMcp1Hn5Bv_4core9panickingNtB2_10AssertKindNtNtB4_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x845deea9 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter15debug_upper_hex +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8463dccd balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8465cd50 device_move +EXPORT_SYMBOL_GPL vmlinux 0x847d1a4d _RNvXsa_NtCsiTPnVqBGVaY_6kernel3strNtB5_9FormatterNtNtNtCs9WMcp1Hn5Bv_4core3ops5deref5Deref5deref +EXPORT_SYMBOL_GPL vmlinux 0x84822590 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x848c2105 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x849b2f0d proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x849ce828 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x849f856e usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x84a86a29 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id +EXPORT_SYMBOL_GPL vmlinux 0x84b88d8b usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x84bc6035 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core5panic8locationNtB5_8LocationNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x84c79386 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x84c9ddf1 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x84cb5998 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x84cf6d32 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x84d120ac gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x84d5a2d4 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x84d69718 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f98b55 destroy_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x852109ad device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x85219289 _RNvNvMNtCs9WMcp1Hn5Bv_4core3f32f9from_bits13ct_u32_to_f32 +EXPORT_SYMBOL_GPL vmlinux 0x852fec4f usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x8537d264 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855fa0ed fpu_update_guest_xfd +EXPORT_SYMBOL_GPL vmlinux 0x857f3951 xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x858364a6 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x8583f872 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x858b8f02 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x85964ae7 _RNvXs2V_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5m64x2NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x859ce665 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x859ec67c iov_iter_get_pages_alloc +EXPORT_SYMBOL_GPL vmlinux 0x859fac56 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio +EXPORT_SYMBOL_GPL vmlinux 0x85b2d86f pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x85b4b249 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x85bd2f14 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x85bebc28 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85ccc2e9 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x85d6743f power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85d8085a gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x85d9bdb4 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x85e2686a iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f2a6f5 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x85f6be58 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x8600ec0f ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x8615f5f4 virtqueue_enable_cb +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 0x86229606 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x8660b5e7 _RNvXs4n_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6u32x16NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x866f323f sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8671bea2 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va +EXPORT_SYMBOL_GPL vmlinux 0x867fd1a9 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868e20cb pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x869756be _RNvMs2_NtCs9WMcp1Hn5Bv_4core3numn14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0x8698045d devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x86a44b25 _RNvXs1b_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0x86a98df5 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x86b011d8 __rust_realloc +EXPORT_SYMBOL_GPL vmlinux 0x86b026d7 events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b54b46 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86d14f9e uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x86dc53b0 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x86dea3a1 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x86ef7e49 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x86f4673c vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x86f634ec edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x87008a76 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x87036ea6 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x870b9dbc acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871b363d pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x871c8617 pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x871f0b9c crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store +EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8741b88f _RNvXs1Y_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_13EscapeUnicodeNtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x874833d1 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x875f4bd7 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x87605168 _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0x877580f5 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x87782927 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x87887ae3 _RNvXs4j_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_12NonZeroUsizeNtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x8795d98e platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87ad22a7 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x87af5367 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x87b42ac8 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x87b889d5 _RNvXsQ_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_11StrSearcherNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x87bb5292 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x87c185e2 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x87c5d86f device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x87cb5333 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x87cd7058 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x87d222c1 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x87d7c9fa blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x87f8d3c3 _RNvXsh_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_15callthunk_sitesNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x87fbf802 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x87fd2bb5 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x8821c761 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x882270fe __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x882501e0 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x8838a41d _RNvXsS_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB7_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x883d72c7 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x88419830 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter12debug_struct +EXPORT_SYMBOL_GPL vmlinux 0x884503ae uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x88451bf8 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x88478d77 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x8850245a hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x88522b66 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x886b3c1e gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x887448db bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x887bd17e static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x888bd297 mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x88952374 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x8898b480 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b6fc09 _RNvXsc_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_8OrderingNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x88b77ad9 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x88c474b4 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88d924f2 _RNvXsf_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_3cmp10PartialOrd11partial_cmp +EXPORT_SYMBOL_GPL vmlinux 0x88e4232e regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x88ea132e iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x88eb7783 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8902831c wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89085887 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3str5errorNtB4_9Utf8ErrorNtNtB8_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x8910e3f0 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x89156cd6 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892b6b5f regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x8939afc9 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x89432935 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8945120b __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89495529 _RNvNvMNtCs9WMcp1Hn5Bv_4core5sliceSp19as_chunks_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0x895fafac iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x89639e54 _RNvXsc_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3implNtB9_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x896608fe xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x8978188a usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x898e26e3 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x898ffe76 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x899283e0 _RNvXs1W_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18___call_single_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x89973966 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x899d12bd devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x89a3dd0a fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x89aac57d _RNvMs_NtNtCs9WMcp1Hn5Bv_4core3num3fmtNtB4_9Formatted5write +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bcc768 pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0x89d7595f __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89f2c005 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x89f90d67 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x8a0d2e7f lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8a151f34 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8a16582b bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a16df13 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x8a2b8a31 _RNvXNtNtCs9WMcp1Hn5Bv_4core3ops5rangeNtB2_9RangeFullNtNtB6_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x8a337eaf msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x8a372d33 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x8a5e65fa devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a6e1c03 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a7eacb5 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot +EXPORT_SYMBOL_GPL vmlinux 0x8aa19a1a devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x8aa1dddb crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8aa69e6e tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x8ab00b38 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x8ad003a7 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list +EXPORT_SYMBOL_GPL vmlinux 0x8ad911b0 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x8aee0b00 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x8afacd22 _RNvXs1s_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_26fxregs_state__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x8afe771c _RNvNtCs9WMcp1Hn5Bv_4core9panicking15const_panic_fmt +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1fc99c extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x8b28c6e3 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x8b2d2847 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8b389c81 _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc +EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8b5340fc ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x8b60984b icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x8b7395fb xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x8b774d39 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data9uppercase6lookup +EXPORT_SYMBOL_GPL vmlinux 0x8b7b509d __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0x8b7b8129 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b91c44f _RNvXse_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impxNtB9_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8bb09499 _RNvXs1y_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16mpx_bndcsr_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x8bb3a6ea dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x8bb96173 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x8be9a497 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x8bee3813 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c0241d0 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x8c03c515 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0535f8 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ca863 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c103f32 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8c20bd39 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x8c254776 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c4232b6 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev +EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit +EXPORT_SYMBOL_GPL vmlinux 0x8c5bdba8 _RNvXsg_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_13callback_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x8c5dde4a rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x8c7250f4 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c821b03 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c90ecfc dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9cfad3 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x8ca9eaca _RNvXs3B_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9free_areaNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x8cb02ab5 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x8cc2aff7 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x8cca5f86 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x8ccd7025 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x8cd6a396 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x8cf601f0 generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x8d01ba22 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d1acb67 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2ef056 _RNvXsz_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB7_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3cc6fb _RNvXs1X_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18___call_single_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x8d4c3f8e scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d5dffaf gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x8d621213 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8d6be8b5 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8d72f98c acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d813930 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x8d81c9aa serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x8d82fe8f device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d936097 _RNvXsQ_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB7_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0x8d9401e8 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x8d95e638 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x8d96390c __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x8d9af8ac ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x8d9dad66 _RNvXsk_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impsNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x8da89bd1 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x8db6431f is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8dc515f1 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8ddd6fe7 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8df5c0d3 _RNvXsr_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impiNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x8e0d8485 _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3num3fmtNtB5_4PartNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x8e1470ff scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8e14b4f5 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x8e2bccd6 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8e30944a __rg_dealloc +EXPORT_SYMBOL_GPL vmlinux 0x8e31a766 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8e43b595 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x8e474224 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e600b3d _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e8a43b4 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x8e8dd45d sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x8e9056af raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x8e949801 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x8e96ef72 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x8eac7b66 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8ebd94cb usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x8ed64067 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x8edcd821 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x8ee5236b crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x8ee7e8fc virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8eefaab9 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8ef57626 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x8f01c786 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f0f893b _RNvXsi_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_23qspinlock__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x8f127bcf decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x8f1df19f blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x8f24ec63 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f4049f4 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x8f5affaa hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x8f5b99a6 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x8f666cc6 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7376cf gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7ad95f iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x8f7b1b37 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f7bf3d6 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8f8730b8 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x8f8766ca mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x8f8b6db9 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fb409b4 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x8fb535f0 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x8fb639c1 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fcb95e6 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x8fd86227 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x8fda202f _RNvMs6_NtCs9WMcp1Hn5Bv_4core3numm14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0x8fe5dc04 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x8ff4534f devm_phy_destroy +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 0x900c755a wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x90161f94 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x901c698a _RNvXs2B_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9debug_objNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x901d5f77 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x9022c104 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x902722b8 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903c0995 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x90435a45 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x906213b1 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x90669b43 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x906907c2 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x90737d1d _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x90863f6b iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x908be7c4 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x90a37b0a _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings4CRIT +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ab8dd9 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90b7b9d9 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x90b9b1ca gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x90ba8d6c usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x90c286d3 virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90d47b9f pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x90d4beae get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90e2f2d3 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x90e5ce1c ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x91069b06 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x91072c99 _RNvXNtCs9WMcp1Hn5Bv_4core5asciiNtB2_13EscapeDefaultNtNtNtNtB4_4iter6traits8iterator8Iterator9size_hint +EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x91225829 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x91252df0 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x912d0e65 acpi_quirk_skip_i2c_client_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x91492762 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x915e97fa edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x91621dc1 _RNvXsg_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_13CharErrorKindNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9169511a device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x91727e1d i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x9193d5b5 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919bc1af blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x91a01e84 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x91b4eafe _RNvXsk_NtCs9WMcp1Hn5Bv_4core3numsNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x91b5d879 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any +EXPORT_SYMBOL_GPL vmlinux 0x91bff512 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x91c048ac debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91dc167a _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x91dea09d tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x91e10b99 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x91e80466 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91f4316b kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x920e7568 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data11white_space6lookup +EXPORT_SYMBOL_GPL vmlinux 0x920f9448 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x922f36d1 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924b37c0 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core5slice5asciiNtB5_11EscapeAsciiNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x927827c6 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x928d26d6 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x929afd87 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x929e7d03 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter +EXPORT_SYMBOL_GPL vmlinux 0x92af7d53 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x92b4da89 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d39f55 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x92d5d58d tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92ef1750 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x92ef6c27 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x92f7a353 _RNvMs_NtCsiTPnVqBGVaY_6kernel3strNtB4_4CStr19from_bytes_with_nul +EXPORT_SYMBOL_GPL vmlinux 0x92fa9bb0 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x931561bc ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9316e318 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x9334a695 _RNvXs2P_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5m32x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9345a9f3 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x9366aaf6 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x936ff3bd devres_find +EXPORT_SYMBOL_GPL vmlinux 0x937f8f5a transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x9385bafa __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x939511e5 iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x93a4d635 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x93af7a82 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x93b70697 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x93c3af3b ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f048ef filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x942dcede dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9437fcc9 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x943fd43f sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9440ae76 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x944a400a debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x945ea016 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x9468d483 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x94691fc2 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x946a01c3 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9474d85a key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x9476d668 cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x94808fe1 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x94869723 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x948a5a06 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x94902754 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x9492df9a ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949d6e6e _RNvNtCsiTPnVqBGVaY_6kernel5print11call_printk +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a6b14b _RNvXsa_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToLowercaseNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint +EXPORT_SYMBOL_GPL vmlinux 0x94b4e91f kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x94ba99ba xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x94bccb02 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data11conversions8to_lower +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 0x9522e325 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x952860ab __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x952e90cd _RNvXs11_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7pv_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95436670 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9552e7a4 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95675c91 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9571c52f __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x95868d2f _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter10debug_list +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958f7053 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95bc280b __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bde394 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x95c16e6a xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x95e825a2 _RNvXse_NtCs9WMcp1Hn5Bv_4core3anyNtB5_6TypeIdNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x95ee53df do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x960140ac class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x960167f6 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x961c67ba __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962238d3 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x963547ca _RNvMs6_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugMap5entry +EXPORT_SYMBOL_GPL vmlinux 0x964a1943 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x9654ec90 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9666c334 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9667f6cc inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x96754365 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9687f175 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x968e1dad input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x9690fa86 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x96a37a55 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset +EXPORT_SYMBOL_GPL vmlinux 0x96c68b12 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x96d0268a mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x96d84280 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x96d8fe04 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x96e43179 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x96e6a234 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x96f704cf nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x97064090 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x9712d5bc pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971b5d71 _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3cmp5implszNtB7_3Ord3cmp +EXPORT_SYMBOL_GPL vmlinux 0x9725c49b udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x97313134 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x97328a94 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x9736f6a9 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x976919c0 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x976d76ca dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x97725a72 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x977f6ad6 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x977f8e14 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x978b622a _RNvMNtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB2_9PanicInfo10can_unwind +EXPORT_SYMBOL_GPL vmlinux 0x978cd4f9 _RNvXs4i_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10percpu_refNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x979346f9 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x97995ccb tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x979f1907 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x97a76f46 _RNvMNtCs9WMcp1Hn5Bv_4core3f64d13classify_bits +EXPORT_SYMBOL_GPL vmlinux 0x97ae4ef6 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x97c3edf5 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x97c517ed pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x97d1d156 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x97d52f0a edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x97d8a7d4 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0x97e25ce5 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x97ed692c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x97f2e94b iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x98003ad6 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x98025068 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x9804d857 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x981da11e _RNvXs3j_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_33folio__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9824e3ec phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x98337e8a wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98378a1d cc_mkdec +EXPORT_SYMBOL_GPL vmlinux 0x983b2a3d _RNvXs3T_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i8x64NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9843336c devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x98482d8f __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x9848ad7f crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9851560b vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x985e47fb io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x985ffb5f clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x986cfa2f ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x986d6e2f crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x986e1e44 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0x98819de5 _RNvXsJ_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicU32NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x98876a94 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x98891598 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x988afa87 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98a1b455 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x98e35554 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x98e42e1c rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x991fd49d __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x991fd689 _RNvXNtCsiTPnVqBGVaY_6kernel9allocatorNtB2_15KernelAllocatorNtNtNtCs9WMcp1Hn5Bv_4core5alloc6global11GlobalAlloc7dealloc +EXPORT_SYMBOL_GPL vmlinux 0x992e44a6 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x99383ebe _RNvXsD_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIterNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x994e122f raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9961f078 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x9963af8f ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x9966cd24 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x9970d176 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x9983c8b6 _RNvMs1_NtCs9WMcp1Hn5Bv_4core3numx14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0x9988830a _RNvXsq_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impjNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x998aefaa report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998dc024 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0x99987521 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x999e088d sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure +EXPORT_SYMBOL_GPL vmlinux 0x99a5fd0c irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x99aa69ac fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x99b2d8da simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x99c52982 _RNvXs2t_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11swait_queueNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x99da110f elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x99e7dc59 _RNvXsE_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicI32NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f05c1c wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1b3ec0 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x9a1c633f ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a26b8b7 _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x9a2851ef __SCT__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x9a3be2cf gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x9a3d625a serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x9a40f442 _RNvXsb_NtCsiTPnVqBGVaY_6kernel3strNtB5_9FormatterNtNtCs9WMcp1Hn5Bv_4core3fmt5Write9write_str +EXPORT_SYMBOL_GPL vmlinux 0x9a51d47d vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x9a53fde7 _RNvXs15_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_23paravirt_patch_templateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5a03de vcap_chain_id_to_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a6159be __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x9a66f1ee usb_string +EXPORT_SYMBOL_GPL vmlinux 0x9a75f47c usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x9a7c7738 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x9a859aa5 _RNvXsM_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB5_11EncodeUtf16NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9a95b4f2 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x9aa3be45 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9aae6ae4 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find +EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule +EXPORT_SYMBOL_GPL vmlinux 0x9ad55b99 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x9adca046 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9ae2c424 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9afbb9e3 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x9b21d23f crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x9b26efed l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b2c0db2 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x9b35886b dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x9b392715 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9b3eb668 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x9b414e6f crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x9b4f206a _RNvNtCs9WMcp1Hn5Bv_4core6result13unwrap_failed +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b55f8ef synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x9b5dce59 acpi_dev_add_driver_gpios +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 0x9b768201 modify_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x9b823c8a dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b890cde watchdog_notify_pretimeout +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 0x9ba0b128 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bab1f0b __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bb1fc7d tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x9bb7bffc xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x9bc04249 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x9bc43c6d _RNvXs3P_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15scale_freq_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9bcbdaa9 pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0x9bcd9c4c __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9bdf2c11 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc +EXPORT_SYMBOL_GPL vmlinux 0x9be28723 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf19638 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x9c1023af crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9c1755ba _RNvXsk_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_21qrwlock__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9c379436 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x9c4302ea _RNvXsJ_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_41restart_block__bindgen_ty_1__bindgen_ty_3NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9c500087 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core5slice5asciiNtB5_11EscapeAsciiNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9c515056 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9c5a9c7d do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x9c5ed355 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c749077 _RNvXs2U_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25arch_uprobe__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c9327ae __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x9c956382 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid +EXPORT_SYMBOL_GPL vmlinux 0x9c99b700 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location +EXPORT_SYMBOL_GPL vmlinux 0x9cafce19 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x9cc07974 _RNvXs2v_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15uprobe_consumerNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc700ac edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9cd17bd8 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x9cd53b23 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdb5f07 _RNvXs9_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_5ErrorNtB5_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9ce05629 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ce447fc sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x9ce4e5e8 _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings5DEBUG +EXPORT_SYMBOL_GPL vmlinux 0x9ce5c743 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x9cee0aee _RNvXNtCs9WMcp1Hn5Bv_4core4charNtB2_13EscapeUnicodeNtNtNtNtB4_4iter6traits8iterator8Iterator4last +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cfb476a blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x9d054a16 _RNvXs1_NtCsiTPnVqBGVaY_6kernel3strNtB5_4CStrNtNtCs9WMcp1Hn5Bv_4core3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9d09e3b0 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d113ee0 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow +EXPORT_SYMBOL_GPL vmlinux 0x9d24f9af ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x9d296766 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x9d2bb96b eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x9d32e632 _RNvXsb_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imptNtB9_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x9d3ede65 _RNvXNtCs9WMcp1Hn5Bv_4core5allocNtB2_10AllocErrorNtNtB4_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode +EXPORT_SYMBOL_GPL vmlinux 0x9d5a30d0 _RNvXsc_NtNtNtCs9WMcp1Hn5Bv_4core9core_simd5masks9mask_implmNtB5_11ReverseBits12reverse_bits +EXPORT_SYMBOL_GPL vmlinux 0x9d608607 _RNvXs0_NtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x865cpuidNtB5_11CpuidResultNtNtBb_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9d7beb68 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x9d828547 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x9d86d258 _RNvXs4g_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15percpu_ref_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9d88c3fb __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d8f62d8 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x9d939b7c devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9daf5b00 _RNvXs2m_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_24maple_node__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9db0db55 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x9dc1d898 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x9dc256aa dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x9dccbd95 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x9de557c7 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x9de610b9 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x9dea70d2 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x9df1b832 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x9df60972 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e10094a _RNvXsn_NtNtCs9WMcp1Hn5Bv_4core9core_simd5masksaNtNtB5_6sealed6Sealed2eq +EXPORT_SYMBOL_GPL vmlinux 0x9e100bb0 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x9e125950 _RNvXsN_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_17CharSliceSearcherNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9e151910 _RNvNvXsi_NtCs9WMcp1Hn5Bv_4core3fmtPpNtB7_7Pointer3fmt5inner +EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9e2acb58 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x9e2ba14d dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x9e3a1a83 _RNvXsR_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_9edid_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4e27e8 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x9e5f56a1 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x9e98e6ea zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9e9d4579 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9e9ea421 _RNvXs13_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB6_11AtomicUsizeNtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9ebfa907 _RNvXs2i_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_24maple_tree__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9ecd53f5 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed87664 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x9ee0c1a8 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef0afa6 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x9ef13e07 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x9ef16323 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x9f2a7333 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f628795 _RNvXs2y_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11old_timex32NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9f6ab0e7 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x9f6f54fc disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9f977f47 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9faa17b4 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x9facbdf0 dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x9fb6f74e genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x9fb89624 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc25fb6 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9fc80684 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x9fcdfdbb sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd33dbd _RNvXs7_NtCs9WMcp1Hn5Bv_4core3ffiNtB5_10VaListImplNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9fd35fa6 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x9fdcd361 pci_epc_get_msi +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 0x9ff396a6 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9ff51619 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x9ff91ec2 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x9ffed43f pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xa0102f17 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa013ecb5 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa034f686 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_11SipHasher24NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xa045745b crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xa04ae3a3 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa04bd4f9 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa06e5302 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xa0715d8f devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xa07b20d9 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0xa0a743ce fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d4b14a crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa0d93733 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa0e05fc7 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa0e7701c __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa0f34ddc _RNvXsf_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_6___m128NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa0f5a696 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xa0fb9f15 _RNvXs3I_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_4zoneNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa1055239 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1183b10 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xa11a842c fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa11ec816 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xa13b2e0d _RNvXsn_NtCs9WMcp1Hn5Bv_4core3numnNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15b2414 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xa1607311 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xa168bc84 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xa16c4177 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xa170a0a3 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xa1763d2a ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xa19c53ad pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa19f075c _RNvXs2M_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9srcu_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa1bec939 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0xa1c35224 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xa1c3f8a8 __SCT__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xa1c84111 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xa1d466f7 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1eeee18 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xa1f7e596 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20d5376 _RNvNvMs1d_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB8_12NonZeroIsize13new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0xa2184085 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xa21bf2c8 __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa229dc21 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa22dd42b _RNvXst_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_21__ddebug__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa23f099c nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa2465383 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xa24cede4 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xa265601b ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xa269ebcc pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa26e4cf5 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa2933e9f devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xa29ef0ad vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xa2a1c32e _RNvXs3J_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7zonerefNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa2a8a80f blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2b3ea0d nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa2b64f48 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2ba2ef6 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2d4222d da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e92bb2 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa305aa13 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xa310edb7 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xa315fa7f _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0xa31a9ab5 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xa32b2aa5 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa33f7b07 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa34a4cd0 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xa34fbb73 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa35876fd __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xa35d1f5e _RNvXs2S_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18srcu_notifier_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa3614768 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa36614ff mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa36a8d55 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa3715660 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xa372ae7a __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa373a349 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xa381c4c0 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a9f576 _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa3ac38c2 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xa3ac4e90 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3ba9249 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xa3bd2586 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xa3c34ebe _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0xa3c4ebe6 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xa3c6b95f __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xa3c7f4eb _RNvXs15_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i16x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa3c9d31a _RNvXsj_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIterNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint +EXPORT_SYMBOL_GPL vmlinux 0xa3e5d667 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xa3e7a8b7 _RNvXsN_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f76dbf fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xa3fbd26e __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa4032be2 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xa407f176 _RNvXs1t_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12fxregs_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa40addf7 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41ee3e1 __rg_alloc_zeroed +EXPORT_SYMBOL_GPL vmlinux 0xa429135d __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa435606c devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0xa435f32c dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0xa43e4ba6 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44c575f cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xa45072ca regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45e6d7d pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xa46a4f52 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xa46c9300 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xa46c9bdd _RNvXsc_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa46ca285 _RNvMs4_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugSet5entry +EXPORT_SYMBOL_GPL vmlinux 0xa472e3f4 _RNvXs2I_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12execute_workNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa473b33d sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b6da0b _RNvXsZ_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4i8x8NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa4be416e vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4df5b3a irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xa4e48820 acpi_quirk_skip_serdev_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xa4e7d082 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xa4e8b6c7 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa4f76360 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xa4fc338c _RNvXsh_NtCs9WMcp1Hn5Bv_4core3fmtcNtB5_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa50e3cdd __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xa518be9d dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xa52c421c _RNvXs8_NtCsiTPnVqBGVaY_6kernel3strNtB5_12RawFormatterNtNtCs9WMcp1Hn5Bv_4core3fmt5Write9write_str +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa533fef4 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xa538518f iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa55986ab phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xa5619776 _RNvXs0_NtCs9WMcp1Hn5Bv_4core6futureNtB5_8ResumeTyNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa561f112 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xa576b1cb dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev +EXPORT_SYMBOL_GPL vmlinux 0xa5ac19f5 _RNvXsg_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_21FromBytesWithNulErrorNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa5b721f7 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5cb971e dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa5ccab7e __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xa5d19d7d bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e6c1e5 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5fdcdb5 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0xa5ffefac _RNvXsu_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB7_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa610e842 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa614acf0 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xa616a2f7 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xa6370b1c vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0xa63f809c xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xa64041ae _RNvXs4_NtCs9WMcp1Hn5Bv_4core4timemINtNtNtB7_3ops5arith3MulNtB5_8DurationE3mul +EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0xa6529d3e iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa656e392 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa65efb51 _RNvXsf_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_10hlist_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa6618e9c regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xa67c5576 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xa68576e8 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0xa68c7a28 _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_14ParseCharErrorNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa68cd018 _RNvXs22_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_13EscapeDefaultNtNtBa_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa69b134b devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a1f4b9 _RNvXsg_NtCs9WMcp1Hn5Bv_4core3fmtcNtB5_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk +EXPORT_SYMBOL_GPL vmlinux 0xa6a9aa77 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0xa6b00fc2 perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b88e6f _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0xa6e1914f balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e387c8 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6e8cd14 _RNvXs9_NtCs9WMcp1Hn5Bv_4core4charNtB5_11EscapeDebugNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa6e8d2ad of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xa6f085c3 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xa6f1f598 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xa6fa85d6 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xa70752da acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70e8b9e _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3str5errorNtB5_9Utf8ErrorNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa70edb67 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa712e557 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xa718f74f _RNvXso_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_9va_formatNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa71cf428 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa723fd6a perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xa72631fe pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa7363a97 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xa74cb8cb _RNvXs31_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14percpu_counterNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa75dd5de dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa76ebe68 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa7785c23 _RNvXs2X_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25uprobe_task__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa77d04e5 _RNvXs7_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impiNtB9_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa78f89e6 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xa7995a37 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa7d44e81 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xa7ed2a19 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xa7f91ac1 _RNvXsI_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB7_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa82f2474 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xa834972a _RNvXsd_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4u8x4NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa839fea1 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xa849453f md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xa84c7295 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa851c7d0 _RNvXsu_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m512iNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa856e30c _RNvMs6_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugMap6finish +EXPORT_SYMBOL_GPL vmlinux 0xa85b7aac _RNvXss_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_16static_key_falseNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa85c51de _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3str5errorNtB5_14ParseBoolErrorNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa8636473 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa8691f15 _RNvXs1R_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_20SplitAsciiWhitespaceNtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa86c2aae ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xa86e9971 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0xa87435b2 _RNvXs4h_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6i32x16NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa87ed865 _RNvMs5_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_9DebugList6finish +EXPORT_SYMBOL_GPL vmlinux 0xa8818535 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next +EXPORT_SYMBOL_GPL vmlinux 0xa8860877 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xa88c3eba dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xa890067a devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa89e6d17 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xa8a3315e ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xa8a421c3 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8b7cc46 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xa8be3ba8 apic +EXPORT_SYMBOL_GPL vmlinux 0xa8c83bde dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xa8d11a73 _RNvXs2C_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15debug_obj_descrNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa8d4b531 _RNvXs3s_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18vm_userfaultfd_ctxNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa8d64da4 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa8eba942 _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0xa8ef3555 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8f11ebe crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa9017069 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xa90c5691 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa91464bf _RNvXs2F_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12delayed_workNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa931a61d pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94408b3 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xa94410fd gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xa94c1463 _RNvXsl_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imptNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa9522baf phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xa952792d _RNvXs2E_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11work_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa9559a85 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa95f3ae8 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9887bdc irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xa9899d14 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa9955972 vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9b35595 _RNvXsu_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa9d6fa94 acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0xa9da12fc _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_21FromBytesWithNulErrorNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa9dac2e0 _RNvXs2A_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_19system_counterval_tNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa9e05277 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa9e8a623 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xa9ef8284 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xa9f4b303 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xaa026402 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xaa09612d security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xaa09bd0d sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xaa1d40dc regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xaa1d74f6 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xaa1e35e1 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xaa3db5c5 _RNvXs14_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11pv_lock_opsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xaa4ab7ae _RNvXsf_NtCs9WMcp1Hn5Bv_4core3fmteNtB5_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaa9f4f5d devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0xaaa2c5e9 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaad83ec led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xaab2a70f PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xaab6d11c _RNvNtCs9WMcp1Hn5Bv_4core3fmt12USIZE_MARKER +EXPORT_SYMBOL_GPL vmlinux 0xaab7f7b5 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0xaabdef37 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xaac8dfde crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xaad8e7e7 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xab02021d devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xab05071d _RNvMs1_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_11DebugStruct6finish +EXPORT_SYMBOL_GPL vmlinux 0xab0d8ed2 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab3fbb6d _RNvXsn_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToUppercaseNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xab46d50b _RNvXs1j_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13msr_regs_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xab51b57e led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xab5a5b97 _RNvXsa_NtNtNtCs9WMcp1Hn5Bv_4core9core_simd5masks9mask_implhNtB5_11ReverseBits12reverse_bits +EXPORT_SYMBOL_GPL vmlinux 0xab7ae936 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xab896d84 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xab9c75d2 _RNvMNtCs9WMcp1Hn5Bv_4core3f64d8classify +EXPORT_SYMBOL_GPL vmlinux 0xab9dc82d sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xaba4f694 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xabb7e762 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xabc06751 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc3c6ef iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc70962 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xabd116d1 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xabde4787 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xac0fe8cd dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xac11fa38 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xac25021a __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xac306cd7 _RNvXs2H_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15workqueue_attrsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xac334ed2 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xac3b6558 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xac42ac8b rust_helper_BUG +EXPORT_SYMBOL_GPL vmlinux 0xac4ec613 _RNvNvMNtCs9WMcp1Hn5Bv_4core3f64d9from_bits13ct_u64_to_f64 +EXPORT_SYMBOL_GPL vmlinux 0xac6016de crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xac66dcbb mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac6da31a create_signature +EXPORT_SYMBOL_GPL vmlinux 0xac7926eb irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xac874d9b irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xac8c1670 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xac8cba47 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xac9c49a0 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xacb3c554 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc60acd _RNvNvNtNtCs9WMcp1Hn5Bv_4core5slice3raw18from_raw_parts_mut8comptime +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacd16ee7 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xacda1fba usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xace19aa5 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xace21fea xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xacea1edc l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xacfcc27c devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xacfd4bdc devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xad03f46f i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xad098567 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xad09d8a4 _RNvXs1_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtNtBO_3str5error9Utf8ErrorE4from +EXPORT_SYMBOL_GPL vmlinux 0xad0b44bd __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0xad100dbd devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xad12ee28 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xad1b09b9 _RNvXs1b_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25__fpstate_64__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xad2257cf i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0xad263357 _RNvXsm_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToLowercaseNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xad266cb3 _RNvXsN_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_5u32x2NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xad355cad nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad4fcf7c srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad651272 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xad7fab88 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad852eb9 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xad91fdeb _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0xad929798 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xad95e4da addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xad9827ba _RNvXs2z_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_20system_time_snapshotNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadb6d3d8 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStrNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xadd6fa90 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xade12575 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xae039268 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xae04b8e4 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae12ae8a _RNvMs9_NtCs9WMcp1Hn5Bv_4core3numj14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0xae1feb86 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xae2d22a8 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xae2f8500 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xae33cc11 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae4572d2 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xae5746ae platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xae5cf56a devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6c8357 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae89ff33 _RNvXsl_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIterNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xae9852a0 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xae98e2b0 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xae9f0145 _RNvNtNtCs9WMcp1Hn5Bv_4core3str6traits23str_index_overflow_fail +EXPORT_SYMBOL_GPL vmlinux 0xaea73cd9 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeb04397 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xaeb13b34 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xaebbe020 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xaecac6da device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xaed93375 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xaedc81cb rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xaee00c02 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xaef4b423 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0xaef5df38 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xaef7b92c sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xaefa413c led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf10f5b5 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xaf38da58 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf3e0e87 device_del +EXPORT_SYMBOL_GPL vmlinux 0xaf3f4f10 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf5a841d mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xaf679187 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xaf763154 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf855309 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xaf8eb32c ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xafa2c7b7 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xafb22802 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xafb35a02 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xafb39d0b _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0xafc6c5d9 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe76cb6 _RNvXsh_NtCs9WMcp1Hn5Bv_4core3numNtB5_10FpCategoryNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xaff45f82 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xaff4c4f4 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter10sign_minus +EXPORT_SYMBOL_GPL vmlinux 0xaffa6361 _RNvXsl_NtCs9WMcp1Hn5Bv_4core3numlNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xb00141f3 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xb0126bbb ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xb019256f _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb01ab555 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb01df07e __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02c0a93 _RNvXsS_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_34jailhouse_setup_data__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xb02d7491 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xb0315dd4 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb033a08d _RNvXs3m_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_33folio__bindgen_ty_3__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xb03862a3 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xb0391831 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xb049f265 _RNvNvMsj_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroU6413new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0xb059d05a blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xb062cfaa cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xb0641384 _RNvXsp_NtNtCs9WMcp1Hn5Bv_4core9core_simd5maskssNtNtB5_6sealed6Sealed2eq +EXPORT_SYMBOL_GPL vmlinux 0xb069bd8c _RNvXsf_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToUppercaseNtNtNtNtB7_4iter6traits12double_ended19DoubleEndedIterator9next_back +EXPORT_SYMBOL_GPL vmlinux 0xb06bb14c tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xb070cdac register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb080c796 pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0xb082c996 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xb0850f96 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xb0938c71 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xb09f32b8 spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0xb0b689c3 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xb0b80a87 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c6f8c7 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xb0cabcb2 __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0xb0cb983e devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0daad8b __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0ece15b __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xb1053645 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb10ee07d ata_eh_freeze_port +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 0xb1373739 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0xb14af239 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb14b0526 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb15cdd72 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb17a1230 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xb17bfcc7 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xb18772ea blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xb18dbda9 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xb1b1ab27 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1d440fe __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb1d5fcca fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xb1d8a29a __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f45881 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb2150d3c regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2420636 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xb2425ebd regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xb255c1af _RNvMNtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB2_9PanicInfo7payload +EXPORT_SYMBOL_GPL vmlinux 0xb258b1bc xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26655df sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27b87a9 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xb285272b nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb2891006 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb29cb2cd tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xb29ed38b spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb2b6cbd2 _RNvMNtCs9WMcp1Hn5Bv_4core3numa14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0xb2c03b56 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c86b51 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb2d715f2 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xb2e038ed devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb2fff1c9 pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0xb300aae4 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb308b43a tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full +EXPORT_SYMBOL_GPL vmlinux 0xb30fc3cd xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xb31a1876 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xb3238242 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb32c0813 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb33352ef bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xb335b9de vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xb360ca5e vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xb36e5f6a _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3mem11valid_alignNtB4_10ValidAlignNtNtB8_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb36ebb23 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xb376c905 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xb3784cdb _RNvNvXs1_NtNtCs9WMcp1Hn5Bv_4core5slice5indexINtNtNtBb_3ops5range5RangejEINtB7_10SliceIndexSpE13get_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0xb387054a dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xb3a44f32 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xb3a9b128 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xb3bb2d92 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xb3c94ac1 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core4task4wakeNtB5_7ContextNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb3f01d9e device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xb3fba3b0 _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_11SipHasher13NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb404fb7e _RNvXs1D_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7fpstateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xb4141590 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xb420d866 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb426303b iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xb435be36 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xb43e58fc pci_msix_can_alloc_dyn +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 0xb45586cf ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xb46331a2 _RNvXsb_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb4658f34 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xb466d74a pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xb4697e13 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb47321df crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb4772fbb spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb47f8faa __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xb4824b5f clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xb48d60fd ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb491a159 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb4954462 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xb4a54464 _RNvNtCs9WMcp1Hn5Bv_4core5ascii14escape_default +EXPORT_SYMBOL_GPL vmlinux 0xb4aa00f9 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4afbad8 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4cf12e3 dev_get_regmap +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 0xb5076797 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xb5079a81 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list +EXPORT_SYMBOL_GPL vmlinux 0xb50b5713 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xb5185f0f _RNvXsi_NtCs9WMcp1Hn5Bv_4core3numiNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb52526ef usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xb533ec14 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb53db240 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0xb556f634 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul +EXPORT_SYMBOL_GPL vmlinux 0xb56dbdac lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xb5812a58 _RNvXsz_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToLowercaseNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb585d167 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xb59d8041 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5ad2c15 _RNvXsm_NtCs9WMcp1Hn5Bv_4core5arrayNtB5_17TryFromSliceErrorNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb5ae4116 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xb5b3706b rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb5bbaa15 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb5cec2e4 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xb5d6898e __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xb5e02b15 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xb5f55503 devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xb600f96c buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0xb6045fef _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index20into_range_unchecked +EXPORT_SYMBOL_GPL vmlinux 0xb6108d55 _RNvXs1d_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62cd855 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xb6317ecc iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb6401e47 _RNvXs4F_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u64x8NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb64cc1b4 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb670de43 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb68eedf3 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb6b89fcb tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xb6bb7400 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xb6bc6564 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xb6bcb58b ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xb6bee92e _RNvMNtCs9WMcp1Hn5Bv_4core3stre12encode_utf16 +EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst +EXPORT_SYMBOL_GPL vmlinux 0xb6d06764 __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0xb6d8b1ac __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xb6dfd342 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb6f02994 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xb6f39b2c __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xb6faa74d usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xb6fb9d7e netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xb6ff4f14 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb706cb6e iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb727f275 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xb72de5db tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb7430438 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb74c99ca xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xb74eb32b extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb76c639c __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb77b8a14 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb7827877 _RNvXs3l_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_19folio__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xb78a0c0c pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb78c3a64 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7927808 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xb7a2d1ae phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xb7a31843 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7da7fdd ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xb7e85506 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xb7f61fd0 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb80f61d5 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xb814d7bb dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xb820d855 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb84182e0 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xb84ecefd bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb858c223 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xb8609463 _RNvXs38_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xb879762c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8814a9e crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xb88bab1c gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb896dd12 _RNvXs1I_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11cpuinfo_x86NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xb8981ed2 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8ab68df intel_microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0xb8b1c6c8 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8b6f9a1 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8dfa615 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xb8e6de74 _RNvXs1v_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11reg_512_bitNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb9067f1f __rust_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb91262e8 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xb913d376 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xb939175c rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xb93e1d56 device_register +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb965fb4f dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb96dc23c mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xb97356eb devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb987c08b strp_init +EXPORT_SYMBOL_GPL vmlinux 0xb9996bdd register_fprobe +EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0xb9b243ed _RNvXs5_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9ArgumentsNtB5_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bde69f bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xb9bf6f18 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c60d09 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xb9c787c1 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb9c94d9f _RNvXs3M_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11pglist_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xb9cacdb1 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xb9cb6b13 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d2637a attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xb9e8c13f rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xb9eee221 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xb9f04c7f pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xb9f946bc _RNvNvNtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x864sse219__mm_slli_si128_impl4mask +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba1141c5 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xba165172 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2a84a3 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2d9121 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xba335e9a _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strRNtB5_4CStrNtNtB9_7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xba360c16 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba4e0e36 acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0xba555d7f bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xba6dfc4f fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xba6fa260 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xba73e8a0 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB5_9Utf8LossyNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xba7425f1 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xba811bbf _RNvXsk_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_8AtomicI8NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap +EXPORT_SYMBOL_GPL vmlinux 0xba8f2498 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xba938d2d platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xba9507a4 _RNvNvMs16_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB8_11NonZeroI12813new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xba99f218 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xbab7633f regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xbab93e40 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabeeee8 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xbac14aaf spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbac77ef1 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xbac921b0 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbaca30f1 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xbae155f6 skb_morph +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 0xbafe3a92 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xbb01052d lwtunnel_output +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 0xbb1b7219 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xbb210cfa sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbb49ba95 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xbb49c596 devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id +EXPORT_SYMBOL_GPL vmlinux 0xbb64deaf fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6c9e7c iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb92d6a3 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb9b6c6a call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbbeef54 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xbbc0761d blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xbbc4e7c8 _RNvXs3y_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15lru_gen_mm_listNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xbbcfb649 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbe9eb40 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xbbfc3d3c xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xbc215103 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc281d84 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbc2b9d01 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbc2c0115 _RNvMNtNtCs9WMcp1Hn5Bv_4core3num3fmtNtB2_4Part5write +EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc49f7f3 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbc4f5fc6 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xbc54fa30 _RNvXs1t_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f64x1NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xbc5c4e54 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xbc5e5418 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xbc5f0513 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc62536a led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7b2ab1 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbc92596d intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0xbc94af02 _RNvXs4_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impxNtB9_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xbc98d8d9 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbca0eca2 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xbca3d8e5 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xbca7a7ab locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xbcb4f754 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcbe55c3 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc81fd4 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xbcca1852 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xbcd84267 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0xbcdcb937 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce12556 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xbcef6cdd __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbcefdff8 _RNvXs4L_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f64x8NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf7f0eb dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbcfb38a8 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xbcfc03cb _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0xbd0215ff _RNvXs4l_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroI16NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xbd043bc3 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd1d6c05 _RNvXsm_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3implNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0xbd286276 _RNvXs26_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25arch_tlbflush_unmap_batchNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xbd30758e _RNvMs2_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_10DebugTuple6finish +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd469db3 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xbd4c5e9b subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xbd4c810f vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xbd57a529 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xbd58984f xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xbd5d6e94 _RNvXs_NtCsiTPnVqBGVaY_6kernel5errorNtB4_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtBN_5alloc10AllocErrorE4from +EXPORT_SYMBOL_GPL vmlinux 0xbd6bc834 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd809da7 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbdab08e4 _RNvXs6_NtCs9WMcp1Hn5Bv_4core4charNtB5_11EscapeDebugNtNtNtNtB7_4iter6traits8iterator8Iterator4next +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 0xbdc0210b pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbdda8327 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbddeec9a serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xbdf8ebbe led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xbe0abffe pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xbe0e2eca _RNvMs5_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_9DebugList5entry +EXPORT_SYMBOL_GPL vmlinux 0xbe192ea3 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xbe260377 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xbe26bfa4 _RNvXsC_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB7_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0xbe2ba5e4 _RNvXs2W_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_39uprobe_task__bindgen_ty_1__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xbe3c1591 skb_mpls_dec_ttl +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 0xbe6e4c40 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw +EXPORT_SYMBOL_GPL vmlinux 0xbe748b1f intel_find_matching_signature +EXPORT_SYMBOL_GPL vmlinux 0xbe76e715 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xbe78310a _RNvXs3_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impmNtB9_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xbe87b014 _RNvXs2D_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5m8x16NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xbe897189 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xbe8f8b01 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xbe918043 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb3f6c4 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xbec3c80a _RNvXs_NtCs9WMcp1Hn5Bv_4core5asciiNtB4_13EscapeDefaultNtNtNtNtB6_4iter6traits12double_ended19DoubleEndedIterator9next_back +EXPORT_SYMBOL_GPL vmlinux 0xbec45b39 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xbec508b4 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbedc944a xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xbedd8939 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xbeddbf58 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xbee5382a isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbee6bada debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xbeea55db nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xbef58be6 _RNvXs3n_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_19folio__bindgen_ty_3NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xbef77eb6 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf25c428 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbf285462 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbf29101f _RNvXs2o_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10ma_topiaryNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf42a8b5 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf4baa6a pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xbf53a76c sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xbf621ebd fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xbf665900 iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbf6f9e08 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xbf710442 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0xbf7217ee dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xbf75801f pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbf8873a0 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xbfa46912 xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0xbfab6014 _RNvXsp_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impyNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0xbfaf008e iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xbfb82205 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xbfb8636f _RNvMs_NtCs9WMcp1Hn5Bv_4core3fmtNtB4_9Formatter3new +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd4967c usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbff9d27b fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc015d41b clk_register +EXPORT_SYMBOL_GPL vmlinux 0xc015e1de irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xc03932e0 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xc03efea6 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0xc0418bf0 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xc05bd3ff fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xc0651c5a virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xc067c991 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0xc06836fb _RNvXsG_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_41restart_block__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc06c844c srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xc06f64c5 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc08476c7 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xc089d36b __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc090cc14 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xc096f837 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xc099886c rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xc0a0e114 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0abed03 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0c2f869 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xc0d9fcac gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xc0dcaf62 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10b5b75 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xc10c0594 amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc1115f96 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xc112b387 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xc11d3d13 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0xc12c4197 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xc13564ac __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xc135b01b irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xc147e100 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc153ba0d tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc159214a usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xc160b7e7 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc172861f pci_vpd_alloc +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 0xc18fb5b4 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xc1944d57 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xc19887f0 _RNvXs2O_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14notifier_blockNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc1a4ce28 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xc1ad5dd5 _RNvXsh_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleINtB5_4FromzE4from +EXPORT_SYMBOL_GPL vmlinux 0xc1ae279b _RNvXso_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impxNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc1b29f9c thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xc1c12615 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xc1c6e6b6 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xc1cfe0ee debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xc1d4b59b fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc1d6f89e param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xc1f1943f handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xc1fbc512 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf +EXPORT_SYMBOL_GPL vmlinux 0xc20ab168 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0xc20b7288 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xc214295b crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xc21c779c klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0xc2234a9c evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0xc23aea79 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xc2497feb crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc2572ca6 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2663790 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc27ab54b _RNvXs_NtCs9WMcp1Hn5Bv_4core3anyDNtB4_3AnyEL_NtNtB6_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc28925f1 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc28a7d79 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc29954ae subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2a01e2d blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2c180b3 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2d6cc4c regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc2daa81a _RNvXs3e_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18page__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e918e6 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc2e9af8f irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xc2f47bbd da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xc2f62f9b _RNvXs8_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9FormatterNtB5_5Write9write_fmt +EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xc303f8c2 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xc3113677 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xc317428c __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xc318e98e devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc319abce devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xc3308056 _RNvMs_NtCs9WMcp1Hn5Bv_4core3nums14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0xc3337b7d _RNvXsv_NtNtCs9WMcp1Hn5Bv_4core9core_simd5masksiNtNtB5_6sealed6Sealed2eq +EXPORT_SYMBOL_GPL vmlinux 0xc3374127 _RNvNtCs9WMcp1Hn5Bv_4core9panicking19assert_failed_inner +EXPORT_SYMBOL_GPL vmlinux 0xc33834f0 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc33df36c xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc341d012 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xc34ba34a _RNvXs1c_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11__fpstate_64NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc35e6f86 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc37a7a49 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3824b6d _RNvXsa_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_32ftrace_branch_data__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc38add72 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xc38f3a14 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xc3b3c3f9 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cc4300 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cd6929 dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0xc3d9ef7a _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter5align +EXPORT_SYMBOL_GPL vmlinux 0xc3da4e1b mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e1021c __SCT__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc3e6f24b __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc3e992d5 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xc3e9a0cf _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB5_9Utf8LossyNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc4008d55 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xc424d851 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc429917a thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xc42bfb44 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc42f7496 _RNvMs3_NtCs9WMcp1Hn5Bv_4core3numi14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0xc437f5a4 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc439609f _RNvXs5_NtCs8dagVACJQAP_5alloc5allocNtB5_6GlobalNtNtCs9WMcp1Hn5Bv_4core3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc441e41c _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc44377e1 _RNvXs3v_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_37mm_struct__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc443c206 __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config +EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister +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 0xc47407f5 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xc475642a inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xc4794ce1 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc47e503e ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xc47ea0f4 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xc4852127 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc49153ec sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc49f5bfd get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xc4a06278 _RNvXsq_NtNtCs9WMcp1Hn5Bv_4core3fmt3numNtB5_8LowerHexNtB5_12GenericRadix5digit +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4c24984 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xc4cc3a99 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc4d5c576 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f35fdd l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xc4f52d47 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xc4fe5054 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xc506bb02 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xc5080eb5 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xc50b32f6 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc50f3f59 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc51941cc _RNvXs0_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtNtBO_3num5error15TryFromIntErrorE4from +EXPORT_SYMBOL_GPL vmlinux 0xc532627d bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc554deee component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xc55f5b37 _RNvXs2V_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11arch_uprobeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc572f928 virtio_config_changed +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 0xc58ab72f _RNvMNtNtCs9WMcp1Hn5Bv_4core5slice5asciiSh12escape_ascii +EXPORT_SYMBOL_GPL vmlinux 0xc5949034 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xc59a6b2b cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xc59de508 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5ad7a85 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc5b59078 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc5db6763 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xc5dfd26d device_create +EXPORT_SYMBOL_GPL vmlinux 0xc5e80bb9 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xc5eb89ad __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc5f19c31 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xc6009846 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xc6011122 _RNvXsU_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_11boot_paramsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc6012313 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61fb33d xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError +EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xc62f9b2f __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xc634132b fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xc6550c51 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xc6569014 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6606018 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0xc6622435 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xc6629f1d vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0xc668c518 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc670552f rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc67d8794 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc6862a2b devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xc690cb8e virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xc69211c5 _RNvXs5_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith9MulAssignmE10mul_assign +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 0xc6ad0400 devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xc6b9c445 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0xc6d3c911 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6ea63e0 _RNvXs1a_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc6f50d00 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc6fd26d1 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xc6fee245 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6fee345 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xc6ff9c0d pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xc7014c45 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70b21dc _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index16into_slice_range +EXPORT_SYMBOL_GPL vmlinux 0xc70c3b1e iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xc7151b29 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core4task4wakeNtB5_8RawWakerNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc71bde56 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7360b22 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc7379dec regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xc73f5558 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xc7473e47 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xc74dc62d tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xc752ca2b blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xc76324af blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xc767d7ae regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0xc7807fab irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xc7812a60 _RNvXsn_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_15ratelimit_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc78e0c99 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xc79024dc ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xc790e3c9 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc7973a87 _RNvXs1x_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_30mpx_bndcsr_state__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a24eb2 _RNvXsa_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impsNtB9_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7b2b177 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xc7bdfb25 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xc7bf36cb serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7e16a4f _RNvXsB_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7f0693f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc7f166ad pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xc7f34c8e vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc803843b serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xc8058a66 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8126340 clear_mce_nospec +EXPORT_SYMBOL_GPL vmlinux 0xc821aee2 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc8365a04 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xc836ae8c vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc83dce71 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xc8455491 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xc846be10 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xc8511d80 _RNvNvMNtCs9WMcp1Hn5Bv_4core5sliceSp22split_at_mut_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0xc853b3b4 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc863fb32 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xc86d05b5 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc87dccd8 dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets +EXPORT_SYMBOL_GPL vmlinux 0xc89fad74 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xc8a1fff7 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc8a408be of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xc8af9ba6 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8cc5670 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0xc8ce8143 blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0xc8d73b8f __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc8d9395e extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8dae8d6 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8f31ee5 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xc8ffd95b fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xc904a21b iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xc90a12d6 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xc9162261 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xc91ca549 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc922d828 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xc933b5f1 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc9373273 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xc93a2854 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc93f42c7 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xc94420c4 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xc952327c tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xc9555595 _RNvXs6_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith3DivmE3div +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9598312 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xc959f8bb ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xc95e4c32 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9661c57 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStrNtNtB9_3cmp9PartialEq2eq +EXPORT_SYMBOL_GPL vmlinux 0xc9699ab5 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xc97e1eb2 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9932f98 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xc9992606 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xc99a434a crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9b39227 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc9b53ce4 _RNvXs4m_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroI32NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xc9b94524 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9c7e1eb da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9cd7734 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9da03d2 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xc9dc0c1a inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc9ea5225 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xc9fdbe45 pwm_lpss_byt_info +EXPORT_SYMBOL_GPL vmlinux 0xca02208e sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xca0592da hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xca12a1da lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xca1773f8 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xca21c9fc ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xca2ce1d8 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xca2edb3d adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xca41e64e fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca4ac80b _RNvXs1C_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12fpregs_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName +EXPORT_SYMBOL_GPL vmlinux 0xca5547bf pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xca5a784d blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xca5f792c dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xca667e8e i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81f9d3 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xca92c8db _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index25slice_index_order_fail_ct +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcaab1ce3 _RNvXs2_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits8iterator8Iterator3nth +EXPORT_SYMBOL_GPL vmlinux 0xcaad96f7 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xcaae0bda ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xcabb8e1c irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcaccf662 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcaeba767 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcaf7bee0 unregister_fprobe +EXPORT_SYMBOL_GPL vmlinux 0xcaf97f56 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcb006a7f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb21bff7 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2c12a5 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xcb3367dc _RNvXsV_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_19paravirt_patch_siteNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xcb349fa4 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xcb3b2224 vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0xcb4aa00c spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb5dab37 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xcb73ffe0 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xcb87b55a dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcba2e9a3 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xcbaa29af __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xcbab9f9c tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xcbb08773 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbbdabdd irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xcbbe7665 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xcbc9b20d __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcbd55157 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcbd70ff8 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xcbe25b30 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xcbe3d1e7 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee2f96 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xcbfb6378 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xcc20580e kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc332a0b max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xcc33db21 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc5366a8 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xcc5f9c2d _RNvXs19_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25__fpstate_32__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xcc61e3c4 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xcc62c46a platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xcc65104d fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xcc78dc65 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc7c7684 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xcc92191d fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc9281f4 _RNvNvNtCs9WMcp1Hn5Bv_4core10intrinsics19copy_nonoverlapping8comptime +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc9af1fc usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xcca2b4f3 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccad55af dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xccb40bb6 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xccb7d96b crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xccc49087 _RNvXs1Z_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_8rwlock_tNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xccc66661 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xccc79817 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd3f2f7 _RNvXsj_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIterNtNtNtNtB7_4iter6traits8iterator8Iterator4next +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccdf1582 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xcce9bd20 _RNvXsw_NtCs9WMcp1Hn5Bv_4core4charNtB5_18EscapeDefaultStateNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xccedf384 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf7c212 clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0xccfca52b tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xcd16cd21 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule +EXPORT_SYMBOL_GPL vmlinux 0xcd3a364d regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xcd4009c8 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xcd422997 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xcd4c581e _RNvXsW_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB7_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0xcd54cfd5 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd70e011 vmf_insert_pfn_pmd_prot +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 0xcda9c2b0 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdde4dc0 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdf2b3bc set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xcdf5c64b _RNvNvMsL_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroI1613new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0xcdff28ea cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xce08d53a cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce0f4bbb vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xce13e4d1 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_15TryFromIntErrorINtNtB9_7convert4FromNtB11_10InfallibleE4from +EXPORT_SYMBOL_GPL vmlinux 0xce19bc40 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xce1a91e9 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xce216cbf udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xce240a1c bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xce3767e7 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xce3d9906 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core5alloc6layoutNtB5_6LayoutNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xce53d281 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xce543415 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce7d3f92 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xce9ca3c2 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xce9f84df regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xcea0ba53 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xceab7325 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb28405 _RNvMs3_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStr19from_bytes_with_nul +EXPORT_SYMBOL_GPL vmlinux 0xceb577e7 _RNvXs2L_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9srcu_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xcec58997 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xcec9122d _RNvXNtCs9WMcp1Hn5Bv_4core5asciiNtB2_13EscapeDefaultNtNtNtNtB4_4iter6traits8iterator8Iterator4last +EXPORT_SYMBOL_GPL vmlinux 0xcecb2223 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xcecdae4a _RNvXsF_NtCs9WMcp1Hn5Bv_4core4charNtB5_16TryFromCharErrorNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xced21618 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xced90f6f _RNvMNtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB2_9PanicInfo8location +EXPORT_SYMBOL_GPL vmlinux 0xcede84a5 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee444ef class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xcee882dc pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcef0cbc0 _RNvXsb_NtNtNtCs9WMcp1Hn5Bv_4core9core_simd5masks9mask_impltNtB5_11ReverseBits12reverse_bits +EXPORT_SYMBOL_GPL vmlinux 0xcef39de3 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xcef5cef9 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcf018828 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xcf02a0bb _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data11conversions8to_upper +EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xcf063f6c dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xcf11f711 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xcf18a37a crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xcf2392c9 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xcf2500f9 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcf2b93c8 __SCT__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xcf3ead5a compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcf4b022e crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xcf4cc425 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xcf64ca11 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xcf6649f0 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xcf6d1321 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xcf713ae6 _RNvXsy_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_32ddebug_class_param__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xcf76d00f devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0xcf858939 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9alternate +EXPORT_SYMBOL_GPL vmlinux 0xcf883b43 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf991dba __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xcfad3a37 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfcac39a get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfd48e12 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xcfde9210 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xcfe93893 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xcfea22ee hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcfff1bd7 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xd0045817 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd01b6cbd watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd023b3b8 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xd036006e i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xd03acc89 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04535d5 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd0511875 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd094c8aa gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xd097d7f1 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xd098acf5 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd09ffa81 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xd0bf0c6c serial8250_request_dma +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 0xd0de6075 _RNvXs2R_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_17raw_notifier_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xd0f891fd uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd10c2e1a rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xd10e909c genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xd117a4bb rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xd11dd9bf acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xd132352b device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xd135fcc8 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd13e4af8 dma_fence_unwrap_next +EXPORT_SYMBOL_GPL vmlinux 0xd13e8c34 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xd14755aa _RNvXsR_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB5_11CharIndicesNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd147f487 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd14833ba pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xd152f669 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15a103e nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xd1704878 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xd17e6deb evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xd19974bb xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xd1c00e2b __put_net +EXPORT_SYMBOL_GPL vmlinux 0xd1c0a357 intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1cc1f00 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd1cdeabf proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1ece2ac dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f660d2 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xd1f71d66 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xd2096d6a __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd2132ead acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd220f4e8 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xd228030e _RNvXs2e_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14maple_range_64NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd22929f9 _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd231e5e3 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xd2328f89 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xd233a9cb dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd257a27c _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd25a7cdf gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd265801d edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd26f8a1c pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2780326 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xd27bf8cf _RNvXsj_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_5u16x2NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd28e4c56 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2bd0ddf __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xd2bf0b13 _RNvXs2J_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10rcu_cblistNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd2cb4c0d fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xd2cc583e inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2e13dd1 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xd2ea0189 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xd2f5dcd4 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd302621b divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0xd315e250 switchdev_bridge_port_offload +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 0xd328e2e5 _RNvXs2Y_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11uprobe_taskNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd34a596a regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xd34b335a dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xd3622748 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd36d86f6 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xd374f0a6 _RNvXsD_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_10SearchStepNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd38ff8b8 _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b47ca6 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xd3b5d633 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b6b6bf sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xd3b738a5 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xd3c0944f _RNvXse_NtCsiTPnVqBGVaY_6kernel3strNtB5_16CStrConvertErrorNtNtCs9WMcp1Hn5Bv_4core3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd3c4f4e1 _RNvXs8_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impaNtB9_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd3d26585 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xd3d8d485 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xd3e9d878 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f58446 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd409ec87 _RNvXsK_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB7_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd416cfec perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0xd4174e94 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd4326dbc dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xd43cd74a blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xd43e9981 _RNvXs1_NtCs8dagVACJQAP_5alloc11collectionsNtB5_15TryReserveErrorNtNtCs9WMcp1Hn5Bv_4core3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd4417381 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xd443b8d2 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xd44916cd _RNvXs22_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_20optimistic_spin_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44ab017 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xd44f058a _RNvXs33_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_60page__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd4670eb8 acpi_unregister_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd46ec007 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xd47076ac devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xd4761450 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd49dfe18 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xd4a6d119 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xd4a7aabb of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd4b45c94 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4bf18ad disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c92d28 _RNvXs3_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith3MulmE3mul +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4ecac57 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xd4ede215 _RNvXs4b_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6u16x32NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd4fab3de phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xd506583e devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xd50f6772 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xd51a5ff4 _RNvXsp_NtCs9WMcp1Hn5Bv_4core3numhNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xd51fb62e phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd5306e75 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd5383b6f _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data2cc6lookup +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd5450375 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xd5516d2f regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd553961a hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd58ac072 _RNvXNtCsiTPnVqBGVaY_6kernel9allocatorNtB2_15KernelAllocatorNtNtNtCs9WMcp1Hn5Bv_4core5alloc6global11GlobalAlloc5alloc +EXPORT_SYMBOL_GPL vmlinux 0xd58e6d65 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0xd593c493 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xd597e7d3 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xd5980f11 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a94b12 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xd5ad193e pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd5b403c3 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xd5b672aa regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xd5c713c0 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xd5c8975d dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd60a92de xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0xd61551ea is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xd61cfbbf unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xd61d4978 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_15TryFromIntErrorNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd6249e99 _RNvXs4_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtBO_3fmt5ErrorE4from +EXPORT_SYMBOL_GPL vmlinux 0xd634e530 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xd640b9c0 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd669ca3e skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xd670a3cf ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd673ee17 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xd6757bb1 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xd67e1477 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd6850949 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xd68c9ab7 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd69c0ac7 _RNvXsN_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_31edd_device_params__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd6a868f7 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6b30ff5 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0xd6b503ab ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd6b7d8e7 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xd6b8dc1c _RNvXs2l_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_38maple_node__bindgen_ty_1__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd6ba81dc devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xd6c8ce1b __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xd6c967a7 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xd6df01f7 perf_get_hw_event_config +EXPORT_SYMBOL_GPL vmlinux 0xd6e172f5 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd6e46e6f _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStrNtNtB9_3cmp10PartialOrd11partial_cmp +EXPORT_SYMBOL_GPL vmlinux 0xd6e4d004 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xd6e9108a pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd6ed25f0 acpi_register_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0xd6f9244c pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7064707 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xd7066540 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd70c43b1 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd70e5769 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd712233b kill_device +EXPORT_SYMBOL_GPL vmlinux 0xd7224014 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72aa5c3 netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7362416 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd7655ae6 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76a2af9 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xd76ba55a sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xd776019c _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index25slice_index_order_fail_rt +EXPORT_SYMBOL_GPL vmlinux 0xd776b0f5 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xd77fa6a8 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xd780d953 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xd79c9e5e fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xd79d11c0 _RNvNtNtCs9WMcp1Hn5Bv_4core3str8converts13from_utf8_mut +EXPORT_SYMBOL_GPL vmlinux 0xd7a127bd dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd7acc4e6 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xd7b6f08d srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7da7125 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd7db4470 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xd7e5c7b1 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd7f01dc6 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd7f13405 _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd80423ce usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd81e132b pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xd83403c7 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xd839f093 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd83e3ae9 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd860f10f xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd86e6bcc rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd87d9561 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd885958c _RNvXs29_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7rb_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd88defca __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0xd8975cf3 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd8bd8358 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xd8c6ffaa iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xd8ced26b _RNvXsM_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB7_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8e71319 __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xd8e75158 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xd8f71746 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd90321cc fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xd9189986 bpf_preload_ops +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 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd982ca16 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xd98a2ccd sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo +EXPORT_SYMBOL_GPL vmlinux 0xd99a654b regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xd99f9eba dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xd9ad0ff6 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xd9c2d965 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xd9cb97c1 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xd9cc6e45 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9da4568 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd9e00400 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9ef3756 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xd9f91bbf __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd9f95b0f _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd9fc0aef gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9fe9bad skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda048441 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda09ce0f _RNvXs1z_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u8x16NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xda0d1713 vcap_rule_get_counter +EXPORT_SYMBOL_GPL vmlinux 0xda19cc9b inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda200416 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xda21ea62 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9write_str +EXPORT_SYMBOL_GPL vmlinux 0xda24161a _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_10PadAdapterNtB7_5Write9write_str +EXPORT_SYMBOL_GPL vmlinux 0xda258721 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xda2a3564 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xda2df893 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xda3012af irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xda3102ae l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda42fad5 _RNvMs6_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugMap3key +EXPORT_SYMBOL_GPL vmlinux 0xda57d906 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xda76b4f2 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda79b1fa rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda8c5f03 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda8fae3e regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xda91a26a devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xda9ce413 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa28b31 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xdaab6baf acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdacd5ff7 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xdadaa09a pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xdae497cb bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xdae5beb5 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xdaef319a tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xdaefb693 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xdaf32d95 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5ccf5 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xdafb1b2d _RNvXs2_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtCs8dagVACJQAP_5alloc11collections15TryReserveErrorE4from +EXPORT_SYMBOL_GPL vmlinux 0xdb008395 _RNvXsF_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0xdb0c0014 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xdb12b225 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xdb1aaf9b arch_is_platform_page +EXPORT_SYMBOL_GPL vmlinux 0xdb285a9c regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdb468afd dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb5908ba irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xdb614f00 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset +EXPORT_SYMBOL_GPL vmlinux 0xdb7a07d1 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xdb87f300 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xdb8848d5 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xdb88e3ab cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb996415 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xdba05195 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xdba9202a devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xdba9d8ab pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xdba9f9ec _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0xdbb041c5 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xdbb4fc04 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdbd234c3 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe22251 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc087242 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xdc09464b xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xdc108cd9 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xdc12bd5b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xdc12c5e9 _RNvXs2l_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f32x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc229dab _RNvXsz_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_18ddebug_class_paramNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xdc230636 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xdc29692a irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdc2aa97c rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xdc3733f4 _RNvMsc_NtCsiTPnVqBGVaY_6kernel3strNtB5_7CString12try_from_fmt +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc4ac92b usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xdc4c060a ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xdc565024 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xdc5af4ad ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xdc5b62a5 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc75d916 _RNvXsc_NtNtCs9WMcp1Hn5Bv_4core5alloc6layoutNtB5_11LayoutErrorNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xdc79ad04 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc8088f8 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc85811c crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xdc8ba893 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9c8e68 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdc9fe58c call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xdca8bb99 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xdcafc602 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xdcb48c94 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xdcb9e87d serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xdcc25097 _RNvMs3_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStr6to_str +EXPORT_SYMBOL_GPL vmlinux 0xdcc28199 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xdcc3d48c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xdcc5870f lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xdcce2b7d pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xdcd954f8 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xdce654c7 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err +EXPORT_SYMBOL_GPL vmlinux 0xdd015021 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd0bd827 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd251b04 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd48cbbe _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0xdd52cd31 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xdd54eb2e unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd8a7d41 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xdd90c328 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd97460b crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xdd97bc80 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh +EXPORT_SYMBOL_GPL vmlinux 0xdda4b50c spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xdda4f631 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xdda8c7a7 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9sign_plus +EXPORT_SYMBOL_GPL vmlinux 0xddb5badf devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xddbd8368 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcf35e9 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xddd35725 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xdde41612 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xddf4d465 _RNvXsd_NtNtNtCs9WMcp1Hn5Bv_4core9core_simd5masks9mask_implyNtB5_11ReverseBits12reverse_bits +EXPORT_SYMBOL_GPL vmlinux 0xddf8baa2 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde0d61f7 _RNvXs2n_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10maple_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xde0de266 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xde154aee _RNvNvMsE_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_9NonZeroI813new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde39c6b8 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0xde473ad4 _RNvXso_NtCs9WMcp1Hn5Bv_4core4charNtB5_16TryFromCharErrorNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xde592219 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data1n6lookup +EXPORT_SYMBOL_GPL vmlinux 0xde5b8270 _RNvXsO_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicI64NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xde65aa5c set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde7cf618 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xde83b857 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xde9049e0 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdea46055 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xdea91c1b acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xdea998bc __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdeb3fd5a pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xdeb47214 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xdeb9c1be _RNvXsd_NtCs8dagVACJQAP_5alloc11collectionsNtB5_19TryReserveErrorKindNtNtCs9WMcp1Hn5Bv_4core3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xdec07267 _RNvXsb_NtCs9WMcp1Hn5Bv_4core3fmtzNtB5_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xdeccc6e0 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xded227fe rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xded3cb06 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xdee92410 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xdeed4956 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf003122 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0xdf0c7db3 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0dbfd1 disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1367cc tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf211bda __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf25874d udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2f1051 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack +EXPORT_SYMBOL_GPL vmlinux 0xdf3ec9f8 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf4d687b __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xdf509f89 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xdf76b57d tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xdf7e693c pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free +EXPORT_SYMBOL_GPL vmlinux 0xdf90dfe7 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xdf97eff3 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xdfae96c0 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xdfc8bcd3 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfda2bae _RNvNtNtCs9WMcp1Hn5Bv_4core3str5count14do_count_chars +EXPORT_SYMBOL_GPL vmlinux 0xdfe672cd kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xdff61218 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe0100dad _RNvXsA_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m512dNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe02e0530 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe02f625a gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe0328619 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xe03d21a8 of_css +EXPORT_SYMBOL_GPL vmlinux 0xe03d7a99 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe04e0bad inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe05321a7 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xe05616c3 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xe059fc27 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe064a8a5 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe06be694 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xe06dffe9 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xe0782a24 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xe08329a1 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0935869 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xe09cb74f _RNvXs8_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9FormatterNtB5_5Write9write_str +EXPORT_SYMBOL_GPL vmlinux 0xe0a6db33 _RNvXsk_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIterNtNtNtNtB7_4iter6traits12double_ended19DoubleEndedIterator9next_back +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b1df3d _RNvXsj_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_9qspinlockNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe0b5210e tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe0bd2743 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0c85c01 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute +EXPORT_SYMBOL_GPL vmlinux 0xe0d84e56 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xe0e6ef02 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xe0f223cb _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter4fill +EXPORT_SYMBOL_GPL vmlinux 0xe0f97d9c skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xe105e529 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1308c19 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xe1408829 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xe143bd82 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xe1467e4c edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xe14c9d7a usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xe14fabb8 _RNvXsB_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4u8x8NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe155c449 _RNvXs1k_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9saved_msrNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe1574d8f serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xe1575aee device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe166b5a0 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1a7124a skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1b43c23 _RNvXsr_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m256dNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1f17454 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xe1f1c725 _RNvXsH_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB7_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe1f72070 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe1f98444 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe202b85b fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xe21925e2 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe21f154e scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xe228ae1f bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe23a4527 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xe24aed7e irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xe25b88a1 crypto_unregister_rng +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 0xe274af34 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xe27bacf3 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xe285b635 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xe285c08a _RNvXsa_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe28e0da1 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe28e6b07 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2dc583b crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xe2ffde47 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe30d7792 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xe316c1c9 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xe317890c kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xe31d6d90 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xe31f575e debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xe3233642 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe327307a devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xe328c2f8 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xe32c282d pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe32caac4 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe33621b9 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe344c668 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xe3470338 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe351109c sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe35c799a __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe35eaa62 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xe362837d encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xe362b779 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xe36ce9b3 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xe36fdbb6 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xe371e59f i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xe3754977 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe377f136 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xe37ee6de bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe3843dc1 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xe38cc4ae cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xe38f4da3 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xe3908577 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39cea94 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a85c0e virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b224ad genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe3b560f9 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xe3b8673b fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3d2a951 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe3d83116 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xe3d9742e led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast +EXPORT_SYMBOL_GPL vmlinux 0xe4049b31 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter5flags +EXPORT_SYMBOL_GPL vmlinux 0xe404b8f8 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe406f5bf crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xe462d0b7 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xe46b08e5 _RNvXs2j_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10maple_treeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe46d73fb register_fprobe_ips +EXPORT_SYMBOL_GPL vmlinux 0xe46e42ff put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe4767de2 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xe47c7e33 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe48f50b2 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49a93d1 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xe4a27620 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xe4ae64a0 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4ba50cd _RNvXsL_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_13restart_blockNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe4bbf821 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c5107e vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0xe4cb8344 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xe4cca234 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe4ccfd20 _RNvXs1S_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16preempt_notifierNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe4e1489a _RNvXsb_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToLowercaseNtNtNtNtB7_4iter6traits12double_ended19DoubleEndedIterator9next_back +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4ee5873 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xe4fe164b fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xe501c2de clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xe52e937d fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xe52e9435 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xe53877c5 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xe53f93f4 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xe545372b blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xe5478afe pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xe54f490b perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xe572acd8 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xe5754b07 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xe58601b7 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xe5864849 _RNvNvMs_NtCs8dagVACJQAP_5alloc3vecINtB6_3VecppE6remove13assert_failed +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0xe593450e serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xe5a0f441 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xe5b9a103 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xe5bbabd8 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5bf6352 _RNvXsh_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impiNtB9_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c97817 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5f352eb clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xe5f51dcd vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe606d38c set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe60d7025 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe60e0c23 _RNvXs0_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impsNtB9_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe60eed59 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe631a756 _RNvXs5_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe64c9103 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xe655f634 _RNvXs2J_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5m16x8NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe65b930d power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xe66fd5b5 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xe67fc49d __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xe682aa78 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xe68a4c53 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xe696730c ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xe6ae1563 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log +EXPORT_SYMBOL_GPL vmlinux 0xe6c486f4 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xe6d461ce mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xe6d6ce2e unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xe6d9034d pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xe6da664c nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0xe6e2bae1 _RNvXsT_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_5u64x1NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6f1fb8d usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f788fb _RNvXs1_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imptNtB9_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6fa2bf6 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe71e327f mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xe7227964 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe728f480 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xe7291f47 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xe73d8322 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe74c6d0a xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75af991 _RNvXs4e_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10local_apicNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe75b5075 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xe762451c _RNvXso_NtCs9WMcp1Hn5Bv_4core4timeNtB5_18FromFloatSecsErrorNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe767a2db __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe769eb1c _RNvXs1i_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_8msr_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe7750a54 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xe775590c kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0xe78247dc pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe79bad63 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7a63a08 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xe7aee054 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xe7b29486 _RNvMs6_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugMap5value +EXPORT_SYMBOL_GPL vmlinux 0xe7b8c455 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xe7b96be0 tdx_mcall_get_report0 +EXPORT_SYMBOL_GPL vmlinux 0xe7bb0ae0 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7d816b2 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xe7da9372 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xe7e19e5e fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xe7ed3a70 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xe7f4ecf9 _RNvXs2_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits8iterator8Iterator4next +EXPORT_SYMBOL_GPL vmlinux 0xe7fe54f5 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xe802380d devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xe8161fad pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe83807ce dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe83ecb5c iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xe845251c mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe846526a mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xe848b785 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe84b05be acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xe84e7f98 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8513917 __rust_alloc_zeroed +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe864e3dd acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xe87211e1 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe879405c attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xe884da4b skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xe8983468 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xe8ae5988 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xe8baab38 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xe8be8706 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c30036 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xe8de9b23 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4u8x2NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform +EXPORT_SYMBOL_GPL vmlinux 0xe8f633b2 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9152686 _RNvXsr_NtCs9WMcp1Hn5Bv_4core3nummNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xe9166081 _RNvXsb_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_18ftrace_branch_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe91ae7d4 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xe92263f7 _RNvXsd_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_3cmp9PartialEq2eq +EXPORT_SYMBOL_GPL vmlinux 0xe9257eee bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe940109b pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xe940471f pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xe941f1da bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xe94ee5e7 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe951728f devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xe95ff4f6 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xe9637054 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xe9767638 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe97d8c12 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xe97ee721 _RNvMs8_NtCs9WMcp1Hn5Bv_4core3numo14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0xe9859f32 _RNvXsv_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_5i16x2NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe99c3542 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xe9a0ba48 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xe9aa4490 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe9ab2418 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xe9cafe31 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xe9cbc97f regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d07bf5 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d83c42 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe9f2422f serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xe9f405fa perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xe9f6bc21 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xe9fa944b trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea03abf8 __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xea0c5f1f rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xea0f7826 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1a3f87 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xea2fc644 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea52cb63 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xea59e5d7 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xea622814 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xea68e271 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xea87574b kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xea8bbe33 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xea8c163d clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xea8eabe0 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xeac833c9 bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0xeac9e1a8 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xead31650 usb_block_urb +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 0xead71976 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xead83c6f nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae67a4d _RNvXsg_NtNtCs9WMcp1Hn5Bv_4core4task4wakeNtB5_14RawWakerVTableNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xeaef593d dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeafa7527 _RNvXsa_NtCs9WMcp1Hn5Bv_4core3cmpNtB5_8OrderingNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xeafe0ea8 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xeb03ffed clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xeb100734 _RNvXs3Z_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u8x64NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xeb10dfda l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xeb161c7e crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xeb2e8f9a _RNvXs1X_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i8x16NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xeb30d8ac i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xeb336dbd phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xeb50f455 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xeb66039e __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xeb6d1050 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xeb76a1b2 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb86b235 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xeb8832c5 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xeba816f1 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xebac1163 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xebc8497c xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xebce8ad8 _RNvNtCs9WMcp1Hn5Bv_4core9panicking9panic_fmt +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebdfd8c9 _RNvXs1V_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32___call_single_node__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xec034d95 _RNvNvNtCs9WMcp1Hn5Bv_4core3ptr19swap_nonoverlapping8comptime +EXPORT_SYMBOL_GPL vmlinux 0xec0cdea3 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xec12d19a pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xec1b7fb7 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xec2c0b09 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xec349d8c __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xec43f8d5 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xec44363a tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec55a129 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec61780d __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xec62967a regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xec645ddb crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xec767e2c acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec8bfe12 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xec9545fd nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec99f5f9 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecd08deb _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0xecd0940d _RNvXs2d_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_28maple_range_64__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xece07fb8 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xecea05fd ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xecea1824 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xecedd82a attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeceffa2a anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xecf0db22 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xecf3247c extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xed010c90 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xed03b1c6 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0xed24abce gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xed26a4f9 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed2f9bf9 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed50eefc sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xed56efe0 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xed57b5eb pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xed61cad6 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xed73f251 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed90b2ca platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed92d434 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xed9cf0c3 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xedb3c4ef nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xedbd8f72 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xedc92134 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd2f0ff da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xede4a285 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xede4efa4 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedecc283 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xedf98835 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xedfd9f8b raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee1ba0e7 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xee27fddf ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xee2884fd _RNvXs0_NtCs9WMcp1Hn5Bv_4core5arrayNtB5_17TryFromSliceErrorINtNtB7_7convert4FromNtBX_10InfallibleE4from +EXPORT_SYMBOL_GPL vmlinux 0xee32164f device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3bdbfa linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xee3ef79e devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xee4673b7 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee5fc040 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xee6127fa _RNvXs4i_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_11NonZeroU128NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xee699d89 rdev_get_regmap +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 0xee7c6e98 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xee8363a9 _RNvXsu_NtCs9WMcp1Hn5Bv_4core4timeNtB5_22FromFloatSecsErrorKindNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xee8a1531 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xeea76283 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xeeabef15 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xeed47ba1 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xeeda32d2 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xef0079e3 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xef013e6d __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xef099521 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xef0d8285 _RNvXs3k_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_19folio__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xef11e08f pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xef1ee39d fat_sync_inode +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 0xef4528eb _RNvXs3O_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11mem_sectionNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4aee5b sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef670da2 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xef68db63 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6f8897 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef758521 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xef89b596 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xef8b370d free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef96d127 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefcd6dd1 _RNvXs6_NtCs9WMcp1Hn5Bv_4core5allocNtB5_10AllocErrorNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xefd63f39 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xefe1ff6f devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xefeac8df pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefefdd46 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xeff2d37e split_page +EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xf00d8bcc crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xf0137a55 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf014844e nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xf01711c3 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xf02181da page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xf03706c6 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xf03c3693 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xf03ce9f6 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf0489971 genphy_c45_read_status +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 0xf07ae1ac edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf08b78e5 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf091da2e wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xf0a90085 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xf0aa2ea3 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf0bbd4b7 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xf0c3f695 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0xf0cbc1ba scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xf0d16a6d _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9debug_map +EXPORT_SYMBOL_GPL vmlinux 0xf0dc9375 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xf0e3eedc led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0e90b85 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xf0f40908 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xf0fcc80d crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf0fd0b61 x86_perf_get_lbr +EXPORT_SYMBOL_GPL vmlinux 0xf10bdfc0 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xf1166cc9 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xf11737a0 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xf129e316 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf15160c8 _RNvXs2_NtCs9WMcp1Hn5Bv_4core5asciiNtB5_13EscapeDefaultNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xf15ce9e1 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf16a4fca hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xf16e1922 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf178fbab spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf18bf40b devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf1a0e507 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xf1c276bb clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags +EXPORT_SYMBOL_GPL vmlinux 0xf1d5616c serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xf1d6acf4 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xf1e31246 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xf1f245ed divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xf1fe4e0b skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xf204353a _RNvNvNtCs9WMcp1Hn5Bv_4core3ptr14write_volatile8comptime +EXPORT_SYMBOL_GPL vmlinux 0xf20ecef4 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xf2140c4f _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data15grapheme_extend6lookup +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf227cd4f raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0xf2507745 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xf261e1af cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xf26beed6 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf29e72ec icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf2a23825 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2aaf7e5 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2bf21c5 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xf2c039e6 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xf2c35d0f __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xf2cc79dd shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf2dd51ad platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xf2e350c4 _RNvXs_NtNtNtCs9WMcp1Hn5Bv_4core4iter6traits7collectuINtB4_6ExtenduE10extend_one +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported +EXPORT_SYMBOL_GPL vmlinux 0xf3019c92 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xf3048d51 ohci_resume +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 0xf321ddba _RNvXsH_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_5u16x4NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xf32780ba dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf330f49b crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf338901b _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf33c2f36 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xf33f3b5c apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf346c196 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf353a76a da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38217f4 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xf386691c ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xf39178e8 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xf3977fe4 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xf39c2e56 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf39cdf94 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3a4517c uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b6a08f thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3bfb55b usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xf3cc1ed4 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xf3d88076 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf3ed8313 _RNvXs3t_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_28vm_area_struct__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf3f355db spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xf3fa8358 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xf40d05a1 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xf40f9073 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf42b5255 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xf430c1fb pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xf4311cfb vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf443293b iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xf446018f power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xf44fd1b2 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xf45e64f7 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xf45eb03d irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xf463b27f __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf499683b gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xf4a17176 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf4a2b296 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xf4a3300f pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xf4acfe3b synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4bc4fd5 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xf4bc6820 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf4c5a7fd fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d53126 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf4d5f438 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf4d7797f sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf4e26249 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf4f35921 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0xf4f75eb9 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xf4fbfe69 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xf4ff922a dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf50ee278 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf51c1916 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xf52146e6 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xf52aa5e1 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf53c1b53 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf562f003 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xf573b1cb inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xf59119ac regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xf59fb907 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core5panic8locationNtB5_8LocationNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a4a366 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b5e09f css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xf5bdf96b __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xf5d47f65 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5db4dac rust_fmt_argument +EXPORT_SYMBOL_GPL vmlinux 0xf5e6198d syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf5f214b9 thermal_clear_package_intr_status +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f59043 _RNvXs1Y_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_22spinlock__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf5fa63ca event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xf619f82a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf61b3101 _RNvXs12_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10pv_irq_opsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf61ecb24 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xf6217359 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xf63c0d23 fpu_enable_guest_xfd_features +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6655626 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xf671bdff alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xf6801b47 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf69aeb60 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a2e30c __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf6ab1d9a crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf6ad40d9 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf6b3b2b4 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf6b7f017 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xf6bfe0a4 _RNvXs1P_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_17fixed_percpu_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf6c1ebf0 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d15677 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6eaf121 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf6eca850 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf6ed10cb call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6f3a333 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf6fb7841 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xf6fe6dec _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data14case_ignorable6lookup +EXPORT_SYMBOL_GPL vmlinux 0xf6fe8879 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xf707a3fd x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf715338a fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0xf717dd2d nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf7222d26 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xf7289108 _RNvXs3N_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f32x8NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72c3db9 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xf7346d67 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf748c7ca __traceiter_detach_device_from_domain +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 0xf761293a switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf76a62b9 irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf77d1711 _RNvMs4_NtCs9WMcp1Hn5Bv_4core3numh14from_str_radix +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 0xf7902c62 _RNvXs1n_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f32x2NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xf799d1d7 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b142ad dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c69d0d mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xf7d8b1c6 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xf7f261d8 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xf7f5eafd dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xf809eb9f hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8100ab6 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf826e37e usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf831dd11 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xf837c8b2 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xf8402ac7 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xf84b72b6 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9write_fmt +EXPORT_SYMBOL_GPL vmlinux 0xf8522e81 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf8645729 _RNvXs8_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9FormatterNtB5_5Write10write_char +EXPORT_SYMBOL_GPL vmlinux 0xf881581f hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf88b61f6 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf88e5017 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xf8a5ee77 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8a9e2c0 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf8ab31a1 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xf8b0d9f9 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0xf8bc0beb clear_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0xf8bd03fb ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xf8c5771e irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf8dbbad6 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f6b27e _RNvXs2r_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12rw_semaphoreNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf8fbbe65 _RNvXs1a_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11__fpstate_32NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf8ffa367 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xf909affd devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9199b87 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf923c273 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xf9265bf1 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xf9348164 _RNvXs2q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11ma_wr_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf943a3e0 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xf946b14d shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xf94e55b5 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95bf2e5 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xf95ee469 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xf96a3ed9 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xf9810f23 _RNvXso_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_6___m256NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xf9876d24 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b03687 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9b90ffc __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0xf9be9fa9 _RNvXs24_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15pcpu_group_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf9d56b85 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xf9dfbd46 __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0xf9e3e165 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf9e62cd6 _RNvXsg_NtCs9WMcp1Hn5Bv_4core4cellNtB5_14BorrowMutErrorNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xf9ea1439 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xf9f107e3 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf9f35f74 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xf9f8f630 _RNvXsx_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_12__ddebug_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf9fb72f7 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xf9fb98ca _RNvNvMsc_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroU3213new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0xfa19b798 _RNvXs4n_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroI64NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f3739 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option +EXPORT_SYMBOL_GPL vmlinux 0xfa2cd400 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule +EXPORT_SYMBOL_GPL vmlinux 0xfa41f246 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa5ca1e7 _RNvXs3g_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_4pageNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa7c94ea regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xfa85d06e __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfa86fbc2 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xfa8cf95b transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xfaa03ebd fib_rules_seq_read +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 0xfac956ab ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xfacff08c fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfadb7ac9 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0xfae2d2df tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xfae2db56 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xfae4c0e5 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xfaea96a1 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xfaf9216a misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xfafef352 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xfb0794c8 _RNvXsi_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_5StateNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xfb2b58c6 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xfb2b64a1 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xfb301eae dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb49e6ad dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xfb4e1c16 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone +EXPORT_SYMBOL_GPL vmlinux 0xfb6e3b18 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb70972c _RNvXs4h_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroU64NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xfb737b00 _RNvXsR_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0xfb804331 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfb83d841 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xfb9423d7 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xfba7e456 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xfbaa0002 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc1117e rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xfbc23deb wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfbc85f30 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfbcf665e ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xfbd39921 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xfbd4c662 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xfbeeea2e led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xfbf4bdd3 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc00e022 ftrace_set_filter +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 0xfc1b0177 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc28cacd crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xfc339059 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc41e2c4 _RNvMNtNtCs9WMcp1Hn5Bv_4core5slice5asciiSh16trim_ascii_start +EXPORT_SYMBOL_GPL vmlinux 0xfc5036ed ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xfc5daaa9 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xfc60ea42 _RNvXs1K_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11entry_stackNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xfc61fa37 _RNvXsg_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_3cmp3Ord3cmp +EXPORT_SYMBOL_GPL vmlinux 0xfc63bf83 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xfc98c8dc xen_percpu_upcall +EXPORT_SYMBOL_GPL vmlinux 0xfcacb3df debugfs_create_blob +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 0xfcd1404c sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xfcd814b8 _RNvXsU_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB7_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0xfcf07753 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xfcf1d143 vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0xfcf7ca4b crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd0cd5cf smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xfd0cfc63 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xfd1b8ba4 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd31a5d9 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xfd5b7788 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd5e4e1f pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xfd6aadc9 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd9a2821 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xfd9ba817 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xfda0c79d pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xfdac383c gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xfdae2f9f synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xfdbb7773 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc0ab92 _RNvXst_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0xfdc3138a fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xfdd17df9 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xfdd65509 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0xfde30761 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xfde6f3d1 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xfdea1c4a ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdec77c6 spi_mem_dirmap_read +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 0xfe1b2f45 ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xfe1e4293 _RNvXs1e_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7__xstateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xfe1eb462 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfe202707 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xfe22b9fb _RNvXsJ_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3e1d68 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe54515d devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xfe5b152b gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe7964b2 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xfe7cf87e fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xfe879608 _RNvXs1r_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe8d62e4 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xfe945cbd regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea54f7d input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfea5dd05 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xfea8766c bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xfeacf2cd blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xfec77a66 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xfec9b3f9 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xfeca0fcd gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfeca2cd0 _RNvXs1W_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_13EscapeDefaultNtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xfecdb620 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfeda8877 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xfedf1e1c fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef10902 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xfef25837 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff062243 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xff149de2 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff1f4f6f tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2ab5a1 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff4aec17 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xff5053b0 _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings5EMERG +EXPORT_SYMBOL_GPL vmlinux 0xff68bb67 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xff6e16aa _RNvXs2f_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15maple_arange_64NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff836af9 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order +EXPORT_SYMBOL_GPL vmlinux 0xff87203f __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable +EXPORT_SYMBOL_GPL vmlinux 0xff90e651 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa7ed9b __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb31018 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xffb398b6 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xffc2daa2 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffeebb48 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xffefabba relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xfff5a955 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xfffd2b79 pci_dev_run_wake +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 +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0b0e890e cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x29210c24 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x2ec3553f cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x341eec50 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x386892a6 cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x54d95369 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5549a42c cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5c14aaa8 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5efb0a3c cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6af9061d cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6ff2dc57 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x8da6df8b cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9936d55a cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9a73c851 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa35482f8 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa54ac77a cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xac36eb6e cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb538281a cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xce10e5b3 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xce8ccb24 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xdbf25f37 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xe6d4de78 cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf692d0a4 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xffe1219c cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0xf5bf2b49 hwmon_device_register_for_thermal vmlinux +I8255 EXPORT_SYMBOL_GPL 0x1ef35449 i8255_mode0_output drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0x77c830ef i8255_state_init drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0x7fe2aa71 i8255_direction_input drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xa62b7b4d i8255_set drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xb7712fc5 i8255_direction_output drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xd0600412 i8255_get_direction drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xd5e79ff5 i8255_get drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xf2519b77 i8255_set_multiple drivers/gpio/gpio-i8255 +I8255 EXPORT_SYMBOL_GPL 0xffed47ff i8255_get_multiple drivers/gpio/gpio-i8255 +I915_GVT EXPORT_SYMBOL_GPL 0x002578a3 __intel_context_do_unpin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0095c6ef i915_gem_prime_export drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x045e7ff1 i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x07291c26 intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x131d99a0 i915_unreserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1824c564 intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1af995a4 i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1d76111c i915_fence_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x33e22150 __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x355441c9 _i915_vma_move_to_active drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x39bbed3a intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x39d23e96 i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x3aa63b59 i915_gem_object_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4a4f66a6 __intel_context_do_pin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4e2dd7c7 shmem_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x50d80df7 intel_ring_begin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x554ab40a __px_dma drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x5561e34b i915_reserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x56102d80 i915_ppgtt_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x5edfee7b i915_request_wait drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x6695fa5a i915_gem_object_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x6d73f706 i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x822f2768 i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x84b3b68a __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x880d29c2 i915_request_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 0x91f5dc4f shmem_unpin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xa11f3c01 intel_gvt_set_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xa2fffaeb intel_context_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xa33f9d99 i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xad055dfe intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc2e8ebdf i915_gem_object_alloc drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xce374baa i915_gem_gtt_insert drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xdf51689a i915_request_add drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xeb1e4800 intel_gvt_clear_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xee4941e4 intel_runtime_pm_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xfa63b1a2 intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 +IDXD EXPORT_SYMBOL_GPL 0x1be458d4 idxd_driver_unregister drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x20546f7e __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x2575d9a0 idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x52d5d29c dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x77fb6bc3 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xc9535682 idxd_dmaengine_drv drivers/dma/idxd/idxd +IIO_AD5592R EXPORT_SYMBOL_GPL 0x04ed8264 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x24b344f0 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x78d2af8d ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xf2cbb042 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x628c8bf9 ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x743c7fee ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x1b6820af ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x1d4facae ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x14d73963 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x3b5979fc __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x26a65570 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2f67220f __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3c5c219e adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9fcf120d adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xae158687 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb3aec783 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb6dd1f1b __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xba15e931 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xce51e85f __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xed57f338 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x906a0540 __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x04728783 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 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xc06c3114 adxl31x_chip_info drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1d8d09c adxl314_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_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 0x4d2f5e0f adxl35x_chip_info 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 0x717e2308 adxl355_core_probe 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 0x7ff5aaa3 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x789f9ea9 adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xd9393b8f adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x0136b3e4 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x163fb406 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x357926b9 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x36f48e74 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5c37ad2a ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6f6cf8f9 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8c142d6d ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe666339a devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xf8bb46cc ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xfab42bf1 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x0f68737a bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0x8f50b4f3 bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x35f7e160 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xbb90485c bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xbca83f5c bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xe426e181 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x394b3277 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x999c9844 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xd90db102 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xe9d83f0c bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x188b6965 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x79180158 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x09f0dafe bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x1be8d8f6 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x37c94e44 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x549f6d1c bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x58a3c9a8 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0x9493a715 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x017ca6aa bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x1e5656ad bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xf104e04c bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xf4d08bcf bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x172534b2 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x58dc82b2 bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x1674b113 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x8e445eaa fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xbe0fb9d5 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x1451c51d fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x5fff11e3 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xb68f51d8 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xcdef3ffb fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x0e19ad0f hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x34fe4041 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4ced657a hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x5355b547 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x70df2354 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7129b02a hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7350a93c hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x76dbfb7a 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 0x958a2e27 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9956861f hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe5f928f1 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf44b107e hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x54d70f1e hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x6a8c43c6 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd4aee71e hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe2d61dbb hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x8e6d2fdc hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xa12c6112 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xab20f333 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x977a82f2 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xd95cc224 hts221_probe drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x21810d08 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x92b15f00 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xb06e089b inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x87b7a2e6 kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0x9cdb428e kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x70174728 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x9bf35bfb kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xb7c85820 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x086255c0 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xbf74285e st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +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 0x3c317255 ms_sensors_ht_read_humidity 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 0x46827aa9 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x716ade50 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb283c093 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xbd69ce0d ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xbdabd6a0 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe2d82ade ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xeb2e8177 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xfe305c03 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x39c15590 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xb542811d mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xf40c0781 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x171dbb8e mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x281d38e2 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4f8141d8 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x675639da mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x6c87f70f mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7cfc67d6 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x84120a1c mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x85bad509 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa0227b04 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa2d6742b mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xc3e0731b mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xc43b5de3 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xc4621a8e mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xcd5fca11 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd9bb102f mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf75ef6bf mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0x52de73e2 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0xc1a84452 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x26fed26f inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x89d78064 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x61aa59f7 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0xd59f067d ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0xd64c871e rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0xe46340f7 rescale_process_offset drivers/iio/afe/iio-rescale +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x3ccd4d7c 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 0x6ca5cbc9 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xe41dacdd scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0x7542a8a9 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x202ec864 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x5efcfdb3 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x9ff05b77 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xa014c4e3 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xaffec97d ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xb6caf021 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xbb41c65c ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xe0f87737 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 0x1dad494f st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2a94b1fc st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2b409342 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2d1fc27a st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x314d74e2 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x345c806a st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x5eb64365 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7c0057bf st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x897f1dab st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xa0790efb st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xa0b9bf43 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xa16dfb29 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb040db15 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb08c4934 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb0c2969c st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb318dde3 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xba78fee2 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0xc41427b9 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xceda80d1 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd8bad8b6 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xdedef2f8 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xe04bab41 st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xe606bcf0 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xeb593903 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xfac02dbb st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xffd242cb st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xb04980e3 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x2929fc14 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x68540e72 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x1444a34c zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x19f0ed10 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x4a1984f4 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x5051afdc zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x749fe64d zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xf441b19b zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x3e564de5 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x98e8927e processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x0f1e6c07 uncore_freq_add_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x8a90d58f 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 0xdf95ff69 uncore_freq_remove_die_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +IOMMUFD EXPORT_SYMBOL_GPL 0x0533665d iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x25bb08e2 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x2966c802 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x6118921a iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x78c6db85 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xb3c7ca94 iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xc5215243 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xed2a995b iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xed8332df iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x5217f46b iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x03caca5b iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0754afe3 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0aff5981 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0b102af8 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0e9b48e1 iwl_get_cmd_string 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 0x1d9e6a24 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1f2a6742 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x206085b7 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x20dacf48 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x229a1662 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x23b9c72b iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x24160f31 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 0x2acba44e iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2df6c4e5 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2fc62be4 __iwl_dbg 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 0x392a744f iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3ac8fcd2 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3d529a04 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3ec66234 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x44bec57e iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x469562d8 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x46c446ce iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x499fb804 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 0x4c238216 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4fe8befc iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x57b888b8 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x58f510c9 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x593d8577 iwl_pnvm_load 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 0x5a3f9989 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6f2fd903 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x75122538 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x758e78de iwl_fw_runtime_init 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 0x78981a65 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7d6a7b8a iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7ffe9fa6 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8009c95f iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8220b838 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x843bfda9 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8459e803 iwl_sar_geo_support 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 0x899eb5f5 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8ca35ef4 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8d4241ef iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8e8ebbe6 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8eef5f82 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8fa9f3a8 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x93adcd7e iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x951b3e57 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x97d952bb iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9d010bb5 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9d0b3d08 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa39e8d6f iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaa4c9ae5 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xab2a8f53 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaea60f86 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaec0c6c2 iwl_parse_eeprom_data 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 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7f1dedf iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbcb8ae88 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc0b0b9eb iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc6421e2a iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc7ac81e1 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc941ceeb iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcd778fd7 iwl_sar_get_wgds_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 0xd1f826a8 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd8650b0f __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdac627a4 iwl_finish_nic_init 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 0xe1a5e80e __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe1c842b9 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe45c873d iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe604283a iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe68aefd2 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe8958703 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xedb8f65b iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xef8ff272 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf38a8219 iwl_force_nmi 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 0xfc9603ac iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x2dd4fe23 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x8b5274fc ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x049a2ebf mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x11c11a5b mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2356fe07 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x262ca1f7 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4491b249 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6152c449 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7bb1c653 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x83700843 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8826631b mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9152385f mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9a8f912e mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa56ee8bb mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdaedbdb5 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe8a0f047 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x420f9eb6 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x634872a7 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0xdcf31e86 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NET_MANA EXPORT_SYMBOL 0x0f07ebf7 mana_create_wq_obj drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x278c1b7d mana_destroy_wq_obj drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x48f92e81 mana_gd_destroy_dma_region drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x4e47954d mana_uncfg_vport drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x51eb7fce mana_cfg_vport drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0xe66b3c14 mana_gd_send_request drivers/net/ethernet/microsoft/mana/mana +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x26d3e949 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x61d126b7 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x702b173c nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x72d05da7 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb78cfc21 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd08bb2b9 nvme_put_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x05ebfdee peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0ce20fd7 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x13aa632c peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2797a6f6 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2f285b87 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x31f4140f peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3fbba2de peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4f582fe7 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x511eb3c6 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x60e1b451 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x671550a3 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6c2918da peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x72f55752 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7f670faf peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x84add87f peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9f4fa3a9 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa2f16507 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa60b8405 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xac713d42 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb17843a6 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb3fe59f1 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc5bd22ef peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc66b2abf peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdbbbbe38 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe6f0a552 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf1ac3197 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf6b55290 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xfcc5506d peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xffd44c4a peci_request_dib_read drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x24e699c9 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x333572e3 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xca643c70 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xce64aec1 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xee318752 peci_pcs_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x009f982a pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x045e39c9 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x32023ea9 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x32701776 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3a9b9f0a pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3d5f49f3 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x49e3da3e pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4a852604 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7bea3210 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7c8474a8 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x887478e5 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa7aa0ab2 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xaac2a209 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xab56235f pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xadb4fb0b pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc6fe3bab pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe870f727 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xfa67e007 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xfb96ed27 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x1b078357 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x647c717c sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x8500a7f2 sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xc6523965 sx_common_read_event_config drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x26af26bf 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 0x5702cf47 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x840bccc2 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x92997374 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x07fe7f8f cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x80afbac5 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xa006d914 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 0x0c7e2b12 acp_machine_select sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x3fcf5794 acp_platform_unregister sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x4791ef1f acp_dmic_dai_ops sound/soc/amd/acp/snd-acp-pdm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x4c5ae90e acp_platform_register sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x98e0bcfc asoc_acp_i2s_probe sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xe95538c2 asoc_acp_cpu_dai_ops sound/soc/amd/acp/snd-acp-i2s +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0x9ec2dc78 acp_legacy_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0xed0e3153 acp_sofdsp_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x07498041 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xbf36fb66 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xd3a5f15a 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 0x528823e0 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xa8121c27 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xeb2add6b cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x04fa5233 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0ee838c5 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x18369ae9 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3bf255f4 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4529806e cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4ef7a1d2 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x615acecb cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x6d67373a cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7822ccc0 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb84d54fa cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xeab51a8b cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x898ce2a4 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x237cf764 cs35l41_set_dai_link sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x94652e19 cs35l41_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x0897a6e8 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x27d55e45 max_98390_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x2eacadb1 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x56105ccd max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x5eccb4b5 max_98390_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x7e3ba177 max_98390_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x859269cd max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x8a4fa3b2 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xa912375b max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xc4956cb9 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xcc545dd2 max_98390_4spk_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe06a6ef3 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xf348ed18 max_98390_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x276be8e8 sof_rt1011_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x2eea8d19 sof_rt1015_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x9e1a02b3 sof_rt1015p_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x9fa6cb7e sof_rt1015_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xa749efee sof_rt1308_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xafd987d4 sof_rt1011_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xb649b15c sof_rt1015p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xec1cef92 sof_rt1019p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x217c3d36 sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xd9b87375 sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xe0a18349 sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x07d60bc7 acp_dai_probe sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x08d012ef acp_sof_ipc_send_msg sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x120a22e5 acp_dsp_stream_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x12476fb2 sof_rembrandt_ops sound/soc/sof/amd/snd-sof-amd-rembrandt +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x17a928b4 acp_dsp_pre_fw_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x22c0b441 acp_mailbox_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x2fcfc2c6 sof_renoir_ops sound/soc/sof/amd/snd-sof-amd-renoir +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x335313e0 acp_dsp_block_read 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 0x3f4c34c2 acp_dsp_stream_get sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x4a1bcdfe acp_get_bar_index sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x5b978c35 acp_mailbox_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x5f1524de amd_sof_acp_suspend sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7112ed15 acp_sof_dsp_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x77d0b9ed acp_sof_trace_release sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x843e14db acp_sof_trace_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x90097647 acp_sof_ipc_msg_data sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x903c068c acp_pcm_open sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x94a4322b acp_pcm_hw_params sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x95679073 acp_pcm_close sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x9f85563e amd_sof_acp_probe sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xa194fa61 acp_sof_ipc_get_window_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xa3a07ce4 amd_sof_acp_remove sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb42ba33d amd_sof_acp_resume sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xcdffa321 acp_dsp_block_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xd445472e acp_sof_ipc_get_mailbox_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xd846a38d acp_dsp_stream_put sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xdf664aaf sof_acp_common_ops sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xff4201de acp_set_stream_data_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x0a769256 sof_client_ipc_set_get_data sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x2e5c739e sof_client_get_fw_state sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x3819ab2d sof_resume_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x3b81a93a sof_client_register_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4948255d sof_client_get_ipc_type sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4f0afeff sof_client_dev_unregister sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x603d9181 sof_client_get_dma_dev sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x7091ca9d sof_client_ipc4_find_module sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x7e0bcf1b sof_client_dev_register sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x8f0cfd81 sof_suspend_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x9508ca47 sof_client_core_module_get sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x9ae32618 sof_client_get_debugfs_root sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x9c987cf2 sof_client_core_module_put sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x9d6e594d sof_client_get_fw_version sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xb6864956 sof_client_unregister_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xbd0dcbe6 sof_client_get_ipc_max_payload_size sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xd434472a sof_client_ipc_tx_message sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xdd5a4487 sof_client_register_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xe3f660cf sof_client_unregister_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x189c17c8 hda_codec_device_remove sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x1f598491 hda_codec_check_for_state_change sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x2d64b8bc hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x35c776c6 hda_codec_detect_mask sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x5dccc7cb hda_codec_suspend_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x6a27b8a3 hda_codec_init_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x8a94e948 hda_codec_resume_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x96e362c6 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xb4ff2db3 hda_codec_check_rirb_status sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xc2c25618 hda_codec_rirb_status_clear sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xc7aec857 hda_codec_stop_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xce18f9b1 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xf22984bb hda_codec_set_codec_wakeup sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x2b3df13d hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x305d817b hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0xdc82f4a2 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x16bc84dc atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x338ecdfb atom_reset 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 0x3953d8dc atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x3d9668fb atom_dump sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xa830f189 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb95131d0 atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xc4028e08 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_ATOM_HIFI_EP EXPORT_SYMBOL 0xf48ab535 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xfed971e9 atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0351eda5 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0cda6469 sof_skl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x12a0cb04 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x13c4503b cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x1455df3b sof_icl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2279e77c sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x22d76fae skl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x268d5dc3 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2c122608 hda_ops_free sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x32a84b19 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x39c53987 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4e241dcf sof_tgl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4eb969df jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x892a5b14 sof_apl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x97973a9c sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xa35ec025 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xadf523b6 sof_skl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb0afc0cc sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb2c114e1 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc4cf590c tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xce6dc32b ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe201e4a4 sof_mtl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe72613c5 mtl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf894bf3f sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x795a29ae sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xafe2fe38 sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xc609b214 sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xdaee5bff sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x7b887ae5 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x4415bdca sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x08f50b05 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 0xad92d9fe sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc3397c35 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xfdd1346a sdw_intel_probe drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x43e1848c dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x4ffe6634 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8270c091 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8b9683d0 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8bccba23 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xc7241a9b dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd3cc4e7f dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xe54bd1f0 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xfc5a09ae dw_spi_remove_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 0x01e32968 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0ec0f690 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x15b8188d 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 0x26c39265 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x28ad663f usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2e60f404 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x38661262 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x571ad167 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5a13beeb usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6ac9e45c usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6d11051a usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x70311d5b usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x719779a8 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x77c7f08f usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7f9a2fb7 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8122a0e2 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x908aa4b9 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9205f597 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9c53e6ec usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc00e8156 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc1b7fac7 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc585d76d usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xebc6ab69 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf56541d1 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage --- linux-gcp-6.2.0.orig/debian.master/abi/amd64/generic.compiler +++ linux-gcp-6.2.0/debian.master/abi/amd64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 12.2.0-17ubuntu1) 12.2.0 --- linux-gcp-6.2.0.orig/debian.master/abi/amd64/generic.modules +++ linux-gcp-6.2.0/debian.master/abi/amd64/generic.modules @@ -0,0 +1,6291 @@ +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 +ad4130 +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 +ad74115 +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 +adf4377 +adf7242 +adfs +adi +adiantum +adin +adin1100 +adin1110 +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 +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 +advantech_ec_wdt +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_dwc +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-pmf +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 +anx7411 +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 +ar0521 +ar5523 +ar7part +ar9331 +arasan-nand-controller +arc-rawmode +arc-rimi +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arcxcnn_bl +aria-aesni-avx-x86_64 +aria_generic +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 +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 +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-phy-ptp +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 +bno055 +bno055_i2c +bno055_ser +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 +brcmfmac-bca +brcmfmac-cyw +brcmfmac-wcc +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 +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 +can327 +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 +colibri-vf50-ts +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 +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_hps_i2c +cros_kbd_led_backlight +cros_peripheral_charger +cros_typec_switch +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 +cyttsp5 +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 +defxx +dell-laptop +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-uart-backlight +dell-wmi +dell-wmi-aio +dell-wmi-ddv +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 +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpot-dac +dps310 +dps920ab +dptf_pch_fivr +dptf_power +drbd +drivetemp +drm +drm_buddy +drm_display_helper +drm_dma_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-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 +emc2305 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +eni_vdpa +enic +envelope-detector +epat +epia +epic100 +eql +erdma +erofs +esas2r +esb2rom +esd_usb +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +eurotechwdt +evbug +exar_wdt +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 +firmware_attributes_class +fit2 +fit3 +fixed +fjes +fl512 +floppy +fm10k +fm801-gp +fm_drv +fmvj18x_cs +fnic +forcedeth +fore_200e +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-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-i8255 +gpio-ich +gpio-idio-16 +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-latch +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_bcm4377 +hci_nokia +hci_uart +hci_vhci +hctr2 +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 +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-pxrc +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-topre +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-vivaldi-common +hid-vrc2 +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +himax_hx83112b +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 +hynitron_cstxxx +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-mchp-pci1xxxx +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 +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_ifs +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 +iommufd +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 +irqbypass +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 +kionix-kx022a +kionix-kx022a-i2c +kionix-kx022a-spi +kl5kusb105 +kmem +kmx61 +kobil_sct +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz884x +ksz8863_smi +ksz9477_i2c +ksz_spi +ksz_switch +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 +lattice-sysconfig +lattice-sysconfig-spi +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-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-is31fl319x +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 +libwx +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 +lt7182s +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 +ltrf216a +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 +mana_ib +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 +max11205 +max11410 +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 +max30208 +max3100 +max31722 +max31730 +max31760 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +max6621 +max6639 +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 +mchp_pci1xxxx_gp +mchp_pci1xxxx_gpio +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 +mf6x4 +mfd-aaeon +mgag200 +mhi +mhi_ep +mhi_net +mhi_pci_generic +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +micrel +microchip +microchip-spi +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 +msa311 +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 +mt6331-regulator +mt6332-regulator +mt6357-regulator +mt6358-regulator +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6370 +mt6370-adc +mt6370-backlight +mt6370-charger +mt6370-regulator +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 +mt7996e +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 +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_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 +ngbe +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-common +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 +occ-hwmon-common +occ-p8-hwmon +ocelot-soc +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 +ov08x40 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov4689 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov8865 +ov9640 +ov9650 +ov9734 +overlay +oxp-sensors +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_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-epf-vntb +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-altera-tse +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-cy8c95x0 +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-meteorlake +pinctrl-sunrisepoint +pinctrl-tigerlake +pinephone-keyboard +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +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 +polynomial +polyval-clmulni +polyval-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 +pse_regulator +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-clk +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 +reset-tps380x +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 +rt5120 +rt5120-pwrkey +rt5120-regulator +rt5190a-regulator +rt5759-regulator +rt6160-regulator +rt6190-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 +rtq6056 +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_8723du +rtw88_8821c +rtw88_8821ce +rtw88_8821cu +rtw88_8822b +rtw88_8822be +rtw88_8822bu +rtw88_8822c +rtw88_8822ce +rtw88_8822cu +rtw88_core +rtw88_pci +rtw88_usb +rtw89_8852a +rtw89_8852ae +rtw89_8852b +rtw89_8852be +rtw89_8852c +rtw89_8852ce +rtw89_core +rtw89_pci +rx51_battery +rxperf +rxrpc +s1d13xxxfb +s2250 +s2255drv +s2io +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k5baf +s5k6a3 +s5k6aa +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +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 +sd_adc_modulator +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-leds-gpio +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 +smpro-core +smpro-errmon +smpro-hwmon +smpro-misc +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-rembrandt +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-rpl-pci-acp6x +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-es8336-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-avs-da7219 +snd-soc-avs-dmic +snd-soc-avs-hdaudio +snd-soc-avs-i2s-test +snd-soc-avs-max98357a +snd-soc-avs-max98373 +snd-soc-avs-max98927 +snd-soc-avs-nau8825 +snd-soc-avs-probe +snd-soc-avs-rt274 +snd-soc-avs-rt286 +snd-soc-avs-rt298 +snd-soc-avs-rt5682 +snd-soc-avs-ssm4567 +snd-soc-aw8738 +snd-soc-bd28623 +snd-soc-bdw-rt286 +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-cs42l42-i2c +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42l83-i2c +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-es8326 +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-utils +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hda-codec +snd-soc-hdac-hda +snd-soc-hdac-hdmi +snd-soc-hdmi-codec +snd-soc-hsw-rt5640 +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-rt1318-sdw +snd-soc-rt274 +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-src4xxx +snd-soc-src4xxx-i2c +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-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-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-tas2780 +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-wm8961 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wsa881x +snd-soc-wsa883x +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-rembrandt +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-skl +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 +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-microchip-core +spi-microchip-core-qspi +spi-mux +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pci1xxxx +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 +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_hub +surface_aggregator_registry +surface_aggregator_tabletsw +surface_battery +surface_charger +surface_dtx +surface_gpe +surface_hid +surface_hid_core +surface_hotplug +surface_kbd +surface_platform_profile +surfacepro3_button +svc-i3c-master +svgalib +switchtec +sx8654 +sx9310 +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_none +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_rtl8_4 +tag_rzn1_a5psw +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 +tc358746 +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_mt6370 +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 +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 +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps546d24 +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 +txgbe +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 +ucsi_stm32g0 +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_adc +vf610_dac +vfio +vfio-pci +vfio-pci-core +vfio_iommu_type1 +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 +visl +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vmd +vme_fake +vme_tsi148 +vme_user +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 +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 +xctr +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 +zram +zstd +zunicode +zzstd --- linux-gcp-6.2.0.orig/debian.master/abi/amd64/generic.retpoline +++ linux-gcp-6.2.0/debian.master/abi/amd64/generic.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 --- linux-gcp-6.2.0.orig/debian.master/abi/arm64/generic +++ linux-gcp-6.2.0/debian.master/abi/arm64/generic @@ -0,0 +1,28037 @@ +ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux +BRCMFMAC EXPORT_SYMBOL_GPL 0x9910b126 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0xc61a8aac brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x5153fa8b counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x8b0dc6bb counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xa24c883b counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xa38d968a counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xbac18c20 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xbac82229 counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xcba6f886 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xde730670 devm_counter_alloc drivers/counter/counter +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x09d753bb otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x1f5e1833 otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3602fac4 otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x37365754 otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3c53cf3c otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x53d511c0 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x558d8e74 otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x67346f0f otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x6f88e561 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x8fc7548e otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xa96fa23a cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb6160324 otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb8437634 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xd7deaaef otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xda2668b6 otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe8c9e4ef otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xf2b14c3b cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcdf1da99 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd689ae15 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xe002f197 crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x00c19d60 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x00ca91b9 is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x04d3450a to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x24423db4 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2ba4ae24 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2bc2de8d cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2bcc47df cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x30cfeda8 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x34fe910d devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3cc49864 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3fb1a377 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4886be6d cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4e47cb42 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x51716d50 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x586e0b4b to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x59e75271 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5b545d0b cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5da54ce6 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5f77b0ce cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x62611b2d cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x651d6392 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x658d89bf cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x67db80a2 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6a272515 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6c1bdee2 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x70da13db read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x764a5dc0 cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7c577731 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux +CXL EXPORT_SYMBOL_GPL 0x8171954b is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x846bf74d cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux +CXL EXPORT_SYMBOL_GPL 0x870206ed cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x89aac4ec to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8eb70e8d devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x96e10aa9 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9b0da37e to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9d71054c cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9e09f315 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xacb52c2a to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xad48e111 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xafe12bd9 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb427aeeb schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb49e352f cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xba302ff2 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbaafb97f cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbc4157ab devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbca25b69 is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc2eaa2d1 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcb155205 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd16f3da5 cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd38ebc76 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd52fd8cc devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xda2e0e8f cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdaa441cd devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xde32d350 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xefada1ea cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf123bf4d devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf2cd2c87 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf4577e9a cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf464bf00 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf4df38fb cxl_port_to_pci_bus drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x03233cd0 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0cc5e6f8 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x184696d2 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2ef1e2f7 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x40965a2d dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x48c434e3 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5b4b7019 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5e22fdf0 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x67ff11ad dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8b7b970a dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9005c84d dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9bf3f138 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc0509505 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc28e91ae dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd68c8c77 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdf4c50f0 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdf4f2d4a dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe8b74091 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xebbb6d0c dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xeda1e5ba dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xfd6afbd3 dma_buf_unpin vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x2303b915 efivar_lock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x5a3c9dbb efivar_get_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xa336852c efivar_get_next_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xc961bff7 efivar_unlock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xefc77711 efivar_set_variable_locked vmlinux +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xb1d6d33c 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/crypto/sm4-ce 0x0fca045b sm4_ce_expand_key +EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0x7155f33f sm4_ce_cbc_enc +EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0xe609a0d5 sm4_ce_crypt_block +EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0xed1f9633 sm4_ce_cfb_enc +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 0x07b8d040 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x8eee4ed5 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x9b6c642b crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xb54e3ee6 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xc87e348f crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xecc9a1d3 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/sha3_generic 0x5d92c11f crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x6d0f9d6c crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0xa5cc2173 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0xa2ec6c1a 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 0x0451dad5 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x103735ba acpi_video_report_nolcd +EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight +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 0xab17113b acpi_video_backlight_use_native +EXPORT_SYMBOL drivers/acpi/video 0xbde2ab1e acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xd1aaf8d4 acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x6a2b079a suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x8f2fdbbb bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xc2e2dc30 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 0x15e5b6ff paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x3a3df871 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x3e9e5229 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x5ad5f6ea pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x83aeb921 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x8abdc9b5 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x93234220 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xa9e7ef16 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xacee145c pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb082c1ab pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xbe87b714 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xe9fb40e5 paride_unregister +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x16fe24a8 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xdf51012f rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x92dc8d6c 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 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 0x8ee28aaf ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x917cb45d ipmi_add_smi +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 0xc393458a ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe98c507d ipmb_checksum +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec3ecf1d ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x01ccaa46 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0cf47055 kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x12e9c38e kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1915dfbb kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x27e269ef kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x34ed9dc9 kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x470e913a kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xb6d86355 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd2258c18 kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd8bd7659 kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xdfe2d7c8 kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe78227ce kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xfdd0e264 kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x40a89bdf st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4948ffc8 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x93a298bb st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa9e53dc6 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0877659f xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0da3ebda xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x6e7f6483 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x34ffadd9 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x4eae12f3 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc7f69ef4 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x39bcb23f atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x44f85ad5 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_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 0xdfb6b759 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/caam/caam 0x023b90da caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0x0a348b52 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested +EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free +EXPORT_SYMBOL drivers/crypto/caam/caam 0x97b542a9 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0xb76bc744 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x12fabe4d caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x338d9235 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x5d900788 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe188bd1d caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xf71ca27b split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b0c587f cnstr_shdsc_rfc4543_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b7bcab8 cnstr_shdsc_rfc4543_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86bcdec7 cnstr_shdsc_xts_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x88430d4c cnstr_shdsc_aead_null_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x91ac0969 cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa3115081 cnstr_shdsc_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa340e264 cnstr_shdsc_aead_givencap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa99d7fa6 cnstr_shdsc_aead_null_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xebcdd349 cnstr_shdsc_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf92c5da5 cnstr_shdsc_gcm_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf95bcf62 cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfd807e48 cnstr_shdsc_rfc4106_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfdf7ec8f cnstr_shdsc_rfc4106_encap +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x7a5dd8d3 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x60dbc82a caam_dump_sg +EXPORT_SYMBOL drivers/crypto/caam/error 0xa1954289 caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0xe2575ad8 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x05b37b10 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x27add7d8 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x39ad4cde fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3bc66c05 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x420d406f fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x45e9a437 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5247cd82 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x649534fd fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x82e97f5d fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x920080a5 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9aa46e3d fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b7ab545 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa135219a fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3fbcbb3 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xacc22a49 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xae14dae2 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xafae77c5 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb2eaa001 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8d4642a fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd02ca5a9 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd2a87602 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdbcabb25 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdbf11ae4 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe56d42ce fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe586e102 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf47fa76f fw_core_handle_request +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x66b27756 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xa4b02a93 imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xb149f6d9 imx_dsp_request_channel +EXPORT_SYMBOL drivers/fpga/dfl 0x9523f318 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xe571bfb5 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x583d83de sysconfig_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 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x09f8a56f drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f80a392 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x102cf874 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13d6be3d drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14ef98f6 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 0x1605feb7 drm_dp_mst_connector_late_register +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 0x1a10145a drm_dp_atomic_find_time_slots +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 0x1b39c1ab drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21d1546e drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x22c4d4da drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2485baee drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x25788586 drm_hdmi_avi_infoframe_colorimetry +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 0x277f849c drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x278baac2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2ac59c02 drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2d334568 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2df9bb6f drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e2f26b9 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e498bcf drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2f704f37 drm_dp_send_power_updown_phy +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 0x31eeb45f drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3411ee71 drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x35b0cc66 drm_dp_mst_get_edid +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 0x3fdf1571 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41c524c4 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42e54cf9 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x44889279 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 0x48d29b32 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4a232dd3 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e4f6a0d drm_dp_atomic_release_time_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 0x54f925be drm_dp_start_crc +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 0x58a0075c drm_panel_dp_aux_backlight +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 0x5a86f411 drm_dp_phy_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ab0022f drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b8ef8ba drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c9affd9 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5f57d013 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ff7f05e drm_dp_mst_update_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 0x657c7698 drm_dp_pcon_pps_default +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 0x6a606bc7 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a72a7eb drm_dp_set_subconnector_property +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 0x6ce48d29 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6d81b18a drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6db70208 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6e1f3e53 drm_dp_128b132b_read_aux_rd_interval +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 0x71c40e05 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x71ce89c1 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x71d6076c drm_atomic_get_old_mst_topology_state +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 0x742ad8b3 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7534af25 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x760b07ea drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ee7906 drm_dp_dpcd_read_link_status +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 0x770851a5 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7810a0e4 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7a460e95 drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7b7a1859 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x81c87d5e drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82be0329 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86d17dab drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x877a7848 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x87f8133b drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a6bdb81 drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b9d3bc1 drm_dp_mst_root_conn_atomic_check +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 0x8d99bb2e drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8df2de35 drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ff073b9 drm_dp_read_desc +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 0x95a61352 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x963eac67 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9879f55c drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9a77174c drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9bc379ca drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa10341b8 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xacd6745e drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb025f554 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb20bc394 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7fffe2b drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbb44d33a drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbc25d537 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf99da09 drm_dp_dpcd_write +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 0xc0934735 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc1eff023 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc32eb166 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc381ab5b drm_dp_link_train_channel_eq_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 0xc7d7b9c8 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8800898 drm_dp_mst_hpd_irq +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 0xcb1ebb9a drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb31afdf drm_dp_remote_aux_init +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 0xcdb2420e drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd4270f6d drm_dp_mst_atomic_enable_dsc +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 0xd64988fd drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd6fc0db5 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd900b1f4 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdc12777c drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdcf6e388 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3aff48c drm_dp_set_phy_test_pattern +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 0xe5514b8b drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7fae422 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe80268b7 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeee9a5b8 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xef3b28e2 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf012253c drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf4a1f8df drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf53a814b drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf59518e6 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf5c83f5c drm_dp_mst_topology_mgr_resume +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 0xf97c191e drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfaa0b518 drm_dp_read_sink_count +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 0xfc24aebe drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe32269f drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff5523f8 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff8f83cc drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0025515a drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00adcd56 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x027aa750 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x029c205f drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02a668ae drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x038828ff drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x038d4ba1 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03a3003c drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03f32cec drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0533550c drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05655e92 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0581d3bd drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06bfd0cf drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06ed6966 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0702004f drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0758a541 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c68f95 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08ef1cbe drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0af29f7f drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b6caef4 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bad33e5 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bf59331 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c649cf2 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only +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 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10076b30 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10660b72 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10732bd8 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10af7327 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x123e8983 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1300176c drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14237976 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1450a119 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x149cf8a8 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1566cb20 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f4a496 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f87e04 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b976025 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bfca136 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d6a3d0b drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e17ea50 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e64728f drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2099f8e5 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20ab6dce drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21519ae1 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a58ccd drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21eb1b52 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x227686a3 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22d63c42 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22e145e9 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23440f2c devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2355afc6 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23dcaa73 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23e12dc6 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x246aa05b drm_gem_dmabuf_mmap +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 0x24e35e8f drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x251d3b02 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2557b9a6 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25997840 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25cfabb4 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25dff980 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25fa9597 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x260e804a drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26a48f03 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d66aa2 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26dd59b8 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x278fe632 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27946ce5 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2795f44a drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f015ff drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f1382f drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f3e157 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c3a4af __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a663529 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa28800 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ab2eb67 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ae9d1fa drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c977f1b drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d2aaca7 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d34e6cb drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d754b3d drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f22e16f drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f3785ac drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f7ffe96 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3030b77f drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e73f30 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3113bda2 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3285ad69 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3301e79d drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33158c4e drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x333cca67 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34559eb6 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d79bb5 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x355c0058 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c12222 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38229515 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392ee3f9 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39890e81 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c4cb46 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ad452a5 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b05602d drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3be50d06 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3beedafc drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c25f5de devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c31784b drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c81eae4 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e240bb1 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x413b1b89 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41abc67d drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41de6df8 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x420be30f drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42267cfc drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42a59f2f drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44688ff9 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a1f6f5 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44d1703c drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c3eb50 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x469842ae drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46a56eaf drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46c2d240 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x475b4523 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48031afb drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4822b62f drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4861c994 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48775c65 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4912898b drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49178187 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4999172d of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49a31efe drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f107a5 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49fe5c34 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b2429a4 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ba967b9 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c169535 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d460a23 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0c36a7 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e64fdba drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f64554c drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x503d45c4 drm_atomic_add_affected_planes +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 0x51387949 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51728ec6 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53190132 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x539b2a26 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53adc332 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54b30eb6 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e35249 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5538d4f8 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c0371f drm_gem_unmap_dma_buf +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 0x5875cae3 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x588b5389 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58dc8357 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a29761f of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bee48ee drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d40f51c drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df0a1c7 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f9457c3 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fb4b072 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60b5a90c drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60faf44a drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x614729eb drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61a58da8 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62304a72 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6315d8be drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63893a18 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ed6e85 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64f4b3e7 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a1fbcf drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ccd738 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x662670bd drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66892f20 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x674360a9 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67984e91 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68c3632e drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6993db61 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69f43584 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a3f051d drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c02a2f1 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ce578d4 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d4cfce3 drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da46bda drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e201c11 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f6128a8 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8ff323 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f9dea9a drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x702e1c4d drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71f44d7b drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72790749 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7543f0bb drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7555fa13 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75733473 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75a55230 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77860fde __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7884a4f1 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78960dd1 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78feda55 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bbc9d14 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c688515 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c70f311 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0f3d70 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7c1ded drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dac5011 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6aae08 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eeb366c drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fdd67a6 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80654e7f drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x809049cf drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e9aa19 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84f06a65 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853884f1 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x854151e5 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x859bf3d7 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85e5f66a drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871d2f50 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87752dc0 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87fee519 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x880ca1bc drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8889789d drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88fa4009 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x893afff9 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89825fe1 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8990a2d5 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89cf8b3a drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a0c03bc drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a87a0ce drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2e5535 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d93f9cb drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e1fb323 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f8a3e93 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fb010bf drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fe8f2de drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x909b01c4 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90bf3892 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92130e44 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9226edcd drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94a813bd drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94d944af drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9712b74b drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98310df8 drm_modeset_acquire_fini +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 0x9c574e25 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6f78b7 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d1eb31d drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d4c9a4b drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e8760be drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fc9e9c4 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ad17d0 drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0f48dbe drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13ef79c drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13f1354 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1827855 drm_gem_lru_remove +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 0xa392d55a drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3bee8b9 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa427fcce drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5baa4e5 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5e24400 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5eec2b4 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7a307b7 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c2f093 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8161193 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa818c537 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa924caa0 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa92767c5 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9aa5646 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9b3fc95 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa85673d drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacfa3bc9 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadc82640 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadca01ea drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadf78bd7 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae61a713 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0e262cc drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0f43a63 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb266710c drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2e9dbd7 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3216df8 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4e60388 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb59ee3f4 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb600eb4a drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6e128f3 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb72ac2f6 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb751afbd drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7fb1a2e drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb88ab5f6 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe938003 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf87e1f8 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfada047 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfade974 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04ec11a drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc150e18c drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19b7684 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc302cf62 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc31cdd67 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc324ecb5 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3d9f271 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f552f3 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc465d155 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc46d4d0e drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4b1d2de __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f1152d drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc538a2d2 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6600b32 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc751f1ab drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc75f5ac4 drm_plane_enable_fb_damage_clips +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 0xc8574f6b drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc86c1ff3 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a8f67c drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8c62acb drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8d2a1aa drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc91c1806 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9b65216 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa48cc1 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb0806b1 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc611990 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce82793 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd3b46cb drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce569ff5 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce9eb54a drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcee9fd98 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf658af5 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf840547 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd030875c drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0e8b9e0 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13af540 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd14639b3 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd19c09af drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd19f208e drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd21b234c drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a79772 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4d83b02 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd572de85 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6994350 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70f7327 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab6b427 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8ae9cb __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde1ea09d drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2f4363 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdec4a774 drm_atomic_bridge_chain_enable +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 0xe056b1ea drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe14817c9 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe202c9d9 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe242a922 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2a9e110 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe335027b drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e03993 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e55668 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3fbba9a drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3fca0dc drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4a354c3 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59025c9 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe694a7b2 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7db0be5 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f1a3f8 drm_master_internal_acquire +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 0xe99aa1cf drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9c0db4b drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb5fcc93 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec825f37 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec85c9c3 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed2a1607 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed35910d drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1e3fd3 drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef7652c3 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef913009 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefb2beca drm_bridge_remove +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 0xf391d1d3 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44d90a3 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf49491f1 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4e208c9 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6147583 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf65eed4d drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6e2e4ec drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6ef9d02 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8dbe5d2 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9c8b634 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa9d6e0b drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfae2d5b5 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb4a4d04 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb604f56 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdfebc8c drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe105424 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe47a6af drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe73d773 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffaffd52 drm_client_modeset_commit +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_dma_helper 0x5b21545c drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xf38202bb drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f9fa56 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02191b07 drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x038bbc3c drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x091bb7fd __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ad471be drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b13da74 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ddad017 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ffce182 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1057dd45 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12b75930 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x134d22f4 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x150c8f5f drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1594d562 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15aef7ef drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16c39430 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a23ea1e drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a591e15 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b5ac6d7 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b82a928 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c21c83c __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ca04a45 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1de61438 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x207fbcea drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x215a3d5f drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23176bdd drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24be65ef drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x292020aa drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2926dba2 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2961ce8e drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x299d6943 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c1ad3f3 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d7adb3f drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30461b51 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3091ca59 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x310e3229 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x353d1777 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3843e137 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x384546dc drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x386a65ef drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3adfd884 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b1ac34e drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e232fdf drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f54d7ea drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4112d7fb drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4254d3cd drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44b24141 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45731e1f drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46aac6e1 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x495338cc drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f699760 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f7637cd drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x514ac7be drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5150f0e4 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x578604d0 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57aac585 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57f08559 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58a4ad0e __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58c7b22e drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5948a873 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a1ab3da drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aac1c86 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f9ce44e drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63b02449 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63c5544f drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65035a8f drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x669b3ed9 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x682fddb4 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x684a7136 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x690c7982 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a3ee82a drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c569a45 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d933e86 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e5940ef drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ec54171 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7101793d drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71875569 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x722babcd drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7240f8ee __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x775ae646 drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7befbd30 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c4a5ce4 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dbbe964 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e72a5e9 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80669eaf drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8166e75e drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81b9bf2d drm_fb_helper_cfb_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82fb7eb3 drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x830dee63 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83b35eb4 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 0x849420c4 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85383ffc drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8599064b devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8744bc45 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8989004b drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bd0eac9 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cede08e drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90e799d4 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93ec231d drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94bfa6b7 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96a44c2e drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98706cfd drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99456bdd drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a8b97ed drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bfc3919 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c4daaf1 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c4f7aee drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cb0204d drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d493cad drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e2b4eb4 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ee1aee1 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f2afba6 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa27e3bd4 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa29effc4 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7106397 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabeaab54 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad152094 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadf6aaf3 drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaec1d303 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf0dedca drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafadae0a drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb066955f __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0e14fb4 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb191e20c __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1d280da drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1e35240 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb34ebc80 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3e94a93 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb46cd0ef __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4e5ea67 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5f145f1 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb680d481 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6fb41e6 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb785de73 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb1cd0af drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb235cb9 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd0ac016 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc027e511 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc304db07 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3f34eac drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79e008b drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc986681a __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9ef877e __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcabaf229 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb3fcec2 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0132e7d drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd06530ea drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1b8b92d drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2dbd8aa drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2eff33b drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3563195 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd469a6f0 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd498a9c7 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5ddec85 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6a46ddf drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7a184a2 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7e6a341 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd94e0c68 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc2e480a drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc524ee9 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf49a7b2 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1c15ab6 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1f5a5f5 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2217200 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3ad6f2b drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3bccaad drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe446c84c drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5028aad drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe588cefd devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe871ac88 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe98b71b6 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaca632b drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeae3a23c drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeafc46af drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb0f0b75 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed4f0354 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeddfe1e6 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee13199c drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef2c06f2 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf06c84cd drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0b7974b drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf18b9737 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1d64abb drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1f310d0 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2634f3c drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf327c838 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3b0dc12 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3c4a0c1 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4082768 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf425d317 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf448f4c4 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf48a1c3f drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4df0650 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf59c4bc9 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5e425ee drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7bc3f61 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa4f21b5 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca8c8d2 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x009e6d0b mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x010bfe64 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0a19b9f3 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3ebbce6b mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6405296b mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6a39441b mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6b265244 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x709a7d18 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x72713c7c mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x78c3ad95 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7f403f98 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fa487e8 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8cb70b55 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x975243c8 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x980af06a mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa6a97d0d mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xac49cd43 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeb64165a mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x091aea2a drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x159ea99a drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3af69cbf drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7c6e2e2e drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb099afde drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc266828a drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcc72b584 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xce603e70 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd5a7a612 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf27cba51 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1d48844b drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4a3ef99c drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xa7df3142 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb8a64adb drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb930df05 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2b1ff3f1 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2ddafe8a drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x372e8763 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4c1c8491 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x521d7ae7 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x547464c5 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x73b7be46 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x76a01668 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x85068e39 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x941ec415 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa8d440c4 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbaed3c02 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc20e3696 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd14eb0d4 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd3c948ba drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdece3315 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xbb6b3d0c rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06c9ae5f drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x08c25042 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0e62bb0b drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ec4248e drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x17daf198 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x234be4cc drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2d357370 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x30a70d4d drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x347821b4 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x43e7d42b drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4992a6b2 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a8d49ce drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7aa5307b drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7de3cdc0 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x849b6cb6 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8d2e354e drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x96502189 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9844ac21 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa31cb2a7 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb4488fa5 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe128f159 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe6685a35 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xec2e954e drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf4d8c35d drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x083c21f5 sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x1ee7cdca sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x27420b3d sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x2d43d9ad sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x8de7f2d3 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe5e6419d sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x1ff65cd5 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x67a13229 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02a8a744 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c231474 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16aa7c4f ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a453d86 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ddfaa77 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21b6774e ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x280a3885 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2aee3c01 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f377b0b ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30ae29fe ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38270dab ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38b86d84 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3980b3d6 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ef406e2 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x478b8a4b ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x566e49c2 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58616d49 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a1880f2 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c3ac744 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x635a18ca ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6435934f ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b5a0b0a ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c1cafe2 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70ca1231 ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x759aba8e ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79b24a9a ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83db1ba0 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84d7f509 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8887f6f9 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89715d7c ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9101a7c6 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91026a93 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96017c87 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa30f7f67 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3cbefd6 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa45ac2fe ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5594fbc ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa85b9350 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad9aafab ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2057abe ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7a0e8fa ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba43c1ee ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaebb84d ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbc8c3c5 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbcfa538e ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2934887 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc911133d ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb3992b1 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdad7dcd ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd24dceea ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3447f47 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd57d2815 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd915edc5 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdce9421a ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd8eb814 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe934da1a ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xecb57f84 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef4156bc ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf48b3b2f ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6f0f92d ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8d15285 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0a80804f host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0a92d10f __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0b2b6d29 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0f54846a host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x11961534 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x395e4c96 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x41f9a2de host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43a8fd99 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x45cbf9e6 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x49262c48 host1x_client_unregister +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 0x53e8561a host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5c0cc867 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6030d98f host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x673a8e21 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6d0ef4dd host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x763f0e68 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x792d03c2 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x794f1df1 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7a8ff9f2 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7d0fa968 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x85d294b2 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x998af3e5 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9d8d3cfc host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9e946d73 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xadca2fce host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb2f82e09 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb3d3f57f host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb586182e host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbafa6660 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbd06f4ec host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbe394dab host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc4d9a3c2 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xceaab8f0 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd10681d3 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd79e378b host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdfad6a36 host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe13a595d host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe13c282f host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xea5f4718 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfad6cdea host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfb286ad5 host1x_client_resume +EXPORT_SYMBOL drivers/hid/hid 0x578c7e8b hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x2cfe7155 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xacfd3a8e vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xb284cd8f vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x6003bd9f adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x2ea71122 ltc2947_pm_ops +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 0xb296c153 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa09a7c39 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb808cb83 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd3a08fcf i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x30ea4687 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xc800759b i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x8b093d0a 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 0x8f6c5c08 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xe1b25fca iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1892e71f iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x69d36738 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xcc6ca1f5 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x0cc6e44d __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x36155dc2 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x496e3d68 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x4dbfccf0 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x51da361d __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x5831b718 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x5870ceff iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x5991b550 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x63b83eb8 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x6ab045fa iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x73a5db55 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x7e3c6576 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x91c79d7a iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x93c3e951 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xbcd3042e iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xc39709f4 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xc6b8b9de iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xc6f040a1 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xce7f687f iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xd8669500 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe9ffdacc iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xef395bbc iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x65efce2a iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x07308897 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x35144c79 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x46c12d8a iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x97e57b4d iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x31ae8ce1 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x624c2c07 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb2006bd9 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb2e6be41 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4d7656d3 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xabff5234 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xebfbe8de bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x000ad5cd ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x060c28f8 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x255e48ac ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a0390e4 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x396403f1 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x501fa129 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x54e4e187 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x605b1f54 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x60791076 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x72989349 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x77ac5129 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7bfd9e1c ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9240424e ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9c9268aa ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3e45b7c ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00827067 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x010e22ae ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x014c779a ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07be42ae ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09ed5854 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a833314 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c6e1c62 rdma_read_gid_attr_ndev_rcu +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 0x0ef57862 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f8a4dc3 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1085fcde ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x113e870f ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1414eca3 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15caaac8 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x174087fd rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x185c8d61 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c07986e rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eb3aba4 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f070ece ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f924d40 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2092bedf ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22b9a7a8 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x243832b9 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25650342 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25e1bfda rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x273042ba ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28110dff ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bb5ef1f rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d77e4f6 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d8569d4 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e1a15e0 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x304572b2 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30d12699 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34400e41 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x358ecb39 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35b1a6bb __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3650835e ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x387105b7 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bbde122 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cf66044 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d128ac9 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d49d054 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dc71af4 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4014d44f ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4142a92a ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x416832c8 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x438a18f0 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44598102 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dc784d6 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ecc85a4 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ed4003d ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53d06ece rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x551ea567 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5533b550 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5869697d ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x592d32dc ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x595048c6 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ac40134 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b3efba4 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5db2428b rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e0e521d rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f970c36 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb9b3a3 rdma_dev_access_netns +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 0x62c47d2e ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6350a04c rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63813faf ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6404c9d3 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x658c7778 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x677e4657 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6970013b ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6975ea57 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b59c8c7 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d5ac602 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e3d9c97 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e51809d rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72b85b20 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72f82972 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72fcea68 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x750310e8 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7565c264 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75d8c82d rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x766a6080 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76b4b7e0 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ba646c ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78d9d8ed ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79a802a0 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a9f3a45 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c6ff2cd ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7de75b5c rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7edc4d31 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fd165a3 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80148479 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80253c80 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82b71c33 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84447d3d ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x848dc5e5 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x852d4f0d ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88cd961f ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aa29124 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b1452b8 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d986317 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fd08e2e ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9107bc85 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9230f7bf __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92f3ddc2 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93883515 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94dbe0ef rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95219ac7 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95994bb3 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x980bdb43 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x989f9f20 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9957e48c ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99a0cbbe ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e188811 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ef85153 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa09d7257 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1958840 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1ad8e3b rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2d156b8 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa45fbf7c ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa69438b2 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6c8b0ae ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa78ec40e rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0657a3 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d9daf3 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb56bbf95 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5e0496e rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6714798 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6b8915c ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6f65ab8 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb82b9a88 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8bf5de4 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba5c42fe ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc2f62a7 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc02951a0 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc06f26c4 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc11e1a79 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc125a197 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc249ca19 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5ef62f6 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6d6afa6 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc83ad479 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc842e3b5 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca92b328 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc03ee57 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcca67135 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdb0f5e8 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce62db7f ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce7a3140 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd03cc791 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd08cd438 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0cded50 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd117e041 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2837827 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2a66a33 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2b99ed5 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd32ff781 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5fc9957 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd61776a9 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7aced89 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd91064fc rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9635965 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde2f6a33 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf4d491f ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfdd1705 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe127878f rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe17c8a84 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2a0a638 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5883458 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5acaf66 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe897490e rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8a4dffc ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8bf3648 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8c073b1 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef64875f ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef85fe69 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0cc2956 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2e8a200 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf336fe6d rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3a2390d ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf52a6d12 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf562fe35 ib_get_eth_speed +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 0xf6f1f5fa rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf74c12ec rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8ae10fc _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf94dd151 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff9b04b6 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x06951d5b ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07005830 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15fe0215 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1734b3ad ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x176879a6 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1bd7596c ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c8bfa70 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23a928df _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2567116e uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26ffc9b9 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x384e9f78 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x458d20a3 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e8e8903 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6345b94c ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68792252 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7093cf24 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7119dac6 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x716e8205 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x726a25dc flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x72e603c3 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x86fab0a2 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f7acb50 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x90c35eca ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x913a18ba uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96e3ce1d uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9909d72d flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa025f7a9 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 0xbe69e2de ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc82cd8d3 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce68c64e ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcfab346a ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xde14e592 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe9bb5b5f ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1b9d3c8 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf29a8274 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf685c4d8 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf6ade635 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x188e783e iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1b5ac7f8 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2cbf6a4e iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8ef233f9 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc0b7995f iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc9d1b093 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd75cf076 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfcffdba3 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11ea0cbc __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18ca3f24 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a2e55da rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24973f14 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e837891 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33bc9e7d rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3bd4906a rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x45fd5853 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4bb8499d rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d4df9b0 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f0726a5 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59749350 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62adbb7e rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x643b229a rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x692a3993 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f3a3fc4 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78a3a07b rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b89cbb1 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8eb48172 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f17ec2c rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9ac7edae rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf24ad97 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb2b60c56 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb558eba0 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc21b2196 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcadb5b8b rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe57055ab rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed47cec1 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xefa61dad rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0b14df9 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1249b72 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf71bc5ad rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8e41a58 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb307aef rdma_notify +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1655f2b9 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3cd9ff55 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7bc2facb rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa22aa5ea rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xace36467 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdf346904 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xed7b4e1b rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0722cae8 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xb438fd14 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc99759cf rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xecd25f0a rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6799945f rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8f47934a rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9cc82443 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaa49de02 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xea445738 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfc6e27b0 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/input/gameport/gameport 0x00f98b1a gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x04b9acb7 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x43435d23 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d71b3ca gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4f00ed70 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x56e0c029 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6cb8865c gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa4504587 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfaec352d gameport_start_polling +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x8695cd89 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x947fdc8f iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe0c4bcf4 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0xc61cfca4 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x17a54692 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xaf527cde ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe7a0d226 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x87bb3649 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 0x440cf452 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0c5b28c9 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x197e3297 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x59b82e7a sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x972a2f89 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfd1124e2 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3e53b777 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x98365bc4 ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xb79cdb92 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xd9418efe qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x693ba293 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc3793cd8 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcbb2d1ce capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd78c1437 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe9c3a879 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 0x8370971c mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8e849b6c mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x98e17f53 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xba3e2897 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x82ec8804 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcfd62b26 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0ac54aa9 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3c25e769 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ff4c79b mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4886a7d1 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4ba7e68c dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50604cfb queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5827829b recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5a6a4b02 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6b573395 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x70611d43 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f6e03d3 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8373a45b mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8cf8061e recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8f8a26a0 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb959ece9 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc64dddc7 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc7c604c5 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd0f97623 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd270d841 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4cb4d32 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdbc8ab12 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeda91905 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf4c8ecf8 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x1fc82659 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 0xbf6e3f94 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 0x9cfe02cb cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x236b433a omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x8738da08 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xa6e7e313 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x23839a32 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x90115142 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x93eed9af dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xffed301f dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0721c51d dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2ceaba6e dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x49368e50 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x989fea15 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xba858755 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc48b7f62 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x267943ed raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x4c9ce802 r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0695cd81 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1c348b2d flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3845ef50 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5cd36b63 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x62732c33 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6b352920 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x974719ad flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9c0fbf33 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xabfb8875 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdcac973d flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe74573c6 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xedaf3e0f flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf411a0fc flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0767720d cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x09b97f31 cx2341x_handler_init +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 0x32f1202c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55b740b5 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d6bd803 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 0x68e3bb16 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x98a3cc18 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x5e3f29d4 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 0x751150d5 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xce29abb9 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x44455027 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5ac90437 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x78188b54 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc9620065 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdfcc64fd vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfe7a5438 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x0e13dc78 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x071a00fc dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08b392a1 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a32ac68 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2535da9e dvb_generic_ioctl +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 0x3cb249a8 dvb_unregister_frontend +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 0x63a35684 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65b1e9d2 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69bf4d3f dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7370398b dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7458e9ff dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b93bab8 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x853c3f1c dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c5fff72 dvb_ca_en50221_camchange_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 0xa1bb9617 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2d4af17 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa477befd dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaf20b996 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb1facc05 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe0b7990 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcbe64c58 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcc9d0ec5 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc24ff67 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd57c3f6 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe8035ebb dvb_register_device +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-frontends/ascot2e 0x8cc6b05a ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x501d43a4 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x12a5d044 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x33e6a03c au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3fa7bc1a au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x43c95615 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x85e27626 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8a65ded2 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe051383c au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe4f648dd au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf7fc1a99 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x378ee3ad au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xac57386b bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xbc7ed19e cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x9e6d3059 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xa76e9bf1 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1fac4077 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x78233b90 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xd9f2cbf3 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x36999c84 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x380af1a3 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x3c9fa432 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x219ea3ee cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x278fdd17 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x670c480e cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x66b0c206 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x09c09bc5 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0f05b9fe dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5a586c2e dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x71c3ffa5 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfde28129 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0c2a3583 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x15174c21 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x173435c2 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x24c9625f dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x51bad5d5 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9552cdfb dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x96167093 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa92c3a30 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xce647353 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe11c0c79 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe6c3f555 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe8234958 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeca62663 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf093f1c3 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf5b07fa4 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x754f0520 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x06500887 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0b4eb599 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x25c74ca2 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3263cea6 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x36c5666b dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5f72a0f9 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbba339da dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd8b850dd dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xeffa8e1a dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf89ca23e dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x7c8bf0aa dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xa28f75a2 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x170c9075 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x262a10ba dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x29d9e4a8 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2a663279 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2c3704a7 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5811fa70 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7ffb6ef9 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8b56d7ae dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xce373702 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd6ef8c43 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xeb8b3d1c dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xecd2de94 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf1018804 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1066e013 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7ab5a513 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd7f867a7 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xdadad699 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe64bf0db dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xb894d184 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xd5aa39ff drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x3e461d62 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xb4be2a84 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x8c478294 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3ffc166d dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x5d1d26c8 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xf6d302a0 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x761198f8 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x208fc336 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x597e8c5d helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x3354da51 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xb830e022 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xdc6bd44c isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x38162af9 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x40156ce6 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x88688067 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xe5606877 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x06ec97fc lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xec9dce28 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x3c43bd45 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x04d282be lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xe586cd12 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x2cfe1a7a lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x8ac3a85f lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x73aea173 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x31337093 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x537d3888 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xeb655d7a lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x097d0535 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x6385c9b4 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x9ff4e22e m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xcd48ddf2 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x6c3e7870 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x3e664393 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x101dbb60 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xd80b5149 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x66d77bae nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x3ab82195 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x0fe60626 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x98402858 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x792b1e06 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x26913c9d s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8eaf881f s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x779a33da s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x549d7aad s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x9086fcd3 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x0805a787 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x5d7f4106 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x6ff421bb stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x3f3f85be stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xad87b0d0 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xcd4f96ad stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x7a06e630 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x58e411d9 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x68140fe3 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe926f58e stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x2b23bb8e stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xe3b6c7ae stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x657118f0 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x8f053b27 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xe7f25bca tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x0f385644 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x278e1de0 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1bc9bfc5 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x2044a0b1 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x7531b656 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xa1b0bfbc tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xd37f25d8 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x0d5a134a tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe94317b0 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xbcdd9cf0 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xfd38115f tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xaea9dcf3 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x79814337 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x130f1a55 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x47b0c3e0 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x09a33c62 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x36837ecd zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x816d8984 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0dbc3fc5 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1dc6ccf1 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x44eeae64 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9dd758ea flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbdbde2bf flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc29da836 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe5b19077 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x04e17525 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5f2fb20f bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbf6c29cf bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xea1e2408 bt878_stop +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 0x9198da56 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9fd4a4ce bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd69715a3 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x055cd24e dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0acec806 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0c46c12a dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x15125a50 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3ece811e write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x40297368 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x88793412 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb0f47a49 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xee70b48a dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x225c4716 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9afb43af cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa2705336 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb8573388 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd7cccfda cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf02172fd 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 0x2b24b783 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x59b7d7f0 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5fbcd688 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9115519f cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x97fac97f cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9855f460 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa23209b3 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x8957e32e vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xbe74718c vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x77528c5c cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa7ddcdda cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd12bbae0 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf3b3083a cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1f72be65 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x38766b69 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x410b1485 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fcf782d cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xeeaa0d71 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf2ac87a0 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfe323ee8 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x17a33874 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a09c799 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x37b5f81b cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x433d3081 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x698abd3a cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7e1cede4 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x81a078b4 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8459d049 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x97e80243 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9bba3603 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d17c5e3 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d444bd5 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa1993bc6 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa972f730 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb63c15d6 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbddd8d18 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc64233b1 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd238062c cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd9f81872 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdd1d78c8 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xe70c9b52 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0b6b361e ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x140760bf ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x22ce04a6 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x32e6e6a7 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4154b4aa ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x50710528 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x540a1671 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x64c4515d ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7148b3d8 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1b125cd ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa3977e14 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xac32a01a ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd926fcf7 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe620648f ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe85f74d3 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf163db5f ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf939d3cd ivtv_release_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 0x14c17bd3 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1df0af3d saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x261af2a9 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x26d0781c saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x40deb18a saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x59491f2f saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x693d32dd saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x90dc2263 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbf68251a saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc0918538 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfad1f055 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name +EXPORT_SYMBOL drivers/media/radio/tea575x 0x0b86df4e snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x36283c07 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x45394e9f snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x84ef672f snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x98b2bc05 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xce47ba7f snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd17c5cb4 snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x0abdaaf0 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x32166933 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/tuners/fc0011 0xe163e63d fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x357fc4c9 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6b04e756 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9fd920d4 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcb6610a2 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x7cc02850 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xabf91661 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x9d99387a mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x8005aa72 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xa58b68b3 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x0071e423 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x089d3bb7 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x205ad782 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 0x7a1d581b xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xf30da7ed xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x73cf195a xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x1ce310d5 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x221c85bc cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0f4baaa2 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x13f9057f dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x32e74926 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7041ce40 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8c47f325 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x97e72367 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaeadbe7e dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd7a737ba dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf0e1c191 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x41ab0ef6 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6af02660 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 0x92d812b3 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc67bdb95 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd7be2508 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xea1d2509 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xea90a819 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1861f7d9 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3a43026c dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4f023fd4 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x733e340e dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7ad6d2bc dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x91f6b083 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9320b8af 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 0x9802f94c dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xaaf140ee dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x48c42fc1 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xbec0dbbb dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x274ca4c3 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb5b3730b em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x07afa25e go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4baad0df go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x82f66281 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x87da7154 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8e3264c5 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9498745a go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb436ec43 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc2ab4424 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdc85b1e0 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x04cdd3ad gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5dfb71a1 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8b826a04 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa39fa325 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa9032d15 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc104b6dc gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf7b0b91c gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xff0e4ab7 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xdacb203f ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xf10c21f5 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1b2429d1 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6101d8f9 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6b707931 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7670a95f v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc33aa13a v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xfb3dee38 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x29a6359b 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 0x72088bae v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8e258174 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8f55c395 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00c37edc v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x025f535f video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0459725e v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x070793aa v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x075bacb1 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x099b2f89 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1302426a v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d41f9d3 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1dfc53fa v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25d16593 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2bdd3398 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32c56a85 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32caf44b v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x358097ef v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35a9e79c video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x374177dd video_device_release_empty +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 0x42e70eaf __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46d75011 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bff64e4 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e5f0abb v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5376efc8 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5450d4c9 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5647bcb3 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x585c1c33 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d6f1987 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f64fa16 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f6af73c __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60eb81b7 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d233c9e __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78515a1e v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x790b960c v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7be1d9ec v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85418f39 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85fcbabf v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8993fd32 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ca523e9 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x912edc42 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x981d456b v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b5b39df v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1215b62 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa96fe825 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xacbf4997 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xadc9bea4 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb4ae0 v4l2_ctrl_fill +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 0xbd4b5448 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc31eb7d7 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc44facc3 v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc72422f7 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd091205e v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd42771ff v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd79df1a1 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde02c68c v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe30f28d0 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6d4321b v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeae24d49 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5380731 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb540eff v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x297254c8 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x38e674ae rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa28c1f72 rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb22bc23c rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xd0c2664c rpcif_manual_xfer +EXPORT_SYMBOL drivers/memstick/core/memstick 0x00edf7c6 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x032525cb memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1a325c93 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5f80b1f4 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x67fcead4 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8456716d memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9e9d19f4 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc08a479d memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc1a58a6a memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd1dd2aeb memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdbb3cc50 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xde24b8cb memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0041968b mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0743413f mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11c67b75 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x16797952 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30e03637 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d51b551 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x496eb260 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b4b86f2 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5341a47e mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x565e16be mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57fd9c0d mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x58e266d5 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x863fca9d mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9afe5022 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa14832a5 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb026b498 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb19d6119 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb431ded7 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb5507220 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb8bf2c92 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb14978c mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbcd5a491 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc17631e3 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd298058d mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe3c24191 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9064882 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xed688c53 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf8b44880 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfc003bdd mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x016eeab9 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03b06dc3 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d9baa1d mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23d03968 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f0cfe12 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x479b297d mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4c986dce mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4eaf71f9 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5676ef8c mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5870229e mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e37ea66 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66df6c89 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d5d5d13 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d2a1325 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ac04f80 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa42df5a7 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa4913f83 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb490efdf mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbce14924 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc263bdf5 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc92031c5 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc9d3948f mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1d6904c mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde0c7fb9 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe477fddf mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf2fe9c3c mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf5e390f2 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/mfd/axp20x 0x098997bb axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x71c71fdf axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xee96c3a3 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x02c64e71 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x6f074ee9 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x87bbed0d dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xa85ed2ba pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe0f4207a pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b113583 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2c515133 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3a68f139 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x44eb676e mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4be89832 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8f017917 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x918975ae mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa07676b0 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaa8c68fa mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdda4d7fd mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xecf7cf6e mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x68da10a0 qcom_pmic_get +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 0x0f5051d0 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x1546853b wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x277c3ea2 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x29097c78 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x9380e247 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xb81e3c8f wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xd1e7cb9b ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe05e1af4 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x2ef78ebb c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xffc09b71 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0aae2c26 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x10870d86 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x36f4c4c9 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x5eea9e2f tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x88acf6a6 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x8c47c034 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x9309bcfa tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x946083da tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa9bb93ea tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xaa238041 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xaf80413d tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xb17cd1dc tifm_alloc_device +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x51edb36e cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x92c541b8 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa424c463 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa6015fcb cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xaacb23ab cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x2ade9ad5 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x55c0a8fe dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x60fa8226 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xad3f950e dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x87d1d995 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xaf64c84f mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3a51fabf cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3b457189 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x571442ff cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x751f567c cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9252ff67 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xad04e930 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe7e51294 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x26034faa map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdc9261b8 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xddb76de6 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xeb36bc26 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x86aa7d01 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x9f1caaa0 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x694dba7d simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0xa8efe882 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xe13a84d5 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x0494d690 of_mtk_ecc_get +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/nandcore 0x0832c255 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0a17c07c nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x102f854d nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2e29cb33 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x38f983f1 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x450b004a nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4c3ae4fd nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x56eee172 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x645e955b nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6a2d865f nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x79fb7bd1 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8739b863 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9cec72a9 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa46061fd nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaa780b11 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb48a868e nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb734a562 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb9cb7aac nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbce803d8 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd187ec5c nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd937ce89 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf8a81121 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x02f5f765 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x3e97acf2 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x77314527 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xb2ff86ef denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x24b57c20 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2e356646 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3afadae4 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x42ec1722 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x48b307d8 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x57d6cb57 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5fb07244 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x605d5a40 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x79319575 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7c97578d rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7cb07c1a rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7e619350 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x90c743ce rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9671c19e nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x99f34138 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xafc41363 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf0b51be7 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x9c489204 elm_config +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xa9fd8250 elm_decode_bch_error_page +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x070140e0 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0af17fcf arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x167b261a arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2dd7af39 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x316ecb70 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x42a21b81 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7428936c arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8f94c82c alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x92c44ca2 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe0b474a7 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfc3cade2 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x12b64b41 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x625afc29 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdd3c67d6 com20020_check +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x46d27cb5 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xadaaa577 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xb6421ac6 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x6de3a50c can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xa6db6223 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x002c3d25 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x08421fe5 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1365eecb b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x169cbb11 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29df89fd b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30e138c3 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x368aa786 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3ade69b7 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3c0c8a72 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x429fdac8 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4576e745 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b268a0f b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5f43d840 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ff6a3fe b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x62aa4f7a b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69a7266a b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8d08b61b b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x90a11ea6 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97fd42dd b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x99db4c2e b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d29a153 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9db19ead b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa1869c18 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa6b756da b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa7bf6631 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xad9bff7f b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8f0c271 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbadd4399 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc412cefa b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc6318241 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcd5ab8cc b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd7465bc3 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdd00f765 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeacbb70c b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf212b4d7 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf6474c44 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf76561c9 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf8f8b586 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4467c535 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa5fec87f b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xcf0a9d13 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd442e7f4 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc41e8d62 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xdcc5efc1 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xefd14cdc lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x1dea6588 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x2cd4d2ba ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xbcd908e2 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x18d42080 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x61ea53d3 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x6c4b1e8a vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x2cdbc3f2 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x3a040628 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe67e0ed5 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xef6daafb xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x073a5842 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x09698f7f ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x74948c40 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7c595cfa ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9991a5cc ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9bd34f45 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd9ddd8b3 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdf1f3ac7 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe213a969 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf69739d1 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x54a705e1 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xd07d0fec cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x5243a47b cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xc20a399d 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 0x136ea252 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x278b23de t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b43d7eb t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41041454 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f9dcf6d dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6be92fcb cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d8a551d cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa28fceee cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa700f0e6 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb6d14a0d cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcde7c573 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcfd346e1 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd03f154c t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe20d7c32 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf0628301 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf7571f56 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0086f1e6 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00bf7593 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0200376a cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04337147 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b745be7 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e479086 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22899f02 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3be2ed63 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x43698419 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46405c72 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x469c6778 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b265323 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ed0810b cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x543272e8 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60e6cfdb cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61e85eaf cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64db0fa1 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6968efff cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x696b25a9 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f2fca39 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7da9bfcb cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x804fb64d cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8220060b cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x833c236e cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90f2254d cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9875a3fc cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99049240 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c0573ce cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9e5b52e0 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa73a5b83 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa821e4be cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb473a23d cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6cf0389 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc32fd045 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc674c334 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb18ac4a cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd0df4c0 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd150b7dd cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1899abd cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1f6cd1b cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe77f1db1 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe82da4f3 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecea4a2e cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef7d6f2c cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xefaef691 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfeb89ecd cxgb4_smt_alloc_switching +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 0x274bdc09 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3661b9b4 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x71a9c1f4 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbd32ff22 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc30470f0 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xeec591b0 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xfc8e2c61 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3ef8f49f vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6366cd62 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6d5d6387 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xab1e54ea vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd3a32cb6 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe57c0355 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2b3606c6 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 0xad966070 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x0be10624 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 0x37e17ad3 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 0x1d8b520d fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x2b182b75 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x6bb288cc fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7a23a250 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x08f27a11 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4128ca3f hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x95ad0b98 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf4de2e6e hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xfc0a3c98 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x3b4ed6af hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0d5170eb hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x19261a62 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5373f25d hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5448de9b hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x60cea2d7 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8487a14c hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xda933c09 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe92e6c83 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x2b99b36c iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xc9855886 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 0x031530c3 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x32ceedab 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 0x3defcd37 otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4385b598 otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4846f3e5 __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 0x5be21dd8 __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 0x7ac9ac94 otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x86188cac __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x86607a31 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x87270dfc otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8a280ef5 otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9d213760 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa835f837 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaef52fd6 otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb150b38c __tracepoint_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfa174658 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfbc11afa otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x01680d93 otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x047df7c9 otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0504442a otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x09454c39 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1c4ba9c5 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1df99cc9 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1fbf9523 otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x26268ce3 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2c38aa84 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3e1a9f6f mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4b1f266a otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x53d49061 otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5cf763f5 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x64b63f5d otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x674071c3 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x899cbb25 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x97ac0e43 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xaf106f9a mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb555524a otx2_txschq_config +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb992e242 otx2_smq_flush +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc466bfc9 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc53dac16 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcb9db5bf otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcd11ea88 otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcf67ef6e otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd33c2ae7 otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd3489db7 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd58db0c2 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd800b203 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe18b627d otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe74e6ccd otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeb2b47d7 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeb8a5331 otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf06ce841 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf37359ec otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x4265e470 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xe9a2efc1 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00521bb8 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10ddf9e0 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13228599 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19da0616 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x265f420b mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x267c59e4 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a6b7152 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d6de37b mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3680081c mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x413e29a4 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a115d27 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52971988 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x540f4bbc mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56214d02 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58ed9c09 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6818f1e9 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a0331df mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77b74433 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80c32cdc mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83035a00 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x869ae839 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90292715 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9139f97c mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1e196ff mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa86b675 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb306395b mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeb19ae7 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf4e0d34 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfd596f8 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc372dcdc mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce041536 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfd104d7 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd870199e mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd954acf4 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbe40ce6 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfcfe743 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe105d4c6 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4ad943f mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe826a3df mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf50f794b mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5a51268 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5fa9c52 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8b2f70f mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf97bb858 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0479a1f5 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07e13aea mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07efa0d9 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0864ca00 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bd4bebe mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f8edf44 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x110c0087 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x125e06f2 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d565c7 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15ffd813 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b680ce mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19d7ca62 mlx5_debugfs_root +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 0x1c6b3ad0 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d8589e1 mlx5_eswitch_get_encap_mode +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 0x1e41038f mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f302e9d mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f922565 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20be8402 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20c27d6e mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21e175b6 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x220bdd45 mlx5_debugfs_get_dev_root +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 0x23bb3f50 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25b72da5 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2843d2d8 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x328bd947 mlx5_cmd_exec +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 0x3691b67f mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39000f7b mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a819bea mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b5b55d3 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cedf03a mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d01956d mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ebd7704 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ef61fc2 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x433ded96 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43f07d79 mlx5_get_fdb_sub_ns +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 0x4fbb63e3 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54ca5da1 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x555592d0 mlx5_vf_put_core_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 0x561c6585 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56ab6313 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58fc9601 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x596f2109 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5abc910c __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5af53148 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c5a0414 mlx5_lag_is_roce +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 0x5cca4ecd mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e6045ce mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f436a02 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f8a433e mlx5_core_create_rqt +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 0x6296e883 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6482eeea __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x659cd2c6 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x660c403d mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67bbf50c mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67f022ad mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6907bbc9 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a458b62 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d988048 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f03cd15 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71563c83 mlx5_cmd_destroy_vport_lag +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 0x737aaf38 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x752a36e7 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75f80969 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79ae7908 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ae88ac7 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80c38ab4 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85970d1b mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86d6fabd mlx5_fpga_sbu_conn_sendmsg +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 0x879f44f4 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87b63839 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87c4b8ef mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87fabd12 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8981456f mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a517466 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c9d9580 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d19fad2 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dd574c2 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ea243d8 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x914400ab mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92137c88 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94f5f041 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x985d2f45 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e569336 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f426298 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f51a085 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3094181 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4603115 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa66d872e mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaab23d9f mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaad419bf mlx5_lag_get_peer_mdev +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 0xac4cca30 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac8f0e09 mlx5_core_modify_tis +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 0xaeb14713 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaee893be mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb172651a mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2822f4c mlx5_eq_enable +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 0xb2ac4eb2 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4324ff9 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb530e63a mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6c75fc3 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc9689a7 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd5add43 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe6d0c95 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc17209fa __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc75594c4 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 0xd015bba4 __traceiter_mlx5_fs_add_rule +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 0xd08427af mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4d37f09 mlx5_lag_get_num_ports +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 0xd6c8f65c mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd724bf27 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7527939 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd774bbed mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd79d74b5 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8c09ca1 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda72aa8f mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd9386e5 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xded7f163 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe183a254 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe24ab91e mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe54fee47 mlx5_core_destroy_tis +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 0xeb26bbeb mlx5_cmd_exec_cb +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 0xec4e7cad mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefcad5ea mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf29220d6 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5d89cba mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88c856d mlx5_core_roce_gid_set +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 0xfa50d900 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb7b9950 mlx5_eswitch_get_vport_metadata_for_match +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 0xfebe540b mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff3a568a mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 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 0x04f5e33f mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x09384f65 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode +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 0x16f4221d mlxsw_core_irq_event_handler_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1faeec37 mlxsw_core_traps_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 0x21d691d3 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2477dc0c mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3d8270ea mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5132f185 mlxsw_core_trap_unregister +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 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 +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 0x64d32b0d mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6501e2d2 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6755f896 mlxsw_core_rx_listener_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 0x718d28f4 mlxsw_afa_block_append_vlan_modify +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 0x7e08c6e0 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x86817014 mlxsw_core_read_utc_nsec +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 0x92c7651b mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x94a95a57 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaaa3d992 mlxsw_core_driver_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 0xaf5f5882 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 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 0xbda212df mlxsw_core_irq_event_handlers_call +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb355fc6 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag +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 0xd888ffb3 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xda4ad89b mlxsw_core_rx_listener_unregister +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 0xdc5c95df mlxsw_core_resources_query +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 0xe1860dde mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe7dd4020 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 0xf02d8e51 mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf9894afe mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff2a391e mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x4bcda022 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xca83f8e6 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x112d8de7 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x5e5319f5 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x074a1523 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x143db563 ocelot_get_sset_count +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 0x1c69d7c3 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2342f13d ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2614f658 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29627855 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2aaa32a0 ocelot_port_bridge_leave +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 0x2ef50d6a ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x356a67d9 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x396b3b11 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f6043d9 ocelot_deinit_port +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 0x437820bd ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x437db294 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45947db8 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46115261 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46d70c0c ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a375068 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x542fa352 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55005bc4 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x557c77fb ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x579e521c ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e44e516 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e6e024f ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61bb8445 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6694df2d ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b8d2fd8 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x702d5905 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x710691b9 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7390dbaa ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x747d32e0 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e429f5b ocelot_sb_pool_get +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 0x81666713 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x835fab9c ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88c63c1c ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c4e793e 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 0x9115d127 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x926d74b7 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9698621a ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98235e7d ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99cf4dc9 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a944926 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa13c6723 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3c98ba4 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa50aaa5e ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa50d4453 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa873801e ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8c5e5e5 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa90b589b ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb333403e ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb33e8fd8 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5948413 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba1f7fb5 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbbe2260c ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc51fcf7 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc0fc39cd ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc307cdbc ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4a3fb79 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb5164aa ocelot_ptp_verify +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 0xd20c106a ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd38fbed9 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd39c0725 ocelot_port_mdb_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 0xd8e7d4a5 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd8fdb223 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9e4cf88 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbaff698 ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc7e985f ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2c8614f ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe777a3e1 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8c5e936 ocelot_vlan_del +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 0xee4d96db ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf06bc685 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf281a884 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3d61df5 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc2d0332 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x15cf6ef5 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 0x7d4819d7 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8b97339d 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 0xf82e431e qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x9e933e67 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xa92ec321 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0ab1614a wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0e76ecb8 wx_set_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2107aae0 wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x23d7ea47 wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x276df544 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x27c90c7f wx_clear_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3ab8458e wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4c58da71 wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x679219ad wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7043389d wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x73aae0a0 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x788c32c7 wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9905f1fb wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa2e97548 wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb2a53c4d wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbcfe761e wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcf9eeca5 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdbb9f51b wx_disable_rx +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x92d18faa hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa228e70e hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xaac250ef hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd2de99cd hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xde242e82 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 0x7e8fabde 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 0x225c6d30 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x57e5a794 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xa97cbbeb mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x263b6842 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x6bdfc02e xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x798814e8 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x9e0c76e8 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xf8dab4bf xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x28cbed87 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x54629cef pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6b92068e pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc504ad46 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe1fe7c82 register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xb8584d1c sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0317e47d team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x1c5f1998 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x4d9fa2cb team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x6f128dee team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x87251b48 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xa3ae6d15 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xbf6ab86b team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xfff141c3 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x73b9bb2b usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbbc05b94 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc55f12df usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1a4db408 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x508c460c hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6998e1bc hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x70414cd9 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x92d2db05 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa52c780c unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xaffda1f2 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd28e6bf0 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdfdbe76e register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xecb3b807 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 0x1d626e7f ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x54226251 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x66677dd1 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x723d4d7b ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x79df1438 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x835cded9 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f3f260a ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa3fd56f5 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xae468807 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcc815f39 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xed112d49 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf71d6bbe ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf8a177dc ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x026243ef ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x04b2ec1c ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0706ebda __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09261e2c ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c349316 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d7ab984 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x155e370d ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18ab5855 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e661287 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ed1a791 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ed4d378 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22bcc0a0 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c3d055f ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3886f005 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3dc33d28 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x402a4ab8 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c1d7e03 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d1870e7 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d6edf87 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x589300c7 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x592f60c9 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5eef3a40 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x643f06a6 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d1b4fd4 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d31e0bc ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72170b37 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7439cb0c ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7c93df46 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e59e7c9 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80799a1f ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x809ae52c ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x83f533b0 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8dd9fdad ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9640e6e6 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa36338dd ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa38ee1b0 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa390132e ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8103b62 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac1d7012 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xacca999e ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xafd0da87 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5c28f23 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb7841a02 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb97bc598 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd64058e ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc260f710 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3cf9092 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xceb1e1fc ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xceeda765 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0a2948c ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2a795aa ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde5d26c8 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1d2db92 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeecfb132 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3d155c3 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xffc72747 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x010fc2e0 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0745679d ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x100344d9 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x10b07951 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1974ebe4 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1dc908ab ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x35e69c0c ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3a18343e ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3bc130f2 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x449dd699 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x452e7e9e ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x55433141 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x55570dec ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6095aec8 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x650bcd99 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6950de3f ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8891abde ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x918e0f8e ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa1d84538 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa5cede03 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xacbcfbed ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaf2d3e50 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb0b9170f ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb521f1d6 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb7e357da ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb82b4f7c ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc12679e8 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcacca477 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcb913407 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcd8d0f81 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xce1af6c5 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd0f64164 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd73927e9 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdf901e6d ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe10fed12 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe20f67cc ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe344a9c1 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe3ae62f1 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe6bb7900 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf90f5978 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfd0f3de9 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x137a2866 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2f707dc5 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x320e1b96 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x81c421fd ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x83fc46ac 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 0x9d2130b3 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb272a557 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd737306a ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdc364c31 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe74cd873 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xffc89c3e ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x06b7d63b ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x09cc0556 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0cd19841 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12ce00e2 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x22d8b8af ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4e5a3c18 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x50a139d6 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5381d57e ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59b7e484 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59e60f0e ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5bd26a8d ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x747685d5 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7914d971 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x846b1d65 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8f39caaf ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9696c0a6 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a8d46e9 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c21b320 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c85014b ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbeb48321 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc22c1067 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd4603a06 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd9a8485c ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00dc786b ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03a1fdf2 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x041ca8d8 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0edbc7df ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15ddb699 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1671dbdf ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1739ecc0 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1804b39b ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ba100f4 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e76509d ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f6213cd ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fa30efe ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20f0a9e3 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x213e2011 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23f6c92d ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25840a90 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a371172 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ef4a19d ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x368ecbd6 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37660b27 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a0b5f62 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d677ca4 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3df2d133 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4179a822 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42346a1e ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x443fe98a ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4526305c ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x486bc6ad ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4aec937e ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c55da95 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ce3b3ec ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d80b885 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f5820e1 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f952ff3 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x511f60fd ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54779c72 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56256883 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x578124b3 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5afc874d ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5eb6e1ed ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fcb5ce6 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60598b47 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60d991af ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69a55b11 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ce2bc84 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e23fe12 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x700faf62 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70d0adb7 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74799f98 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7513fff5 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ac1cf23 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c0eac28 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dfc58ff ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7eb45374 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f85b4d5 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84014ba3 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8adacf3f ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92cec87a ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9315ed62 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x950bea3f ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b8a517c ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d6e0b63 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d741f0d ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9df45b79 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa377486 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf23ad35 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf7c541c ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb064ef01 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb16e15f1 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb18f0fa5 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3f0f64c ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb55da12b ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba7e307f ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd2640ad ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe51893c ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc55aa1bb ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5acfff3 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc64e8178 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7f173b6 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8c4723e ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc917d8b1 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd08e5fd ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce40fe46 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1e71033 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd28a44b2 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd47ea015 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd502d32a ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd61dffb8 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd702e832 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdda05ff2 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdda77f7c ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe02a0819 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe10896c0 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe11f59bd ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5db8661 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6615c1c ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb9fdc98 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed5923cd ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf54d7b75 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5825ab9 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf72f27e7 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7e9ee67 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaefea67 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb2ca1d1 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfde1bb70 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff7940a6 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffb5d811 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x10197cf6 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x92d611e7 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xbed9d9f5 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 0x1c14b7db brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x33f654ca brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x351234dd brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x38e0d003 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3e145f90 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x628f4a72 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x85f951ab brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xae35bf2b brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb57a74d5 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbc4a1939 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc15ae6bd brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcd828a98 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe9d5db01 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0198e8aa libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0af2ec42 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0d29b6bc libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x249c099f free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2a2e8b00 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2cef7c7e libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3549d93b libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x40c9189c libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x436a6fea libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x50c500ee libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x53f42212 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5b80fd26 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9637de46 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9e570e8f libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb70acfe6 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbbedbdef libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd304e9e1 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd5bf177a libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd96997fb alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfba045b5 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04dbdc00 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x074f85a4 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ac77c68 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0baafab3 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1210a941 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13114743 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13412bc9 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13b7f484 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19982cf9 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d16623b il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dc24a1c il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24e07aae il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2808f9d0 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b7b1bf2 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30986a37 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x316c5556 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x347a662a il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36932619 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3723d36d il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b08bddf _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bc8f2a4 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ef19ca6 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fed6428 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40956a1a il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42d318a4 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46edc378 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4eb083fb il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x524d72a7 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53296839 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5414d72d il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59c397cb il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5bfc3f1d il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ce34233 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d949c8a il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63b422f9 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x641af99a il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67c7e2cf il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68e529ca il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a0efe4f il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b0b4f93 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cf0e934 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ec52ca7 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70f7c55a il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77e51c52 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78e44e97 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e9eda34 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x815406a2 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87cb4a3c il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87f28c1e il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x885a4ebf il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89c40bec il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89e2b950 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d390da5 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x924ee3a2 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93486b13 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96667fb2 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x982b2655 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98caa2eb il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f5ca4c9 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f63d941 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa15bb903 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2ed4aa6 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa30c8320 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa50b9657 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa99ef93e il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaafe624c il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacf85332 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad4aac4d il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2051468 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb261b264 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb26836c6 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3a6db99 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3b0fd5d il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4fc2d59 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb58d94fb il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5d591cc il_mac_config +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 0xba9503b8 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbaae8c29 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc374380 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf959c81 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc496dac2 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc783923c il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc83b33ea il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbd653b0 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcedf6cb5 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcff88994 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1a815f0 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5440404 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7924e3f il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd79f4ced il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda3e4d6f il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd7ee59c il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1da2716 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4aa6fb5 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9e82488 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4671963 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6cfaec9 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfcd79c0e il_mac_flush +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 0x42701740 iwl_trans_pcie_remove +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 0x73e0bf1e __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 0xa43a66b9 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc668f6c __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0390c811 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c88498e hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0f43e774 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1b305db7 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x24c285f0 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x373c429e hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3acb93ec hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x436575ca hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4a8f7f6e hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x59b4fc03 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5fe2accc hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x663753c3 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x78f62d48 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7af68225 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8f4c963e hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa196a20c hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8d6ccc6 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbfacf9aa hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcafab48f hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcd55bca6 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xceb66354 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe5621b83 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xebee651a hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf8521eca hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf8984621 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0ca04989 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x18431789 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1d41016a __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x264eb299 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x315dc9b1 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3e3f9faa orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4bfee44e orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x52e0c1a5 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x585b9f9e orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5991af8d orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x954554b7 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xad285177 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb23e460d orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc059f965 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc6fa55ec orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xef6f7941 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x1b4bff41 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x090855b2 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f304aab rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x155d5101 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16a6bcff rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x172bf4b6 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e4af79c _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 0x37d98cb3 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ebdd1e2 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50fcfd4c rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x513c0ba1 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c5add93 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6cceb3f3 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7152ecbd rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x718363c3 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79bdae33 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e7b4e42 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ea2f0a1 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x813012c0 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8aecde85 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e3fab46 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b9b9cf5 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c5f02ec _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e528efb rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa46ee0a7 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4b0f2a8 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4f19262 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7b352b1 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb806ec2b rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc539e741 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc70101a4 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0c8738a rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3396586 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd74693cb rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4b33762 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf00f4040 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf28f9e08 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf296bc89 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7b092d1 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf80c218f rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfcdb06e8 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff91dbfe rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0f256bdb rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3e823e01 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7311ab17 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb3618e46 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2740f47b rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6e4a9e4b rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc911f949 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf2d142bd rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x062fb215 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12b58a81 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a935ac4 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24354dc4 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3016513c rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38cb28b1 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a2e6e46 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e9296a1 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52a778bc rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x551115b8 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d06f694 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67900fda rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8254d2e5 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c7afecc rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d190b55 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x933bd7f0 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa866fc90 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5235af2 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2c1d707 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6162932 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc98e7698 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd119fa55 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd23b1fc8 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5abe8f1 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd67f3d10 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb55b2d0 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe12b7c08 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe90e9b90 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 0xf14da37d rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xface92c3 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x758bd37d rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xe84ba4f0 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x9e6ba9cf rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x71a9c2f1 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06f8c9c2 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0d54858e rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f3b4ecd rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x120f11d2 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1227cfc4 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1247be41 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x145aa75c rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1642e55d rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17faa6c7 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e31bc69 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x25ffcd38 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2684604f rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28a63097 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2a2f1d6e rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2d0b2279 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2d68d0f3 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x324bc697 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x346013cc rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x374fc5eb rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37fd9f6c rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 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 0x5a3093b0 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d4b2755 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60e0a3e3 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67709200 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6cd425ad rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6d369873 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fcb00db rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x81aed77a rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8e3abcdc rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9003df18 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3fbabe5 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6e5c73b rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8224534 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8d77363 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab73e689 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb2ef8788 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb6917e40 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb88f8fe6 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9088251 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba5c96d0 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbda2d992 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbefae693 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf31ce9b rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9dc9961 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf0fb8cd rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd073b2e4 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8d7cfe7 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde09ee7e rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde16ddc4 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe094be11 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1b86228 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe31c04c8 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xecdf4838 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2f301b2 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf73cd9c5 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf76ff9a4 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf881770a rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9e954ed rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa88d3ee rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa8bbe74 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x52a885d3 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6ca1c02e rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc927c67f rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xefc200ad rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x5a5881dc rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xc9ec3a57 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x45c5d2a7 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x325b0057 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xa9fe4c38 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x01ecd74c rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a36b54c rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x10f7b046 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x170e442c rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x27f19c7f rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x29ee2e18 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x347a49f2 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a28db77 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3c401324 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3f372792 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x47c4c312 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4af4a1d8 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x541ea201 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5934e8b0 rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5b7fe7fd rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x613e4bd3 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x63b757ed rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x65b15293 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x65d608df rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x70fac6ea rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x726cc92c rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x73a1d8f7 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7ca930fd rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x84e64dfc rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x88bc6ead rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8bc4742c rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8f95a470 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x934c3afa rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9513eaab rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa2e67cb2 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa8b488a0 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa9ed32e9 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xae48c433 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3b2438d rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb503f17d rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb51a8682 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb77cef35 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbc339da8 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc46451a2 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc6c0ba28 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd0bcfb07 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd25e665b rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd2a0cbad rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd7ef19ee rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdae5884a rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc1e2b13 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe64bd39c rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe8d2715c rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe963a333 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xec94aeee rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee54b034 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeefc16ce rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf0fb110f rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf3fdfa28 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf4f255ad rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf650a91f rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf72b6188 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf8931b59 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf9b4e5e4 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x00853464 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1093b9c6 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6338bbf0 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6b1521c5 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6e794614 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x781e10a2 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7a8d5b4a rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7dbcb15a rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8e78b6e6 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x936d8250 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 0xa9cac213 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb88237f7 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcac7a87c rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd80cf2d6 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe6c21120 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 0xab594252 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x230543b0 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2b06d21b wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x64961fd7 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbb7e0a38 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x449ffbfe fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe2f67875 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x11d9e7e4 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x3133aa79 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x55f051a7 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6f876ca3 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe354be74 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x60283240 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4b2dc246 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xaba50f18 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2425d3b0 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3068ad32 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3f4f1367 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xca96798a 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 0x042286aa st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x12446408 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1cb297c8 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2678c24b ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5efbbbf5 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x82a3f033 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8cd57ded ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x94e96355 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9aa2df57 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa6551986 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x23b09d6c st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x45f367bd st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x72c00f9e st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x73b9b896 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x748bb436 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7d14ad21 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x868aaa16 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x88fe31f4 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa2abf623 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa4a0bd19 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaa7687fa st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xab161b7e st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xac618172 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd2f3b47b st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xda5c096e st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe4a925d8 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf669b41e st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfb8027a2 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x0ebb5c71 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x1cd628ec ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x1dacc725 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x37e797e0 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x4497182d ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x47a82c32 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x4c2c8be5 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x4f481f1c ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x631a89dd ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x7facb2bf ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x82622384 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xa8507441 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xa85216e9 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xb091697f ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xc0f68ae3 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xc265ceb2 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xc77fa901 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xd98440e4 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xdadd7ff6 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xe5174125 __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x708aa94c nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xccf375ab nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x2398f68e __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x23db14a7 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x2e576042 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x470f3ff8 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x53a56769 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x55558e0e parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x5831e3b0 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5f462213 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x661403a0 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6aea66e2 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x7a59a7e4 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7dcb121c parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x8ad6e278 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x914d1fd4 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x99c7da4f parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xa1d8461f parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xa2adccdd parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xa609bba1 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xa7eaa159 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc3818aa3 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc63c83a6 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xdc53a4c6 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xe4a1c1b9 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xe51bb591 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xe69e0f54 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xe8e49e09 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xf13801ed parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xf40ae724 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xf55973af parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xf77ea529 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xf96f5908 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport_pc 0xb2fac895 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xc2ce27de parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x36b4ea3c pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x39a0d96b pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x697a0e3e pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x702befc6 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x89910586 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x93385140 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xde836247 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe484406f pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xee169196 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xefc70efe pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7710b2c4 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x14de6c84 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x32007677 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x6ae2a9ee cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7706e46e cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xcea841eb rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xdbe80dc7 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x3b5bebb5 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x79781d87 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x15eb6c01 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x25e6e17f rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x316de1a5 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4fa0b5a7 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x51286c38 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7099f4d7 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7760eab5 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7cc80af3 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x84cfe61b rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x913bf504 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x93c8d931 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9d0751ad rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb62f3c9e rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd5737e28 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xde0ec681 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdea27921 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeb93d512 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeeb0dcf6 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfd3231a9 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xdabff852 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x2f75f1cf ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1690feb8 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9c585781 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd2ff3525 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe4743ebd scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2a5a9429 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5bb5656a fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6c63129d fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6d32ca12 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x754899ed fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x93e616bb fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x97134f17 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa2635fb8 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xac56ad90 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbdd9080b fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe0f62637 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x015bf25d fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x075a7f2f fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a58ca2d fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1237310b fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x189ee903 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c33e599 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1defb8e0 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fe7076d fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c599d39 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31ae9d31 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3acb742e fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4339a011 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c115d76 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x569dd730 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58924328 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x609891a9 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63348dac fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66062c12 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66215c0a fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68d06806 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6eed8ecf fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79fce91e fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c761e93 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e7957d8 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fcf7da0 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80366dc4 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8040f00b fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83395c93 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x842f28ea fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84b61b1e fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bd00482 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fc18093 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x938124ad fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9919ffb3 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c88ac43 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9de51b6f fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa948c0ba fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad96f535 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaeec0628 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb576d09d fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7dcce2d fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9eca42f fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb7364ad fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdf084d7 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf3b8fec fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccf1bb7f fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcde24fd2 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2f435f6 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd669a0d3 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8bd981b fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1f9199f fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2879bf8 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe393d36c fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe89eb4ca fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebae667f _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee0d25a7 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf96e508d fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfcac24b4 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4cbd9e62 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x656168c7 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x68c1a735 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6d3962c6 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x6fd314c0 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 0x0407a3ba qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1dfb87a5 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2c6783cd qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x449b42b5 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5443ed60 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x58f49170 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x638b2310 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9237ca92 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x963bbfd2 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc427d692 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe2431429 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfb52e9d3 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/raid_class 0x076f768f raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x6d6edfc6 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x776f6678 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x062968af fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x14867327 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x207889f2 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2593c683 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4be29183 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x50399899 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x630b8aa6 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x818634f1 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x82603e76 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94f0e621 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb73bb443 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbd7e3099 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd3b0c982 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xede2f0c3 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf1356d4d fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf2cd9ba2 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfa106aa0 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05d9b6d9 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1115ecb4 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a4ac934 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1cf973ef sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d0e3bf7 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2734d983 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f3e9235 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x328054d1 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3fc6ee8b sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f025700 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x639c4235 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x684bbd32 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x696d5217 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7bf59ed1 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c89c20c sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a000b4e sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9106d981 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1a223ba sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaafbf6d9 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb324ae23 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb3512232 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4865460 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc308a119 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcaaea803 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec199681 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeef05c12 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xefc378ed sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf115a039 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfce45560 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0e626cac spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x29d59039 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbb876ed3 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xde265132 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf38c8043 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x19b15740 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x44f0ebcb srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5b0d9473 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb824edaf srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xddb2c761 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 0x07564e82 cmdq_pkt_assign +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x081d1a1a cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1bbf6242 cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1f3ed632 cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3f6fab3f cmdq_pkt_write_s_mask_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3fc19424 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x413eebc3 cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x45dae4fc cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x578699c0 cmdq_pkt_finalize +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x58cdc788 cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5a123a5e cmdq_pkt_write_s_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bfd584c cmdq_pkt_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8aa532b3 cmdq_pkt_write_s_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8ab965b5 cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x9194f23f cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa40c93c8 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xabe35a8a cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd529f27b cmdq_pkt_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdf8340fe cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe6c0c276 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfec2df2b cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x88919fb1 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 0x008d7f59 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x11bcb523 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1baeaf03 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3c67c0c3 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x530722f8 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5946c060 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5d4778e6 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6254155e geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7c124396 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x896b67a9 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x93a23890 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb7300bf1 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbf51afe2 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc2b88764 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xda9bed8a geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf39c789e geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf6775009 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x3dfe0c72 qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x53e5e911 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5680e47b qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x61b3f5bf qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x820b666e qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x840d730a qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x87c0a236 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9015feab qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbd6bbcb8 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd7eff288 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd813148d 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 0x9e1b2a12 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x07b8923a sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x15444623 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1b835cbe sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1c9cbcbb sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2056bdc0 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3fd6445d sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4146e18c sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x44fac1d7 sdw_stream_remove_master +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 0x6e0b9d77 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6ecdb5d5 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x72384f07 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7851c210 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8137672d sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8f32c207 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa2b08596 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaa5d1f3b sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb24bf94d sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbb70dc18 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbf0971e7 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc282e6c9 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd860214a sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd9073c26 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd9d641d4 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdfa4142b sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xec9d58de sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xecb742de sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf3d5f371 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x08ba9495 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0b3c0f5f sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x12c151b1 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x14d8e7d7 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1cedf817 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2f083777 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3c45c072 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3e48a103 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x496b55a9 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6b1acf99 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x78782a9c sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9bab95c5 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbade159c cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc0e1e9fc sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc7c18c68 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcfe38959 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdeab239a sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xa6ce7e27 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x00c21c3b ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x2c1a6c49 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x3240e54d ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x3b47c0c3 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x5e69142e ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x67480559 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x67bdddbd ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x7270d0af ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x85f4a24c ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x89c5878c ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x953b998a ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x994d7c77 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x9ed54887 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xa9410f43 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xace53a3a ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xafa1811c ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xc3c08076 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe403c7b6 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xecd9469f ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xf75808bb ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0af4d092 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2a5a3528 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2adcdc9f fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x355eea97 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3609f25d fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3aef5f80 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x402065f2 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x43fc4494 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b5a85c6 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x64932bbf fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x68629f9a fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6fcdafdc fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x811d1c24 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x84dc4f52 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x89824ed6 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8b58cacf fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb31c7a01 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb5ce0414 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc41d49b5 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc5df3095 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd8d23d5e fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe5c4dc71 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe9fa3172 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xedaa997d fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4da0b1d fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7b56b95c gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x81b8b11c gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xc646be82 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x608671d2 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe2ea36fb ade7854_probe +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x1151644c nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x88c49b1f nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x059c5c2e rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0643c069 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08eaa358 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0cc4d533 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11b0a447 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x175cee5f rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19ad41d1 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c110179 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x272529f4 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x297c57c2 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32741a88 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3739a22b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x399aa20e rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3dad8110 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x46afcc67 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4768e72c rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a3724a1 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d63bded rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53486547 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x545faafb rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56ef7d8e rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c83eb86 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6183b601 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x650fe2d3 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x658df2ae dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67e11b29 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69b85a94 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6df3ead0 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71d2b88a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7af3b284 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8eb567ac rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x906297b3 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92d4aad1 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94fdb5da rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9da3745a free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ea9ec73 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f4f9efc rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0d098b4 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4d1e3b2 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5755d81 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc27fabbc rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc425e6ec dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6f5c1a4 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeef8a974 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf24a61df rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfad82b1f rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd718a07 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfdf949b9 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xffd4ce67 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x003403e4 ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01ae6fd7 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0314c775 ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03b6e2fa ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a0e8ae0 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x176116f6 ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e01265f ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2259dee8 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x248a867f ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x304e929b ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33bd9360 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b999968 ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d6b50ed ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e9d3ea3 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x414ded5f ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49031610 ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a23e238 ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57360312 ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x573cc8f7 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e560302 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68b9763d ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d2b6048 ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70184518 ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7384a4e4 ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x806f2421 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81a4c7e9 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x836f36c9 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x85a486ae ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91997dac ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa95a5d4b ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae3f39f0 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf339d18 ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2846d0d ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4ec95ed dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb549473f ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc599802 ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbff1c699 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc39b58cd to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc57bafd9 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc718c645 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc761def3 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7e83b3b ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8ae58e1 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8c0f436 ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5251da1 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe768d270 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7a0640f is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe86a9848 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed0117a9 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9b56b51 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb3b7805 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc3ef007 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc7e6272 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x002d0de6 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ca949dc iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ec22013 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c8702f2 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21c0206f __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21cb65a3 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x328c7b6c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35ff3ce2 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37c2c881 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3896aff2 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38c57f02 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3930d3c3 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x441d283a iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4af3bafe iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x514b645e iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52d00efd iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54429f19 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5de27f12 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d0d219c iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x71292328 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74fdd8d9 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x757422ea iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7cfb6859 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80e190a4 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b6a0f4c iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8daa3048 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x903b2add iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x964b093e iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa635f35a iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbba8e134 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc09408c5 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0e2760c iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1bbcde5 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc95d2a3e iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd6ef658 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd78db4d iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9bed9d3 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdbb6bda1 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdcb3f340 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe58dd79a iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeafa3cb8 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5171ee1 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf73feb94 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf90b9e46 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfed156ca iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x02812dea transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ad69d6d spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c5bba06 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ea9ffd6 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f304e39 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x159417e4 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x16837c19 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x170aaddd target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x174b194e __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1850026c core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ad2083f target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d4ccf92 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e648203 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x26415d26 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2786be6e target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x29467867 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a57cec3 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x2fdb2c75 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b0398c0 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x3c5911f7 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ca1efa4 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f110190 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f14950a transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x4397d2ad target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x456710bc spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x45fd7f57 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x46422d88 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x46725aae transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x489f9ba5 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x57d3d762 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x57e76b69 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x62f75a82 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6776b05f transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a029ad5 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b6d0e25 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x6df7b734 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f953bbe target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c8d7f7b target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x82818e1f target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x848577ca target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x88f13c15 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b5754b1 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x90fe4949 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x98d82163 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3fc1f34 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9c3ee04 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xae5dab9d sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf05977c target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1ae7e2d target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xb83a09c7 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc715d0a7 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xc861115a transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0fb0f60 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd108fc27 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1a84ecc transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xd22da8f5 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xd69a74ab target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9731920 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf53c234 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3606038 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe975f9ac transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xec729a64 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xed8ad027 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xee3bacef core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xef0f8f3b sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xf044a60f passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3da5303 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xf66717a3 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7121d0b spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa973a0e sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc382ecf core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xfea02831 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xffcf1b56 target_depend_item +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x15ef6745 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x31a1e320 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3e8fb228 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x44c6155c ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x54c3b870 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x773e64fb ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x874eb2c8 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x87de1c08 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x921813c2 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xab1e0a96 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xba920a11 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xca03ed36 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x62c7095a usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x6c252e4f usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x04e368af sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x03b07475 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x16416456 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1e683781 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x279d135f usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2bf17a3c usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x339c0767 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3e9e5866 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4610e951 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6539dc41 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x89eede43 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe913fd01 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x06cd61fa usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb7cb4dff usb_serial_resume +EXPORT_SYMBOL drivers/vdpa/vdpa 0x912d4e52 vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x14c62c8b mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x150e712b mdev_register_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3c8fe662 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe657a3b2 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x6dc7b3fa vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xcd874cf9 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xcee5036c vfio_unpin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x0d3afd69 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x626dad1e 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 0x02c06508 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x044bfa1c lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x466668fa lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4d6f9e7b devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x135a109f 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 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x62fa0151 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x649956b2 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 0x8fb75d24 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef596d5c svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf188ff73 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf592c334 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x8f3239c5 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x0480af25 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xa593bbf2 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x33f47ccd cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x741affbe mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa922efa1 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb94b1481 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xffc03d1f matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2efbccd6 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x53038106 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x82c1603e matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xafc070a8 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x9f396972 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x22c92be9 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2cc34f6b matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5d8796f4 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x75713f51 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcabb4193 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x594d7acf matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xaa4540a4 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4a9076e3 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5038e489 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x874f5665 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb4de38e0 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbe60cb2c matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2e05553d is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x320f86f4 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x621633ff virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xdaaf7c80 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x36267ef8 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x3681273d w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb4590469 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf7d470de w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x2611e56e w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x2a64fd07 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xca6a2bea w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xcbbcf9c0 w1_remove_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x0b836a87 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x115a7a05 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x124582f0 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x1471254e 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 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x2f313ecd __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x31624e6f __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3666ad82 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x386e6cff fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3facfb9b fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x458c295f fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4745de5a fscache_dirty_folio +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 0x6c5e41e7 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7457df68 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x750707c9 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x88529b56 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x8f521ac2 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xa9005751 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xac356e70 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb1fa8b50 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xc92958ce __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xd4a6c2e7 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0xd5d94139 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdc105150 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xe1019a4b __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xe336546d fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf600a241 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0xfa9c4b62 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xfc0e339f fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xff922555 __fscache_begin_write_operation +EXPORT_SYMBOL fs/netfs/netfs 0xa94fc37c netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xb01fd20c netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xd7c0d691 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0xde2c95a4 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xfa2b98f0 netfs_readahead +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x920471fa qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9cb953a2 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x9ce16dea qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb15bdfa0 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xe8b9d8ad qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf4550220 qtree_read_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x6c713da5 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x916491ac 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 0x0cb562e6 lc_put +EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed +EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get +EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del +EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x77ff614f lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create +EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find +EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xeb947a2f lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xf0e20f9b lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xfba16232 lc_get_cumulative +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 0x274bfb13 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa7366140 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xbe97e8d8 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xed9f7ef3 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf41691fc lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf8e4535c lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x608b1ec2 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xe38b2166 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x81d7d8db unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xa6339fe9 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0d2cd4b7 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x0f0a8121 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x1564ba03 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x1755cf1f p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x17c81135 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x19e83092 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x1a794a49 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x247ce92c p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x2a6a620a p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x2e70f4bb __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x2ed7f7c3 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x314dc2c3 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x3717f05a __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3f840c0e p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x47be7165 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x56e2cdb5 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x59dd24fe p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x6b5d5f9b p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x6e37b2fc p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6fcd1b79 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x75225503 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x7e0cb12e p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x8ad2e361 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x8f269d5e p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x943af319 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x9786c393 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xa51c7c87 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xac4ccd25 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xb2c9b0f5 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xbb2bc05a p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc0271777 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xc2cd09b8 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xc4a5153b v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xc646b569 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0xc8829397 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xc9818334 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xccd79e3c p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd66cd65f p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdb10411d p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xdeca0d75 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xe54a9a5e v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe81655c8 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xeebc5cc6 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xf0f3d655 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf19c904c p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xf624f621 p9_client_clunk +EXPORT_SYMBOL net/appletalk/appletalk 0x460789ff atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x6d35b0e1 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x85876453 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x95791c2a aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x083ad919 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x16b1e8e3 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x375cde25 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x457e7f8e atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x5b214271 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x648851bd 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 0xb331e183 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xc5d8437f vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xd4bd6461 atm_charge +EXPORT_SYMBOL net/atm/atm 0xe32462f5 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xe8073e40 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf4ec44ad register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xfb1f4a1a vcc_release_async +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 0x4e415c1e ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x55dd131d ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x77f4aaf3 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x7f471df6 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x990af612 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xb963cbde ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd794ef20 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xf94e19cb ax25_linkfail_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x06665e8d hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x08d22357 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a935683 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b54c171 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e1f7cef bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x20916e2d bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x20cba89c hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a040784 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2bb28271 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x318dfb6c __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x35774cce bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37cc90f3 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ae7c704 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x573a3cdc __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b7211c3 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60aacaf6 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e2547c4 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x76bb69c1 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a4fd185 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a8457e5 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 0x7bd9427a bt_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d303ea0 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7dae5b05 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7daf98f8 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x852a76d1 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x88b83f77 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c1ae7ac bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95fd83d0 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d3f5135 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f2898ac l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa12d4251 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa32b28f9 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa64a2019 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8351f7d hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xacc315c9 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf1d142c bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb01e583b hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0e1a721 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbca40f74 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfb015c7 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5383420 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7ef413f bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xca482916 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd010857e hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe088a386 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7b97a7b __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeddf6266 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1243de7 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf31f124b hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfec596b3 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff4cac3b bt_accept_dequeue +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x782f7995 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8e25ff6f ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa63b553b ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xca10dbef ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd339780e ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xff14f5ef 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 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x7307d1c1 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x7936cc2f 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 0xadf1950e caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xafa63dd6 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xb2c84f83 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x4860fedc can_proto_unregister +EXPORT_SYMBOL net/can/can 0x7c733232 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x962dcdb1 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xbadd5e68 can_proto_register +EXPORT_SYMBOL net/can/can 0xf7a8a57d can_send +EXPORT_SYMBOL net/can/can 0xfa008a9d can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x033fd35f osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x09119b7a ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x0ae71a7c ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x0c8c835e ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x0df69720 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x1303d89a ceph_destroy_client +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 0x166b82f8 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x18d718ff osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x1b6204e8 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x201fb0cc osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x24653185 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x26b7dd75 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x27dd7c85 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2c32f003 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x2f2bb87c osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x3353247f ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x33db68cd ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x36b488bb ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x377e9e03 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3a65d440 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x3a9b8f59 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3cbdf556 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x3f6338b3 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x41958e6a ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x42cdd4a9 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x43d0d21a ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x460f5d5d ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x478c0080 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x49732d70 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x49b7bc66 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x4a3bedc8 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4ab63e11 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4d77aa36 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x4e98a40f ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x4fec6956 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x4ffeea9d ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x50e5f2a4 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5160db69 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x5412b77e ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x557a2703 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x557d9f67 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x58e63763 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x59229760 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x5a547934 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5bf6dfff ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5c2c5978 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x66a7dc61 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x680c3124 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6ae94448 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x6d42c32a ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x6f86beae osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x75461a85 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7b0e993c ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x8294720d ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x87c4d7e1 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x8a12ee1b ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x8a21b4ba ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x969d22ea ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9957e871 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x9b61d345 osd_req_op_extent_osd_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 0x9eecd057 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x9fa33b96 ceph_msg_data_add_pagelist +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 0xa448d906 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xacd24745 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xad498d68 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb00ce1ff ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xb2ac26c0 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xb31eeae7 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5e49f4e ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe1bd96a ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbee48be6 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xbff10b7c ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc52bad0f osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xc5cd335d ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xc7af3535 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xc8467a25 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xca727b1f ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcb34b4ed ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xcbe5d733 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xcd04c7e9 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xd3a9195b ceph_osdc_cancel_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 0xd989c860 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xdd469515 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xdd6e66dd ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xde51c13e ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe012f50a ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe6fc9703 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe830c391 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xe934f7d2 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xe9febde2 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xea2a3393 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xea37da16 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xed4eea4b ceph_auth_add_authorizer_challenge +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 0xf1758433 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xf33c6b48 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xf381a0d0 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xf3dd53bd ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xf4ab40b3 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xfef75cb0 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xffb8fc0d __ceph_auth_get_authorizer +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x57785b4a dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xddc70b3f dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x07657595 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x5e594eca hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x180fd637 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x227d547f wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3e515452 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x57bcefc6 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x60a54168 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbd39ffad wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x68034fcb __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0f7b1be __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x5109cc82 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x04e795a5 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb8c24f7e ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcd43de7a ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf63b2336 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2b5501a8 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbe09a19b arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xddf0ffd7 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe7c7d9c7 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x08736c91 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1bd5e9b8 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3b93d8f8 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5a3c801f ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x3ef3cad9 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x94b27930 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xc2e76187 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x02068e38 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x02fb20ba ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x18e93a00 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x430e1ee4 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaaa83d98 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc2b5a6e8 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd0ee9682 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdaa09dd5 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe825f039 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2887c054 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x567bf43d ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x779565b2 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf5a33011 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x2df8f793 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x331501bf xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x94562516 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xefdc754d xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x21e0d4e9 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x36cc04ed lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x37e69535 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x40f962b5 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x7ea2874e lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x8919e1b9 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xc8ca24a8 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xe1565996 lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x2fa9d817 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0xa666eb00 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xbce2628e llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xc036ff5b llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xd47c0afc llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xdbe2c2d9 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xf1c0fdae llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x00e685b4 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x0573ec57 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x0ff71b27 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x118336d6 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x123d5e6e ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x13e5c8a6 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1b559982 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x1dbc472c ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x1ec0f90d ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x20744056 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x268e57fc ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2941932a ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x2af5e649 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x2d764cb0 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x332f0d57 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x3a634a44 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x3fbecfea ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x434276e9 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x46ba45ac ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x48f36615 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4979dc02 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x49e921cb ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x4b508823 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4f33a19d ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x501ec85f ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x52fbd4e5 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x551302e1 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x58c36bb1 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x593c23cb ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x5aa3f56f ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x5c9e4ad2 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x5e0a67bc ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x6238d675 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x62812c0b ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x64192bb9 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x6692f3dc ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x6720284f ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6a17ac3b ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x6d5e9083 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x70721707 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x754f0fc3 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x78832efa ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x79f0b96e ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x814c54da ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x81a31fe3 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x8323f226 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x86adb682 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x893e64d5 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8c7ae109 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x91b65bce ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x93bcfa2f ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x946b79eb ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x95e48a09 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9baca0a7 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x9dd9d11a ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xa11ce5a7 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa242fac1 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xa2a9e526 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa2b78bb9 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xa4b3f6ad ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xa5841238 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xa73a1174 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xa76c897c ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xac6e103d ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xacddeee1 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb17da4a4 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xb2f54202 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb4454040 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb4df9f03 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xbb849861 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xbfb153e4 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc1ff0e30 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xc304a890 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xc5d4c6f1 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc5e23563 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xc604d96a ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc7c94b0c ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xcaf9abd8 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd3850327 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd598ef4c ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xd6850df2 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd779bed4 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xd77a022c ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xd8b89eb2 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xd90d21c3 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xda13f1d7 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xda6bd9b2 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xdf13b576 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdf87c585 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe2b4bc5d ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe4d86728 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xe8976dee __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xef223e61 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf412b319 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xf604c920 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xf6875462 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xf9a6d140 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf9e22eb5 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xfb78f424 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xfed078e4 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xffc9cae1 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac802154/mac802154 0x0bb2da91 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x0cc5f743 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x52036b54 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x899418c1 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9f067144 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb75011ff ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb8f5dfd7 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0xde5f94bd ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xf0b3fdb7 ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0ae0ab97 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x14568dde ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3c9d1d5d ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x41d96594 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b941b47 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5baa2345 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x618b6d16 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x78450228 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9912a633 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaea2e1a3 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc16f8d4c register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc666d870 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xced74d9a unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeb905425 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfaf5d40a ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x72559aea 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 0x84b59f45 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xc2c3b480 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xc315be79 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xf0c242d2 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x025bd2df xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x1fe46081 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x580df660 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x72976653 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7a267c71 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7a609ba8 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7b70e0e5 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9a8a272f xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xae18101b xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd6bc8346 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x046c2436 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x326a815e nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x3d91827b nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x49637cfc nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x4b1352aa nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x56c2ea80 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x59fba007 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x6a28e5ed nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x6cc1675e nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x80e0372d nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x99667d9c nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xa7618ba2 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xae538eea nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xb3f33b1f nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xb58da30a nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xb8341fb2 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xc55d9e6a nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xd315194a nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe267b052 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xfe816ca8 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xfeb25a07 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x278ee4b3 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x2e0679ce nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x476f3752 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x53bda47b nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x54970bc1 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x5f089105 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x687877e6 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x6b88b611 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7879a6a5 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7eea8c0c nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x87e76e00 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9854b5f6 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x99b8f22b nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xa3a082db nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xa50293e4 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa8893ba6 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xafa5e390 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xb01b7308 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb3214b9a nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xb3e7329b nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xb7f4e712 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc7d2c469 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xd564cbd2 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd809b78e nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xdde18356 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xe764ee35 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xeb3cf8c0 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xf6934e15 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf95b9d8b nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nfc 0x03552a81 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x049177c6 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x1523c498 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x20cc522d nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x32b9fb97 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x36493be8 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x37ecf733 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x69aae580 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x753fb4cd nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x83e6e0d0 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x8801ef38 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x8f53e682 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x930dd8fc nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x9ad3821f nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xa29db6c1 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xa67a921c nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xb4f17879 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xcab64726 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xcefd6b9e nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xddf01cfd nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xec855403 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf1315efb __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xf74995d3 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xfba7714f nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xfbbc0558 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc_digital 0x013491fa nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x44afc989 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa898f727 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xed3431f0 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x26aa68e4 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x435df0d8 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x9849c7a1 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x9d73af58 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xa98b93fa phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xc4a0a852 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xee644c5b pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xf4b44406 phonet_proto_register +EXPORT_SYMBOL net/rxrpc/rxrpc 0x084a621e rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2d41a587 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x33456d80 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x39e852d7 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4251121c rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x521177c1 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x60f2ed2b rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6286258b rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7f8e6f7c rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8ec8c23c key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x95571f09 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa77c7cb3 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb8e242ae rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc1a0e1f4 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc6b67697 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc91d2faa rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdf9cdf87 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0xee9e0530 rxrpc_get_null_key +EXPORT_SYMBOL net/sctp/sctp 0xc86e7fa5 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x08c0e02c __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x3103c08d __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x37960eb3 __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 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xfd21d4c5 __traceiter_smcr_link_down +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x23c69b0d gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8466253d gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9ce3d047 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x02d97527 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa5c8248c xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc178be8a xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x4c623c84 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xac296d61 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xc164dd69 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xf4fd8dcf tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0xb2533337 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x07cdc182 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x08109420 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x08d5fe8a cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0d990f57 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0da69fa3 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x108c6f9e wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x14a10c90 cfg80211_michael_mic_failure +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 0x1be3bacb cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d817ca4 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x200ebf81 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x224d37aa cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x24371838 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x25c9456e cfg80211_bss_color_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 0x2b57b457 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2c637927 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x3163b736 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x39a7538f cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x3b89198c cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x3bfa668b cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x3cfd5d2d wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x414332ce wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x418e0583 freq_reg_info +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 0x47dfad9b wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x48a6a48d cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x48e26839 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x49517742 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x4c0c9be8 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4e617671 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x4f753511 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x5136e8f6 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x557ed8a8 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x5640c863 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x58787983 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x5948dc11 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x5fd5714b cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x650440a4 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6809aef7 cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x68e9b9ba regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a0841d3 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x6a81841c __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6cbf1ee2 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x6d1a2918 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x6dd7b49b cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x734d9990 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x76e165a1 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x78d26153 ieee80211_data_to_8023_exthdr +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 0x7adc0252 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x7b0a21ee wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7e99cd61 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f8e8e36 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x800fc481 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x82620233 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x829ac3ba cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x830a779a ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x83b6cd5a cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x862358ce cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x9034b4f8 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x927c9b5d wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x94cc8444 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x95aa101b cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x95e909d4 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x97f44fc5 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x98448597 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x9cb231af cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa4a32125 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xae8ee736 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xaf5689bf cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xb0e5b8e9 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xb26528a3 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xb2ec6311 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xbb42ceaf cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xbc7a0c5f cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xbfcceb3f cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xc0388caf regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xc08e6796 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xc45a5f13 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xc7669284 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xccae9c81 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xcd3217ca cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0xce9f32be cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xceb9aae7 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xcf88663e regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xd003bfb1 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xd0202897 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd39c4e0b cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xd41994bd cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd5519398 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd684af30 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdb57f331 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdd58c1f1 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xde10ac47 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xe22bbd5e cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xe2a2d7d5 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xe3b5a966 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe4f0b094 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xe7823e49 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xe8a2dccc cfg80211_stop_iface +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 0xf77e8fdd cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xf7a0e738 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xfb98dcd8 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xfbd0e58a cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/lib80211 0x051bdfeb lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x0b4e1958 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x3a298a1a lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x5354a720 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x59738740 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xb61898c6 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x28b883d5 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x378b4262 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x119e1d3e snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x60fd4798 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 0x7109147e snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 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 0xf07f752c 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 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 0x4d019272 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02601760 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x05e06922 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x071889d0 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x079bf416 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x0e4417d5 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x151057b3 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x17751897 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1d65171d snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x217d8cf4 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x22f5fa0f snd_info_register +EXPORT_SYMBOL sound/core/snd 0x239c659a snd_device_register +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x24d35483 snd_ctl_find_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 0x45d253c6 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4ab2a257 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x4baeb1c9 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x4f8a3f17 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x4fdf9d85 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x582d83fb snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x5f17c6a8 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x5f5e2648 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x61d5b189 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x69a7de8d snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x6ab32868 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x6e450951 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x729055b2 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x76893c5d snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x7a6956db snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x7ae66b10 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x7de33745 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x8370bad7 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x84fb1143 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x88ef9f70 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x89d3129f snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x949dbce5 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x96950c91 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0b63573 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xaa391235 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0xaf5f142e snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb39ecd04 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xb5d14e23 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xbac3dbb5 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xbc2d7589 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xbc7584e3 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xbf2fcdbc snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xc1998671 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xdbeb1164 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xf42bcefa snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xf8c7d6e3 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xf9d33451 snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x0efce800 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0x48ab68cc snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0xf98262d6 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 0x069f9f13 snd_pcm_hw_rule_add +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 0x1f91f380 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x2387713b _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x23d5f313 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x2e4015d0 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x339d10b1 snd_pcm_hw_rule_noresample +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 0x3cd6ed26 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x43636723 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x489f8b34 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x4a106588 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x4b0c627d snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x4b886a01 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x4d0c7ade snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x4e7e6855 snd_pcm_hw_constraint_list +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 0x514965cb snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x56b6e8ad snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x5b50f0c2 snd_pcm_new_internal +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 0x67311cd3 snd_pcm_lib_get_vmalloc_page +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 0x6c7a7da0 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x6fbdf9f7 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x7090cb55 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x73a51c18 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x760461c8 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x77694142 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x7b759c95 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x821980af snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x84e1052b snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x972a9894 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x9a44d735 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x9b434b19 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x9bd116a0 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xa1968f8f snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xa4f42afe snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xac2a3089 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb17a6e90 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xb45fb729 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xd0616f73 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xdcedfec6 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xdf46aa30 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe19a372f snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe5f4090e snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe71bbcc7 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xebbf051b snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xf312da1c snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xf313409a snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xf40843f1 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xf52f2d77 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xfde03996 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1123725b snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1316169a snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1335c920 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x245da768 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x57feedd1 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5da22587 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x72f39b5f snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x79682d4c snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8b400b43 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8b7d495b snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa51d5fbc snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbce58bec snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbffc8292 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc1d722af snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe0d2a992 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe7fedd5c snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf93e3912 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xffba9f07 snd_rawmidi_transmit_empty +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 0xdb61910f snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x117afafb snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x1f52701f snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x57c90958 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x584018a3 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x8cd019bd snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x97621619 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x99e2d8f7 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xbf4039ee snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xc3585776 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xc3baeafa snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xec1640b2 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xf6dcd187 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xf8629a3f snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xfbfea5ed snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xfc80b209 snd_timer_stop +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x74615ded snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x52df8e2e snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x57685244 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x73fae120 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c7e1f41 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb6cb6f53 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc33bd2b8 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc58cf8df snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd553a45c snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf4f88bca snd_opl3_reset +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0f6a5d77 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0fbdd876 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x85acbcac snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8aaa54ef snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa61b626e snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xad5f8d76 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xddc0d43a snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe95cb119 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf2466748 snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0677b8b2 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x18041e89 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x197e4948 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26dc4d43 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x27344383 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b67692b cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2dafda18 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x32c4d675 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x447759ca fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5944db83 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5c6695b8 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x61826316 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6855aeff cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ec74d6a cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7668a588 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f989e19 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98c76cd2 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa31acf22 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa744652d avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb327415c cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0528031 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9246ee7 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd2e3b0ec fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5b67950 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5c3c79a iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe42919bb fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe55e66de cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9a0e7f3 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xec3c400d amdtp_stream_init +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 0xb7b836b3 intel_nhlt_ssp_mclk_mask +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xeba705f4 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x91e2afd9 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb4cc7e3c snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1b2e1d93 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x21fb0269 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x23e87c81 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x59c2f3e3 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x662bb658 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb783cd38 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd3b5736b snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf5d38e8a snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc0515355 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc616a00b snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd37ddf0a snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xfa526d04 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x579b093a snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x70bdba5b snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1bbc6d11 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa82a5894 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb4e9bad0 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xba4849f9 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xef851af2 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf4539484 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0d017362 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0fa67796 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x21f8702b snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x862084f7 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xae614fae snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd910f405 snd_i2c_device_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x01b6a5dd snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x04e594d1 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0a1dd02d snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0f0f6e2c snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11f5341d snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x15a63e98 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x22459ce2 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3297d5d4 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4614af18 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4dea5a27 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x887aa99a snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa47b2f37 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb4769821 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xde01e25c snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xde687e5d snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xef706f3d snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfcf48695 snd_ac97_update +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x01bd44e4 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x05714a12 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x07b4804e snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x51310b93 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x54c97eec snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x70671b0b snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb3a5cc25 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe26572e7 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf1cd2f90 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x24333dde snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x27fcfb98 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6fb6c558 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x015dfbe3 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x07282956 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x08eddc66 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x179eb564 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1d3e853d oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a40f2dc oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ea28cdf oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3bf82390 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x48880dbc oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a43fce7 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c20fb73 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70099583 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x75a39ed6 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9b616e5e oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9cd10952 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3fa1b7a oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa92fca2a oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xabc9e014 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xadcbebd5 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf17a8094 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0708f7d4 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x881718eb snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xaf258c12 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd2927960 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe04675d6 snd_trident_start_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x998bb7b3 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x9ee484a6 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xb4afc389 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xbd39fed8 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x5ee926c8 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x9dbb3373 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xfa851ce4 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x13690324 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x89999602 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x39964066 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6ead7ced aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe8c20c8d aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x33a1abf9 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xce140b56 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 0xb5f3012e wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xbaf2902e wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xbc67add3 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/fsl/snd-soc-fsl-utils 0x1e8d92da fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x44b2f3a0 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xc9f57cf0 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xafe73bea mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xe0910bf9 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xbe229e84 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xc32aa193 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/snd-soc-core 0x9942aff8 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x2f7ffce3 imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x5fad7ce4 imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xc2e14544 imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xffdb8460 imx8_dump +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0x0214a0de mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x06040dd1 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0a05f65a snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0edaee3d snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x103abb9a sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cc4170a sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2551edc3 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x26345a69 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x271dedff sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c759042 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f5f6af6 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x36b44a20 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3bcfc6d2 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d285402 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40293c4d snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40e91a91 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x48b420b4 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c862222 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4fc2cd5f sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5332c8b6 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x56c0c016 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x68f967e1 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x70277bd9 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8019e93c snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8a296526 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c8f5e2b snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90b9e41d sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x934bac5e sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9416e00d snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x95e5a2ab snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9857e909 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98e99826 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xafe3c839 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb43a0584 sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb4ba7dc9 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb925907e sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbcf7ab5d sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbeea476d snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca317318 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcae2de30 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd00b281c snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4b96a6c sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd6e720c7 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9b84d20 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda1f71bb sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda285a7e snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc045383 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe36e9e00 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe3d03d8f snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe6204cab sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe6b7f83e snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea504c19 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb612ff9 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xecdd578c sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2fa58d0 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa19d014 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb06adba snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfdd39d97 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x0caf96ca sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x1c9f0e6a sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xcea31660 sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xde85ad6d sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x827296ec snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x69bec998 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa8c9b488 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xdd5c2e9a sound_class +EXPORT_SYMBOL sound/soundcore 0xe2d480c2 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xfefdf6c0 register_sound_dsp +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2c72f0e9 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x621f735e 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 0x92c88e49 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb54e3c55 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd468930d snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfd1a761a snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x914f3491 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9223e14b snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd3fdaca6 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x0011e6e0 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x00149c00 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x002a49b1 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x0037cb86 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x00437264 dentry_open +EXPORT_SYMBOL vmlinux 0x006e772b textsearch_destroy +EXPORT_SYMBOL vmlinux 0x009bd981 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00c32898 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x00cb76b0 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x00d5ae2d pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00dd5a06 kmalloc_trace +EXPORT_SYMBOL vmlinux 0x00ee1a75 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x00f4a1ce folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0104478c mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x0105352c __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x0107347c devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x0127a0ae km_policy_notify +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x01308151 dev_set_mac_address +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 0x01560f7b dst_init +EXPORT_SYMBOL vmlinux 0x016d4680 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x018ef856 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x01960876 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x01ab2ea6 scsi_add_device +EXPORT_SYMBOL vmlinux 0x01ac8b15 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x01b0c268 mntget +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01dc8a99 qman_update_cgr_safe +EXPORT_SYMBOL vmlinux 0x01e71fea gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x020005eb devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02119fa4 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x0211f1e2 eth_type_trans +EXPORT_SYMBOL vmlinux 0x02208e9d page_pool_destroy +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x024173c3 param_set_bint +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x0265bf7d simple_link +EXPORT_SYMBOL vmlinux 0x0270234b tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0277445c device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x027d448e cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x027e7ed5 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x0283e534 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x02863488 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02af32c1 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c16c99 param_get_hexint +EXPORT_SYMBOL vmlinux 0x02e45cec register_cdrom +EXPORT_SYMBOL vmlinux 0x02ee8b16 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x02eecae2 param_ops_int +EXPORT_SYMBOL vmlinux 0x02efc4b2 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x02f21d3d register_netdev +EXPORT_SYMBOL vmlinux 0x031b332e rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x0324d6eb configfs_register_group +EXPORT_SYMBOL vmlinux 0x03252dce tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x03287174 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x0331ea64 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0343fd44 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0394de7b key_reject_and_link +EXPORT_SYMBOL vmlinux 0x03975991 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x039dda84 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x03a20fc2 irq_set_chip +EXPORT_SYMBOL vmlinux 0x03af2616 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x03b3b0b1 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03bf21eb iget_locked +EXPORT_SYMBOL vmlinux 0x03bf278a fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x03c84935 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x03cbeb9c __nlmsg_put +EXPORT_SYMBOL vmlinux 0x03d6774d of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x03eb0d4b fiemap_prep +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0400c9d0 __napi_schedule +EXPORT_SYMBOL vmlinux 0x0403d8aa mdio_device_remove +EXPORT_SYMBOL vmlinux 0x04084cb4 phy_device_create +EXPORT_SYMBOL vmlinux 0x040aef96 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x043ce973 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0449fa24 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x048ad4ff blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x04ab48a0 i2c_transfer +EXPORT_SYMBOL vmlinux 0x04b2e189 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x04b41442 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x04d5651d bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x050d64c1 param_set_ulong +EXPORT_SYMBOL vmlinux 0x05109746 put_cmsg +EXPORT_SYMBOL vmlinux 0x05140901 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05211bbf fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052df91d pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x053e81d3 __folio_put +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x0572079e pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x058a35fd inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x059103e2 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05abc7c2 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x05abd6e1 phy_start +EXPORT_SYMBOL vmlinux 0x05b9e263 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x05dc619b __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x05e33efc __brelse +EXPORT_SYMBOL vmlinux 0x05ecc4e6 rproc_boot +EXPORT_SYMBOL vmlinux 0x05f648b1 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x05fe314b audit_log_start +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x060eb2f4 console_stop +EXPORT_SYMBOL vmlinux 0x060f8776 fb_show_logo +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062e4af8 mmc_release_host +EXPORT_SYMBOL vmlinux 0x0631abaa sock_i_ino +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063c9a28 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x0646db2b remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x0665a395 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06754760 xp_alloc +EXPORT_SYMBOL vmlinux 0x06827356 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x0685cdbf mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06d66bdb bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x07082b7f md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x070c08e6 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073e3cdd __do_once_done +EXPORT_SYMBOL vmlinux 0x0740cc99 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x0746eca3 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x0767317e backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x07793609 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x079127b4 inet_bind +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07adbcba devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x07b805ed con_is_bound +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d8d02a of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x07d97677 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07e08a16 mntput +EXPORT_SYMBOL vmlinux 0x07f1c133 dquot_operations +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 0x080c0e19 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084620dc netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x084b65c0 flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x084c9722 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x086c1c15 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x08a47a77 dev_change_flags +EXPORT_SYMBOL vmlinux 0x08b1406d lock_sock_nested +EXPORT_SYMBOL vmlinux 0x08cfbdcd mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x08e0531f sock_i_uid +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08ff9cd0 find_vma_intersection +EXPORT_SYMBOL vmlinux 0x09159cde inode_add_bytes +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093ed402 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x09465b97 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x0950fd65 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x0957f814 seq_vprintf +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x097fca72 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x099e56aa ip6_output +EXPORT_SYMBOL vmlinux 0x09b5a204 key_revoke +EXPORT_SYMBOL vmlinux 0x09b9a1c2 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09dca168 devm_iounmap +EXPORT_SYMBOL vmlinux 0x09dd84a3 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x09ed783f phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x09f8126e super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1c9e08 kill_litter_super +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a2b8623 udp_seq_next +EXPORT_SYMBOL vmlinux 0x0a458798 param_set_ushort +EXPORT_SYMBOL vmlinux 0x0a5bd9bf input_release_device +EXPORT_SYMBOL vmlinux 0x0a5ed5b9 init_special_inode +EXPORT_SYMBOL vmlinux 0x0a7174bd xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a78a2e0 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x0a7a21e3 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a8bdc06 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x0a926e53 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x0a98723c skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x0a9e8e2c device_get_mac_address +EXPORT_SYMBOL vmlinux 0x0a9f861e iget_failed +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa5a2ca input_inject_event +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad8843e qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x0ad9ed49 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x0ae0a275 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x0ae6e39b jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x0aed1bf9 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x0afe4e19 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x0b09dcb1 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x0b0b8ecc xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b224014 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b26feb6 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b35ea41 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x0b4a9c32 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x0b4ed6d8 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x0b57aeb6 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x0b637467 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b852f5a devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba81a45 console_start +EXPORT_SYMBOL vmlinux 0x0bac63f0 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x0bae606b skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc63513 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x0bc9bc6c try_module_get +EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf1dc7d xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c045ee0 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x0c0da4cc pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x0c0e471f pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x0c25ce18 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c3a5703 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x0c47c605 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x0c4f6b4b scsi_remove_target +EXPORT_SYMBOL vmlinux 0x0c4ff6c8 lookup_one +EXPORT_SYMBOL vmlinux 0x0c507901 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c65e78f __ip_dev_find +EXPORT_SYMBOL vmlinux 0x0c6632a6 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c820f9d config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x0c8840c4 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x0c97191c register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x0c9e6f78 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x0c9f6f28 key_alloc +EXPORT_SYMBOL vmlinux 0x0ca72e3a build_skb_around +EXPORT_SYMBOL vmlinux 0x0caaf2ee dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x0cac1fa0 simple_setattr +EXPORT_SYMBOL vmlinux 0x0cad3e7a lynx_pcs_destroy +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb57df2 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cc72cda mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd6f1e0 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0ce290cf sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x0ce82759 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x0d04ecc2 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d0e03d2 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x0d14a917 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d334843 __register_nls +EXPORT_SYMBOL vmlinux 0x0d345f6d user_path_create +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d697411 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x0d6f04c9 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x0d729e1d security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x0d774d7a register_key_type +EXPORT_SYMBOL vmlinux 0x0d82dbbb get_user_pages +EXPORT_SYMBOL vmlinux 0x0d882f6e netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x0d9722e4 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x0d98e12f processors +EXPORT_SYMBOL vmlinux 0x0d99675a set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0dac835c xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x0db98cc4 tcp_req_err +EXPORT_SYMBOL vmlinux 0x0dba8cc9 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x0de603f9 pci_bus_type +EXPORT_SYMBOL vmlinux 0x0def62ab proc_create +EXPORT_SYMBOL vmlinux 0x0df755ce generic_write_end +EXPORT_SYMBOL vmlinux 0x0e008d4e __serio_register_port +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e26f0b1 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x0e276551 fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x0e28a276 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x0e4029a8 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x0e417a2c acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e42a82e __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x0e4ad57e param_ops_ullong +EXPORT_SYMBOL vmlinux 0x0e557614 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x0e5c5776 generic_writepages +EXPORT_SYMBOL vmlinux 0x0e6c2b25 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x0e70d255 file_open_root +EXPORT_SYMBOL vmlinux 0x0e784d76 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x0e7aa47b find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x0e7cfa36 single_release +EXPORT_SYMBOL vmlinux 0x0e86ffb6 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x0e9faf75 fget_raw +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0ea97f13 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x0eaf1c8f tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ebc75e9 unix_get_socket +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed15f0a pci_find_resource +EXPORT_SYMBOL vmlinux 0x0ee29c73 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x0ef18f6c rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x0ef38245 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0f05d3 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x0f18feb5 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f365835 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f54f0d0 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x0f560490 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f649eb5 set_page_writeback +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8bd777 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x0f97e0a5 napi_disable +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb07064 config_item_put +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0ff581cd phy_connect_direct +EXPORT_SYMBOL vmlinux 0x0ffcf61a tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x101155fe tso_build_data +EXPORT_SYMBOL vmlinux 0x10153bd2 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035624a netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x104dbbfa call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x1064c499 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10713efe of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x107e5c0f devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x10a0c0fb alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x10a1cce5 inet_put_port +EXPORT_SYMBOL vmlinux 0x10aa0960 tty_hangup +EXPORT_SYMBOL vmlinux 0x10bad1a6 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x10c1e696 dev_addr_del +EXPORT_SYMBOL vmlinux 0x10c66189 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110f060f netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x11114459 rproc_free +EXPORT_SYMBOL vmlinux 0x11210078 ps2_end_command +EXPORT_SYMBOL vmlinux 0x112832d5 security_sk_clone +EXPORT_SYMBOL vmlinux 0x1129b8ab fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x112a2988 blkdev_put +EXPORT_SYMBOL vmlinux 0x112eb868 pci_dev_get +EXPORT_SYMBOL vmlinux 0x1132ea62 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x11569f76 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x11592b1e cdrom_release +EXPORT_SYMBOL vmlinux 0x116b3ddc dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117a8464 param_get_invbool +EXPORT_SYMBOL vmlinux 0x1181821b qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x118f9e20 param_get_int +EXPORT_SYMBOL vmlinux 0x119434be register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x1194ac6e __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x1199f5b9 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x11a5cd98 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x11b18aa5 bio_add_page +EXPORT_SYMBOL vmlinux 0x11c08f3a simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x11d10c80 napi_enable +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11e3641b blk_rq_init +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 0x1223deb7 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x124297f9 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x12434a07 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x1249fe66 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x124ebdb9 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x125cdd0d cont_write_begin +EXPORT_SYMBOL vmlinux 0x125d887d con_copy_unimap +EXPORT_SYMBOL vmlinux 0x12639cf4 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down +EXPORT_SYMBOL vmlinux 0x1287eb12 set_anon_super +EXPORT_SYMBOL vmlinux 0x1292cdda qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d2ccff jbd2_fc_release_bufs +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 0x1311b453 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x131a1e0f skb_expand_head +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x1346bef5 read_cache_page +EXPORT_SYMBOL vmlinux 0x134a3919 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x134ed8f4 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x134f6fd3 pci_request_regions +EXPORT_SYMBOL vmlinux 0x135a8f90 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x135b397f tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x1360c7b4 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x13725201 cdev_device_add +EXPORT_SYMBOL vmlinux 0x137fb500 netlink_capable +EXPORT_SYMBOL vmlinux 0x1385bf81 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x138e6c52 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13b89466 xattr_full_name +EXPORT_SYMBOL vmlinux 0x13c2deaa tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x140e36ca vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x140f5aac fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x14423bb1 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x144b05d4 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x144e21f9 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x147a5a29 dm_table_event +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg +EXPORT_SYMBOL vmlinux 0x14acdeb2 clkdev_add +EXPORT_SYMBOL vmlinux 0x14b19ed8 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x14b655ef vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x14c3e58d tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x14c4b663 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14cdd795 tcf_block_put +EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock +EXPORT_SYMBOL vmlinux 0x14d7c493 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x14e6d3f1 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x151c746f sock_rfree +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152caf8f xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1587996f scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x15a1a6fa vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x15a4a38b mmc_can_trim +EXPORT_SYMBOL vmlinux 0x15b49760 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x15b49ce5 rw_verify_area +EXPORT_SYMBOL vmlinux 0x15b5d2e0 elv_rb_del +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 0x15e7517e udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x16048590 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x1608d04d peernet2id +EXPORT_SYMBOL vmlinux 0x1617f04c blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x161f01fd kill_block_super +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x16539ed5 __fs_parse +EXPORT_SYMBOL vmlinux 0x165aacb0 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x166dfbe9 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x1676e028 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x1678e420 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x16855b47 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x168afc0c phy_error +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x16b0a3dd tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x16cd3aa7 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16d9b45b cdev_device_del +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x170e11d3 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x171401dd mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x173c453e request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x173e4ae6 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x17600b80 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x176cc4ac dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x1790d286 of_device_alloc +EXPORT_SYMBOL vmlinux 0x17e83d83 register_netdevice +EXPORT_SYMBOL vmlinux 0x1801b663 unlock_page +EXPORT_SYMBOL vmlinux 0x18096093 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x180bd45b vga_client_register +EXPORT_SYMBOL vmlinux 0x1822f1f6 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1834c050 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x18474d35 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x18507a4a ppp_input_error +EXPORT_SYMBOL vmlinux 0x185b56b8 locks_init_lock +EXPORT_SYMBOL vmlinux 0x185e9ffc ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x186cf08b seq_release_private +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x187be7bf send_sig_info +EXPORT_SYMBOL vmlinux 0x187ce4b5 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x187f6f24 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x1888f60b blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18b341f2 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x18b3b0e8 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18ce1bb6 kobject_add +EXPORT_SYMBOL vmlinux 0x18cf0771 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x18e4de74 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18fc74e9 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x19052fc3 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x1911d00f xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x191c596e inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x192b3133 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x196ac44d kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x196eb648 udp_prot +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a60b0b param_array_ops +EXPORT_SYMBOL vmlinux 0x19add3a2 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ca6ac1 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x1a09bda5 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x1a15af28 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x1a200411 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x1a22a109 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x1a2914cc unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x1a2d34fc sk_ns_capable +EXPORT_SYMBOL vmlinux 0x1a40eb65 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a47220f flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x1a58cd64 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x1a602605 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x1a7e90ee gro_cells_receive +EXPORT_SYMBOL vmlinux 0x1a86b601 bdi_unregister +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1ab7efee mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac75a91 netif_tx_lock +EXPORT_SYMBOL vmlinux 0x1adaf7ba vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x1adf97c7 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x1ae13d47 inet_frag_find +EXPORT_SYMBOL vmlinux 0x1ae15103 ping_prot +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b311f48 netdev_state_change +EXPORT_SYMBOL vmlinux 0x1b4a122d write_cache_pages +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 0x1b69ef2f napi_gro_flush +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7c8f1d __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x1b8066f6 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x1b8e71c8 pci_select_bars +EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x1b9625f5 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb49664 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info +EXPORT_SYMBOL vmlinux 0x1bcf3fd9 folio_mapping +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bdc8a33 km_state_expired +EXPORT_SYMBOL vmlinux 0x1be6ed0c kernel_sendpage +EXPORT_SYMBOL vmlinux 0x1bfff46a nla_append +EXPORT_SYMBOL vmlinux 0x1c209bd8 finish_no_open +EXPORT_SYMBOL vmlinux 0x1c27eafb sk_reset_timer +EXPORT_SYMBOL vmlinux 0x1c29b567 _dev_info +EXPORT_SYMBOL vmlinux 0x1c393222 __scm_send +EXPORT_SYMBOL vmlinux 0x1c3d66bd sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x1c544792 pci_get_device +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c62a41e inode_set_flags +EXPORT_SYMBOL vmlinux 0x1c98bdb1 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x1c9d3677 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x1caf28b6 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x1cb05bc2 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cd41ee8 of_chosen +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1cf358fe sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d0ae206 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x1d0ae923 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x1d189a91 kset_unregister +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d2af602 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x1d2c5b16 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d6b2370 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x1d76af81 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1da079d6 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x1db1a745 generic_fadvise +EXPORT_SYMBOL vmlinux 0x1db8f066 dma_resv_fini +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 0x1df2cf76 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x1dfa24c2 ndisc_send_skb +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 0x1e430005 posix_test_lock +EXPORT_SYMBOL vmlinux 0x1e563c8a tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x1e611d3f unregister_filesystem +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6b7222 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7eb117 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea3a15b devm_of_iomap +EXPORT_SYMBOL vmlinux 0x1eb0853b phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x1ec53c15 zap_page_range +EXPORT_SYMBOL vmlinux 0x1ed10415 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ee2b067 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format +EXPORT_SYMBOL vmlinux 0x1eff7c84 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x1f24ee52 amba_device_register +EXPORT_SYMBOL vmlinux 0x1f2a1ac5 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x1f366b11 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x1f495027 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f662d39 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x1f7d797e d_find_alias +EXPORT_SYMBOL vmlinux 0x1f89a449 sock_from_file +EXPORT_SYMBOL vmlinux 0x1f90ed40 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x1f98d946 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x1fa1f71d ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x1fa603fc phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe4be4d follow_down +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200e2343 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x201c138e mark_info_dirty +EXPORT_SYMBOL vmlinux 0x203ea537 rproc_elf_sanity_check +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 0x20507160 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x205ddb20 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x20663d85 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20bdbc98 pci_save_state +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d30175 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e0620a file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x20e21572 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ef6234 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x20f8ceee unregister_netdev +EXPORT_SYMBOL vmlinux 0x20fb01ab ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x20ff49a7 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x21008b0d serio_open +EXPORT_SYMBOL vmlinux 0x21074395 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x210c0b23 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x212647ef pskb_expand_head +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2148a1c9 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x214b0fc5 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x216ad0d7 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x218a69a6 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x219fed41 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x21a42962 filp_close +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c5e949 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x21cbfc7b __inet_hash +EXPORT_SYMBOL vmlinux 0x21d8c8d1 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f3277c pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x21fdd499 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x2207f727 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x220d1ea0 done_path_create +EXPORT_SYMBOL vmlinux 0x22141ab7 scsi_host_put +EXPORT_SYMBOL vmlinux 0x222e4f39 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2261b24d ip_frag_next +EXPORT_SYMBOL vmlinux 0x2282c331 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x22a1422d percpu_counter_sum_all +EXPORT_SYMBOL vmlinux 0x22a38f7f __scsi_add_device +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c4d56f pps_event +EXPORT_SYMBOL vmlinux 0x22c9b15d qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x22dd804a skb_clone +EXPORT_SYMBOL vmlinux 0x230caf4e vlan_vid_add +EXPORT_SYMBOL vmlinux 0x231737ac __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x231e2488 __destroy_inode +EXPORT_SYMBOL vmlinux 0x2320bbf5 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x233cf07a free_netdev +EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x236060b1 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x236b4585 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23a23159 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x23aed13e xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x23b6b66f blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c285a0 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23d6219c xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e624fb pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23f21096 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x23f74a28 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240b9ba1 dup_iter +EXPORT_SYMBOL vmlinux 0x24146429 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x2423cc61 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24539467 dst_destroy +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245d1f73 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x245fceba lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x248320a4 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24b9b837 param_ops_bool +EXPORT_SYMBOL vmlinux 0x24c5d149 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x24c7ff67 override_creds +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d4570c acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x24d74f96 pci_find_capability +EXPORT_SYMBOL vmlinux 0x24df4ed9 sk_wait_data +EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x24fd57aa fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x25023ff3 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2507c401 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x2549e256 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x2560815c generic_listxattr +EXPORT_SYMBOL vmlinux 0x2566204b security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x256c65ae unregister_md_personality +EXPORT_SYMBOL vmlinux 0x257c9043 __seq_open_private +EXPORT_SYMBOL vmlinux 0x257fb919 gro_find_receive_by_type +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 0x25978823 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x25a1236a netdev_change_features +EXPORT_SYMBOL vmlinux 0x25b8c4a4 dquot_release +EXPORT_SYMBOL vmlinux 0x25ce1487 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x25d560bc generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e68187 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260e52ee dynamic_preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x261d302f xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x26297d64 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x262efe2f iput +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x26486ca6 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x26496521 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x265e5d38 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x265f73f4 get_cached_acl +EXPORT_SYMBOL vmlinux 0x266447af __quota_error +EXPORT_SYMBOL vmlinux 0x26654331 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x266a1237 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x26742455 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x2679aba9 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x2679cde6 dquot_resume +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x268968ae alloc_fddidev +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x2698e0e4 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x26a09557 ps2_init +EXPORT_SYMBOL vmlinux 0x26a26e68 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x26b7a297 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x26d31037 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x26d9c018 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x26dd07e8 build_skb +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e472b6 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x26f4fbc8 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x2700491f sock_kmalloc +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x271163a4 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x2721a0f0 md_integrity_register +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x272c3d2e pneigh_lookup +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d4fb3 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2764c019 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277dda19 super_setup_bdi +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 0x27872783 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x27a87d97 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bd6385 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x27c2fd61 sg_miter_next +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 0x27e17f94 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x27e898d2 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x27e95d7f page_pool_release_page +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x283525f3 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x283d944f d_obtain_root +EXPORT_SYMBOL vmlinux 0x2846a4a6 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x284a5850 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x2850b424 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2886945c pipe_lock +EXPORT_SYMBOL vmlinux 0x28956a0a qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x289771bb commit_creds +EXPORT_SYMBOL vmlinux 0x289cf825 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x28b63784 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x28bba386 set_nlink +EXPORT_SYMBOL vmlinux 0x28c2d294 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x28d137f4 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x28d62ffd pci_write_vpd +EXPORT_SYMBOL vmlinux 0x28dc71a0 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x28e4a925 elv_rb_find +EXPORT_SYMBOL vmlinux 0x28f05aaf textsearch_register +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x28fbaff0 blk_get_queue +EXPORT_SYMBOL vmlinux 0x2912abe8 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x291d0032 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x292e0751 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x296cfa29 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x29ac11a1 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x29b10b01 clear_inode +EXPORT_SYMBOL vmlinux 0x29c2d914 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x29d217a7 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x2a088ff1 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x2a2abd08 pci_iounmap +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a331aa4 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x2a4569e8 key_unlink +EXPORT_SYMBOL vmlinux 0x2a477638 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2a5ddca4 blk_put_queue +EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable +EXPORT_SYMBOL vmlinux 0x2a73e418 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x2a8dde4e xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aa65ebc make_kuid +EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab12412 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ab3cd26 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x2ae2b5cd max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x2af5f3fd netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x2af7a732 vfs_fsync +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b31b9bb fasync_helper +EXPORT_SYMBOL vmlinux 0x2b3450e5 ip_output +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b61374a mmc_add_host +EXPORT_SYMBOL vmlinux 0x2b637524 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x2b88279e dev_addr_mod +EXPORT_SYMBOL vmlinux 0x2b9ce8c2 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba18fc9 pps_register_source +EXPORT_SYMBOL vmlinux 0x2bae204e mt_find +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bd352f1 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x2bd5ecdc jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bf08854 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x2bf44261 skb_copy_header +EXPORT_SYMBOL vmlinux 0x2bf96ed4 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c17eb12 register_shrinker +EXPORT_SYMBOL vmlinux 0x2c1ab535 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x2c1bb29e skb_dump +EXPORT_SYMBOL vmlinux 0x2c1e3cb3 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c38f302 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x2c49ae65 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c5748c0 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x2c69ca45 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x2c6e509e xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c86eb62 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2c91e6dc tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x2cb7b22c pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd6590d filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table +EXPORT_SYMBOL vmlinux 0x2cf1fd60 tty_register_device +EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x2d01b2d9 d_splice_alias +EXPORT_SYMBOL vmlinux 0x2d0b116d devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d257608 init_task +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3953c6 import_iovec +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3fed7a vme_register_driver +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d4f272a md_finish_reshape +EXPORT_SYMBOL vmlinux 0x2d568110 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x2d67c0b9 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x2d72c820 pci_get_class +EXPORT_SYMBOL vmlinux 0x2d738826 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x2d8e5bd0 rtc_add_group +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9af47d deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x2da1742d unregister_cdrom +EXPORT_SYMBOL vmlinux 0x2dad27d9 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x2db23b39 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2dd527ad scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2deb5940 generic_perform_write +EXPORT_SYMBOL vmlinux 0x2df78571 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x2e06eed6 dump_skip_to +EXPORT_SYMBOL vmlinux 0x2e08d3cd skb_find_text +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e12a966 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c2e64 md_update_sb +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2e6cb965 of_root +EXPORT_SYMBOL vmlinux 0x2e6d2f2e lynx_pcs_create +EXPORT_SYMBOL vmlinux 0x2e76e2ac tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x2e814940 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x2e85dbe5 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x2e901c6d phy_init_hw +EXPORT_SYMBOL vmlinux 0x2eb792e4 copy_highpage +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eee0dcb tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x2f02d4d1 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f10dd54 input_register_device +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f145a61 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x2f22a278 xsk_set_rx_need_wakeup +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 0x2f430284 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x2f53fe87 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f915946 fb_class +EXPORT_SYMBOL vmlinux 0x2f9e9c6c ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x2f9eba2a input_grab_device +EXPORT_SYMBOL vmlinux 0x2fab8ebc qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x2fb596f6 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x2fda5805 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2ff0ad17 vma_set_file +EXPORT_SYMBOL vmlinux 0x3024568a mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x3036f513 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x3043795a pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x3078c62d pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x30798354 trace_event_printf +EXPORT_SYMBOL vmlinux 0x308641a5 __bread_gfp +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309c04bd md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b86f23 unregister_key_type +EXPORT_SYMBOL vmlinux 0x30c631a8 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x30c8e5ce filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x30e28b6a inet_sendpage +EXPORT_SYMBOL vmlinux 0x30f61ce7 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x30faa24f generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x31179656 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3129757a ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info +EXPORT_SYMBOL vmlinux 0x31561ed2 config_group_find_item +EXPORT_SYMBOL vmlinux 0x317f1ced __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x318607f0 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x319857a7 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31b54175 single_open_size +EXPORT_SYMBOL vmlinux 0x31b5903c fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x31d074e2 proc_create_data +EXPORT_SYMBOL vmlinux 0x31d7e20d sock_no_connect +EXPORT_SYMBOL vmlinux 0x31dd3a6c dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x31e42ee6 register_quota_format +EXPORT_SYMBOL vmlinux 0x32008bd1 phy_attached_print +EXPORT_SYMBOL vmlinux 0x32118fb5 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x323c4711 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x3242bcde security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x3253416b __alloc_skb +EXPORT_SYMBOL vmlinux 0x32657e26 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x327537be input_mt_drop_unused +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 0x32be810c pci_set_master +EXPORT_SYMBOL vmlinux 0x32cc2060 filemap_release_folio +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load +EXPORT_SYMBOL vmlinux 0x32ea52e7 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x33252894 netdev_alert +EXPORT_SYMBOL vmlinux 0x334a4a4a simple_getattr +EXPORT_SYMBOL vmlinux 0x3356482f __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x335b798a page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33769be3 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x337bf65b tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x33830305 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x33838afb udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x338d7133 input_setup_polling +EXPORT_SYMBOL vmlinux 0x338fb1aa iov_iter_advance +EXPORT_SYMBOL vmlinux 0x339b5469 mdiobb_read +EXPORT_SYMBOL vmlinux 0x33a35c56 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x33be69cc __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x33e80011 seq_puts +EXPORT_SYMBOL vmlinux 0x33eab81e scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f6200d backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x33fc501c phy_drivers_register +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x3433e9ad vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x343494bb md_done_sync +EXPORT_SYMBOL vmlinux 0x3440ab38 bdi_register +EXPORT_SYMBOL vmlinux 0x3450088d i2c_verify_client +EXPORT_SYMBOL vmlinux 0x34629a2c d_drop +EXPORT_SYMBOL vmlinux 0x3478c2fb inode_init_once +EXPORT_SYMBOL vmlinux 0x3480ac5d netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x34903299 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x3498a9ad tcp_peek_len +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349e1be1 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34acbc24 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x34c41cba pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x34c4f30c dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34cd1b6a __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34e574b4 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x34eb8321 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3515c7fc blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x35160acc amba_device_unregister +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3521f7e4 retire_super +EXPORT_SYMBOL vmlinux 0x35251f72 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3551f368 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3584b3fb __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x358e7ad2 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ac2f3b ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x35e9ae28 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360ff95f gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x3619c990 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x361bb4da genl_notify +EXPORT_SYMBOL vmlinux 0x36306364 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x36397c0d show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x363c5f34 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x36428931 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x3642c2c8 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x3643df5a devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x364c6eb0 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36617485 set_create_files_as +EXPORT_SYMBOL vmlinux 0x36650397 scsi_partsize +EXPORT_SYMBOL vmlinux 0x367b2103 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x36939758 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36b9f2e8 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x36bad82f sock_wake_async +EXPORT_SYMBOL vmlinux 0x36c4a561 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x36e667f7 nf_log_register +EXPORT_SYMBOL vmlinux 0x36f8d8de __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x36fa3d3d __bforget +EXPORT_SYMBOL vmlinux 0x3701b361 sk_capable +EXPORT_SYMBOL vmlinux 0x370820f3 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x37134516 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x37294d5c tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3729d668 unpin_user_page +EXPORT_SYMBOL vmlinux 0x37345933 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37586ee8 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x37ab57cb request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37bb73ef cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x37bd45e3 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37f68470 unregister_nls +EXPORT_SYMBOL vmlinux 0x37f7fba5 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x380f3e27 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381bc551 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x381cb315 fb_blank +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x38748f26 __break_lease +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x388ac583 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x3895d33f dquot_destroy +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389c66fe wake_up_process +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b2b75f __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x38bf8d4e i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x38cefb32 tty_lock +EXPORT_SYMBOL vmlinux 0x38dc3377 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38ee895c xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x38fb0f82 skb_ext_add +EXPORT_SYMBOL vmlinux 0x3908fb6e set_binfmt +EXPORT_SYMBOL vmlinux 0x3911d70e jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x39123755 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x39289ba0 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x3938715e truncate_setsize +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x39528ab4 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39661374 dev_load +EXPORT_SYMBOL vmlinux 0x396949b0 param_set_charp +EXPORT_SYMBOL vmlinux 0x396c8cb0 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x397f22fd pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x398e67b4 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x3993046a inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39b10ee9 key_invalidate +EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39c74d4a skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39ff9cce ip_setsockopt +EXPORT_SYMBOL vmlinux 0x3a114cc9 vme_slave_request +EXPORT_SYMBOL vmlinux 0x3a11b2c9 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x3a24cbf1 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x3a37ae22 import_single_range +EXPORT_SYMBOL vmlinux 0x3a3c6bfc netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a504b9a dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x3aa71245 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock +EXPORT_SYMBOL vmlinux 0x3ab6bd93 fs_context_for_submount +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 0x3ad65d35 seq_write +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3afaeb24 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b030b2c of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x3b05d56b vfs_getattr +EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma +EXPORT_SYMBOL vmlinux 0x3b180d85 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x3b192ed6 register_md_personality +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b44ea6d alloc_fcdev +EXPORT_SYMBOL vmlinux 0x3b4d35fb blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b6e0810 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner +EXPORT_SYMBOL vmlinux 0x3b7299b1 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x3b88bc0f scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b93b6b3 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x3b9b87c8 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x3bb8cb26 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x3bce0295 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x3bcf8fab vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x3bd41258 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x3bdee417 dcache_readdir +EXPORT_SYMBOL vmlinux 0x3be0f626 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x3bf0a183 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x3bf4f90d blackhole_netdev +EXPORT_SYMBOL vmlinux 0x3bf81985 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x3bfdcdee __nla_put +EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c221e0d neigh_xmit +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c558be7 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x3c813935 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cb7686a tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3cd38245 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3cde7387 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cecdf7e ilookup +EXPORT_SYMBOL vmlinux 0x3cf1c9d9 filp_open +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d47a119 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x3d57bf25 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x3d5f4466 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x3d890291 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da22adb request_firmware +EXPORT_SYMBOL vmlinux 0x3da5447b input_get_keycode +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 0x3dd32653 get_vm_area +EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id +EXPORT_SYMBOL vmlinux 0x3dd724a0 dev_trans_start +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddaf2a9 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x3ddd7757 bioset_exit +EXPORT_SYMBOL vmlinux 0x3df24f09 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e043849 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x3e19c39e tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x3e1a6fbd mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e70e46e dquot_file_open +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3ea1ec92 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x3ea1fa78 tcf_register_action +EXPORT_SYMBOL vmlinux 0x3ec514c2 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit +EXPORT_SYMBOL vmlinux 0x3ee6d01f __neigh_event_send +EXPORT_SYMBOL vmlinux 0x3eed5797 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f02b1a2 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x3f0cdf5b aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f1f9c64 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x3f2efe10 thread_group_exited +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 0x3f682131 kobject_put +EXPORT_SYMBOL vmlinux 0x3f7102e9 task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x3f7a2b28 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x3f87c303 kobject_set_name +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f92b9d5 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x3f94a4ea jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x3fb24400 registered_fb +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fd625d1 blk_start_plug +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x4020f107 input_open_device +EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x405b84f5 of_get_next_child +EXPORT_SYMBOL vmlinux 0x4064672e mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x40863ba1 ioremap_prot +EXPORT_SYMBOL vmlinux 0x40871378 clk_get +EXPORT_SYMBOL vmlinux 0x4092a6da md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b0e6b9 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x40b7862f dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x40be2dc5 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40dccfe1 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x40e07b1d tcf_idr_search +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x411d2c76 xudma_get_device +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41341792 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414b9ae6 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x4155ee27 __d_drop +EXPORT_SYMBOL vmlinux 0x4161cd19 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x417726f5 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x41861896 input_free_device +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4193a283 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range +EXPORT_SYMBOL vmlinux 0x41b11125 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x41b25c7d begin_new_exec +EXPORT_SYMBOL vmlinux 0x41ec03da xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f90158 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x41fa2e65 phy_print_status +EXPORT_SYMBOL vmlinux 0x42208cdc __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4253b814 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x4254cfd2 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x42597e13 thaw_bdev +EXPORT_SYMBOL vmlinux 0x425b2738 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x425fcd50 unlock_rename +EXPORT_SYMBOL vmlinux 0x4260a0b2 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x4272a446 md_reload_sb +EXPORT_SYMBOL vmlinux 0x428370ce mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42c65773 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x42cac7e3 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4301c21e neigh_lookup +EXPORT_SYMBOL vmlinux 0x430272b3 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4307ccfe config_item_set_name +EXPORT_SYMBOL vmlinux 0x431035b6 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x4310c64a zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x43294a66 _dev_crit +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 0x4356387d __devm_request_region +EXPORT_SYMBOL vmlinux 0x436d04cb of_phy_connect +EXPORT_SYMBOL vmlinux 0x43756b35 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43971a44 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b8e27d __breadahead +EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one +EXPORT_SYMBOL vmlinux 0x43c34de1 xp_dma_map +EXPORT_SYMBOL vmlinux 0x43ca81fa security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x43cc9c2b dm_get_device +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43dd0761 dcb_getapp +EXPORT_SYMBOL vmlinux 0x43e041fe flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x43efa20d generic_write_checks +EXPORT_SYMBOL vmlinux 0x43f09eb1 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x43f1aea3 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x440999b9 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x4420818c dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x442d66c8 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x44354089 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x4439d969 param_get_ulong +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4455641c xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x445fb713 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x4460c338 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x446eeffe scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x448b85a5 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x448c7902 flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44ac70be vme_slot_num +EXPORT_SYMBOL vmlinux 0x44c87e1c genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x44d24fdd inode_nohighmem +EXPORT_SYMBOL vmlinux 0x44db3504 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f41901 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x44f6773f ps2_drain +EXPORT_SYMBOL vmlinux 0x44f6a3ab of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450639ab sg_last +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x451b536b iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x451f1399 of_device_register +EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x4528334f phy_get_pause +EXPORT_SYMBOL vmlinux 0x45299702 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454138a2 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x455c27ac blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x456874bf posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a56e32 __scsi_execute +EXPORT_SYMBOL vmlinux 0x45b4393f softnet_data +EXPORT_SYMBOL vmlinux 0x45c00439 of_match_node +EXPORT_SYMBOL vmlinux 0x45c07341 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x45cdba05 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x45e0e544 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x45e61fac dst_dev_put +EXPORT_SYMBOL vmlinux 0x45fb42e1 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x460dddf1 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x460e76bb dev_mc_flush +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x462388e1 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x46438345 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x46475d26 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x464cf7ec __netif_rx +EXPORT_SYMBOL vmlinux 0x46556364 mdiobb_write +EXPORT_SYMBOL vmlinux 0x465790e1 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466085cc __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x46624972 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x467fea62 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46aa912a __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x46ad1d4a unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46da53e7 devfreq_recommended_opp +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 0x4709c765 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x470d1b89 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x4728bcdb path_is_under +EXPORT_SYMBOL vmlinux 0x47444124 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x476772de ppp_input +EXPORT_SYMBOL vmlinux 0x4769118e I_BDEV +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47781cb4 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x47881a63 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4793273e fb_find_mode +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x479b96cb gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x47a0a646 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x47a81366 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x47b318a9 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x47c1c48f netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47ccdc76 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x47cd8db5 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47deacef kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x47e387c1 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x47e898ac sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x47f8b83c dev_open +EXPORT_SYMBOL vmlinux 0x47fa1fdb notify_change +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x4814b618 inet6_bind +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48186da3 generic_permission +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481eebd4 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x4820ef01 netlink_set_err +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 0x48420061 tcf_action_update_hw_stats +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 0x48605f36 brioctl_set +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x4866cb10 seq_path +EXPORT_SYMBOL vmlinux 0x48800112 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x48843b29 redraw_screen +EXPORT_SYMBOL vmlinux 0x488dbd36 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x4890146f fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x489520fa vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x48975811 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x489bcc82 module_refcount +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48afa23f pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c949a0 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node +EXPORT_SYMBOL vmlinux 0x48d79fc1 tcp_connect +EXPORT_SYMBOL vmlinux 0x48dd340b cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x48f369af devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x48f74d1f sk_alloc +EXPORT_SYMBOL vmlinux 0x48f96a82 key_task_permission +EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range +EXPORT_SYMBOL vmlinux 0x4900f5a6 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4912f7c3 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x49134dff i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x4913c0f8 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x493257b9 empty_aops +EXPORT_SYMBOL vmlinux 0x494fc855 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x49688dfa tty_port_hangup +EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b38af8 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x49bc3ee5 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x49bc64e5 key_put +EXPORT_SYMBOL vmlinux 0x49cd030a __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x49d22d93 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x49e2a756 param_set_hexint +EXPORT_SYMBOL vmlinux 0x49ec5d4b pagecache_get_page +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a40918c phy_stop +EXPORT_SYMBOL vmlinux 0x4a4da2ac rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x4a60dd7e unix_attach_fds +EXPORT_SYMBOL vmlinux 0x4a7927e8 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x4a934f52 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a99f9e2 cdev_alloc +EXPORT_SYMBOL vmlinux 0x4aa60dbd skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x4ac3b9e9 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x4ad7a94a nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af14127 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4afb413b ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b1c714c page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x4b41beb1 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x4b532815 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x4b569223 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x4b592165 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b72c8c9 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0x4b7d945e md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x4b9ff768 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bcff7bb pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x4be6eb8e netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x4bec1e63 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4befc956 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4bf5726a vm_insert_page +EXPORT_SYMBOL vmlinux 0x4bfa4e2d mmc_can_discard +EXPORT_SYMBOL vmlinux 0x4c01e149 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c15d543 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0x4c1fcc9d clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x4c213282 seq_read_iter +EXPORT_SYMBOL vmlinux 0x4c3788f0 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x4c393e7d tcp_release_cb +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c47c55f ip_getsockopt +EXPORT_SYMBOL vmlinux 0x4c59655d skb_put +EXPORT_SYMBOL vmlinux 0x4c59d082 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x4c64411b proc_create_single_data +EXPORT_SYMBOL vmlinux 0x4c73fb6e __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x4c97df81 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x4c9c2272 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x4ca23936 invalidate_disk +EXPORT_SYMBOL vmlinux 0x4cc90a07 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x4cd0be9e blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x4ce1787e security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x4cfa521f device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x4cfaa2ef is_nd_dax +EXPORT_SYMBOL vmlinux 0x4d046586 _dev_alert +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d0d6c9f lease_modify +EXPORT_SYMBOL vmlinux 0x4d1598cc d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d42fb48 mii_check_media +EXPORT_SYMBOL vmlinux 0x4d4bf8ce unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x4d5782e3 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x4d58775a inode_get_bytes +EXPORT_SYMBOL vmlinux 0x4d61f0d8 skb_unlink +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d75d43b skb_copy_expand +EXPORT_SYMBOL vmlinux 0x4d773d48 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dd3dc19 tcp_read_done +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df121bd xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e25283b seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e2ee75d phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e362067 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e4e4d7f folio_unlock +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 0x4e787fab seq_pad +EXPORT_SYMBOL vmlinux 0x4e9762f1 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ee629f8 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x4f0f77d8 input_match_device_id +EXPORT_SYMBOL vmlinux 0x4f17bf3f from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x4f1a7b93 bio_endio +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 0x4f307074 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x4f3c9ca8 get_watch_queue +EXPORT_SYMBOL vmlinux 0x4f491352 __nla_reserve +EXPORT_SYMBOL vmlinux 0x4f505c77 genphy_update_link +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f600879 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x4f7c9987 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f91c9a0 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x4f9b932c tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x4fa7d85d cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x4fb7fde0 d_delete +EXPORT_SYMBOL vmlinux 0x4fc00cb3 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4fc2734f __lock_buffer +EXPORT_SYMBOL vmlinux 0x4fccaa0f skb_trim +EXPORT_SYMBOL vmlinux 0x4fdf33fb bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x4fe380b5 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x4fe7c27b ns_capable_setid +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x50016691 netdev_err +EXPORT_SYMBOL vmlinux 0x5008217f mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500d05c8 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x500fe974 tty_write_room +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x503b7064 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x503bb27e ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x5068a968 dput +EXPORT_SYMBOL vmlinux 0x506ad99b nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5082a0d7 open_exec +EXPORT_SYMBOL vmlinux 0x5083b82e neigh_parms_release +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 0x50a2251b ether_setup +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b16b9c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50b87e95 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x50bcb438 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50ca0d36 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x50cb5e17 param_ops_uint +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d8ab9f dev_deactivate +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x50fad57e inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x51076d1b fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x51077edb lease_get_mtime +EXPORT_SYMBOL vmlinux 0x51105624 ilookup5 +EXPORT_SYMBOL vmlinux 0x51144f7a __check_sticky +EXPORT_SYMBOL vmlinux 0x511b06a8 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x5137fb0a vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec +EXPORT_SYMBOL vmlinux 0x51465340 page_symlink +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x51584a0f jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51750c0a kernel_getsockname +EXPORT_SYMBOL vmlinux 0x51832f49 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x5187b419 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x518cd5fb gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x51925f08 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x5196a929 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51ba0429 free_task +EXPORT_SYMBOL vmlinux 0x51bef05f register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51f0acd2 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x5218a444 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x526f00ec cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x527635a9 thaw_super +EXPORT_SYMBOL vmlinux 0x5289a002 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x529606f3 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529c5e50 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x52a23e8a skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x52b65ad3 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52e59e5e rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x52e90785 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x52ea3f7e param_ops_invbool +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x52f41edf netif_rx +EXPORT_SYMBOL vmlinux 0x52f60bda inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x5318a2b3 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x531eb2bd keyring_clear +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x5346420a simple_rename +EXPORT_SYMBOL vmlinux 0x53749122 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x5388c763 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x5390c76c d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x539f1907 set_capacity +EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53bb5672 scsi_print_command +EXPORT_SYMBOL vmlinux 0x53bcab31 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x53cace84 vfs_setpos +EXPORT_SYMBOL vmlinux 0x53d1de28 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x53d2d638 param_set_byte +EXPORT_SYMBOL vmlinux 0x53dc4b74 dev_get_stats +EXPORT_SYMBOL vmlinux 0x53df1cdc sock_efree +EXPORT_SYMBOL vmlinux 0x53e7f624 generic_setlease +EXPORT_SYMBOL vmlinux 0x53e89cfc sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x53eb10b5 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x53ef200a xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53f0eb65 of_device_unregister +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x53fdb8f2 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x54020351 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x541214ed security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x5424e0bf kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x542f9239 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5440ec9f __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x5449876f param_set_ullong +EXPORT_SYMBOL vmlinux 0x54602a07 md_handle_request +EXPORT_SYMBOL vmlinux 0x5464bc62 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x5480bd85 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x548b2769 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x54b17613 path_has_submounts +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x54c73920 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x54daf862 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x5505246e rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x550955ec input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5529de25 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x552a597a _copy_from_iter +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x552ece8e input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x5530a830 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x556adb10 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x557bbf8c mmc_detect_change +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55c1f35f md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e693ef tty_check_change +EXPORT_SYMBOL vmlinux 0x55f1cf8b mod_node_page_state +EXPORT_SYMBOL vmlinux 0x5612e1c7 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x562533b8 bio_reset +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5642266d page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5657ad45 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x5660d6c0 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x567f9ed4 page_readlink +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cbed70 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0x56d09008 arp_create +EXPORT_SYMBOL vmlinux 0x56e48b3a compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x56f01250 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x56f202fd dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x56f71452 napi_get_frags +EXPORT_SYMBOL vmlinux 0x5709a9c1 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x571fdf3b ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x57486b44 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5756b6f1 vme_lm_request +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576ec50a uart_get_divisor +EXPORT_SYMBOL vmlinux 0x5771e5ed bpf_map_get +EXPORT_SYMBOL vmlinux 0x577466e9 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x5775e4cd mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x577c4843 register_qdisc +EXPORT_SYMBOL vmlinux 0x577f61c1 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x5785b182 tcp_read_skb +EXPORT_SYMBOL vmlinux 0x578a11a7 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x578d0bb5 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579b59ef unlock_buffer +EXPORT_SYMBOL vmlinux 0x57a282b1 serio_interrupt +EXPORT_SYMBOL vmlinux 0x57a8bed7 d_instantiate +EXPORT_SYMBOL vmlinux 0x57b4d7a0 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57cf1b32 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x57db2274 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57df532c fddi_type_trans +EXPORT_SYMBOL vmlinux 0x57e90f16 pci_choose_state +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x57f7637a rproc_put +EXPORT_SYMBOL vmlinux 0x58133ae5 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x5814e031 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584266cf of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587d43cf ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x588b0254 amba_driver_register +EXPORT_SYMBOL vmlinux 0x58a2f2c0 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58af4b11 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bf5c39 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x58d6a130 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fc3acd pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x590c029a rtnl_notify +EXPORT_SYMBOL vmlinux 0x592b1209 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x5937087e inet_protos +EXPORT_SYMBOL vmlinux 0x59471730 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x594a9a50 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x5951e1ca dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x5956124b forget_cached_acl +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x596f5259 rproc_del +EXPORT_SYMBOL vmlinux 0x597126c8 skb_store_bits +EXPORT_SYMBOL vmlinux 0x59796ade pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x59839912 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x598babe3 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599f308e sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59ac00c9 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b8980c arp_send +EXPORT_SYMBOL vmlinux 0x59f348ee udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x59fe1ed5 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x5a0031bd xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1b12ee read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a30a7b5 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x5a3140ae of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x5a417c94 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x5a42b4f5 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a675ab1 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x5a6bf316 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x5a78c6d3 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x5a8ac287 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa64c4d get_unmapped_area +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5b1af3a5 finish_swait +EXPORT_SYMBOL vmlinux 0x5b27d608 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b314686 udplite_prot +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b4409f9 nf_log_unset +EXPORT_SYMBOL vmlinux 0x5b4a9ab4 read_cache_folio +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b65cf6f msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x5b791a08 freeze_super +EXPORT_SYMBOL vmlinux 0x5b9eac05 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x5ba2eb48 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x5ba5b11c __register_binfmt +EXPORT_SYMBOL vmlinux 0x5bba23f6 sk_stream_error +EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x5bd391d2 serial8250_do_set_termios +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 0x5c01c11b tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x5c07c30b skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c2a42a7 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x5c2c9b20 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x5c38b8b6 sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c5e3f5b vm_map_ram +EXPORT_SYMBOL vmlinux 0x5c833b6e of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x5c88ee08 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x5cb00a42 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x5cb61cb8 finish_open +EXPORT_SYMBOL vmlinux 0x5cbbc270 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x5cd8113d sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x5cef7c3d devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d080f35 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x5d10c80f component_match_add_typed +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d1a4b67 vme_irq_free +EXPORT_SYMBOL vmlinux 0x5d406e09 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5d41e6ba blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d4f8362 follow_down_one +EXPORT_SYMBOL vmlinux 0x5d709eca mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x5d805e98 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x5d956ed6 module_put +EXPORT_SYMBOL vmlinux 0x5d9632c0 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x5d9acdcb udp6_csum_init +EXPORT_SYMBOL vmlinux 0x5d9b1e14 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5ddcc277 bio_init +EXPORT_SYMBOL vmlinux 0x5de4fc54 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x5ded94d6 phy_driver_register +EXPORT_SYMBOL vmlinux 0x5dfbb314 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e1dc682 mdiobus_read +EXPORT_SYMBOL vmlinux 0x5e2793b4 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x5e2bbaa8 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e4eb336 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x5e69e2f5 devm_clk_put +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e714b38 get_fs_type +EXPORT_SYMBOL vmlinux 0x5e7e67eb dma_map_resource +EXPORT_SYMBOL vmlinux 0x5e8055c8 __skb_pad +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e8c6261 igrab +EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5e9a57aa __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x5ea370f8 inet6_release +EXPORT_SYMBOL vmlinux 0x5eaf3e0f blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebc1a8d fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0x5ec35a86 udp_read_skb +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ec4fe95 to_nd_dax +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed179bf inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5ed33d3f redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5ef9447c sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5efec491 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1e147c folio_write_one +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f58f792 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x5f5b9bf3 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x5f5e57f2 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x5f67d7e6 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f7fe69e dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x5f934af2 dst_discard_out +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd3024d udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x5fd4d6b7 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call +EXPORT_SYMBOL vmlinux 0x5fed75df of_translate_address +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffe0e44 devfreq_remove_governor +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 0x600dc666 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602f8d56 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x6034d84d tcp_sendmsg +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 0x608ac207 netif_device_detach +EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x60998da9 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x609afe68 vif_device_init +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a3cc02 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x60a53bfb _dev_warn +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60c00b8a ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x60d49e7a vm_map_pages +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60dce3de update_region +EXPORT_SYMBOL vmlinux 0x60dd7c19 skb_dequeue +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x612010fe xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6129c930 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x614a32a6 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x6154755b __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6164ba33 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x616a96e2 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x618160d2 posix_lock_file +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x61943bef dquot_quota_off +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61aee8d0 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x61afd67f security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x61b49db8 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x61b72e9e mount_nodev +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c7c49d scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e858ee __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x6213f781 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621db8aa kernel_getpeername +EXPORT_SYMBOL vmlinux 0x6220e46a bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x622814e5 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62292dce bdi_put +EXPORT_SYMBOL vmlinux 0x6234c5ef mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x62446c51 __bio_advance +EXPORT_SYMBOL vmlinux 0x624b8d48 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range +EXPORT_SYMBOL vmlinux 0x6283c24b bprm_change_interp +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x629d420a neigh_update +EXPORT_SYMBOL vmlinux 0x62b6ac8e udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62e58012 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x62f3e2d5 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x62f63012 tcf_em_register +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62f988af nd_btt_version +EXPORT_SYMBOL vmlinux 0x63013235 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x630a3dae iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631b4c55 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x632f902a tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x633a2ce6 sk_net_capable +EXPORT_SYMBOL vmlinux 0x635c78ac d_set_d_op +EXPORT_SYMBOL vmlinux 0x636b8570 mmc_command_done +EXPORT_SYMBOL vmlinux 0x638192ae send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63d425fd md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f823a5 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x64068042 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6420a14b inet6_offloads +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x644a1862 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x6455785a param_ops_charp +EXPORT_SYMBOL vmlinux 0x64569907 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x648f228a param_get_byte +EXPORT_SYMBOL vmlinux 0x649f06c6 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x64a3babc tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x64a92542 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64cb8bd8 of_iomap +EXPORT_SYMBOL vmlinux 0x64f2edd2 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x64f6700b vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x6518a298 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651d5c92 ata_print_version +EXPORT_SYMBOL vmlinux 0x651daf86 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6520ea5f from_kuid_munged +EXPORT_SYMBOL vmlinux 0x652cc60d page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x6546c27a input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x654ebeda ip_local_deliver +EXPORT_SYMBOL vmlinux 0x65527ee0 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x657b28c6 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65aa0182 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x65aab688 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x65af52a7 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x65b56c45 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x65ba735b __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x65be82c7 proto_unregister +EXPORT_SYMBOL vmlinux 0x65c77fb7 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65dd3881 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65ebc807 bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x65ef196b tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x65f10e9d tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x6615d8af tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x6619e5d1 netlink_ack +EXPORT_SYMBOL vmlinux 0x661ac9cc flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0x66243f8f pci_pme_active +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x6645137f misc_deregister +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 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x6686e9a3 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x668e7815 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66b63a3a scsi_block_requests +EXPORT_SYMBOL vmlinux 0x66b7c769 skb_tx_error +EXPORT_SYMBOL vmlinux 0x66b8579a inet_select_addr +EXPORT_SYMBOL vmlinux 0x66d1f25c mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x66f776da __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x66f78c7f md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x6705cf36 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x673a4210 send_sig +EXPORT_SYMBOL vmlinux 0x673a5ef3 kernel_connect +EXPORT_SYMBOL vmlinux 0x673ec1c7 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x6774497c eth_mac_addr +EXPORT_SYMBOL vmlinux 0x67755002 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x678a92c6 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67a0f1a9 d_exact_alias +EXPORT_SYMBOL vmlinux 0x67a76e2b param_get_short +EXPORT_SYMBOL vmlinux 0x67aacea5 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x67b1e701 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67ba85dc devfreq_update_target +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67c87ca5 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x67e8383e security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x67f92a4d blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x68153412 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x6829d9fb napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x6830c9c0 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x6836c297 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x6855e430 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x685fcf2b param_get_uint +EXPORT_SYMBOL vmlinux 0x686d5b6d input_register_handle +EXPORT_SYMBOL vmlinux 0x68743839 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687e5a3c jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x687f8df4 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x689816bf serio_bus +EXPORT_SYMBOL vmlinux 0x689bd370 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x68b343c6 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x68bb9ac8 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x68d0eb9f qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x6929a459 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x692cb634 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x69362290 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x6944f7be rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x6975eba0 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x69838970 netpoll_setup +EXPORT_SYMBOL vmlinux 0x6983b6d1 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x6998523a devfreq_update_status +EXPORT_SYMBOL vmlinux 0x699f1eda ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x69a4cac2 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x69b7f6e3 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x69c64d34 input_set_keycode +EXPORT_SYMBOL vmlinux 0x69d1f237 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e16fc4 fman_port_bind +EXPORT_SYMBOL vmlinux 0x69e865a8 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x69edfe56 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0416a4 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x6a175db2 kobject_init +EXPORT_SYMBOL vmlinux 0x6a17e266 noop_llseek +EXPORT_SYMBOL vmlinux 0x6a1fee8c dma_find_channel +EXPORT_SYMBOL vmlinux 0x6a24565e vfs_mkobj +EXPORT_SYMBOL vmlinux 0x6a2514d1 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x6a322f40 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a3cd95c seg6_hmac_info_add +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 0x6a6afb82 param_set_int +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6acd611e fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x6ad8e78e udp_pre_connect +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae5b075 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x6aebb2e0 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b031454 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x6b079231 alt_cb_patch_nops +EXPORT_SYMBOL vmlinux 0x6b0ac316 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x6b17d1a6 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b30833f dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6b31d22d tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x6b44b338 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b64837f __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x6b7aaaed inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x6b82faa2 devm_request_resource +EXPORT_SYMBOL vmlinux 0x6b8442a4 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b8cda5b disk_stack_limits +EXPORT_SYMBOL vmlinux 0x6ba1ad91 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x6bbb2b2f dcb_setapp +EXPORT_SYMBOL vmlinux 0x6bbd6633 genphy_resume +EXPORT_SYMBOL vmlinux 0x6bc29512 dma_set_mask +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6bec59e2 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6c017050 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x6c0b3e47 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c270355 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c841799 add_to_pipe +EXPORT_SYMBOL vmlinux 0x6c98ab8e tcf_exts_change +EXPORT_SYMBOL vmlinux 0x6caaac7c pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6cd41b2a xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x6cdb1738 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6d01752a vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x6d072480 __module_get +EXPORT_SYMBOL vmlinux 0x6d1094c6 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x6d1464fa pci_assign_resource +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d16ca6e end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2e765b input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x6d335335 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6db6c77d key_link +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dc5d777 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x6dce9212 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6dd970de register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x6de7779b configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df517d5 neigh_destroy +EXPORT_SYMBOL vmlinux 0x6e025f7e km_query +EXPORT_SYMBOL vmlinux 0x6e0e6d42 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x6e1daa99 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x6e2b78f5 freeze_bdev +EXPORT_SYMBOL vmlinux 0x6e4f6f5d xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5d47c2 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x6e6af702 dev_addr_add +EXPORT_SYMBOL vmlinux 0x6e6b2d95 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x6e709b0c tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7e247b rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea5aacb devfreq_add_device +EXPORT_SYMBOL vmlinux 0x6ea5c01b inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eaa3dca xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x6eae20ed skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x6eb2d31e inode_update_time +EXPORT_SYMBOL vmlinux 0x6eb5a314 serio_close +EXPORT_SYMBOL vmlinux 0x6ebeb7d3 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x6ec410be nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x6ee24c3e tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6ef166f8 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x6f032aa2 rpmh_write +EXPORT_SYMBOL vmlinux 0x6f109944 md_write_end +EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock +EXPORT_SYMBOL vmlinux 0x6f2604b3 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f4286d6 address_space_init_once +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f6029fd set_blocksize +EXPORT_SYMBOL vmlinux 0x6f696c32 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x6f85110c __icmp_send +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f9dafc9 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x6fb3ef3e sg_miter_start +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb9d456 ip6_xmit +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc48021 dynamic_cond_resched +EXPORT_SYMBOL vmlinux 0x6fc940e9 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdcb884 make_kprojid +EXPORT_SYMBOL vmlinux 0x6ff3a485 dynamic_might_resched +EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700ca44f tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x70178758 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x7022c686 input_allocate_device +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x70388c82 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x704c7ab9 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x704da640 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x7051b81d padata_free +EXPORT_SYMBOL vmlinux 0x7054c1f2 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x70786bfd sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x707a6ddd of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0x707f28d8 do_SAK +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70bad1f3 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x70bf1163 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70d887ff dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x70d93738 dev_set_alias +EXPORT_SYMBOL vmlinux 0x70db7a6c dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x71591830 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x715abc1e seq_printf +EXPORT_SYMBOL vmlinux 0x7161c873 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x7163ee68 set_disk_ro +EXPORT_SYMBOL vmlinux 0x7170c9ac kern_unmount_array +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7172742d consume_skb +EXPORT_SYMBOL vmlinux 0x717b2570 pci_find_bus +EXPORT_SYMBOL vmlinux 0x718c167e inet_stream_connect +EXPORT_SYMBOL vmlinux 0x718c55ba folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x719dfcea mdio_find_bus +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71bbb430 neigh_for_each +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71eec79b load_nls +EXPORT_SYMBOL vmlinux 0x71f74e68 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x71fc29d1 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x7203528b pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x721cb342 scsi_device_put +EXPORT_SYMBOL vmlinux 0x722a008b nf_getsockopt +EXPORT_SYMBOL vmlinux 0x7242be77 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x72487b7c vfs_rmdir +EXPORT_SYMBOL vmlinux 0x724b53ed inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x7255f7a6 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x72573778 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x7259b033 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x725b09dc xfrm_lookup +EXPORT_SYMBOL vmlinux 0x725c7442 dst_alloc +EXPORT_SYMBOL vmlinux 0x725f0c67 input_register_handler +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x727d8da7 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x7284385e mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x728611aa phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x7286a76c dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x7291af59 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72b9e978 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x72bd94e6 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x72c2c17d xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x72cae082 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x72e164a2 genphy_suspend +EXPORT_SYMBOL vmlinux 0x72e9f750 fb_pan_display +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72f1e847 vfs_mknod +EXPORT_SYMBOL vmlinux 0x730c72df dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x730f0a27 fuse_dequeue_forget +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 0x7334625d qdisc_reset +EXPORT_SYMBOL vmlinux 0x73563275 kernel_accept +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x7367e492 end_page_writeback +EXPORT_SYMBOL vmlinux 0x7375d0b6 scsi_done_direct +EXPORT_SYMBOL vmlinux 0x737a1416 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73860264 seq_file_path +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73a39c67 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x73a45c8d imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x73aa3e0d cdev_del +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73af61fa blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x73be6446 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x73d31f72 write_inode_now +EXPORT_SYMBOL vmlinux 0x7409e88f dev_uc_sync +EXPORT_SYMBOL vmlinux 0x740d67c7 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x74203839 param_set_copystring +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x7446e6f4 devm_free_irq +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7481923f dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x749a9506 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x74a77e35 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x74a855fb d_add +EXPORT_SYMBOL vmlinux 0x74ad5157 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x74afc27c __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x74b7a7b6 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74dd5282 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x74e41993 ip_options_compile +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f4c371 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x74faca6b pnp_get_resource +EXPORT_SYMBOL vmlinux 0x7516bc4f noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x75201f31 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x75215e12 kernel_write +EXPORT_SYMBOL vmlinux 0x7526e6e4 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x752db8bb tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x75411aeb jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x754184fa may_umount_tree +EXPORT_SYMBOL vmlinux 0x7555be12 vme_bus_num +EXPORT_SYMBOL vmlinux 0x7558f8f4 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7562930f __put_user_ns +EXPORT_SYMBOL vmlinux 0x75635030 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x75642533 page_get_link +EXPORT_SYMBOL vmlinux 0x756a967a set_cached_acl +EXPORT_SYMBOL vmlinux 0x756abba6 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x7582de67 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x7588ea50 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x758dc3d2 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x75b75200 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x75bd680f __bh_read_batch +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdfddd security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x75bf3de8 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x75c5bde4 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x75caa428 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75e3cb7a inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x75e58085 get_tree_single +EXPORT_SYMBOL vmlinux 0x75e80829 fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x75feb78f clk_add_alias +EXPORT_SYMBOL vmlinux 0x75ff2881 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x760928ab phy_validate_pause +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76175fc1 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x763537de ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7638aef1 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x763d9f43 fwnode_iomap +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765ce239 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766d6fc0 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x769ccec7 vme_master_request +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76aa78cf pcim_enable_device +EXPORT_SYMBOL vmlinux 0x76bb3aa4 simple_get_link +EXPORT_SYMBOL vmlinux 0x76c99a63 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e17798 bio_uninit +EXPORT_SYMBOL vmlinux 0x76e9fc7b dev_get_by_name +EXPORT_SYMBOL vmlinux 0x76eb03ea page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0x7701acf3 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x7716e115 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7717bf74 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x772b67ee vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x7733bc40 devfreq_monitor_suspend +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 0x775054b9 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x77510294 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x77694b15 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x7776e2bd nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x7783d752 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x778661b4 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779f0d38 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x77a16c20 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x77a274ae __ip_options_compile +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d932d9 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x77e30d9e devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x77e4d1af tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f7350b sock_no_linger +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x78153fc0 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x7817ae19 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x7825a54f genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x7841f711 napi_complete_done +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7858ac37 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x7864108f of_node_get +EXPORT_SYMBOL vmlinux 0x786c3690 iptun_encaps +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788f379a add_watch_to_object +EXPORT_SYMBOL vmlinux 0x7895c961 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a4168d param_ops_string +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78bc3e09 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x78c8c2b5 dquot_acquire +EXPORT_SYMBOL vmlinux 0x78cec973 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e988a3 release_sock +EXPORT_SYMBOL vmlinux 0x78f47587 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x7905d779 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x7907b860 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x7915d550 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x79218ca0 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x794d2ae8 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x794ff017 sget_fc +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79b62b30 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x79bfb5aa param_ops_long +EXPORT_SYMBOL vmlinux 0x79c7f0e4 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x79f077cb simple_lookup +EXPORT_SYMBOL vmlinux 0x79fd39a3 d_path +EXPORT_SYMBOL vmlinux 0x7a081f2c scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x7a0ce59f file_modified +EXPORT_SYMBOL vmlinux 0x7a0d94bb __free_pages +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a551312 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x7a5cb627 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x7a5da126 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x7a73dc11 nf_reinject +EXPORT_SYMBOL vmlinux 0x7a87f2e7 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7a99da53 migrate_folio +EXPORT_SYMBOL vmlinux 0x7a9b542e mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ac70dcc pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x7ac809c6 seq_open_private +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ada20e2 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7adf3128 ethtool_notify +EXPORT_SYMBOL vmlinux 0x7ae26a45 fqdir_exit +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7af4dd05 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x7afb8a0c mount_single +EXPORT_SYMBOL vmlinux 0x7b04e888 mii_nway_restart +EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store +EXPORT_SYMBOL vmlinux 0x7b23c51c blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x7b2e5358 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4341c0 dquot_disable +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b6899a9 cdev_init +EXPORT_SYMBOL vmlinux 0x7b6a1395 dump_skip +EXPORT_SYMBOL vmlinux 0x7b6b2540 key_type_keyring +EXPORT_SYMBOL vmlinux 0x7b7928b6 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b850844 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7bb2e965 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc38aa4 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x7bc3b44b get_task_cred +EXPORT_SYMBOL vmlinux 0x7bd1780a d_genocide +EXPORT_SYMBOL vmlinux 0x7bdb05a3 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1f29f8 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x7c322782 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x7c42b1ed devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4a76b4 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x7c4d2b28 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x7c6bf9d6 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x7c70b2ed dm_kobject_release +EXPORT_SYMBOL vmlinux 0x7c99b7ac netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x7cac4982 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7cc8e585 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x7ccdaa13 set_bh_page +EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages +EXPORT_SYMBOL vmlinux 0x7ce17358 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce1b584 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7ceb7a52 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d063645 nf_unregister_net_hooks +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 0x7d23044b mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x7d2a74ae truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x7d3c264f register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x7d3fc653 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d6f88af blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d7d3aaa blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x7d8b5ab3 input_flush_device +EXPORT_SYMBOL vmlinux 0x7d992352 __ps2_command +EXPORT_SYMBOL vmlinux 0x7d99d876 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x7d9b6174 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dbd267b proc_symlink +EXPORT_SYMBOL vmlinux 0x7dc5406e mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7de471d6 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x7defc56b platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x7defc6b1 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0x7e101066 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e3c6016 kernel_read +EXPORT_SYMBOL vmlinux 0x7e44d42e jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x7e5c92d8 mr_dump +EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize +EXPORT_SYMBOL vmlinux 0x7e5d9ac3 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x7e7a21e0 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x7e7a7475 node_data +EXPORT_SYMBOL vmlinux 0x7e7c5c55 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x7e8574b1 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x7e8671fd d_lookup +EXPORT_SYMBOL vmlinux 0x7e9857e0 param_set_uint +EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info +EXPORT_SYMBOL vmlinux 0x7ec04839 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x7ed650dd gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ef689b4 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x7ef6dc1e ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x7f007784 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f1741c8 config_item_get +EXPORT_SYMBOL vmlinux 0x7f1bc21d page_pool_create +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f41856d kset_register +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5dc213 sock_create +EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free +EXPORT_SYMBOL vmlinux 0x7f6829ef genphy_loopback +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f9159a9 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x7f989786 kthread_bind +EXPORT_SYMBOL vmlinux 0x7faafb8e jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x7fbb6bc4 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x7fc044f1 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x7fcad4e2 backlight_device_register +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff0fd57 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x7ff13945 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x7ffb72fd bioset_init +EXPORT_SYMBOL vmlinux 0x80036bf1 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x80136370 ihold +EXPORT_SYMBOL vmlinux 0x80221c7b fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x804ee9e1 kern_path +EXPORT_SYMBOL vmlinux 0x806f7b34 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x807ee5ea dquot_scan_active +EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x808e682e __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8096ae35 __folio_alloc +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d15bcd fman_port_get_device +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80db1611 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +EXPORT_SYMBOL vmlinux 0x81024df3 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x811f3675 fman_bind +EXPORT_SYMBOL vmlinux 0x812b865e tty_port_close +EXPORT_SYMBOL vmlinux 0x812ed137 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x8140e0ef phy_write_paged +EXPORT_SYMBOL vmlinux 0x814a786c pnp_device_attach +EXPORT_SYMBOL vmlinux 0x814c1e35 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x81629e96 sock_set_mark +EXPORT_SYMBOL vmlinux 0x817ae21e file_update_time +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x8186333b cpumask_next_wrap +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 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81dfec4c mii_link_ok +EXPORT_SYMBOL vmlinux 0x81e1fa80 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x81e37f69 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81eae177 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x81f84ccc unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x81f929f1 mpage_writepages +EXPORT_SYMBOL vmlinux 0x82065a19 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x820b1585 param_ops_bint +EXPORT_SYMBOL vmlinux 0x820c1559 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x82210f59 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x8241c9d1 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x8242b626 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x8243015d pnp_device_detach +EXPORT_SYMBOL vmlinux 0x824a6091 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x824b727c blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x825088df locks_copy_lock +EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x82900471 of_match_device +EXPORT_SYMBOL vmlinux 0x82a29835 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x82a315ba pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x82af88db xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x82bde7a7 user_revoke +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82c8cb4c genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x82c8e127 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x82ce5603 ps2_command +EXPORT_SYMBOL vmlinux 0x82d9ae40 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x82ee758c param_set_short +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x8300ab52 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8313051a ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x831c343a ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x831fa043 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x83347c6e get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x833bbb03 pci_free_irq +EXPORT_SYMBOL vmlinux 0x8345bd3f sock_wfree +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8364e2ae dev_activate +EXPORT_SYMBOL vmlinux 0x8370bf8f set_security_override +EXPORT_SYMBOL vmlinux 0x8378b76a __block_write_full_page +EXPORT_SYMBOL vmlinux 0x837eaab9 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83a9f069 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x83b19d94 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x83ba91c6 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x83c206a7 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x84052281 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x841fc47c genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x84226fc5 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x843ab0db netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x84595678 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x84819ce6 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84b6a99f of_n_size_cells +EXPORT_SYMBOL vmlinux 0x84b92add security_unix_may_send +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c9b61f xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x84de85ba tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x84ee12c7 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x84efcf06 edac_mc_find +EXPORT_SYMBOL vmlinux 0x84fc6255 init_pseudo +EXPORT_SYMBOL vmlinux 0x850dea56 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base +EXPORT_SYMBOL vmlinux 0x852a2b42 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x852c518f tcp_child_process +EXPORT_SYMBOL vmlinux 0x855054d8 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856aeacc tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85ba85d4 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85ceb88f flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85eaddbc skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f95880 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x862377a9 phy_device_register +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x862d5b37 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863b5a80 _dev_printk +EXPORT_SYMBOL vmlinux 0x864baefb ip_frag_init +EXPORT_SYMBOL vmlinux 0x864ffa38 vfs_readlink +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x86738178 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x86794f7f sock_setsockopt +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869cb4b7 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x86aae04e inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86e1b259 __put_cred +EXPORT_SYMBOL vmlinux 0x86f7c9cf fsync_bdev +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8707b355 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x87154c78 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x872e9829 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x8743c539 __find_get_block +EXPORT_SYMBOL vmlinux 0x8752b823 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x875424ca __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87634a20 filemap_fault +EXPORT_SYMBOL vmlinux 0x876fd454 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x87710312 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x87725635 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq +EXPORT_SYMBOL vmlinux 0x87867607 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x8793c414 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x87a05654 filemap_flush +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87af7527 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x87b5ca71 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x87bb7c52 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x87c25998 do_splice_direct +EXPORT_SYMBOL vmlinux 0x87e00d5f dev_get_iflink +EXPORT_SYMBOL vmlinux 0x87e3d168 param_get_bool +EXPORT_SYMBOL vmlinux 0x87e484a5 nla_put +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x8815a885 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x8827eb01 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x8830ce80 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x883e8c98 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x8857da6e phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x885aebb8 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x88642923 of_get_parent +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x888b08b5 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x8899dd5f acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88d070b7 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x890083d3 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order +EXPORT_SYMBOL vmlinux 0x892831b6 cdev_add +EXPORT_SYMBOL vmlinux 0x89285746 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x893cd93c fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x8948cdcc cpu_hwcaps +EXPORT_SYMBOL vmlinux 0x894da4a8 dquot_alloc +EXPORT_SYMBOL vmlinux 0x89557b3d fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x8956aadb pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x896f6486 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x897dde2a jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x89933715 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x8995ce45 param_get_charp +EXPORT_SYMBOL vmlinux 0x899cc5c0 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x899fb260 phy_device_free +EXPORT_SYMBOL vmlinux 0x89bc4fcb acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0x89c55ac5 inet_accept +EXPORT_SYMBOL vmlinux 0x89d888b9 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x89da7dea sock_no_listen +EXPORT_SYMBOL vmlinux 0x89f30487 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x89fd2c89 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x8a1145e1 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x8a1a0344 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a498915 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a733d4b configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8818ad tty_driver_flush_buffer +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 0x8ada3899 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x8ae9fca3 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x8af7f9f0 qdisc_put +EXPORT_SYMBOL vmlinux 0x8afcde54 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b40b0c8 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x8b5b7ac1 nf_log_set +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6e9a25 finalize_exec +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8ba6f4cc padata_do_serial +EXPORT_SYMBOL vmlinux 0x8bab9d5a sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x8bd63146 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8bec97e5 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x8befac31 inet_ioctl +EXPORT_SYMBOL vmlinux 0x8bffa2ad ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x8c0dac74 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x8c1ef246 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c39b41e md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x8c4fb5e1 dm_io +EXPORT_SYMBOL vmlinux 0x8c59af64 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x8c6bd80d devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x8c710c40 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x8c7e2b52 ip_defrag +EXPORT_SYMBOL vmlinux 0x8c80186b generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca1325a fman_get_revision +EXPORT_SYMBOL vmlinux 0x8cab656e rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cbab70d tty_port_init +EXPORT_SYMBOL vmlinux 0x8cbe92f7 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cd1b9de mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cf68be5 get_phy_device +EXPORT_SYMBOL vmlinux 0x8cfc478f mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x8cfcb120 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x8d07d406 udp_ioctl +EXPORT_SYMBOL vmlinux 0x8d0d5c80 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x8d10868e lynx_get_mdio_device +EXPORT_SYMBOL vmlinux 0x8d16f3ae devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x8d182bea netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x8d1d8428 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x8d222279 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x8d335d7a inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit +EXPORT_SYMBOL vmlinux 0x8d3ec149 sk_dst_check +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6d3779 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x8d824494 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x8d8f30c0 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da61372 par_io_of_config +EXPORT_SYMBOL vmlinux 0x8db3df70 sync_filesystem +EXPORT_SYMBOL vmlinux 0x8db430f7 bpf_link_put +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de1e185 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x8debedda dma_resv_init +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 0x8e0e67a5 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e1f904a devm_ioport_map +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e28a914 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x8e31cafc __folio_lock +EXPORT_SYMBOL vmlinux 0x8e358f67 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x8e3d784d vfs_symlink +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e6e2484 lock_rename +EXPORT_SYMBOL vmlinux 0x8e818ed3 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x8e8bca46 pci_release_resource +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e951bfc kill_anon_super +EXPORT_SYMBOL vmlinux 0x8ea523ef xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x8ec08434 skb_push +EXPORT_SYMBOL vmlinux 0x8ec6ac8f inet_add_offload +EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x8ee83670 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x8eef22b2 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f0c7af3 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x8f2156f7 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x8f4a44e5 netdev_crit +EXPORT_SYMBOL vmlinux 0x8f65294f tcp_parse_options +EXPORT_SYMBOL vmlinux 0x8f6b6145 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x8f71c4e1 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x8f979e60 shmem_aops +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd3aa4f revert_creds +EXPORT_SYMBOL vmlinux 0x8fe22b29 simple_fill_super +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ff9258d devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x90060dda phy_connect +EXPORT_SYMBOL vmlinux 0x90095eb3 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x900d86c9 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x90291b1d bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x902c1e3d tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9043953b phy_loopback +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x907a47ac param_ops_byte +EXPORT_SYMBOL vmlinux 0x909ee4ec sg_miter_stop +EXPORT_SYMBOL vmlinux 0x90aba0b4 mount_bdev +EXPORT_SYMBOL vmlinux 0x90afdae9 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons +EXPORT_SYMBOL vmlinux 0x90ba262d of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x90c4694f clocksource_unregister +EXPORT_SYMBOL vmlinux 0x90fa10b4 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x90fb2dad prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x90ffae94 inode_init_always +EXPORT_SYMBOL vmlinux 0x91012746 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x91068d27 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x91196621 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x911a45cf of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x9133e387 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x913ddc43 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x9164dc87 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x917b4aff of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x918303f3 pci_map_rom +EXPORT_SYMBOL vmlinux 0x9188d40d flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x918a372c xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91db696e nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x920813d5 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x9209c564 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x92155e9a unix_detach_fds +EXPORT_SYMBOL vmlinux 0x92203f9b flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x92216b48 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9238ce59 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x925e8a34 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x926ca7b7 vm_event_states +EXPORT_SYMBOL vmlinux 0x926fe4eb mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x927d2885 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x928b9a8f rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x928deb0f uart_resume_port +EXPORT_SYMBOL vmlinux 0x928f5893 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x929723cc __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92ddd351 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f9e39e generic_delete_inode +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93012d5e pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930fb42a inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x93272f3f dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x9330cbbb param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x933a3880 vfs_rename +EXPORT_SYMBOL vmlinux 0x9350b6b0 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93781fd4 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x9398642c wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x93a0b304 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b1ee4b dump_align +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b564e7 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x93c9f11f inet_listen +EXPORT_SYMBOL vmlinux 0x93cb233c filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x93d2da6a fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93fb8022 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x9401184d simple_transaction_get +EXPORT_SYMBOL vmlinux 0x9408e534 md_error +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x9437e843 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9480281c sock_release +EXPORT_SYMBOL vmlinux 0x94924d4e filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a3068c dcache_dir_close +EXPORT_SYMBOL vmlinux 0x94ba3a94 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x94bafcf6 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94be7ce1 md_write_start +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c9da39 free_buffer_head +EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x9511c92c security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x95262f03 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x952b149c tty_vhangup +EXPORT_SYMBOL vmlinux 0x9530b7b2 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x954fcdc1 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x955d1e87 start_tty +EXPORT_SYMBOL vmlinux 0x957712e9 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x9598262b uart_update_timeout +EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods +EXPORT_SYMBOL vmlinux 0x95a270c8 skb_eth_push +EXPORT_SYMBOL vmlinux 0x95a37176 backlight_force_update +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95b0e771 scmd_printk +EXPORT_SYMBOL vmlinux 0x95e1953b vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x95e510c3 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x960271a5 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x96097ed4 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x960de3fe ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x96128133 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x96227d7b kernel_listen +EXPORT_SYMBOL vmlinux 0x9622e679 fs_bio_set +EXPORT_SYMBOL vmlinux 0x9629f50a __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x9631650d acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x9635f5bd xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x96782d32 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x96825ce6 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x969090f9 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x96949bae sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x969e14b8 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x969f522b netdev_printk +EXPORT_SYMBOL vmlinux 0x96a43251 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cbc688 tcf_block_get +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x96fadd9c kill_fasync +EXPORT_SYMBOL vmlinux 0x9715b523 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x971e4963 current_time +EXPORT_SYMBOL vmlinux 0x97390603 sk_common_release +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9759e8fa of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0x977d861a qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x9789e084 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x979b6a5f inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x97a40e80 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x97a547b6 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a833ec mmc_request_done +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97cb6479 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x97d5b125 pci_dev_put +EXPORT_SYMBOL vmlinux 0x97df3ebb copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x97e8d016 sync_blockdev +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97fbaec3 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x98381169 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x98394dc7 file_remove_privs +EXPORT_SYMBOL vmlinux 0x983a3b91 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x983faf52 param_get_ushort +EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 +EXPORT_SYMBOL vmlinux 0x98643cf1 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x9889c03e inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x9890689c kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x98b45fba dev_driver_string +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98e5edcb __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x98e7e804 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x98ecf9dd mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x98fcb06a pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x99120a77 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x991aee76 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x992d44ac udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x994780dd dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x997cb8b9 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x99922e1d vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x99939e3f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x999f1381 cad_pid +EXPORT_SYMBOL vmlinux 0x99a4a0ed d_make_root +EXPORT_SYMBOL vmlinux 0x99ab5c6e vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x99b4f3cf ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x99c3c258 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x99c7f62d dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d6eee4 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99ecf81b give_up_console +EXPORT_SYMBOL vmlinux 0x99ef8dd9 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a06eecc device_add_disk +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 0x9a4439b3 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x9a4d745e ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a642cc5 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0x9a702abc tty_port_destroy +EXPORT_SYMBOL vmlinux 0x9a7590ec inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x9a76e3dc phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ac396e1 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x9ac6fc45 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x9acb5884 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9aedec09 rproc_detach +EXPORT_SYMBOL vmlinux 0x9b022c28 __netif_schedule +EXPORT_SYMBOL vmlinux 0x9b10f90a mipi_dsi_set_maximum_return_packet_size +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 0x9b447967 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x9b44ac51 inet_offloads +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b4a9bc8 con_is_visible +EXPORT_SYMBOL vmlinux 0x9b569810 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x9b637145 gro_cells_init +EXPORT_SYMBOL vmlinux 0x9b6ae091 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b79c67b memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x9b8978cc mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x9b8ec3eb file_path +EXPORT_SYMBOL vmlinux 0x9b95bc65 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x9bbb59de devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x9bec06c7 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x9bfd5fb2 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x9c09e811 kthread_stop +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c395e46 d_rehash +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c63fb83 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x9c6afb20 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x9c71029d xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x9c71e5b9 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x9c7531d8 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8b02af rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cada19e filemap_check_errors +EXPORT_SYMBOL vmlinux 0x9cae5d0c dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x9cb342e5 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd07651 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cf1ce1d d_obtain_alias +EXPORT_SYMBOL vmlinux 0x9d0c915d xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d20d082 update_devfreq +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d5deb6a iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d712bbb __kfree_skb +EXPORT_SYMBOL vmlinux 0x9d76e1ce of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d9b4a76 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x9da60ca5 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x9dbaff37 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x9dc3e32a i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x9dd05481 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x9de48b14 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9df566ff tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0e1bed neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e1305cc blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e2290dd __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e3b5244 dev_pick_tx_zero +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 0x9e659296 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x9e6e5673 da903x_query_status +EXPORT_SYMBOL vmlinux 0x9e6faefe __of_get_address +EXPORT_SYMBOL vmlinux 0x9e728cd8 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x9e7b60bd twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e8649c4 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x9e9976e9 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea13854 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x9eacd518 qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eadb4e0 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec1ffad bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large +EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9edbb326 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x9ee1187b rfkill_alloc +EXPORT_SYMBOL vmlinux 0x9f110977 vfs_statfs +EXPORT_SYMBOL vmlinux 0x9f2f8ca9 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x9f41521c __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4d2057 tcf_action_update_stats +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 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f8183ec vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x9f889605 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x9f95f841 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x9f96df30 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9c0f70 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x9f9f72c0 md_register_thread +EXPORT_SYMBOL vmlinux 0x9fa2b4b0 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fcd896a complete_request_key +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff1e9ed noop_fsync +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a4498 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0a1d3db sock_bind_add +EXPORT_SYMBOL vmlinux 0xa0a75308 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xa0aa1a17 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b89d79 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xa0be0a8b xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e83dff skb_append +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 0xa0f10085 __sg_free_table +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11cfb5b ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xa155668c pci_disable_msix +EXPORT_SYMBOL vmlinux 0xa18ccea5 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xa1bbeb06 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xa1dc10bf mmc_of_parse +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa214ae1f sock_alloc +EXPORT_SYMBOL vmlinux 0xa219e378 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa239f8ac devm_register_netdev +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24bee76 request_key_tag +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25a97f7 inet_addr_type +EXPORT_SYMBOL vmlinux 0xa25ad3d8 skb_pull +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa263e91a cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa273fb74 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xa282bf26 nf_log_packet +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28fc24d tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xa298e3df of_find_property +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 0xa2f296e4 phy_device_remove +EXPORT_SYMBOL vmlinux 0xa2f698e9 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xa2fef724 seq_putc +EXPORT_SYMBOL vmlinux 0xa3268ddf genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xa33542cc tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa37b5a13 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xa389a539 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xa389ccdf kobject_del +EXPORT_SYMBOL vmlinux 0xa38c180c vme_irq_generate +EXPORT_SYMBOL vmlinux 0xa392c2b0 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xa397011f adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xa3a8652d poll_freewait +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c2f73e of_get_property +EXPORT_SYMBOL vmlinux 0xa3caa08a audit_log +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3eaf239 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xa3f14d1a tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4198f02 vc_cons +EXPORT_SYMBOL vmlinux 0xa41da146 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xa41f3ab7 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xa4251d33 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xa4277ec0 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xa4299581 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xa43d1152 dev_mc_del +EXPORT_SYMBOL vmlinux 0xa443be3b security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xa447791e devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa453cd05 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xa4795d5d folio_add_lru +EXPORT_SYMBOL vmlinux 0xa479c726 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xa482cec1 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xa4851248 put_watch_queue +EXPORT_SYMBOL vmlinux 0xa497aaf9 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xa4987302 d_tmpfile +EXPORT_SYMBOL vmlinux 0xa4b5624a vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xa4c44296 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xa4d1171d flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0xa4d6a323 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xa4de7d74 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xa4e4a10f unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xa4f06a55 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa5062473 d_invalidate +EXPORT_SYMBOL vmlinux 0xa50d8c09 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xa512a548 scsi_done +EXPORT_SYMBOL vmlinux 0xa52a49ba vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa54dfefe pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa568f96d dev_uc_add +EXPORT_SYMBOL vmlinux 0xa56c6f25 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xa57eefea mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5a61507 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xa5b0bbf9 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xa5b84b75 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xa5bf7ad8 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xa5c333fe mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0xa5c7be70 security_sock_graft +EXPORT_SYMBOL vmlinux 0xa5e1de48 xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0xa5ea3c24 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa5f58ba2 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xa5f5fca7 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa6002629 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xa60bebdd dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa638e6d2 component_match_add_release +EXPORT_SYMBOL vmlinux 0xa643afc1 jbd2_journal_clear_features +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 0xa690b7ad pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xa6a59619 param_set_long +EXPORT_SYMBOL vmlinux 0xa6acbf8b blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xa6b3c731 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xa6d05281 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xa6ec21c9 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xa6ec558b rt6_lookup +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xa70ff06c __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0xa70ff8c9 netdev_emerg +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa7331b2a mpage_readahead +EXPORT_SYMBOL vmlinux 0xa735d9ee iov_iter_discard +EXPORT_SYMBOL vmlinux 0xa7471d83 devm_ioremap +EXPORT_SYMBOL vmlinux 0xa748b228 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa782ead9 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xa7854354 pci_match_id +EXPORT_SYMBOL vmlinux 0xa7885efd dma_free_attrs +EXPORT_SYMBOL vmlinux 0xa790880e vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xa792c88d trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xa7b1f211 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xa7baae3d folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7e0a450 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xa7eeacce __pagevec_release +EXPORT_SYMBOL vmlinux 0xa7eed25b tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa81326a9 serio_reconnect +EXPORT_SYMBOL vmlinux 0xa816e1ed __bh_read +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa823acc4 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xa823d31d in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xa825e033 phy_find_first +EXPORT_SYMBOL vmlinux 0xa8264349 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xa82ff065 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xa8325b8a pin_user_pages +EXPORT_SYMBOL vmlinux 0xa834ec1a tty_port_close_start +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 0xa85556f0 generic_fillattr +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa86e0d53 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xa874d738 kern_unmount +EXPORT_SYMBOL vmlinux 0xa87dd414 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xa8874c18 __neigh_create +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa89d0ec2 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8b04c5f d_add_ci +EXPORT_SYMBOL vmlinux 0xa8b30a30 input_event +EXPORT_SYMBOL vmlinux 0xa8b45f34 security_path_unlink +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8ed403a generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa93c2d75 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa95ba881 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xa9617911 pipe_unlock +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9801ac9 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xa984201f mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xa99be63b acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0xa9a15d8d nonseekable_open +EXPORT_SYMBOL vmlinux 0xa9a634a7 single_open +EXPORT_SYMBOL vmlinux 0xa9ab307a blk_integrity_register +EXPORT_SYMBOL vmlinux 0xa9c102a0 clkdev_drop +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0bb7df xsk_tx_release +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa0e4f41 bio_free_pages +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa2c333b simple_statfs +EXPORT_SYMBOL vmlinux 0xaa2d3ea6 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3cb87b param_set_invbool +EXPORT_SYMBOL vmlinux 0xaa3d96d2 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xaa4df2fd bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xaa591672 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa739bfb fqdir_init +EXPORT_SYMBOL vmlinux 0xaa78bbcb phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa8b8e57 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaab0f2de padata_alloc +EXPORT_SYMBOL vmlinux 0xaac7b31a phy_set_sym_pause +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 0xaadee93d netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xaae77e06 devm_memunmap +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 0xab059666 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xab07818e netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xab149c5f wireless_spy_update +EXPORT_SYMBOL vmlinux 0xab21380f netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0xab34cc76 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab504a1f in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xab5bc364 nlmsg_notify +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 0xab81e178 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0xabaacedc phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xabb42425 set_groups +EXPORT_SYMBOL vmlinux 0xabb43f18 pci_request_irq +EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0xabc29044 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xabd5b565 simple_rmdir +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac05ff3c sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xac16330d write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac403a59 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xac52b8aa phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5a5f72 km_state_notify +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac7a7ee8 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xac7e3ac5 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xac7eac3f ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xac84d785 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xac9e36bb seq_release +EXPORT_SYMBOL vmlinux 0xaca9060f tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacbd4638 dget_parent +EXPORT_SYMBOL vmlinux 0xacc2ed4f set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdb9c5a simple_transaction_release +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace8dcb8 phy_suspend +EXPORT_SYMBOL vmlinux 0xacec1e7a seq_dentry +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0b51c5 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad2aced3 km_policy_expired +EXPORT_SYMBOL vmlinux 0xad38a96d skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xad3d66ee proc_mkdir +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad6f729b tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad95f7df pci_request_region +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada396c8 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xada66d9d mmc_put_card +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb2b9ee jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xadb5ea1d __serio_register_driver +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc6fcc0 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xade726f6 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae0aa7cd dquot_get_state +EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled +EXPORT_SYMBOL vmlinux 0xae2fe71b rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae49c6ad folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xae4b90cb iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xae6a5cdd scsi_host_get +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 0xaed2efb0 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xaeee7445 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xaef7d3f0 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xaefb2547 pci_iomap +EXPORT_SYMBOL vmlinux 0xaf05376e xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xaf10ac6c setup_arg_pages +EXPORT_SYMBOL vmlinux 0xaf1e1cf5 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xaf1f204c locks_remove_posix +EXPORT_SYMBOL vmlinux 0xaf29b0e1 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xaf31e91b pci_clear_master +EXPORT_SYMBOL vmlinux 0xaf3baac8 __alloc_pages +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf47503e blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf5776cc udp_disconnect +EXPORT_SYMBOL vmlinux 0xaf5ed0fe logfc +EXPORT_SYMBOL vmlinux 0xaf5fffcc try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xaf63fe8a nd_device_notify +EXPORT_SYMBOL vmlinux 0xaf71ad86 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xaf9116b5 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xaf9b2b54 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xaf9e311b pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc11cde mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xb0041be4 d_alloc +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb023fe0e __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xb03a9cbe phy_read_paged +EXPORT_SYMBOL vmlinux 0xb048a8ac nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xb04a19de reuseport_alloc +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb04cfbde xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xb056cfb8 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a3c208 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xb0b5e9b3 md_check_recovery +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0ca8e05 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xb0d7c73e input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xb0d7c82d xfrm_input +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0f6a5e3 km_new_mapping +EXPORT_SYMBOL vmlinux 0xb10f0ae9 vme_bus_type +EXPORT_SYMBOL vmlinux 0xb1150db7 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12643f8 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb138cef6 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14d4753 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb155bea7 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xb171a3d6 new_inode +EXPORT_SYMBOL vmlinux 0xb1760880 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xb17869f9 fb_set_var +EXPORT_SYMBOL vmlinux 0xb197d5ef skb_copy +EXPORT_SYMBOL vmlinux 0xb19a30f7 elv_rb_add +EXPORT_SYMBOL vmlinux 0xb1a71325 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xb1bbd470 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xb1c1b462 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c7f219 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xb1c96901 scsi_device_get +EXPORT_SYMBOL vmlinux 0xb1cc63e7 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e1537d simple_empty +EXPORT_SYMBOL vmlinux 0xb1e6f4df rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xb1f229b3 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xb20223ae padata_free_shell +EXPORT_SYMBOL vmlinux 0xb2142aaf pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xb2289ba3 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb2354edd key_validate +EXPORT_SYMBOL vmlinux 0xb2384764 validate_slab_cache +EXPORT_SYMBOL vmlinux 0xb2467d0c mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xb25ca9b9 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xb2753661 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xb2880389 phy_attached_info +EXPORT_SYMBOL vmlinux 0xb2accdca prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c82f96 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xb2cfc424 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f8e403 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fe8020 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xb3016cc2 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb318097c bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xb31aa2e8 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xb322b648 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb3476193 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xb34dc7a7 register_framebuffer +EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb35cd3f4 security_sb_remount +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xb3715e0a keyring_search +EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert +EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3ce0321 uart_match_port +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 0xb3f985a8 sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb40efd41 __netif_napi_del +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4314da2 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xb43a96ad param_ops_ulong +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb45b8d5d pmem_sector_size +EXPORT_SYMBOL vmlinux 0xb461cd2f scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xb481978b rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xb4cb49eb drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xb4eed27e pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4ffe7b9 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0xb51146b6 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xb5125d75 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xb517373b writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xb5176e16 config_group_init +EXPORT_SYMBOL vmlinux 0xb52c8b5d serio_rescan +EXPORT_SYMBOL vmlinux 0xb5306ca9 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb54f6edd ram_aops +EXPORT_SYMBOL vmlinux 0xb54fe7ed phy_init_eee +EXPORT_SYMBOL vmlinux 0xb558f162 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xb563d88f block_invalidate_folio +EXPORT_SYMBOL vmlinux 0xb5778222 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb580e787 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0xb595b59a t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xb59ed638 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xb59f1a37 fman_register_intr +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 0xb5b6a65e to_nd_pfn +EXPORT_SYMBOL vmlinux 0xb5c792c3 mdiobus_free +EXPORT_SYMBOL vmlinux 0xb5d7d3e2 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb60915eb mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xb61aad7d dm_put_device +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb62ed387 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb6583fec pcie_set_mps +EXPORT_SYMBOL vmlinux 0xb66b41eb submit_bh +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb66fb52c mdiobus_write +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb692e53c pps_unregister_source +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6973ad7 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xb6a5f1da touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6beefc2 from_kuid +EXPORT_SYMBOL vmlinux 0xb6c1b826 from_kgid +EXPORT_SYMBOL vmlinux 0xb6c56e29 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xb6c6a56a rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6d75198 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xb6d9e247 follow_pfn +EXPORT_SYMBOL vmlinux 0xb6da42f5 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6e69b71 __block_write_begin +EXPORT_SYMBOL vmlinux 0xb6eb1401 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb6fb6799 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xb6fd0e33 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb725d187 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xb7292169 tty_port_open +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb73bdc24 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xb752eb7e abort_creds +EXPORT_SYMBOL vmlinux 0xb7555014 tty_port_alloc_xmit_buf +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 0xb78e4946 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xb7a6975a linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xb7ac69c5 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states +EXPORT_SYMBOL vmlinux 0xb7baa594 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xb7bf4d87 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7f69613 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xb8074e38 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb80e3958 block_commit_write +EXPORT_SYMBOL vmlinux 0xb8183549 folio_end_writeback +EXPORT_SYMBOL vmlinux 0xb8271ce1 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xb82bcc02 default_llseek +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb850b736 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xb855cc72 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb898b2b8 md_write_inc +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89d5c94 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b8a67a locks_delete_block +EXPORT_SYMBOL vmlinux 0xb8f59ab2 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xb8f85e3c blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xb9057740 ipv6_sock_mc_join +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 0xb923504a try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xb929e897 fd_install +EXPORT_SYMBOL vmlinux 0xb9325407 find_vma +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb94e9dbc tso_start +EXPORT_SYMBOL vmlinux 0xb94f5b8e inet6_add_offload +EXPORT_SYMBOL vmlinux 0xb9509de5 pcim_iomap +EXPORT_SYMBOL vmlinux 0xb954786a readahead_expand +EXPORT_SYMBOL vmlinux 0xb9627f1f dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xb96a0133 iunique +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb96cb4dd phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb9767da3 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xb981510c set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xb9924a25 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xb99925d6 alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0xb9a87187 __skb_checksum +EXPORT_SYMBOL vmlinux 0xb9aa345e __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9b8dd9d devm_rproc_add +EXPORT_SYMBOL vmlinux 0xb9bd27c8 proto_register +EXPORT_SYMBOL vmlinux 0xb9bdaa6d folio_account_redirty +EXPORT_SYMBOL vmlinux 0xb9bdfeba nd_device_register +EXPORT_SYMBOL vmlinux 0xb9c55817 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xb9cb518f pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0xb9d93e5f security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f28441 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba0c2d5e netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba15b188 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xba1cc94e generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xba26124b remap_pfn_range +EXPORT_SYMBOL vmlinux 0xba463d5e pci_write_config_word +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba8520dd blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xbaa6421a skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xbaa7cb63 sock_create_kern +EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len +EXPORT_SYMBOL vmlinux 0xbacd5fd4 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xbae18689 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbb039ff7 sget +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0654c4 genl_register_family +EXPORT_SYMBOL vmlinux 0xbb106ac8 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xbb12dbf5 input_copy_abs +EXPORT_SYMBOL vmlinux 0xbb177371 d_move +EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2eae48 cdrom_open +EXPORT_SYMBOL vmlinux 0xbb46198a fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xbb47785a mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xbb4ec50a flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb51412f to_nd_btt +EXPORT_SYMBOL vmlinux 0xbb59994e con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb70e1a4 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xbb80348b flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xbb92e91e pci_reenable_device +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbbe348ff mmc_start_request +EXPORT_SYMBOL vmlinux 0xbbe555d8 twl6040_power +EXPORT_SYMBOL vmlinux 0xbc0b2320 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc5407b2 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xbc590e8a tty_devnum +EXPORT_SYMBOL vmlinux 0xbc5b42e6 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xbc6568c7 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xbc6907c8 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xbc6e487a vme_dma_request +EXPORT_SYMBOL vmlinux 0xbc6ff3a4 rproc_shutdown +EXPORT_SYMBOL vmlinux 0xbc73ca70 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0xbc80291a pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xbc90c7e2 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xbc91a56c arp_xmit +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcc5ffc9 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xbcc959f3 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xbcde0c54 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xbcf99462 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xbcff2e88 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xbd03b7d1 __fput_sync +EXPORT_SYMBOL vmlinux 0xbd050e27 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xbd21f0ad __scm_destroy +EXPORT_SYMBOL vmlinux 0xbd3a3106 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd5c03b0 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xbd5eb070 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd691187 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xbd6df691 devm_release_resource +EXPORT_SYMBOL vmlinux 0xbd7a9763 register_filesystem +EXPORT_SYMBOL vmlinux 0xbd92465b folio_alloc +EXPORT_SYMBOL vmlinux 0xbda04367 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xbdc07e14 inet_del_offload +EXPORT_SYMBOL vmlinux 0xbdc6ca57 PageMovable +EXPORT_SYMBOL vmlinux 0xbddd9f12 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xbde4ce86 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe263f36 cred_fscmp +EXPORT_SYMBOL vmlinux 0xbe304d74 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xbe322518 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xbe34ec19 nf_log_trace +EXPORT_SYMBOL vmlinux 0xbe3550e1 __devm_release_region +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4dc6ea jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe4f6973 fwnode_graph_parse_endpoint +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 0xbe7d78e8 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0xbea2ca9c kernel_bind +EXPORT_SYMBOL vmlinux 0xbef01634 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf0f0fbc mdio_device_free +EXPORT_SYMBOL vmlinux 0xbf16b0e1 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xbf294c32 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xbf2b94df vfs_get_link +EXPORT_SYMBOL vmlinux 0xbf2f1253 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xbf411467 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xbf57772b genlmsg_put +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf6997be capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xbf6f5099 md_flush_request +EXPORT_SYMBOL vmlinux 0xbf7872d2 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xbf8196b7 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xbf83486f block_write_begin +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa67acc may_umount +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfaf1f45 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xbfb9ecbd mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfdab99d blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xbff02bef set_page_dirty +EXPORT_SYMBOL vmlinux 0xc01f64dc ip6_frag_init +EXPORT_SYMBOL vmlinux 0xc0296bf3 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xc029b94e km_report +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc041525b make_kgid +EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get +EXPORT_SYMBOL vmlinux 0xc068fbc3 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xc0713c6e udp_poll +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc086e668 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xc08e7a05 nla_reserve +EXPORT_SYMBOL vmlinux 0xc0adc34b mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xc0c31e70 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xc0e13016 nd_dax_probe +EXPORT_SYMBOL vmlinux 0xc0eead71 sock_no_bind +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 0xc113ff91 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc125bcc0 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xc13afb1e end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xc1409e33 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xc1460bbb set_user_nice +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc156c494 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc159e3c4 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc18d72de is_nd_btt +EXPORT_SYMBOL vmlinux 0xc1bfe28f of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dec337 inc_nlink +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1f57b44 sock_register +EXPORT_SYMBOL vmlinux 0xc1f6c31b fc_mount +EXPORT_SYMBOL vmlinux 0xc1ff195e kern_path_create +EXPORT_SYMBOL vmlinux 0xc1ff4540 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xc20252b3 pci_enable_device +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc2183d4f pci_fixup_device +EXPORT_SYMBOL vmlinux 0xc21f9ead rpmh_write_async +EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc2394c4e iterate_fd +EXPORT_SYMBOL vmlinux 0xc25c403b xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xc26c3b99 dev_get_flags +EXPORT_SYMBOL vmlinux 0xc270e61e skb_pull_data +EXPORT_SYMBOL vmlinux 0xc2786ce5 vfs_create +EXPORT_SYMBOL vmlinux 0xc27999d2 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xc27a122a rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xc27add9d scsi_scan_target +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc29e42ea max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xc2ac2a86 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xc2be7b0c xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xc2bee0fb mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xc2d45662 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou +EXPORT_SYMBOL vmlinux 0xc2e518bd netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ea9263 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xc2ec9795 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xc2f11eac meson_sm_call_read +EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc2fc4a94 pci_enable_ptm +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 0xc343480e tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xc36066ec __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xc3676293 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xc36e1e1e release_pages +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3915ca2 dev_add_pack +EXPORT_SYMBOL vmlinux 0xc39a9d99 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xc3b3758f skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xc3b6dc0c gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3bd7db5 vga_put +EXPORT_SYMBOL vmlinux 0xc3c105bc dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3d11249 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xc3d677e7 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xc3ee2374 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xc3f50124 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc419c9f3 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc434a702 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xc44a8ce3 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xc44b9b74 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4749349 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc495b64e __post_watch_notification +EXPORT_SYMBOL vmlinux 0xc4a70f59 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xc4af1219 path_get +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4f5a7fb nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xc500ad2f get_tree_bdev +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc52bb8d2 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xc53bbdb4 sock_init_data +EXPORT_SYMBOL vmlinux 0xc55a4383 pci_disable_device +EXPORT_SYMBOL vmlinux 0xc55b2451 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xc5606407 task_work_add +EXPORT_SYMBOL vmlinux 0xc564c382 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc575cf47 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc58ba182 discard_new_inode +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59cb1b0 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5bad193 seq_open +EXPORT_SYMBOL vmlinux 0xc5bc5e49 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xc5cad340 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xc5cb8547 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xc5d01ee8 regset_get +EXPORT_SYMBOL vmlinux 0xc5d71676 to_ndd +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc60ab8c7 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xc60c897e inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc6203bbb stream_open +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6326c14 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc63a648a pci_get_subsys +EXPORT_SYMBOL vmlinux 0xc644cfa5 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6729135 netif_device_attach +EXPORT_SYMBOL vmlinux 0xc6777177 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xc6882c59 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xc6940b5c tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0xc69b0216 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6a022d2 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc6a4f348 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xc6a505d5 pnp_is_active +EXPORT_SYMBOL vmlinux 0xc6acfa9c phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc746bf40 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xc77c6110 tty_kref_put +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc78243e3 may_setattr +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7addcea blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc7bf9cf0 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7db889f pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xc7f086b5 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xc7f4ac0d skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xc7f54660 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xc7ff3dcd dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xc805bbc1 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc81bd51f d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84a3a83 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xc84d6ee9 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xc84ea38f tty_unregister_device +EXPORT_SYMBOL vmlinux 0xc85a7ae5 udp_seq_start +EXPORT_SYMBOL vmlinux 0xc86727b8 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xc86f061c kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xc870adee dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87b1e95 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xc88107db pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88cacd7 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8aed983 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xc8be391b sock_edemux +EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table +EXPORT_SYMBOL vmlinux 0xc8ccb12a generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xc8d84d51 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e6184a init_net +EXPORT_SYMBOL vmlinux 0xc8f66175 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xc9091a9b ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc945ab5b skb_checksum_help +EXPORT_SYMBOL vmlinux 0xc9555b00 dquot_transfer +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc967566b netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xc96f0f5d simple_open +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc98297a9 set_posix_acl +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a25f24 devm_memremap +EXPORT_SYMBOL vmlinux 0xc9a9b367 elevator_alloc +EXPORT_SYMBOL vmlinux 0xc9ccd193 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e0cbdc sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xc9e5dc8a __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xc9eb0302 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xc9f19cc5 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xca079942 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xca0a1d34 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xca1213f2 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca4409e4 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xca556bad blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcaaf1f12 dm_register_target +EXPORT_SYMBOL vmlinux 0xcab2963a mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcad377ef filemap_get_folios +EXPORT_SYMBOL vmlinux 0xcadb7342 neigh_table_init +EXPORT_SYMBOL vmlinux 0xcaec2be9 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xcaec7bc9 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xcaeedcbe tcp_recv_skb +EXPORT_SYMBOL vmlinux 0xcaf512f7 scsi_host_busy +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb051e16 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xcb1a92b3 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb7e3fea phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xcb969744 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xcb9b7b65 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xcb9c76ea __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc8b4fc config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xcbcf75ef netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd94b28 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xcbe3fbe0 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc00f50f tcp_check_req +EXPORT_SYMBOL vmlinux 0xcc0ed466 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xcc15223b devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0xcc156ea8 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc209b07 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2b25eb call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc49426b amba_release_regions +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc8543e7 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xcc8659b2 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xcc9a5a6c del_gendisk +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xcce50f39 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfba50a skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd1682c7 input_close_device +EXPORT_SYMBOL vmlinux 0xcd176c9c rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd517d22 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xcd6dab86 rproc_alloc +EXPORT_SYMBOL vmlinux 0xcd81fa24 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd9eb8d5 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xcdb42145 touch_buffer +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcb2e38 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xce19ad8c tcf_get_next_chain +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 0xce54ca56 block_truncate_page +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5f49bb blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xce720f28 mtree_destroy +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 0xce81f39f acpi_device_hid +EXPORT_SYMBOL vmlinux 0xcea25e28 bio_put +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcebef80f sunxi_sram_release +EXPORT_SYMBOL vmlinux 0xcec4e24d seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xcec73c23 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xced58f9c netlink_net_capable +EXPORT_SYMBOL vmlinux 0xceeb1864 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf11575c dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xcf27c60c dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2ce306 alloc_pages +EXPORT_SYMBOL vmlinux 0xcf307db7 dev_mc_init +EXPORT_SYMBOL vmlinux 0xcf3a32d4 phy_attach +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf43ca31 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf5a9e9b dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xcf85c7c1 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xcf8c33b9 block_write_full_page +EXPORT_SYMBOL vmlinux 0xcf94668d dqget +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfbf61f6 of_clk_get +EXPORT_SYMBOL vmlinux 0xcfc22e07 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfcf95be md_bitmap_free +EXPORT_SYMBOL vmlinux 0xcfd4978f __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcfd7a62c tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfdd6044 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xcfeccb16 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xd01b4506 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xd02225cb phy_read_mmd +EXPORT_SYMBOL vmlinux 0xd035efda inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xd038c6e9 vlan_for_each +EXPORT_SYMBOL vmlinux 0xd049a066 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd052781a inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xd056f091 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xd064d32c neigh_event_ns +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0681f29 eth_header +EXPORT_SYMBOL vmlinux 0xd074c1f8 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08a1e16 pci_restore_state +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd09cf25d phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0b773a0 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xd0bcd8de keyring_alloc +EXPORT_SYMBOL vmlinux 0xd0bcf0f1 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xd0c0d829 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xd0d91055 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xd111f4e6 bio_chain +EXPORT_SYMBOL vmlinux 0xd112c0b7 has_capability +EXPORT_SYMBOL vmlinux 0xd12f3376 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd1685bba fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xd17a8646 inet_shutdown +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd19ad662 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xd1ac33cd udp_gro_complete +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1eaa9c8 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xd1f4a71c generic_file_llseek +EXPORT_SYMBOL vmlinux 0xd1fb5286 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd209b0ba napi_build_skb +EXPORT_SYMBOL vmlinux 0xd218ee9b phy_detach +EXPORT_SYMBOL vmlinux 0xd2213aad secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd22aea98 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xd23855af _dev_err +EXPORT_SYMBOL vmlinux 0xd239c0f3 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd248dbb0 mdio_driver_unregister +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 0xd2707e56 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xd2734643 mdio_device_create +EXPORT_SYMBOL vmlinux 0xd279e0b5 deactivate_super +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd28c95f4 security_path_rename +EXPORT_SYMBOL vmlinux 0xd2906dd5 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xd2a3bb66 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xd2a4af66 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xd2bc0d5e mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xd2c98a89 vfs_llseek +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2da6b9e path_put +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2ebdbd6 tcp_mmap +EXPORT_SYMBOL vmlinux 0xd2f1524f inode_io_list_del +EXPORT_SYMBOL vmlinux 0xd2fd3f4b dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xd308c541 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xd30a7ae5 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3352841 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xd335e2d3 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xd336737a __register_chrdev +EXPORT_SYMBOL vmlinux 0xd3416eda get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xd350743d input_set_capability +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd3550be6 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +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 0xd378fae9 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd392d0b0 param_get_long +EXPORT_SYMBOL vmlinux 0xd3dcaffb sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xd3df8b98 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd409d202 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xd40d9c98 vme_irq_request +EXPORT_SYMBOL vmlinux 0xd41242a7 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xd4365476 skb_queue_head +EXPORT_SYMBOL vmlinux 0xd447f30a fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xd4484350 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xd44f87a8 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4609976 generic_file_open +EXPORT_SYMBOL vmlinux 0xd46d99ec pskb_extract +EXPORT_SYMBOL vmlinux 0xd4736c98 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd484118a sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xd4849113 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xd48b1799 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c16465 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4db762d param_get_ullong +EXPORT_SYMBOL vmlinux 0xd4dd76b5 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xd51caa8e dma_pool_create +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd5522ef2 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xd596e85b alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xd59ac0ae xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5d4bec8 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xd5e84bb1 tty_name +EXPORT_SYMBOL vmlinux 0xd5f3171f nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd6062e75 vm_mmap +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd62f4899 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd647c15a uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xd647c6b1 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xd652dbdd xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6794937 drop_nlink +EXPORT_SYMBOL vmlinux 0xd6876911 genphy_read_status +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6935810 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xd6956fcd jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xd697bf72 locks_free_lock +EXPORT_SYMBOL vmlinux 0xd69df357 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xd6a5667e pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6abc597 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xd6b22cf2 netdev_notice +EXPORT_SYMBOL vmlinux 0xd6baa17b vm_insert_pages +EXPORT_SYMBOL vmlinux 0xd6baefba __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xd6c0276d __invalidate_device +EXPORT_SYMBOL vmlinux 0xd6c8084a xfrm_state_free +EXPORT_SYMBOL vmlinux 0xd6d25153 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xd6dd235b devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xd6dfbf6a udp_set_csum +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd6ff4b24 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70dc65c scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd71104b3 vm_node_stat +EXPORT_SYMBOL vmlinux 0xd72454f7 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xd7336e9f icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd739ad1b blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase +EXPORT_SYMBOL vmlinux 0xd73c0888 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd7620624 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7acb716 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xd7c2806d stop_tty +EXPORT_SYMBOL vmlinux 0xd7ca91af mmc_free_host +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d3f90f phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd8087ba1 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd833d1a5 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xd838fca9 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xd85f0b18 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0xd8867865 ipv4_specific +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a6ab0f scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ab0132 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xd8b2e1ae pci_pme_capable +EXPORT_SYMBOL vmlinux 0xd8b5e8af icmp6_send +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit +EXPORT_SYMBOL vmlinux 0xd8c002a8 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xd8cca730 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xd8d52624 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xd8ddb942 setattr_prepare +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd901b68b i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd94c2988 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xd94f602a of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xd9551c35 amba_request_regions +EXPORT_SYMBOL vmlinux 0xd95fddc2 _dev_notice +EXPORT_SYMBOL vmlinux 0xd97c9db0 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98d8e50 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xd995889b copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xd99bb9de phy_resume +EXPORT_SYMBOL vmlinux 0xd9a1d26d register_console +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b787b9 simple_unlink +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9bcc345 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xd9c5a19e simple_release_fs +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e7a855 inode_init_owner +EXPORT_SYMBOL vmlinux 0xd9edc3b7 vfs_unlink +EXPORT_SYMBOL vmlinux 0xd9f20c62 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xd9fc8173 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id +EXPORT_SYMBOL vmlinux 0xda1f2806 key_move +EXPORT_SYMBOL vmlinux 0xda2616cc udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xda28dcaf kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda41be21 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xda53e6a0 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xda71670f sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xda71c5b3 misc_register +EXPORT_SYMBOL vmlinux 0xda80f5c4 mii_check_link +EXPORT_SYMBOL vmlinux 0xda8d5816 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xda95acff arp_tbl +EXPORT_SYMBOL vmlinux 0xdab9086b kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xdabca9b7 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdaca820e dynamic_preempt_schedule +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdaddcd6b secpath_set +EXPORT_SYMBOL vmlinux 0xdade2b43 dev_uc_init +EXPORT_SYMBOL vmlinux 0xdae1a1d2 find_inode_rcu +EXPORT_SYMBOL vmlinux 0xdb228d18 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xdb289094 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xdb2cc6a3 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xdb43f028 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xdb4f75e1 bio_init_clone +EXPORT_SYMBOL vmlinux 0xdb524227 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xdb538b1a ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdbb2ee20 netdev_info +EXPORT_SYMBOL vmlinux 0xdbbb5805 bio_copy_data +EXPORT_SYMBOL vmlinux 0xdbbb6632 vfs_link +EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xdbc73800 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdc8acc block_write_end +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe50d59 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xdbf3a22a skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xdbfd0a21 mount_subtree +EXPORT_SYMBOL vmlinux 0xdc05f6f1 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc210ca4 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4b8149 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc628784 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xdc86ef8a module_layout +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xdcbfe6ff mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdcdd95d6 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xdce48f18 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xdcffd4a5 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd03a41c blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd18c51c __phy_resume +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xdd62004d devm_clk_get +EXPORT_SYMBOL vmlinux 0xdd640674 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd699058 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd7f691c tcf_classify +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd9e607e param_set_bool +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddb83c39 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xddb9df41 tcp_filter +EXPORT_SYMBOL vmlinux 0xddbdd537 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xddc482ba simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xddc486c9 sock_no_accept +EXPORT_SYMBOL vmlinux 0xddd0f1a4 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xdde810cc dns_query +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xde0f730e jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xde1b5bde skb_condense +EXPORT_SYMBOL vmlinux 0xde207237 tcp_poll +EXPORT_SYMBOL vmlinux 0xde2194d9 d_alloc_name +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde422a8a uart_add_one_port +EXPORT_SYMBOL vmlinux 0xde4b0053 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde67419e sg_split +EXPORT_SYMBOL vmlinux 0xde8abf04 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xde9ee78f devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xdec437d8 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xdece44e7 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdef1345d __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf002a28 unregister_console +EXPORT_SYMBOL vmlinux 0xdf04b1ed tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf26844a of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf4bb7b2 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5968a2 buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0xdf65cf0b tcp_read_sock +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf927ebe inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents +EXPORT_SYMBOL vmlinux 0xdfc05092 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0078910 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xe00feb85 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe02d256d mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe03ba762 seq_read +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe04b06cc dm_table_get_md +EXPORT_SYMBOL vmlinux 0xe0600b5d scm_detach_fds +EXPORT_SYMBOL vmlinux 0xe0642014 inet_frags_init +EXPORT_SYMBOL vmlinux 0xe06470ae inode_permission +EXPORT_SYMBOL vmlinux 0xe064ba42 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xe076a87b dev_close +EXPORT_SYMBOL vmlinux 0xe0789265 tcp_setsockopt +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 0xe089cefc flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe097d333 setup_new_exec +EXPORT_SYMBOL vmlinux 0xe0a47fa5 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xe0a7271b tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0ce4b07 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xe0d21bd8 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xe0dda581 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xe0decbc1 slab_build_skb +EXPORT_SYMBOL vmlinux 0xe0e4d740 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xe105a425 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe14b6fea dm_table_get_size +EXPORT_SYMBOL vmlinux 0xe14f4f9f get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xe15255b7 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0xe154b4ec unload_nls +EXPORT_SYMBOL vmlinux 0xe164b932 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0xe168b6da netdev_warn +EXPORT_SYMBOL vmlinux 0xe16d4574 request_key_rcu +EXPORT_SYMBOL vmlinux 0xe196dcb0 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xe1a90b30 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xe1cb9b9c of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xe1cd626a tcp_prot +EXPORT_SYMBOL vmlinux 0xe1d4dafd pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe212c493 skb_split +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe21f32d3 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xe220f0ae mdio_driver_register +EXPORT_SYMBOL vmlinux 0xe227d5cb rtnl_unicast +EXPORT_SYMBOL vmlinux 0xe229a064 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xe23353da mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xe235c0bc dump_emit +EXPORT_SYMBOL vmlinux 0xe2498b7c generic_update_time +EXPORT_SYMBOL vmlinux 0xe259e35c tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xe266af69 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xe269dcf0 dev_add_offload +EXPORT_SYMBOL vmlinux 0xe2710a1a fs_param_is_string +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe27d2125 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up +EXPORT_SYMBOL vmlinux 0xe2a7cc4e gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xe2b8f882 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xe2c4eee8 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xe2d2deaf reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d8a763 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xe303fd9c ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xe3141ffb scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xe31ab4ab generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xe324cb22 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe330c8f6 param_ops_short +EXPORT_SYMBOL vmlinux 0xe339d487 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xe35d9214 would_dump +EXPORT_SYMBOL vmlinux 0xe36a1506 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xe371cc44 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe39b848d netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xe3a34f3e gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xe3a82017 netdev_update_features +EXPORT_SYMBOL vmlinux 0xe3abf208 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xe3d9e08a pcim_iounmap +EXPORT_SYMBOL vmlinux 0xe3e2d323 __module_put_and_kthread_exit +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 0xe419c8fc iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe433c28a netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xe442a2e1 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xe444cf8f inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xe45bb965 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe4657608 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xe490c600 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xe49bd8af param_get_string +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4f1567c pid_task +EXPORT_SYMBOL vmlinux 0xe505875a inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xe51c0854 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe53b8419 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xe541b971 can_nice +EXPORT_SYMBOL vmlinux 0xe55afc5a devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xe562021d kill_pgrp +EXPORT_SYMBOL vmlinux 0xe57c826f tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe583ef50 kobject_get +EXPORT_SYMBOL vmlinux 0xe58c64cc pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a62bdc neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xe5a694e3 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xe5ab5343 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xe5c04618 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d2ae7f __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xe5dcb500 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xe5dd2900 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xe5dde4bb clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xe61545e3 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xe62a8cec xp_free +EXPORT_SYMBOL vmlinux 0xe630d4be pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xe638578f sock_no_getname +EXPORT_SYMBOL vmlinux 0xe64a3242 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xe64fd0b2 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe6636e95 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xe6687f24 fput +EXPORT_SYMBOL vmlinux 0xe6823fdd bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xe6888ae1 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe696593d dcache_dir_open +EXPORT_SYMBOL vmlinux 0xe6b2d0c5 free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0xe6be34c6 is_subdir +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6dabf5b sock_alloc_file +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe71dfa8d close_fd_get_file +EXPORT_SYMBOL vmlinux 0xe71ec326 sock_create_lite +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe72fe15b bdi_alloc +EXPORT_SYMBOL vmlinux 0xe74474dd flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xe75f0d74 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xe76dbe68 _dev_emerg +EXPORT_SYMBOL vmlinux 0xe777ed8c __f_setown +EXPORT_SYMBOL vmlinux 0xe77d0a3e nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xe7886940 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a19ddc reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xe7a24aa4 datagram_poll +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe7d31571 dquot_drop +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d6c50c blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xe801bf79 prepare_creds +EXPORT_SYMBOL vmlinux 0xe80c9cbc skb_clone_sk +EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xe8186f6e sync_file_create +EXPORT_SYMBOL vmlinux 0xe85497f0 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xe8588dd9 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xe85c5375 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe8621f91 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xe8725b78 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8be2056 is_bad_inode +EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len +EXPORT_SYMBOL vmlinux 0xe8fb2fac tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe8fe6819 f_setown +EXPORT_SYMBOL vmlinux 0xe8fec1fa dqput +EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get +EXPORT_SYMBOL vmlinux 0xe9070a62 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90dc147 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xe90f54db dquot_commit +EXPORT_SYMBOL vmlinux 0xe910cdfc input_unregister_device +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe94efd47 page_mapping +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe963bd2b tty_unlock +EXPORT_SYMBOL vmlinux 0xe9683f38 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe9791c59 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xe9878487 kill_pid +EXPORT_SYMBOL vmlinux 0xe9902fe2 rio_query_mport +EXPORT_SYMBOL vmlinux 0xe9958157 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xe9a4a0f0 from_kprojid +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9ba7de6 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xe9c63eee proc_set_size +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9e15f84 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xe9e58b75 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f864b3 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xe9fab29e lookup_one_len +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea02f234 file_ns_capable +EXPORT_SYMBOL vmlinux 0xea0c8321 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0xea11043c inet6_getname +EXPORT_SYMBOL vmlinux 0xea1afdaa tty_port_put +EXPORT_SYMBOL vmlinux 0xea1b5eb7 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea3ecc8a fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xea3fc82d vga_get +EXPORT_SYMBOL vmlinux 0xea4de6d4 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xea55008e jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xea596943 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xea67e0b8 vc_resize +EXPORT_SYMBOL vmlinux 0xea68d8a7 input_reset_device +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea84c7a8 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xea91d267 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xea990ad6 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xeaa668ce pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xeaac48d6 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeabe89ac mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xeac35182 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeae0ebc8 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb083021 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb323cc1 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3ee46b framebuffer_release +EXPORT_SYMBOL vmlinux 0xeb428afb mmc_get_card +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb571033 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xeb6bd3d6 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb8a3ad8 seq_lseek +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebb00b3c fman_set_port_params +EXPORT_SYMBOL vmlinux 0xebc63fe0 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xebc81e17 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xebd5da11 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xebf8966e tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xebfe298e security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xec03f4df mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xec280a8f buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec887c54 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xec8dde37 iget5_locked +EXPORT_SYMBOL vmlinux 0xec9517a3 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and +EXPORT_SYMBOL vmlinux 0xecabf61c setattr_copy +EXPORT_SYMBOL vmlinux 0xecaea67c fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0xece593b1 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf9eb3c dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed0b05d2 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xed123110 noop_qdisc +EXPORT_SYMBOL vmlinux 0xed27f16d vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xed334c14 folio_wait_bit +EXPORT_SYMBOL vmlinux 0xed4f32b4 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed753e31 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xed7cb5eb scsi_remove_host +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xed9a033d rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xed9aad4a skb_seq_read +EXPORT_SYMBOL vmlinux 0xeda690f1 bio_split +EXPORT_SYMBOL vmlinux 0xeda7cdcc bio_kmalloc +EXPORT_SYMBOL vmlinux 0xedb5221d block_dirty_folio +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xede7286e scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xedfc1c98 phy_disconnect +EXPORT_SYMBOL vmlinux 0xee0c1508 sk_error_report +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee2e09b7 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xee47a417 pci_release_region +EXPORT_SYMBOL vmlinux 0xee47a4fb input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xee4c12fa poll_initwait +EXPORT_SYMBOL vmlinux 0xee4f314b skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xee58879c acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7e0e73 pci_bus_read_dev_vendor_id +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 0xee9bb8eb __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0xee9cb062 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb41a5e udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xeec25eb1 __sock_create +EXPORT_SYMBOL vmlinux 0xeec7b7a3 generic_read_dir +EXPORT_SYMBOL vmlinux 0xeed50d70 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xeedb132b __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeee7f01a iterate_dir +EXPORT_SYMBOL vmlinux 0xeefaa0e2 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0xef122841 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xef1f68ec netif_carrier_on +EXPORT_SYMBOL vmlinux 0xef36150a mdio_device_register +EXPORT_SYMBOL vmlinux 0xef4237bc __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xef4ba021 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xef514931 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xef5e7cf6 proc_remove +EXPORT_SYMBOL vmlinux 0xef7ad86d netdev_features_change +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xefa5a37a netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xefa696d7 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb6bff8 sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xefc5dab0 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xefc91a2f netif_skb_features +EXPORT_SYMBOL vmlinux 0xefcd5095 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff6954a truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xeff7cbae mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xeffaf6bd uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0046d85 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xf0079f5a mr_table_dump +EXPORT_SYMBOL vmlinux 0xf01e6254 tcp_close +EXPORT_SYMBOL vmlinux 0xf0235163 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf04c353b of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xf06e3933 follow_up +EXPORT_SYMBOL vmlinux 0xf06fb0f4 inode_insert5 +EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table +EXPORT_SYMBOL vmlinux 0xf08e25a9 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xf096a6d2 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a37764 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xf0ac487c dev_mc_add +EXPORT_SYMBOL vmlinux 0xf0ae832e blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0bc07b2 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xf0bec07f dquot_commit_info +EXPORT_SYMBOL vmlinux 0xf0ca5f51 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xf0d4c43d dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xf0f3e69a dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xf105effc netlink_unicast +EXPORT_SYMBOL vmlinux 0xf1165e79 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf1354bab dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0xf140bf89 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xf141aa65 of_device_is_available +EXPORT_SYMBOL vmlinux 0xf1433d6a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xf1576d75 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf1578d0b mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xf16db4a6 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xf1749a02 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xf182e22a __nd_driver_register +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a2d97e dentry_create +EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e0ceff mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f9a043 dev_uc_del +EXPORT_SYMBOL vmlinux 0xf2028062 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xf2191fdb touch_atime +EXPORT_SYMBOL vmlinux 0xf2304e72 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xf2323af5 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24de28f _copy_to_iter +EXPORT_SYMBOL vmlinux 0xf250f260 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf27f6f35 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf2910771 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf302e75a grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf3240f6a dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34659e7 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0xf367d0ce twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf37647f8 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xf37a6ec1 eth_header_parse +EXPORT_SYMBOL vmlinux 0xf3882d06 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot +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 0xf3af2fb9 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xf3b522c6 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xf3b728e0 mmc_erase +EXPORT_SYMBOL vmlinux 0xf3bac891 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xf3bae56c key_payload_reserve +EXPORT_SYMBOL vmlinux 0xf3c94ca1 of_node_put +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e1b1ea rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xf40827c8 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xf41164b5 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xf4306129 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xf436f63a skb_checksum +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47f79c0 tty_register_driver +EXPORT_SYMBOL vmlinux 0xf4837d32 pci_release_regions +EXPORT_SYMBOL vmlinux 0xf4856f12 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xf496101a ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf499abf9 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xf49b887d load_nls_default +EXPORT_SYMBOL vmlinux 0xf4af2b68 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xf4b0e6e6 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4ee2485 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5296c39 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xf53cad97 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf544c5ed inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xf5474a47 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xf54d99e4 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xf55c25c3 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xf57d7f07 simple_write_begin +EXPORT_SYMBOL vmlinux 0xf58f7392 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xf59132b5 put_fs_context +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5c24538 fman_reset_mac +EXPORT_SYMBOL vmlinux 0xf5c62177 sock_set_priority +EXPORT_SYMBOL vmlinux 0xf5c9efac uart_register_driver +EXPORT_SYMBOL vmlinux 0xf5ce207b proc_set_user +EXPORT_SYMBOL vmlinux 0xf5dfddc0 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5ee68a4 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xf5fd189c dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xf600f6e9 inet6_protos +EXPORT_SYMBOL vmlinux 0xf6072272 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xf61d92a8 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xf62b2a99 sk_free +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf6575ef7 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xf660554e dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xf6620ebb generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf6699265 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xf67ba716 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf699fe0b n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xf69f3211 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0xf6cee001 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xf6d49312 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xf6e07e7f scsi_print_result +EXPORT_SYMBOL vmlinux 0xf6e6db8d xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f1203b jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6ff39cd dump_page +EXPORT_SYMBOL vmlinux 0xf72f41f0 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0xf731b1dc pci_get_slot +EXPORT_SYMBOL vmlinux 0xf7326228 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xf7355d58 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73b803e generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xf74d72f6 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xf7554fa2 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf77c9cb0 make_bad_inode +EXPORT_SYMBOL vmlinux 0xf79e7df6 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xf79f5f7a netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xf7b7a06e cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xf7bcb68f param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xf7c385cb truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf85d1491 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xf860765b pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf86d81c9 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xf8721793 ns_capable +EXPORT_SYMBOL vmlinux 0xf8834a46 passthru_features_check +EXPORT_SYMBOL vmlinux 0xf884ade6 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xf88c5839 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xf8ae7d66 put_disk +EXPORT_SYMBOL vmlinux 0xf8cdd57e bmap +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8ea1caa mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8f65f6a device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xf919d88d pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xf919dbcf mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf920fe0b dst_release +EXPORT_SYMBOL vmlinux 0xf92437d7 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xf9253428 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xf938409e fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93ac4f1 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94e339a seq_bprintf +EXPORT_SYMBOL vmlinux 0xf9557d38 inet_sk_rebuild_header +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 0xf972d358 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xf976fcaa fget +EXPORT_SYMBOL vmlinux 0xf9795818 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xf982b643 inode_to_bdi +EXPORT_SYMBOL vmlinux 0xf98926ff flush_signals +EXPORT_SYMBOL vmlinux 0xf994dbf3 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xf99cef85 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9ac3f05 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xf9b0077a __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xf9bc7dc8 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xf9bccbb5 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xf9bdd594 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9d9981b submit_bio +EXPORT_SYMBOL vmlinux 0xf9e8fa2e __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xf9e967b9 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xf9f8e20c drop_super +EXPORT_SYMBOL vmlinux 0xf9faa7a3 tty_do_resize +EXPORT_SYMBOL vmlinux 0xf9fba803 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xf9fedb52 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa118c34 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa30d7c2 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xfa40db22 wireless_send_event +EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse +EXPORT_SYMBOL vmlinux 0xfa55eb4d dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xfa5885ec security_path_mknod +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa638f3b phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xfa76980a mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xfa7e31af twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xfa859f60 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xfa9239e6 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xfa98933f dst_release_immediate +EXPORT_SYMBOL vmlinux 0xfa9ed4cb get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfabfa87b mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfad6afd5 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xfad9d1ff sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xfada288b register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xfaf506e0 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb41c435 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xfb47bfd3 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb717fa8 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xfb8a8739 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xfb935ea6 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xfb9af782 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb5034c uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xfbb67e3a eth_header_cache +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbc18a30 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd1886e posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbeadcbc blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xfbffbbb8 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc3949de pci_dev_driver +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc4b5dc4 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xfc4cc6e7 current_in_userns +EXPORT_SYMBOL vmlinux 0xfc4d2767 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices +EXPORT_SYMBOL vmlinux 0xfc6b0f08 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xfc6fa672 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xfc74971e max8925_reg_read +EXPORT_SYMBOL vmlinux 0xfc76e788 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc8d0aa6 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfcc023d2 get_inode_acl +EXPORT_SYMBOL vmlinux 0xfcc3cb5e clear_nlink +EXPORT_SYMBOL vmlinux 0xfccbaee8 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfce94a2e alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcece345 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xfcfc0714 vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0xfd04a15d flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xfd17e6a2 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xfd31f98f filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xfd380101 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xfd3d9e9b unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xfd5a2986 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0xfd7372c3 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xfd968d1a __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xfda9632e rproc_add +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfde5fdaf md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe045da6 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfe059018 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xfe0efce0 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xfe116536 inet_release +EXPORT_SYMBOL vmlinux 0xfe1c8dd7 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe2c9ce9 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xfe4197b7 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xfe4329d9 dma_fence_describe +EXPORT_SYMBOL vmlinux 0xfe438310 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xfe484af5 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe606559 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xfe6ccd1d sockopt_release_sock +EXPORT_SYMBOL vmlinux 0xfe87dc2b skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xfe8abb46 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe944868 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xfe980e88 vmap +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfea856b4 param_ops_hexint +EXPORT_SYMBOL vmlinux 0xfeb4b3de ppp_channel_index +EXPORT_SYMBOL vmlinux 0xfedabd15 unlock_two_nondirectories +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 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff1d2537 iov_iter_init +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff4dcb0b inet_getname +EXPORT_SYMBOL vmlinux 0xff591ccf fb_get_mode +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7a49b5 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xff7b6625 dquot_initialize +EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff90a56d blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xffa13ab2 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xffb19765 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xffb1ff67 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffd0741d cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xffdc6613 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xffe13c37 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xffe90c70 sock_pfree +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL crypto/af_alg 0x27cb97c3 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x4ffedaf4 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x6968abe9 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x6e19bba7 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x8a345709 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x911c531c af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x966939e9 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xa007257e af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa0131757 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xa99b2688 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xb2d84fcb af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xb9afc695 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xbc51e76a af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xbdf8d464 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xd23bf5fe af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd981996f af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xea64a449 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xfa439649 af_alg_accept +EXPORT_SYMBOL_GPL crypto/aria_generic 0x09e64a82 aria_set_key +EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x15f8ec99 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x073993e2 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xac7f7339 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3eddb546 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd9ec0e76 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3ca5b0a1 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x732e9c7b async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa9339c38 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc11193aa async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1f808e46 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x775d66ca async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xba4f28cb async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd2439567 async_xor_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x81bcc14e blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x52dd4e0f cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x39369b1c 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 0x1a70aa4c cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x1cb00fbd cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x1d021542 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x39ca9ecd cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x4a8eef6a cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x6ec9ebc6 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x777a718d cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x811b6dbe cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x93895394 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x9f26d719 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xd955c042 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xf5805060 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xff9a2252 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x00b1c437 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x16f4fe74 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1c2fdd45 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x34788d45 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3c216832 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4598df50 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x75adb0e7 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x96142db1 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9b346944 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaee1f9f4 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb35133a6 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc2a5031f crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd565d349 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd6473171 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe1ef19a4 crypto_transfer_hash_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/polyval-generic 0x1936413e polyval_mul_non4k +EXPORT_SYMBOL_GPL crypto/polyval-generic 0x49dece42 polyval_update_non4k +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 0xe661a328 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 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xf366a793 twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x05ab52ea synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x381d629e synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41dc7acb spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x45eda959 spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4965335d spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4dd9ad56 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5510d006 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x56f0389c spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6099dfe5 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6ad8807e spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x81d0e5ae 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 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbaf6af25 synth_remove +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 0xc58f6e50 spk_get_var_header +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 0xe53494e4 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xea271af7 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xea41352f spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xed68fbd1 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x3aa3fbc2 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x3e14f681 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5578b910 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x6f439854 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa25900ad __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 0x538fc0c7 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x621026e8 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 0x55d7e05c linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xb616a363 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x3e7c3257 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x42952199 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x54cea294 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x33887e05 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xdb5a9ff8 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xe84e53aa __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x29b54984 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xfb2555e7 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x19d1187a __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x3ce22361 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x442a9d12 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x5b04c4a6 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x219dfb62 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xbc8045ed __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x115856a8 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4dca2a54 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9af19948 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xed4b61e3 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x8770d28c __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xde5580b1 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x04ddc8dd bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b1b951b bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2419de43 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x28be0ad5 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c15765a bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x42c3f3c2 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x48e87b8f bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x54dfe412 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x62e3761e bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a97edc5 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d210e96 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7edd00fd bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d3a26ac bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9cb54725 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb90ade03 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbaac4517 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc57a5077 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc84d1c5d bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe1bc6ba1 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe499d095 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe7b26e7c bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xebdbc40e bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf4203be8 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf62beb79 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x37a16248 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x585964c1 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7368bc34 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8cc7f50a btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x933093e2 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa681cd2b btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xae3e4d34 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf9281725 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x06fd7bd3 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x09d683ba btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c686b46 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0cdbbfc4 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x37e5c5fa btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x43047450 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x698b78e5 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7359a6bd btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ed78394 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9aa4b8dd btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb2d820be btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb5395321 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb5555d6b btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc2efd8d6 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc5d4f0cd btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe02581ce btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe1ab9c73 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x41db67ad btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x54f905c2 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5993a0ec btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5c17facb btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7104b585 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8410cfc0 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8a0dcad7 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb8ebfc4e btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb92f6b40 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdc3d5240 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xef8a0a91 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x69a143bf btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xde7b1690 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xdf6d5735 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x014e674e qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7231a936 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9c30dd99 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe105549b qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf7d499bb qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x401c0af7 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x612408f5 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x87c5296c btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8d19f54d btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8f9a9a68 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd969ecc8 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0f2b502d h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3568b444 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x39ab7818 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xeb7046ad hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x16e423de mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x345f05f8 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4138dee4 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6be8a739 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6f35029f mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x702c98f6 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x89b813a8 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe29bc525 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x09293ccc mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x247891ef mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x289a9d24 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x28eabcf9 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d41ef40 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x342c0296 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3c64e19d mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x44284bed mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x477ac59b mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5adcfd7a mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5e12e6fb mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x61720793 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6ff0850b mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x74cd61e2 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x76d5a2ab mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x78c6098c mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7b5562ce mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x83975966 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa0424264 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa73d0f2f __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb40a016e mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbdd9cbb3 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc0beb6e1 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc226b7e2 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc46b2388 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc56a8a80 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd1b2c6f1 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd94ca5dd mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdc395346 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe63719f3 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf3a75919 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x89fa0d78 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9b19a3d9 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xbc3285ae moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xd47257e3 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x8cf01c5b sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xfdcf420e __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4ed2f627 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa1bc62fe meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xb8a9a1b8 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xebe56521 meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03351dae clk_rcg_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07935d8b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07e2aa8b qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ae351c4 clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ed823f3 clk_alpha_pll_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x10130b21 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1d0f06af clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1de81c63 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ea782c8 clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f83275f clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f88365f clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x233e5373 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x247e1ab3 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x28ec912b clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d293905 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x38229fba clk_alpha_pll_reset_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3e946df0 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x407cd4e2 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45180f77 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45226263 clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x468b22ce clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46eb964b clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x48f25103 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4a930432 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5217eb68 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5524687f clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5919d5f8 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x59eabda5 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c035f38 clk_alpha_pll_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c3e75ee clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64b8755d clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66580ca3 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6b8e2aa0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6d308251 clk_alpha_pll_fixed_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x70156ec0 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x708a435d clk_alpha_pll_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7319e51c clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7af758c8 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7b87fe3e clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dfa4f12 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e69e953 clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x82afa55e clk_regmap_phy_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x88c0add9 clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8e4c395e clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x93bc2a64 clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x94c464a3 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x953b97b7 clk_alpha_pll_postdiv_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9821a599 clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9b699a6b clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c1fb4be clk_rivian_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c401604 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa0755dc3 clk_alpha_pll_fixed_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa72d720f clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa94f252e clk_lucid_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa95ed447 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaba920e4 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaea28295 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaf105ec4 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb3d93f1b clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb424085e qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb854831b gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8694bf5 clk_rcg2_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0126fe0 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0d2ecb0 clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc9cb9fbf clk_alpha_pll_zonda_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb2d25f8 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2ec30a3 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd98fe91b clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdf871d64 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe04400b3 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe40a1db3 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe4d191e1 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe8c0478b clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xeec69605 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf2522383 clk_alpha_pll_rivian_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf3bf69c3 clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf439f21a clk_alpha_pll_agera_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf84b8d59 clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfafc1469 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfbd6578d clk_alpha_pll_hwfsm_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0268c5d1 sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x11a0d7f4 sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x2daff1b3 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x32f41831 sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x7e4dcc87 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x87534930 sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8fd778bb sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x92ddf949 sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x944a9aa7 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x96559702 sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb7e0ba80 sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc494f8b8 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc6f9400f sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xeb2e28e9 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x054035ae comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x071df2d3 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x071df481 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0f490eb8 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x17e95f63 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2344889f comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2ee4c32d comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x300b971f comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x48f81787 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x613ca414 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x61f39398 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x642ebb3f comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x65323987 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x65494eaa comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x65a1c9b0 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x68e22e71 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6c05fddb comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7545bc64 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x83291c78 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x83f59b5a comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x89a081f1 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xab5030ab comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xacf143b3 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xadb45d3a comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaf793c34 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb8e8b022 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 0xbfb5f614 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc940b672 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd1658aae comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd23b126a comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd595d2c2 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdcbcbcce comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe8b76b57 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xea5a93fb comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xebe234e3 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf30b2b35 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x24df4a0a comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x41094519 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x591f60f6 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x722bf160 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x87064918 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x927d373d comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xce6c48bd comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xffbcb157 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0754f497 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x108e0929 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3643e6ea comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4c1d6859 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5521a01b comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7ebd57be comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x61f1e66b addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xb06b71fa amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xd188b41a amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xaa44f075 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0d1ac683 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2a96efec comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x34cc080c comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x35578406 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x366eadb9 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5f35645a comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x749f2c10 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x83f73e52 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x86dffb5f comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa0689060 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb84391ff comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf4a3fe1c comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf9405d51 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x1bf24fbf subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x69a88cb6 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x75a830d0 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x1f2392de das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x167de427 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1b853b0e mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2bbc8b24 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2e892bd9 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x349287a1 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x44904a7f mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x455f8765 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4e5deea9 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c4f7b25 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x71514ddc mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9a1cc224 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9d4a0ff8 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xba4d0853 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdc6e4a93 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdfe19446 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf94a425f mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x2e67325d labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xb4d9622e 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 0x154f4f39 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x162dec15 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1b604c5c ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x20a1cf5a ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x272b59e0 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2d624130 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4f268cf0 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5dfa6a74 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5f71e0b9 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6a291ab8 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x74212797 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x79993f10 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x84d57324 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x91344ea5 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xccd584bd ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd3727a1c ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x20798d80 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2c0ef736 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3cbdedd3 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x4d09777c ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9e5ab844 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd57a18ab ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3e20fff6 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x515a85e1 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa5ed4e1a comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xba2e45d6 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xbdb192d7 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xeb7ba437 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xee556cc4 comedi_dio_get_config +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 0xb25cb9bd ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x01f615ff hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x072fdc08 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0ac5280a hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0c0ab525 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x227dc634 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x26069078 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2920810e hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2b40c64c hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2c4f10dd hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x332f2613 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3be41d9d hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4227b782 hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x43760486 hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x452e56f4 hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4bc268df hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x58714d9f hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5918fc13 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x59c281ce hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5ed901a6 hisi_qm_get_hw_info +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x60dd3831 hisi_qm_regs_debugfs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x674e7f64 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6960532b hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6a27d59a hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6b44825d hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x76b525ca hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7c662ad9 hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8e158948 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8f32ebc0 hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9875e9ac hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa62b3cf3 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xba0982cb hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbacd58b1 hisi_qm_regs_debugfs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xca0bff84 hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xca68e0d5 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xca8f3d84 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdaef3662 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xddb35dee hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdf5ea00c hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe7dcc45d hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xef50c937 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfb87acb1 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x22ecde96 hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x2dc2653a hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x3441e4b2 hisi_zip_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x1b4b5dd6 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/crypto/qat/qat_common/intel_qat 0x03b63f91 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x08d356c3 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x15b442e7 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x175f580c adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x17d563b7 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x17f3d806 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x18a36006 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b24cbae adf_isr_resource_alloc +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 0x2df85cb2 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x344afe4e adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x346f512c adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a0e3f8a adf_devmgr_in_reset +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 0x3fdff75c adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4bffdd11 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4dd322cf adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4f924a49 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ff8b72f adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x63c92ced adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x69109d87 adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x69f9f6fa adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7765d946 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7af77d31 adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7ef0a108 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7f3d9942 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8084c7c5 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8142a870 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8237b88c adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84c5f045 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x87aa7b21 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8fbc88cf adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91f37d79 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x922d512b adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x92f9c576 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9761c9ab adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c5ca91e adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa8e43bac adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad78405f adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb06a8e9f adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb27e1752 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb2f287ad adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb5e04f79 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbe76378f adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbe8df40a adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc15a1852 adf_sysfs_init +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 0xc5a79fe4 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc746699f adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc797d75d adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcb40b2be adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcb83311c adf_init_admin_pm +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 0xcec94805 adf_gen2_enable_error_correction +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 0xdc00df6b adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdd30a874 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xddd6c53a adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe1830c0c adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe8354e4f adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xef9a6b99 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf401247f adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf6f7f900 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf81f7e5b adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf8783b8e adf_dev_init +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x8950e5f2 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x4b058600 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xc6f152ff dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x185246c6 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2c673edc do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x51bd7b9a dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x760c1279 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa6ca7ebc dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa9aa9ab7 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc92b8b4a dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf1d1a8cf dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf9694bf1 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x194b9247 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x321c755d dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x357b25f8 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x78fff08b dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa0b20f90 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa0ce351c dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xce42b1ab dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd6643380 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd9b8d797 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf804def3 dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0bbe59e8 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0c8f1a1d fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0c9d08df fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x18e32155 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4993450c fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4efb8df8 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4f6cf044 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x52109f19 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5dad73a1 fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6647149b fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x891d0bcf fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x96ac4f8f fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9a38df62 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb270f85e fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbb611ad4 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbc804dc8 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xffb95551 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x1a1aa60b hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xaba87e28 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xd5827153 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x6cf67562 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8d67c0b7 ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xb3b13e47 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xe8d4728b ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xfea98962 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x0df0e9de get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x0318a129 mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x08b413a5 stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xb7205b57 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x086da6ae __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1aa10440 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x20e7e8c9 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2bc813dc dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x32ed5388 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3a567392 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x61f5e232 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x842693c3 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8afab55e dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90864c8e dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90d04d4c dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9cb7835d dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9ccc69c6 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa8096143 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaa9cbdee dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xba386e44 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcc2c0ff1 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xddefe6f2 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdfd6df47 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe0f5059d dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe6c6c330 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe9901ac0 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfc309f48 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x264b2329 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2e97d101 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4b9e0e04 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5d995832 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x95f608b8 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc0fd92c9 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdcb86acf of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xec4bdfaa fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf679dc5c fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0c15bde2 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x30c386ef fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3a9376a2 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x66dba91a fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7d924bc4 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x94bb5e9e fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9a117106 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9a3312e1 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb462fd15 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc7a5fe5d fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdf867a6f fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe2963ede fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf512cbf8 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x31faf1df fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3c2da195 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x899d0ea2 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe08aa2b0 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xed4018af fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x18b24aeb fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x59e2f395 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x72f257ad fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x859dc3f3 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8d16fd00 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xba922941 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xba99d1ea fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc48c13dd fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xca58b3e9 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xef70e4a2 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xf3715070 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x5ead0b8b sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xf5b17e1c sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x498a3ade gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8d0a29ad gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa383aeed gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xbb90668d gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc5ab1e45 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x09e4fa4c gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x36961365 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x41e45bfd gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x590b194f gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe5dc0080 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x5d0e4276 idio_16_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x6495f119 idio_16_get_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x68830314 idio_16_state_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x70e2b625 idio_16_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xae1139f5 idio_16_set_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x5a2e3787 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd1d1a286 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x1d70ff38 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x9b33fe08 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x11b92a7b analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1fc0396c analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x392d5433 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4b107075 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x59a1a8fe analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x72cfb1b4 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x80f84cee analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xae499a92 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 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 0x77c1bab8 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9a91da81 dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xae540748 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 0xef142383 dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x05132cd4 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 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 0x6e2cb34d dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xfae9db77 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x21a44e90 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x25689fa9 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x6c995adc devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7c2003c4 of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xac77fdba of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x01270c75 drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0556aab1 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x08fd2061 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x510ca008 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x51d5ef0d of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53330054 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x567afb9d of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5eb6c01d drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x60edb52c drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d60430c drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a03e959 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7ba03367 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96fa79d1 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x97f65431 drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9aff11f5 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0340699 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0980d16 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa219ae6a drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa6989b26 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdeda5a3f drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeb3118a4 accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf000abd0 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0233a495 drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x37133783 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x6c26717a drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x6f1968ee drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x91e54641 drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x9940258e drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xacacd8a0 drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc8371b73 drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xd0146f4b drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf0367cdb drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf76dc7ab drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf8067191 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x02453411 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x02daab51 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x099f98a1 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x11f4288a drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x24a4191d drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x50d21cd0 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5cd7308a drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa686287a drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xad59f743 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe8ad39db drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x366d0a50 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x42b268a5 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x684e8f57 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6e82f132 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7d1ecc14 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x83da8931 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x99d172c0 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xbe5be0f5 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x470723a4 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x71354205 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xcbc6025d meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xfe2393f4 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x335d962a s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x49f38f90 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xda155a4a pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x28e15146 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x5b1393d9 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xde927d83 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xf2a19b75 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x12d7c69e rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x17e355ea rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7446da41 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xa58e50d7 rcar_lvds_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0x3e6b9610 rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0xac34a647 rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x213b3257 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x90f5629f vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xdd14c4d4 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xabee1e9c ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xd3069129 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xdf1b8578 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x7bf113b6 host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xb1a6dc34 host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xdce6a45c host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0e4a881b gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0f016f23 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0fddacfe __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1583843c gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x211788eb gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x213a34ad gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x331c1107 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3cef3263 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e9e2c56 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4589c904 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4cc4f859 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4cdb1b7c gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4de3b6f7 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e54c0dd greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x518451ca gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x539b41e5 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x60077f89 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x618c512a gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x665e0023 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x67edadb0 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6dfd68f8 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7209701a gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x748e1a48 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78776f14 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c12826a greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c8721ec gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81d17540 gb_connection_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 0x8d91b8b2 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8fee8485 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x902caaa5 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92d43959 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94cfe28e gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f851f22 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa590036a __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb095745e gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb43886c1 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc33db14e gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc8129ecd gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd772d8e1 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd9ccd3b3 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8fbf62b gb_connection_destroy +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 0xf2682421 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf71f887b __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0985f81d hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0dd1a8da hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b759774 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e57876b hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24b1d669 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24b5d3fc hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2514d7d1 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b1030d0 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36b07b8c hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ed16a47 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0x45780697 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x485bc073 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5648fc30 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x565e5dd6 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5751d43f hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b76959b hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e23e388 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x632b5b51 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6481cf32 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6904bbab hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6dba6e86 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6dbe10a5 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f8ae9a0 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77f92737 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7869456e hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7b0f7570 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c814cf6 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7da9d357 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f5b2619 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x828d2a89 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x86531f74 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x89b23b13 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e64b2e0 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f87c5b1 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x914d4e46 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9210e2dd hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93119213 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93356f9c hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x94ee6399 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9870a644 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa3f4fd69 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa8ff2ac0 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb731a41b hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe67bf13 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdf3e59b hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf5d24e7 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdfcf8274 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1c701be hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xecae7ad5 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xffa1e146 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x001df1cc 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 0x30deef96 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4ecc5f3d roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x601992db roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9444cb65 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbdf24ec8 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd0e6b1c1 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2ad042ce sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x46d2f7b9 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6b8fe5e8 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6d6aa924 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x95984226 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9c7088ca sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa6fb3dbc sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xae1dff1a sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xaeeb2efc hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x4167a137 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xa076f497 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x14607147 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xab82fde4 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc1fc0d1f i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xdd1032f1 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf80426c4 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x2e8ea9ce surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xb666e048 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xb7b11181 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x03fc1cdc uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xe8cde16b usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf79ed021 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x024e3501 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x22bf60f7 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x24099efa hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2888e236 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x30197089 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x36f07fb3 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3c349363 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b5d4ad3 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x506ee345 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x54efac45 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5b9ab801 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x69966e63 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6ce0668a hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6f5943ab hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xba31a8cd hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbf355ab2 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xebfd4060 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf3321c91 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x00816977 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x03f1eadb vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x15c0cbc1 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x24696a85 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2545d079 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2b8195d4 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x310ff621 vmbus_request_addr +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 0x346db6a0 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3ae47b47 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3e8f118e vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x448200e4 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4aa453d8 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4c1aff51 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6534693d vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x69d75b27 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6bd3e8fe vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7428e8af hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8d22e843 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb535aa5b vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xca57844b vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcafa5306 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcfbd9518 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd56236d3 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe20607ef vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe5b0bacd __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe6e6e56c vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf120b15d vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf63893e6 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfca7ad51 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x29177162 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/nct6775-core 0x179bc254 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x203bac79 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x27f7d005 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x3a27a4e7 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x583bee8f nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7c4c2c68 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0e97c558 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x291a60a3 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3395053f intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4cd63985 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x52947139 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x96062138 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbded3c37 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeddefff4 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xef40bd12 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x4951b813 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xde64e7eb intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xdef47748 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x02ffa57e stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2363db96 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x47748d8b stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4ba932d9 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4cf0416e stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9b90b22d stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdb80ea53 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdde45b8a stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdf13685c stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xc55b3f58 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x392d45ea i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x49809962 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9d6a1bd1 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbed4245b i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2145782b i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x4c3f28f4 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc7ef4a4e i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf0ef432c i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0930a64d i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0b2613d9 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x21436604 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2864ff0a i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x51c6e896 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x54495aa2 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5bb76b44 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6031a999 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x62c829b4 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6bebaf2a i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x75fdeb6e i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x781c85ec i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7e546b60 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x80dd7cfa i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9cc45da9 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9f1ef18f i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbc56bc3e i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc787ff21 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd15171f1 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd9cf39a7 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdd84fd63 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xde057300 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe97c5234 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeac89dc7 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xecd2d401 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf72f49cd i3c_device_enable_ibi +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 0x38d1028c iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x50a9316d iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb101c165 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0391c6c4 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0f9e7bf4 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x33c3c5e1 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x42917fb0 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x47483486 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x673747e6 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa0a9c264 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc5de7dbc iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd604fef0 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd6b9f5fd iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf0c68459 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf713d8b0 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x54ce283f devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x2b13e554 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 0x89aa9274 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 0x30e5c815 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x98962e62 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0b8bd594 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x23197574 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x46846818 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6ee8e011 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7ca718a6 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7f58ebf6 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa4a398c7 cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xdbd12dd9 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe5ce4253 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf83c8343 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfab40214 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x153c5c07 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xba3d0d57 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xebe147e8 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x82aad6bb fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00c605a2 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x054c07cb iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0769054a iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0bc6b030 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x115d19ee iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x12c227d5 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x163ec0c0 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c010c07 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20410a65 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3196d0dc iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36df3740 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b9d7886 devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3bc1911f devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x489c9be9 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dcbfb60 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ee772c0 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f8fc013 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50137310 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58609cf4 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ea8125e iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63755575 devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64ce88da iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66634537 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73562fca iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85658160 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e764900 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9814d778 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b63171b iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1e87309 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3eeb39f iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5ad63eb devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa759ed69 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0d75cf7 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4695fe1 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb771e4b0 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8385381 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc02ba7b3 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc23056bb __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5e54e2a iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc81d9399 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8429c0b iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8a24648 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8c047bf iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca2189fd iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca4dc62f iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb0de67c iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce13d828 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce54d132 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde8874ac iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1a25650 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe378dac5 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3f8c9ec iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8328156 fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef90ff66 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x00406fb4 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2efa3395 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x51755bbb rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5659caed rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6ad50c4c rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x95391f72 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa73d12a9 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb15749fa rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbf9292f9 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc749475b rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc8a36361 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd35e8ef7 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x1b40f4fa input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x8f1deab7 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x56917679 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x053beb1e rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x37b38ee4 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4c6c925f rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x55777f1a rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5afe3386 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8046abcb rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x84cd52ed rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x888a5c87 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8ee14888 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa5164d49 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb7d6463d rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xceaf7ead rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe9504995 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb67338a8 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbfbd7541 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd23aa0a9 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6a8aa9c1 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x756efd16 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x01f66c88 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0e0e084a cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5adddeb6 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6269e97d tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcf5be01d tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd8ec23d1 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x11c41b95 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1e451cea wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1eee3868 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x28b12917 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x363aedc5 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x385e2a4a wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6bff6d4d wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x74edca42 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x76417017 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x900d26f8 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9ea1e062 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbaeb7089 wm9713_codec +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x1c9c3333 imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x244552f5 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 0xfb2a74bd of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x31cd3b04 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x40b2b95f qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x68ef223d qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x82fd2f04 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc555a691 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd3c43288 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x02ebc532 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x334509b9 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42ea5e4c ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5fae8c73 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x70357c37 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x76ec62c3 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8639c8e7 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe50af1f5 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe84c8f80 ipack_device_add +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2f6eea7b led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x30422826 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x46599cf8 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x52d29e44 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x73913097 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8ebf350e led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4b58b5e led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcbdf8210 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x141d6267 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x314eca76 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7d9a0596 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x81ec7bb5 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xdc2c08ee devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0382d301 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x67691b0f lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8493f6d3 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x854e6db8 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x94c1f6fa lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xac2b736e lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xaddc5dda lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbc19a289 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc1fe9733 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf06c31b2 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x031346bf __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08162f6a __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0826e917 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08dd28dd __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x14ad27f8 __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 0x188cb663 __traceiter_bcache_read_retry +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 0x1f16b580 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x284a6bff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2909bc5d __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a0e014e __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x39331316 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3b4d073b __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dda50dd __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x437214a7 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4eaddab7 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x76b53976 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a3c0ac3 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81a1e15b __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82e8c818 __traceiter_bcache_btree_insert_key +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 0x95bc44f1 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9744cd5b __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa14fdbcf __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xafe49414 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb2b96da7 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb37f9460 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5620aa8 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbdb5dee3 __traceiter_bcache_btree_node_alloc +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 0xc91cf06d __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2023e53 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xec2a3952 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x03106041 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x046e4db7 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x055d0f3b dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x25c927eb dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x26891014 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x28a5ee3a dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x29b7d5b2 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x39067593 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3c107063 dm_cell_error +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 0x7aea8e9f dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x80c5f2c0 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x87a8c84e dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8ec8f776 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 0xb9a2a215 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd1e4caf3 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd4f6f8f4 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 0xe9c7fd75 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 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xfa7f3e01 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1c6aaaaa dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcdfc2265 dm_cache_policy_unregister +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 0x0fe03e34 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x972d330b 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 0x09ed3dd9 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 0x411105e6 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 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa963115c 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 0xbf61d25a 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 0xef9334fb dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf6eb570f dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2bc1a8d9 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0xfc654026 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0510e70f cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x081a058c cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1be8207e cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x28b5bf5e cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2ea6f3e6 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4ac53aa3 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4b14cb4a cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4fce52ac cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x50c6a42c cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x55fc5dba cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6d73f9ba cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x76d09f66 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x78ac523a cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8f49fb2b 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 0xa33679b6 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa3613e1e cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xba9ae5ac 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 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc79c8ac7 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe13e29e8 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe3a83aec cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf2882788 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf65bbef8 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x03a3b593 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0fd9d5d2 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x16f28e06 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x244a63f0 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2771f891 sms_board_power +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 0x4f8ee55b smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x69f0ff50 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x780e3fb3 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x89c2cebc sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x956f923d sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb6cce0b3 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc80a6f58 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc86493ba smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcfa6276b smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd965660e sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea2aee99 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xef1ca00f smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4a738cc1 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7e83543f tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x80aaf962 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xa8a3f406 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb052969d tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbc315dd tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xcaede3e2 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe2169014 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe6f04b89 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe7ee5819 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x00da1952 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x01cc98a3 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 0x0d756400 vb2_plane_cookie +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 0x4900a670 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b76eab1 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x51ee1816 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x525efac3 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x556db9f3 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x55ac617c vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x69036ded vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6f1078f9 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x71acb04c vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x727fbedc vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x74e18842 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x778a427d vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7b913dd9 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x91445ec2 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x98c1ddf0 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9dbd4a6d __traceiter_vb2_buf_done +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 0xcab419ac vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd6b15eef vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8b0964c vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe50e3cbf vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe596f902 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe945b75f vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf375a2db vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf40305ce vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfa2e1a14 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfcf4bde3 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x0b937398 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x173b47ad vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x14f2884d vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x14a04056 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01a31117 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x030aeca7 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x07aee490 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x09ba496e vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x167123a6 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x19313663 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1daf6c60 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21fe3e4b vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x32aca181 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3408a858 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x469b61dc vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4ee2a1bd vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x519d75f5 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x52f7000e vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5380b11c vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5d98f262 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7bd163a9 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7e98b8fe vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x82e06043 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x888c475d vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x949907b5 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9eb0323d vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaae0a33c vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xac59294b vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb2b6f8a5 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb80f8198 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb92cc473 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xca1a7389 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd101e447 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe232180b vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe6b4255c vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeb72e050 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf05cb591 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf32aa154 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x71a4b598 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x9dd280cb dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xbdd93c21 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xf0573c61 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xba542bc7 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x694cfba8 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x97d67ee9 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x90cae552 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xe20309cf stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xf04ad57b stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xf19a5576 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xc75fdae6 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xfe35738e ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x07ff5131 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1a12bf2b max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1a8a3f28 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3af4d080 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x482f4ad6 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x49dd006e max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5cd4b19b max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x744bac76 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7921ed3d max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9b0ce4fa max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa6b79fc8 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xabe64b86 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc0046566 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x065eed1c media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0fe748b3 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1615946c media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1df0150d media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2bd19922 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2da12df3 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x343f7083 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x364a4d0c media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3855cf6e media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b811810 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d2b513a media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41bcc081 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41f5f12d media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47e80b72 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x48973980 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c689fbd media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4d270c0b __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52217551 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57e29d48 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5a314d38 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x615b6164 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62b9928b media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ca83f74 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x701bc508 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71c9458e __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x795f978e media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7a67b564 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f1b8259 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84385717 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x88e99a1d __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c38706e media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8f230474 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94188636 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x96e9c9e8 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98ebb497 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d271686 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d6bdfbc media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ed1b7c6 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa66bec65 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac4b322d media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xad33183d media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb01f11f1 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb0371e25 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbd4e5744 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc13fd039 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc68c743a media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd8163594 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe50ed73d __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe7ceabff media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe91d41a3 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf15a2ad8 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2ad72b7 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7c5d087 __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8b710ec media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc87aee70 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x06f79461 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1cd2995c mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x222acef2 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2513a287 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x36a10a70 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x38a33c3f mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3a8a7a91 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x41f3bfdd mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4b97e961 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x58dd539e mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5bd6b2e0 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8041dde5 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x935d669f mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa0ca37e1 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa161ef68 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbec9c5bf mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc1ff7234 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe665c4d4 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xed59802b mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x094f4f25 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x120670b7 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1424bd2b saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x18e8bb2d saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x21b7698c saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f0ff5ab saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x31b5fdb9 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e4c25f6 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x430c5dd2 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4f61dff6 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x57bb9fc8 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5dad78b6 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6050f2ef saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x641d6afc saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x84f91cdd saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x874f1191 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa7737309 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc2135a40 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee633677 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1ae8cfab nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x228d0a4b nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x3b2cf645 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x3cc3c277 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x425bbfd2 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x46de626c nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x47928f41 nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x5c0fcb79 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x974c48c0 nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9fa62a6e nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa8168c51 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc1896a18 nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xce7a6820 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xedc89cc9 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x2a0764b9 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x37dffd14 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x476d8133 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x6a92adec mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xceec5eb0 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x26126006 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x29f26caf vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x3942557a vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x45bef531 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x8caf9435 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x93913b67 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xa5b7ff2f vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xe2884a6b vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x06c26763 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x07575090 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0cb515e9 venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1545f80b venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x22427400 venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x266a3922 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x26ef75d0 hfi_session_stop +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 0x2cf1b8b9 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2f2544fb venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x35efa960 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x383399ee venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3c53550d venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x43ab42c3 venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x44d07adc hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4df8e9e0 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x55c9c1d7 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x665f6217 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x686a67d2 venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6b50b460 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6cd6729c hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6ee64e3f venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7101154e venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x76612dfb hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x81c81521 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x83fb56ca venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x87747109 venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x89ed0827 venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8afd3fa0 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8c21bc7a venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8f755b96 venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x92f7e618 venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x97fe47d7 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9b9be3cb venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa5aa2b62 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa64e70ab hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa744f16a venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa88a40b0 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb5da1da9 venus_helper_get_framesz_raw +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb7168c9a hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb848762b hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb6a9fed venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc22952c6 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc3bd861a venus_helper_set_output_resolution +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 0xd8da993a venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xda675828 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xddadc035 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdf24c222 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe1b186aa venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xebe47752 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xee135dcb venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xee72a3ae hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf13334be venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf1b81a9d hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfa8b4c75 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfc1632bb venus_helper_session_init +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 0x8f310cc3 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x0610c229 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x55b7ae6a vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x6861adac vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x93a2f085 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9c9f5152 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xe4f9bb85 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xe9b3a21b vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x419952b2 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 0x56af9642 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x88606a31 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb7d4bd47 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc40401c4 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcc8e3fb9 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf0483c1f xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x1910ff40 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 0xb537ffb0 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xfb075f9b radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x0f27c6ac si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x144ef4ad si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3cdfb704 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe8bd2bb6 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf93f0cc8 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x25aa05ef ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2c2eefbd devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3083365c devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3a74bf2e ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x679fbcf5 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x779ee482 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7a77eb21 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7aa6e354 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8f3ba866 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaaa7dea5 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xab4d56ec rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xad9c548a ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd92f7740 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe12a0a54 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe860c9ab rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xebbe1cc1 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xee9d2570 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf9299e51 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xf537c050 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x3c75c8a7 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xf30e5c28 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x8e7c06de r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x23de096e tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x890ef052 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x2c08f357 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x56fb99e3 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x22d84b9c tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x68e1fe6e tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8b855b01 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x321e60ab tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xcc2bfb5b tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x1f0fd21b simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0a6b015d cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0fb5cde7 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x16118f8c cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1d425996 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x227380aa cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2938dfec cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x36c83cc8 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3a2d969e cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b0df023 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b88aa3e is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x688604ff cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x753624f6 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9618c3f3 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa63a391a cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa8884299 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbe1bfb1b cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd803200d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd84d6345 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe15c3132 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf27aab80 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x4f15054d mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x52169090 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x07eaa31b em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x193d647e em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x217d39e8 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x242501aa em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2e61ebe1 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3bda5c24 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x50cc39b3 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5d649a6a em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x69bbbea5 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6c5bd6fd em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x714d3613 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fca9b16 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x939d6c91 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x981b4e3e em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa07a0fb4 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd7ca197e em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd9ac652d em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe15ffaac em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0d51ae6a __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x367f079c v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5da9fa22 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc125532d __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xf99329aa __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 0x1b4af4a6 v4l2_hdmi_rx_colorimetry +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 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 0x113d0537 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8feb22a5 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xea709bda v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x15ce4789 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1905ca39 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2c17be30 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x380f9c92 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x652b45eb v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8ef2d226 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa51e6ee2 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xad82f1dd v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdbbb55ea v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfb8d14da v4l2_async_register_subdev_sensor +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 0x0991587b v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c15ef5c v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f59896d v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x10d1935e v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x12974eca v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x13472645 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x150b681a v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d3bb185 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2e9377b9 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f290d35 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30d17ad7 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3253a611 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3676d036 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x385f01de v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x388d0564 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b6f3716 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b39d132 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4bf343ee v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4cd64902 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c0c8f59 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x616125be v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6293c2b8 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63ad20e4 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6403b89d v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x685818ee v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69b1f080 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 0x7718da24 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x790cf1f0 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7eceb2dd v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a236c5e v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8fee3d46 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x942c4d6b v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xacae206c v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbea00789 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3675888 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1dac7b8 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9108651 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdce273ef v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe7cf0285 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe7d2a4a3 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee912322 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf232df97 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfaf733d0 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfbc93502 v4l2_m2m_ioctl_stateless_try_decoder_cmd +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 0x15aefbb4 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x233c8edb videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2492fc94 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2aece957 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2e249dc5 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2ffe471a videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x30af4184 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4707b83b videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6f677781 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x707e14e4 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7622e0f0 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7bd2a04b videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8b0649e7 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8b6fa36f videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xabe2f5cc videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbce804ac videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd7efcfd videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc821a7e9 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xea4b800b videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec526dc7 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf46b0cc3 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf89b40d2 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd1bd178 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xff6019a7 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x18ce3893 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 0x62c345fd videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8a990c3e videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbffcbebb videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x164b2fc6 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9996d1b0 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf491f6be videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0061d70d __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03e2bc02 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x056e9b8f v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0cfaa6fd v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0eb6da30 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bd8b24f v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x205cc7c4 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21a8d8da v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21c9a826 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2789722f video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27ca3260 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29ed21b6 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2db9672b v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32c12394 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x362581eb v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39779ae2 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b7810a6 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3e88b85c v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ead4a26 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f7696f8 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40cdb006 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44bcbd37 v4l_enable_media_source +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 0x4bb40c87 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e5f2eb6 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5138cac0 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5796bdc6 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a0bc8e4 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ecc19d0 __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5fe90eb0 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c407ab2 v4l2_event_subscribe +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 0x7553eb65 video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78ae6dd0 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7db81e2b v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7dcc6b18 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e0c0099 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f45629e v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f74ce89 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8751caf9 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e75ebc1 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92182da7 video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x95908ea0 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9adbd477 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 0xa2ae95b1 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa33ec662 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa55d5af6 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa66b0027 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa966b615 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaccdd548 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf53653c v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0938750 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4a3aa3a v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba9e8d8b v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb95ac34 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbec07fed v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1ae4506 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc66be4dc 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 0xcf45acf1 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2ea6a50 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5267ff8 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5c4f506 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4324a5d __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe839e5ac v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0c6e3c7 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa0937fc v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb1cdd51 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb4cdb5d v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd5b03c1 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x451df923 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x816b5bf0 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa344c98d pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x027a5d8d wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1e5ee3aa wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2ba414b9 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x318503f1 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x36421504 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4007fd3a arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x41429cc1 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7c44885a cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7e5f6afc arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b6aa3e cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9cf6777d arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xabd1dbea arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb263fbbd wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbc11c8fc wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe237980 wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc9ab0a71 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xccb877c4 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdc8f4d46 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xeedbdf44 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf0ffd21f arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xff2909b0 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1bfb1824 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x2807c96b atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0af0a193 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x30d55006 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x33f02f75 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4cdd9efc da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5ae541fe da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb33a335f da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcde29f65 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3280a634 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x402a3e2a kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4beb0a84 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x60df1fb4 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7509db44 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7dd756ee kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb0305c60 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd43fcf0e kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5a21ad1a lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc38ce428 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd2fb2bc7 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x411a694c lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x514cfd7e lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x53bb03f3 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5c56eead lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x93627c80 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc1a1099f lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf2a8808a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x381f016f lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4ae5e7c7 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x5b3f0c96 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0524c934 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x05291574 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x18023e01 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x180fe241 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2f8325fc cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2f8ef9bc cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3756524c cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x375b8e0c cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x44d26f18 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4611d438 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x461c0878 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x46976eeb cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5b37230d cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5b3aff4d cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x67aadf5b cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6cb638f0 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6cbbe4b0 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x74634f40 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x746e9300 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x815e393d madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8cd27ef4 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8cdfa2b4 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8f92e125 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9c6a116d cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa11e028c madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb4b85ea9 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcfe763f8 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcfeabfb8 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x536ff62e mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5c2eb8d3 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7897b44b mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x87b644bb mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x95b9b1d3 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc70c0f9b mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1b68f59d pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3ae97af2 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3c558669 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3de0b3c6 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x46514bd6 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4922f75b pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5542e55d pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x823eaf80 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x92b3fcac pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa9f00d7a pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xce0f1a3d pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xeb06faf5 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2e327131 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x4c13efb3 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x071af0ed pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4f3e1d7b pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x80f208b3 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x83389ae4 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc3964f73 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x8a3e216d 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 0x0631663a si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d654001 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x12c5e93e si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1316147b si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x163dd194 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18903d9b si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x219398f1 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x22d1e671 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x256026ef si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a7e2256 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2eb369a0 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x32f372df si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x379e2374 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x38467f87 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58abf5a4 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c6f3ded si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60b747e2 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6159a8d2 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b79be89 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6eedb844 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96a5754d si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96ff7d90 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa9bbd5bd si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb1cab532 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb262f4cd si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb985c871 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc03952f2 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb13bdea si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd7cb59e1 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdf9b4416 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe09551f7 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb922609 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc247257 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfed775ac si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x17b94bf0 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x25a10e01 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8e3f2501 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb8e15cec sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc8098a73 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x295fdc79 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x23c2a071 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x9038590f stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x37276294 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8f1fc4c9 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x97db0362 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc92179ae am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x0e0ba37f tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x1073b594 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xb2785d05 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xec2ec1bf tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2b3c14ab tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa0e70fa7 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb8eb2a37 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x5233513b ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x593a97db alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8b92370b alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb116f6c6 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbb69a32d alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd2308e26 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd428d35b alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdec45396 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15bc1f09 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x161558a5 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x16e7ad75 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1b8b8fb4 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1bca8c9f rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x28d79405 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2c2c6b54 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3414885b rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3d3a0b1a rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4051b6c0 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4d6435f7 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x79157ed5 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b2fd15b rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7c4a7419 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x85e21287 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x885e5230 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8a084b02 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8a632d78 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa1bf1e97 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc024bef6 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xea630dd5 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf304ff7a rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf6b08310 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf6e74522 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x227192c4 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2e1f3bb4 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2eb06968 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4e305ab7 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x52156d8c rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x58f8e43b rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x608b4c95 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6577fccd rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x764f516d rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9a3c0038 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcc976324 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd58c9a5b rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf18849d8 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x40d295ab cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x599590a5 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbdee34d0 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfcc71551 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2a8647a9 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x575296a8 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5eb15943 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcbe2aac8 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd0139866 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd4720463 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd6b59f51 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfec74470 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x026e62ee lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x17706839 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1954be84 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4715c95c lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x58d2f172 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x65e92b5a lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x84be0bc4 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc4524cde lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xfa978082 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x27b492c3 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x80049dca st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x204e979d uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x265589bb uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x8b528cc7 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 0x47da3e6c 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 0x73cc6ec1 vmci_qpair_dequev +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 0x92be94de 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 0x46f38359 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xc98c045d dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xd56a429e dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x0e025e38 mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x0e5d5d65 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x0eab29c8 mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe3b81257 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x75dd0cdf renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x7bde69af renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0a98124c sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0d1b9afe sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x10886c19 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x120864cd sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21227aea sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2869d397 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3b02d702 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3e713128 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4194d9bd sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46fee32f sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x49a2e746 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a6a7ca2 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x572b9d30 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x592e88d2 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a766884 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5c52566c sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5cdc4ec9 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6521185a __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6c8e0154 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x777d23b3 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8653dcd9 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8aebb3e6 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d6695ee sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8dd4a806 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x978e7c91 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9cd6aaaf sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9fbcd068 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa8ff6e4a sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa92e3ca9 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaa68aa68 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb671681a sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc2dc08ff sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc6296ad4 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc9a94b12 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcb8b27f8 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf411c40 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd19e0534 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda47a621 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd1fd39b sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe050f827 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe1da2bf1 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf61bd9cb sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x027df0a9 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1a9eab74 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2a610e61 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x39e73dbf sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x543910e9 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9a0e037e sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe2f2ebab sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe5c9bc6a sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xea7d7d74 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0598dfcb tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x101638af 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 0x485e9756 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x4a8fa440 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5d9463b7 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x841b0f67 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x86fb436d tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb72adad9 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb984b9ea tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2113d5f6 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x36610453 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x62383137 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7255b7a2 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7c337e0b most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8c7f8033 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa202ff6b most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa20a6dc8 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xae4d3e5d most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb28c7389 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb404d9b2 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbad4bb45 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbbffe5dd most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd9e3ac53 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x00d9cd90 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3ff0e878 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc2eecdee cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x20647a8c cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5e36315c cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd39db50a cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb1a31c0b cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x28ddf3f8 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3679a62c cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x49db7ba6 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x286fb225 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x496e8970 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00376067 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00ce2660 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03691854 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0838f41f get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c805491 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e5974e8 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x178493ff mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x187392df mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18b8514d mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1bdd7816 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30441586 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x323432d8 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c0e538d mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3dcf8cab kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4db8c389 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4dd033dc __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4def5b24 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e1e47ab get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4eec7d55 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x522d055c mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54e8dafa mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57492788 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x578752da mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60d64c86 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d1e69df __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f568798 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x73e25ad0 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78bf5320 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7d65bdbf mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f89357c mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8826a574 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88a6dfa5 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d98051c mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x94990559 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97e768c4 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ab5c7a5 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa36bf6fb mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae7b2a90 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf23956b mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0dd08c7 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb94a38a4 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc02b67a7 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcada15d9 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd19bc30a mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6ca7436 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd856bdaf mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8a4dfac deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8e12caa mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9486a3b mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2ed22ee mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5c0e09c mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed116748 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef214525 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa84394d mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2a0b11c3 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5b8f5345 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6050a435 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x767a47b5 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9269c24c add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x164ade5a nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1aff7a8d nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x27f8cf1b nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2ac22dfa nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x443139fa nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x454e4d41 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x78d6c61b nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8134320d nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8271df81 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84ff7292 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x88e18071 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x89a9e4a6 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x91f93cf3 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa087390c nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc2bc948b nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc305f15f mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc4404da6 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd76532ed mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd7d66951 mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xebc006f4 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xec893921 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf4cdc7e1 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf81ea242 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf95145c6 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfd552854 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xdc1cb9ee onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xe22567a5 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xaa2d70ab brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xae4c1fe5 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xd80ffef1 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x01b758ad denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0f0c641c nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21290dec nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3a2f95b0 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3aa8bf88 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3df60786 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x417d9eca nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x53069703 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x54d4d89f nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x62ab885c nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x655ad3dd nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6af9e5f2 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7b1f7984 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7c0cbad4 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x942641dc nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa7a93d88 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb30979c1 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb66d06f8 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb753d33a nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcbee5d30 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdb7817a8 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xeb0280d8 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xee510867 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf596a60c nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfc6025a6 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xfc11a858 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x008e2fd8 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd9ff6f65 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x08f20a13 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x102064c7 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1e2aa068 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2adbeac8 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2edf5d04 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 0x517eb58d ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6426713d ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x670751cb ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6c8e2f38 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x922fdc73 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa36ad6c4 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa52a70b1 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd80f880 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe70998a3 ubi_leb_unmap +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 0x116f0e2a mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x166a5baa mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x16eea538 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x480b4ae2 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6048d728 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x656e35dc devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6daac12a mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x919222ac mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa138ccb0 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa95460f5 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc5313aac mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xca549e50 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd4f4d4de mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd8111a9e mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x14c4f5dc devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5f3d2770 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x095eb1ea register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x47ce2ad5 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc2a24419 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc4de381d c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcbfafeea alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd4a6b92b c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x05cb15e7 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6e6b7f11 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf32d00a1 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xfa7314f3 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0531ba25 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x145b48af alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x19b6f2fc can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x25960e52 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x298151f3 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3584f2ff alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x392d0398 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3fad1d69 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45e59571 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4cd8def3 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x56b0fc93 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b352c61 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x625322eb of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6aed00e4 can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d5332d2 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fc3ffbe can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x873cad7d safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x97316b8d can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x99d5c2a7 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaf053a1f unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb031d306 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb2a94420 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbebb17af can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc369dea3 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3b6d890 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcbff10e8 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe02663e1 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe028ea35 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe0ee2b38 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe16a64e4 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfccf5de0 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfecfa198 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x084a6bb3 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1f2b49e2 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x36c87230 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9ba37925 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbdee2410 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcbe876a7 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcdeaa4bf m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xceb57e74 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x020e91b9 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2671ceea register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4dec74c1 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9059734c unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x5750b9d2 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x0163216d ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x74767589 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1a072042 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3a49fd08 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3c1c7190 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3ee69774 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4eb093ca rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6c1c7679 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x82748f91 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa14a68b4 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xb6668bc0 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc0faf741 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe7aa09ae rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf18580ab rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x356478c7 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xd6e058f0 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x0c787558 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x10c4df36 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x86b68d65 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 0x38d090f6 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x44e1fecd fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x582617a6 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x77cec209 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x8e782495 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd75e96f8 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xda972598 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdad2983a fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdddcbf23 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xde9395ac fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe13d70a9 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x06d43432 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x2d584f91 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0d8da813 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x28a0bd75 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8ced06ac ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9f3dd9b2 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc1bfcf60 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x332cff5b otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x641d00bb otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xad6b8275 otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xe0e76dd3 otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x020f90aa mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02163016 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03791b27 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07d72bb3 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0810489a mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08b088c3 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f6bfb0 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fa5c790 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x138e6479 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x146f1784 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e7706d mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16fbd73b mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x189b3166 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x199b0f4c mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b2d84f2 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b63880a mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c369022 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c890703 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20b44a08 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x224af711 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x230bcd77 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23f11289 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27d9e815 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2834c049 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28c0d6e4 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab1790f mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c8ad362 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f1ea88d mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f866655 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f899c1f mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x307334c1 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32f7528f mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39931f1c mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c32ca99 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cfb041e mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4024b922 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4304d7f9 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43bbc416 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44681359 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47465aea mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bc432f1 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4db9540c mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e69f5e4 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55346a3c mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5818d467 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58af484f mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58c3ee8c mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dd4d85b mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f2a5f8e mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x625a1566 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x650c5c5a mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66dbbdbf mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x676b42fe mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68035c38 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x685b82a4 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c5f1ecf mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x728928d0 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73ff1adf mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75843de2 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77e827e8 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a32702a mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aa9178e mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c72637f mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cd628c2 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80ca383f mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x843c2763 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x859f15dd mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85d81da8 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85fe2ef5 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f3a49f8 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90029c39 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9157aba7 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95226efa mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97846bb3 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98519f87 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98d39726 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9963849d mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c08ab5a mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa20b1719 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa230db21 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa32bcb28 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa47b39dc mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3e166a mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaab6c3d8 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac0313ce mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad9242c9 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae700ac6 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae863dbd mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0994fe2 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb35c0ade mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3961b4e mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3da1fb2 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6bbead2 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4d62bf3 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc57251bb mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6ab71e9 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7be370b mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca07af60 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb1909aa mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc14a583 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccfd9f5e mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd5aa7ee mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce43be2b mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf6d5c16 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd389eb5e mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4a4f6ec mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5667ac7 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9509930 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9602489 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcbe2f07 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd4a8171 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd8d540c __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf7bb9e6 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1722998 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf305248d mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf55f13b5 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf65fdf0b mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf890ef6b mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf937cfdb mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfae76aac mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff088385 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00702342 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x023c9d08 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05d643d1 mlx5_nic_vport_unaffiliate_multiport +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 0x09ae9fa5 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b3fbf69 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14e87bbb mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x172f24e4 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ada82bc mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d461b0a mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26e58b85 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28417169 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a19662f mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c25e949 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30a3a89c mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30ec9187 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35e9270e mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x393b2580 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b8081a3 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e6c3afa mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48410ba3 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ace59e6 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e3d1557 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51998e7c mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x539b0361 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57882dc8 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x597f5029 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b760965 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6048846e mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73e2d1dc mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74270f26 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77a8bd05 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c7be71f mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ed68e67 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeedcef mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x945841e3 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9462b545 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x989a52b4 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9932b7f3 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99866341 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dfc8269 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xace22325 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadedc897 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf19dc89 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf678930 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafb5c8ba mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb20c3199 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2344aa0 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb44f9dc9 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4a4deee mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4b7ac85 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb51bee34 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc38c0b00 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6c2d2cc mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd293d99f mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4d70e68 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd67ebdca mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6944e02 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda85760e mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe21ef2cc mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe303f779 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe33c7320 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe93ddc8d mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea4a9a97 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xece23c85 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4fb2460 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbcab808 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfee5a13d mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x23c6690d ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x536c5e01 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x8ec37d3f ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xcf70caef ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xa55da5f4 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 0x04ea04cd ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x093c808e __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f391e43 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x129029a7 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1304ef2c ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1356b493 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x15747db5 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a6f7c0f ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21f4823a ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x245edbcf ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2af04ba4 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32baeb83 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34f28220 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36f6affd ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a965343 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5192a067 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x520d4a46 ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61ac2413 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b706856 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6fc2a2c5 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x739abe61 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73e86a49 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87f125b2 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e500a28 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4fd39d5 ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa73ef6ca ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab2a1ea5 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba392a49 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb28bbc6 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9db4ba8 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde6f3858 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf3ba77b ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9ad233e ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3b0ddaf ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb037a23 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfdcf0cde ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff93829a ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffe779fd ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x07625d7b stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x330fb9e4 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 0x64196c62 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7ac50535 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7b702eef 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 0xcf05e081 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1ebf9328 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x322a890b stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd0c70c1c stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xeee252f7 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf26ce684 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x041d9e1f am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x180d96c0 am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x6ab9a4a1 am65_cpts_release +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x828c824a am65_cpts_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x93fb6531 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 0xe0cbdf78 am65_cpts_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x37b8ee8b w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x45c3140c w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x92a8068b w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf63bf1a9 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x87a0d19b geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x302cd54a ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3a707fe5 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4aff5ac8 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb31e1244 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd710a385 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0x9c729b5d macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4d8ef706 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x55880d6d macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x848a5c61 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe0dafc4a macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x74d760a3 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x4bd49295 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xbcd2935b net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xcaf4cca7 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0x376c5061 alt_tse_pcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x184c5877 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1d6faacd xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4a7f563e xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5c105aca xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa2f3c14 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xca1b4e1d xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf9145512 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0517ead5 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1aac6609 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1bd2e604 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29085892 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f9da003 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ed8f968 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x437bcd46 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4733deb0 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5018b374 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5317474c bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x54f3c5df __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x636b261a bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7b17cc9c __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87e86a54 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x98a78dd1 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x995494af bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa755e04b bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa8ce015b bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa90a492f bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf132497 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb3e3d314 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb45d23f2 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbdabb94b bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc0c615f9 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcda8d470 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd02d4e06 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd1179db6 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd4f1d462 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda12da6f bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe211ac86 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xec095c2a __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf2b53878 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf3234da4 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf6ea6e99 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x671432fb bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x6f604991 bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop +EXPORT_SYMBOL_GPL drivers/net/tap 0x04737543 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x2952545f tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x62b2d58b tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x646faeed tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x75827b9c tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xa7cda475 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xa8a9b907 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xcc3e3978 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xecd4b8f9 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x099ec1f0 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x89e09636 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8ce20838 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb182e791 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb843aba1 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd4493280 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xee59ded2 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x02363db2 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0e1c3518 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x29edf9eb cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5adce230 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x60103f21 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x612dc9ec cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6f91aa18 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9f0b7fb9 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa74ffc73 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc4f53ad5 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdd4522eb cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x42e495bd rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0e331220 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1dbf59df rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2b0de37f rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x42f6181d rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5b30ba2c rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb8ee5e6c rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14cef696 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x153a6a6c usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18d3004d usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1bcfe242 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1dc65f91 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ce72b9e usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41a4aa25 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b5dc962 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e9f2a90 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x610e01da usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6deec273 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6fcc946c usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b33df99 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b768512 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7cb567b6 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x800c776f usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x894b5dbb usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96ef6fb9 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x972ec277 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa49eb0f1 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9de0244 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb1e01600 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb62ab859 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd8f9c39 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb2fc96d usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd47eb34e usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd7adaa9f usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd888cc44 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xddbd2042 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf9f59c7 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe1e60ea1 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe52349aa usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8d650fc usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9199fb4 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x17939e60 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4eaf229b vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5df5a3f5 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7e789bbf vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x1452d69a libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3213d6d3 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ce0d85d il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88dcb0b2 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf396906 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7b4a069 _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 0x06ee79d9 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2123940a p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x481b3522 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x543868df p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5e86c69c p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x72625803 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc256d3b0 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcbc7a62f p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe1f0bd80 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0cc52946 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x136e4fcf lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1ce1c872 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2a063a16 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2e5d1acc lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x58dd795e lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7172180a lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7b0bb054 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x85cb48e3 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb1c58b4b lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb332ae09 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb7d12e73 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc99a89f3 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd1e91b5b lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd81511fb lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe02234ff lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1624a8da __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5418d1c0 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5e1110d4 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x874d9ad7 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8b5f50ab lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x95fe9f6b lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa9640784 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb3687845 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0871e66e mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0dea795e mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x112353f4 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3bedd9e0 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43002259 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x48d44c76 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4a5cc506 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4b500cf7 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4dcf6ce6 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5e0eac76 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f1d65f3 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x61e1bb49 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x630739b5 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x70e38d30 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x73dcfe9a mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x76a64179 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79684675 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7c6a8022 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x89528c85 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9c3a4366 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa4ebd336 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb9a7aeac mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf20ac8c mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfed34143 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0526baaf mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x093acdb3 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a0a6954 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0de24f5f mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f5e7981 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x102b0ec4 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10a49ca6 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x123a0bd2 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1598816a mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15ccc92c __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c0ecfad mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e05a0a2 mt76_get_survey +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 0x264a0325 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27670cf0 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d35110c mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38b85ea7 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39e3f318 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b1d0b7a mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x400fa304 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x458bf16c mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45f47fc4 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46b5906f mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48b636cd mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x55233c1e mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57d08375 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b07f57c mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c5cc868 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 0x5effde08 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6646976f mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6924ea63 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e169b37 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f2a4a5e mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f629888 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f7143e0 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x710a9115 mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7397cbec mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x831bdb97 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84bd0bb6 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86acbba5 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8967628e mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b2be432 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8bb4ae43 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d92de20 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8dd906ef mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f05d852 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x995e5ee6 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b762feb mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e1ea22d mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4df0cd2 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa559c8b7 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6efe965 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9f8260e mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac39c956 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac5333a7 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf5932a0 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1bc6b4f mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb77955ae mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb793007b mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb367743 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd628029 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbffbbb3e mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc41bd0c1 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc79daf86 mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8e6bcf0 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0d3fb3b mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd23f6eff mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd662c8ce mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7a9ca4e mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda40052e mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda662ca2 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdeee5856 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf6e6497 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2356a6c __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe59a83cd mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeab110e0 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeda73d0a mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee54a764 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef54de4e mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf72ef03b __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7952340 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf843b4f0 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc969614 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfd64544f mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff397f95 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x06af16be mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x07146233 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c90021c mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d2e6ab2 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d43a37e mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d5f7616 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1282370e mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x14ebd80e mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16918440 mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ceab2af mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1df49cbf mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ec7df48 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x215e17d3 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x296e17b5 mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34787d9d mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34b630b3 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x377bc1b5 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3a23aa1a mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ba7f11f mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3bca2f3a mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f2a303c mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3fc29ffd mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4384c30b mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x44751863 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x496dcf39 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4a906b7d mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c668011 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5072e3e9 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x50d2ad15 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5a12ba0d mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5efd6893 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5f9221e0 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x65dccc49 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6d760e12 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72d719e2 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x73b80d13 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7404f405 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x75846cc0 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x77e6ab41 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x785348d9 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x809f6646 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x816dd886 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8bd3216d mt76_connac_mcu_bss_omac_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 0x9787cd61 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9a9891cf mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c9411d6 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ee78d78 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa0fd735d mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa1c2f97e mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa7ea7c1 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xade38719 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb32c291c mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb546cf4f mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb678dc96 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb82c1a56 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc1925f13 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc375390f mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc38b2985 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca1f5b24 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca7b1f57 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc1f8e01 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc321258 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xddb443d2 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdee3ce46 mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5f615f4 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6d64e77 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe9e6ee9e mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf0a7faa5 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1a7fe06 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf4204eeb mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf5db1cb1 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf669dae4 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf81aabc6 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff1b42ba mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2fb923e1 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x321c0617 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3e1c6b39 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x40c4616f mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4170bacd mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x704eb678 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x72063dfa mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8482437a mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8c712f11 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x94253041 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xaeac165e mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb3df9f8d mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xca62d5eb mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xca92acaf mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd42392ba mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd969a3eb mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0acaaa1e mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x27427c9a mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x30e88ce8 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x33b05c9e mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4f867090 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x62a9b35a mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x70cae4ef ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x722cb224 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x770e68dd mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7e1ab0fe __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcadd7a80 mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdb6d6903 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe0624512 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf14f08ab mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x05dd02b5 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x191f8b12 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x20af3dde mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x25c49435 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2c923590 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d786b5e mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x571e203d mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x610b9ad8 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x622d7da2 mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7661d867 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x78426356 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7ad52cdb mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7cc1d086 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x825f769e mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d6b0b40 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xadb73e54 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb3dd2b4e mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb4c6457b mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb7104949 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb7cd9432 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb87f3bb4 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc20e9522 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd121095d mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xec0e750c mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf65055b0 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfabb01f8 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfb244d53 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfe94e5d4 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x72dcf799 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 0x34bd6e36 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x81ec9f8f mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xbf151971 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xdbe562e1 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0adeb3a4 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2712939d mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5d3eedce mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9765e677 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbad3f4c7 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xca2cdfc0 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe8debabd mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x052f8491 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x07968df6 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10f43b84 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x246488b2 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25d635dd mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f309609 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x310e09ae mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x379efad3 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3aa59198 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b687083 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e4ee343 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4246be72 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50414ccd mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x536f3819 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56e1f13b mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5cb8e789 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e05029d mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62883258 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63c57e36 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6411fbfa mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64c4d746 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69f83367 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c6b193a mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d03c8c3 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77ba7369 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x795a3f21 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7aa5dd1d mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d1988dd mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x801f4763 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89388661 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b764f9e mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x905a098d mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x962cbd31 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9719b234 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b345df2 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa07fb0bf mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3c06815 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6829e4d mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa710d25c mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xabd72187 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac4e782f mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad8785d2 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb023af7c mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb2bd045f mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc0b7ee3 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd720add mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1a8b321 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6224d26 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc78e3fcb mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7ba5205 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd77d46e mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf16ea86 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf4ae2cc mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfcc2f79 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0b383e3 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0ca717b mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd294ffaf mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd3b67c6a mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda420e8d mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0800479 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0a1dc0c mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe25414fd mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef65908a mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef7f1f28 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa8682c9 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfbd87612 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x23baf510 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5b28684f mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5c8ba360 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x62b40eb6 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7a742ec4 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8859c6dd mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x98cad223 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe70a8be0 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0aa1e4b4 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0b430fee mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0b89fc5d mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1c4266df mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2fb9802b mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2fea7a6c mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x30e4e18f mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3cea6a3d mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x559bd954 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6b6db878 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x788ce69f mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7aae654d mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7ae65405 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9376d788 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x98819094 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9916be2a mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbf1c42d8 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdbae2fba mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe3281329 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xff9c5319 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x00921e26 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0eacbcd5 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1fb927ad __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x22fd0515 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x268c23e9 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2923394e mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2c897836 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x401b88d9 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x52b43861 mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x62ac2702 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x81c41ae9 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x86f398ce mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8fadd0ad mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9b89f1be mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa87b5bfd mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa91daa7e mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb6f60286 mt7921_check_offload_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbc449f22 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc3e4ccce mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd7d6c507 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe262aa6e mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xea2f4557 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf6657c1f mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf997b9e4 mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x16e88446 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x178aaf58 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x21151261 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x27a07373 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4447919c host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x55599035 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8b1a8f78 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0478d18d 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 0x4ede20b6 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6362fbf7 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7a9e67e7 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x813dddad qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa70168c7 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x04c832d0 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18749de9 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f94618b rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x205e4b46 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x21e1e489 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x270cd2ce rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3151611b rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35e0d435 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37eeb590 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43bf0623 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x472a7295 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55facaa7 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63b4d64b rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a12d217 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b44978b rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c8bdffc rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75d3e0c8 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7c15a0a8 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7cc1ac1e rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7dceb512 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8ff223d1 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x94c552f1 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x985b415b rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1a212c1 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb1925de7 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbac9a5ac rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbfda76a1 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc66e8c54 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc72ad19e rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8079eef rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc86a525f rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcb701dcb rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf53de56 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf984309 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdfee4369 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe33cfc21 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe9d04452 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed664b49 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xedd52264 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef421fb5 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf02493f3 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf339aebe rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb4b1675 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfe9a989a rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x06daad64 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x073214f2 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e25368c rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x24a25aa7 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2f506219 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x44cc05c1 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x53163e59 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x58b26d57 rt2800mmio_fill_rxdone +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 0x99bcbc50 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9ffb8216 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb5e5309d rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc4821a74 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd3651f7a rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe486ae3e rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf192df5c rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xff8502eb rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x030e7e9d rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x03707cff rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x03781821 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0da80f16 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f63c0e3 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1db46ec1 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25fe4029 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x272b4b73 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x279e1406 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3814ac49 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x396a8be5 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3f1d78bc rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x424e6c57 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x45b458ee rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4d407a4f rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ddb3a06 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59604878 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5abeb69a rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x85a000ef rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x878c9e67 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88a7f00f rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b1a9100 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x955ae784 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d63612b rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f66dda1 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac69f7ab rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad8b0906 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae3972bd rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf9a6281 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb543b8ce rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc01489c3 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc7211a22 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc79e2e8d rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc8c9a8e0 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd9bc5e3 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcda0f831 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd4630e03 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd58a37cc rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7765c00 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdaf4afac rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde88eebd rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdf30acf3 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe19c16bd rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeaabebbb rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xee8d78e8 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb44fa34 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfcc8eeb7 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x51af2090 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa86477a8 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbec85954 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd556eab7 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xdef04a6c rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x4422d45e rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x6237cff7 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe20dd112 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1bf2aab9 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2353127a rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2dc3598d rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4ef7f383 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x814f3c64 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8f5f9f44 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x972b559a rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xab60015a rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb7cab44a rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbcc5bd64 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc94ea854 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xddfe5faa rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe8ebd5c3 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf116c504 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf4b15676 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfa936ead rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c40fd4f dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22b88639 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40b87e7d dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9e2fd71 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x00c096fa rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f5d23a2 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x164ca8f4 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f7fbb83 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x22c1d789 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x56272ff8 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x655d4244 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6a484b57 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6e3c9a75 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7888d4a1 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7e0e9e79 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8e27e7c6 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92dfff72 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9886ae14 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99e8a239 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9da752bf rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa014ac1c rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa35b313f rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa79af830 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd1c9cf4 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7cb58d7 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xee597735 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf2dbef1b rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf4135837 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf58fa9aa rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ba47b27 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fd6587f rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x134a84d7 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13c00ec4 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19379fb7 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1cb25b99 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ee8337f rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2cc9bdbf rtl_ips_nic_on +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 0x40ce5e2f rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4203547a 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 0x5da6e8f9 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71ab7c0d rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7922aeab rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ff62e17 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80727987 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8531d649 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x910924fb rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x967f7e10 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d5ae42c rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaeaa4b26 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0f61757 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5e10fde rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe12ee83 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9db90df rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdec271eb rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x28185ac9 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x475b6cf3 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7ced4b9c rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa4a49b34 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xef62eb14 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5cacbee6 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xadb825ac cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb09bf447 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc610d2d4 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0840880d wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3c10b194 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xdedffa6c wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x002d9b2f wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0179c229 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08b724b5 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0af32b61 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0cabbc51 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x146cbc98 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x163c2791 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17adc4e5 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18d18d22 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x269b378f wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2df35f8a wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3726b8ea wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e212631 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5240c268 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54b8aff1 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e8fdb2a wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x637571e8 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6385689e wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67cc4d76 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67eac470 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x694f1ceb wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ce530a0 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d03dd91 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x869dabb5 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f8c09ac wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x954ee523 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x967ac0c9 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x98fe3a01 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e4b4921 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e5271fd wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2b25d37 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd562411 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfc921a0 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3107796 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce6ebc5c wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd78510cd wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdaabd1de wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0f1fc22 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe20d325e wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe6fcd49e wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9f270d2 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5a63e77 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9ad4b31 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1f27fbb1 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x23190c5e nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2ac6381a nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x71572588 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x16da3013 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x40420397 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x49dc699e pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x50c2697d pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7ccc71ef pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcc938391 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf9c76774 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x008891c2 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5a8b548f st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x80929ee5 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x92f21018 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa150373b st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbd38724b st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcbc95348 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe4ae2ebd st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x265289f5 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd198d38d st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd378b890 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x02a64eb3 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x03f7ab09 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 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa0b5debc ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 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 0xa613b684 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe8a94751 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x399d9ac8 nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x4eaf7f59 nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6adadbb4 nvme_auth_free_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x76218fcc nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9070925e nvme_auth_extract_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xdf810b9a nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x001f94ad __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0319c8de nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19f20807 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a2671bf nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ed9f689 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ee73374 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x26b8e6f4 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2aacfe37 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2cda3fd9 nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2dd6449b nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f2d77e6 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x31edfb83 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b1972e9 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e4e5e73 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x408fd466 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41fe424c nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4233b28c nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x44e1a4ad nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46ca89a4 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x470c5e93 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d25d37f nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x555fd767 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58d7031f nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5c78178d nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b23b6c0 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e7adc2e nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f6c726d nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a067751 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7aeee0c6 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a0a903b nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8d6e5359 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ea4ab39 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x92fbcf91 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x937768b0 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9580a9b5 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa39be5e9 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xac0084e4 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb5683e67 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb701388f nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb88acad0 nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc7a50cc9 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc82f2bc4 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcbd202e3 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcc76cf82 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd08bc662 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4dd1785 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdba4b1d9 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd1b6e7d nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde40f6f6 nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe07bdd11 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6ccb061 nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf0622334 nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd02f932 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe893c2e nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0c4b4cb6 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x721ddd87 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x743a09be nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7498de97 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x87cbf838 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbabda028 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbd0762eb nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcc637922 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd580334f nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xefc3d1fd nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfebe046b nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x21e609f7 nvme_fc_io_getuuid +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 0x6baf3581 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 0x0c7581c2 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0c76f8a3 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x21f81d15 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3c95f527 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3ed4a91a nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6971d9a0 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x96c1252f nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc98209d0 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd4375afb nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf0e0e346 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf417819c nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xaf0e76fa 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 0xd38e8772 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x32dcc397 arm_cspmu_sysfs_format_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xdd090894 arm_cspmu_sysfs_event_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xdf8ec8cf nv_cspmu_init_ops +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x02f43b2d hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x09d61736 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1dc1734a hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x319bb31d hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3c0e3cc0 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x58ead679 hisi_pmu_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x688bd48b hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6f2c781c hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x79f98d87 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x840df2ef hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8efa3c65 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9d2ae254 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc012e302 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe5bec079 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe79b3623 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe7e5519f hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf4527ea2 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xe9e0343a sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x02a50d25 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x06b051bc tegra_phy_xusb_utmi_pad_power_down +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x08f22ecd tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0b36bcbf tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x24225c34 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x55bc867c tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x67a68030 tegra_phy_xusb_utmi_pad_power_on +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7f0c8b1d tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8982db7d tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8985539e tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8ed5c718 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x976f69f2 tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaba2d144 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb4e6aaac tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcc36d1d0 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xdfa312c2 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf3b24f73 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf614b7ef tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf97afe67 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x804327a2 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9ee30db8 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb038834d mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x3adbfcd7 lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x839b0bbf lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x06b0313b cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x874f4db7 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x09945f68 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x14635058 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x178289a7 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x18246a20 __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1fe806b7 ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x20062f80 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x21e1ce4c ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2ae9bc10 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2b5bd7e8 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2e150f03 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x31270955 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5526d443 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x56067fed ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6454c25c ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x76b230f0 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8c84c508 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8d0ecf9a ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x91887d44 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x96c7bf06 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x97adfacb ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa9600f09 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xac3f4e96 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xad73ec43 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb0a45d50 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb42b2542 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbfcff552 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xce7b4ef7 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcf92da20 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe7bd2cc1 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xed45096f __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf53da99f ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf6b0cbb8 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xe07e8b81 san_client_link +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7366626f devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7a636ddc reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb2e0f92a reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xfef4e7bd devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x112455a6 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x32005ffb bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xad3d5cbe bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x146b584c pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x226a3c4f pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x57a6f9cf pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0c68bc98 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x1fc96fa8 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x334029ee ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3e7b40e6 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x42bd3545 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7369243f extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8eded100 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc3238eae ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2003d3bd mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9a66a317 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbb227472 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc59cda60 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf7035d7d mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xab9ad23e rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1002c88e wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x53dcd0d4 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5a4ee214 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8b057e31 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xba937973 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfceb6f54 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa76a89c4 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x05f34876 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x0da73514 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x18f85d98 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x1d492102 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x26e9a846 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x71b524bc scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x917bc5c6 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x0e8a93e3 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7568f303 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x91c63096 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xecb1460f scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xf62c710f scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x34565583 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3fffbe22 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6494b3ca qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x66ef6f36 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7d6ce6f5 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8652604c qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x94ce1296 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xeec90ccd qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x51227793 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x80ce764a qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x870fe86e qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x8b22779b qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xce55ceec qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xcff7a82d qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf24e3d05 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1346ed63 qcom_add_sysmon_subdev +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/rpmsg/mtk_rpmsg 0x09e05263 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 0x77177ba5 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 0x6b37b253 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a67ef44 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a6fa1e7 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0bbfc38b cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f074ead cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x216fba50 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25e1653e cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x285fd0ea cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29c2565e cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37583ae8 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d71bae5 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46c7ff1d cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4bef01f1 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x53b0fd5d cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56d5ef8d cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f8b48e3 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60dc2e0e cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x61d6da7b cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69f370ee cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d011aaf cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x797eb02d cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d408c70 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x821144cc cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85864af2 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x889e4b45 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89ff0ef7 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ea82bae cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9086ec03 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91edc733 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e090599 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa75ea743 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7d6264a cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae196349 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb6275db cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbeb49618 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca43a034 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf651cd5 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd683f742 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda0c725a cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd65cbac cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf6946fe cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec0bc154 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8f6d215 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfab4216a cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfdde23e3 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x17afc103 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x64f9b048 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6bf0215e fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6f38139b fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7938348e fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x858f4910 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8b2441ae fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8c0fd8a7 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8fcb6452 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa252f5c8 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa293c275 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa67401e2 fcoe_fcf_device_add +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 0xc68c9d44 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdc4771b3 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdf62a0c7 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfc6f01d8 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x3936b415 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xce74af24 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x07a5e967 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x22428dc2 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x23e717e1 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x336f5363 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x34c75a79 hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3aa82b03 hisi_sas_phy_enable +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 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x53d4eef0 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x53f83892 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6bc92388 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6df6a741 hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6e1a5d04 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x860f1a4e hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x939c2cc3 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9507d03f hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9e21fa8c hisi_sas_phy_bcast +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa6cf4909 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb6e474eb hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbb01eec3 hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc13b6487 hisi_sas_scan_start +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 0xe53548ed hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xed7029bc hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xefb72685 hisi_sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf5a00d4c hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf5a7db3d hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf8d42c49 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x146ce98c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x330c907b iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x469efaa1 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x630d66eb iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9634ab25 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xaae7c004 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd21f6774 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x662c6b8b fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0303c3f4 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05da2474 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x063a1506 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x067d6b96 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a1ffff3 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b0938c7 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e8d9be7 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16626b2e iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19a351e5 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21c6a401 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x271594c3 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d59a658 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fefc568 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x319446c2 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31df45f3 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3242655a iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a127a97 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e623d0f __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4644bc73 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49cb16a2 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54ad388c iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c5cfd05 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5eec4465 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x671e28f2 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x686ea468 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x700f46d3 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74733eeb iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75a66a93 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75d5e57e iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d25f798 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8079a416 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x934df248 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa73ed350 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf276cca iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf39cb97 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb02ffa38 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5b4de18 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbca2230c iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc30a6703 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc98b71cb iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcde796d3 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd06842e8 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9ce230f iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf200034 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe43a2310 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5a1a17c iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6158f4b iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf73cd871 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x09865a78 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10d05770 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x142356c3 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x39eb5a2f iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x581499c8 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x81bcc5f0 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f8b436e iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb1c91995 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb59d53e2 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb7e43e70 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc102bb43 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc7b3e538 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe4d6f779 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe702f2d1 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xed242570 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf275d1eb iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfe4ae57a iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11ea7890 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e438c72 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e4ed81b sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f761445 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41dd6c07 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44558f89 smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e72cc45 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52c41301 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53efa56c sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5d430904 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x60f74f6a sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6afb537d sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e519918 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8659fcbb sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x87191194 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x875872fa sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90f8c1dd sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x910ccec3 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x93da0656 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x94e0a8c4 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98a0c321 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99096f86 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ffc1f16 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa750dd53 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab808795 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xafae97a0 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb36bc9f1 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3955965 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc042043 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2189168 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc505bd56 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd6665d77 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe318badb sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe888e266 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe995d24f sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfea2303b sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x32e2bd0b 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 0x0812f534 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08a4442b iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1450f12b iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19140984 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x197621d4 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e79e602 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fcabaf5 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30b3becf iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34add2b5 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 0x3f449d55 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41e4cff8 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x435af9da iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d1bd96b iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x501acafd iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x536a5230 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c433128 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5edd03d1 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61b99c68 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65589eff iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cebb3ef iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72d93190 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a8d456d iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8423b181 iscsi_offload_mesg +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 0x8f8e74c6 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93f5ccef iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaeca0d43 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb656e5b1 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb65f5b8e iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb4892cb iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc7ed41b iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcb5d31f iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc527df77 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6256927 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb5ebe7e iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf076476 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd212367b iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd863ea86 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd98108d8 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfb68a9c __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0c1280a iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe1a16d26 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9160ec1 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0385998 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5139694 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf528905c __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf58a6e97 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf819da15 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8218772 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x10e8b7dc sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x32691159 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8e51e386 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc1fb2ddd sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x5d72c745 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 0x1c1f0232 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x65e26e6b srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb820e314 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc39d0dff srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc6c6a9f2 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xebf53f3b srp_attach_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x22de0314 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4082d1cb siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5e622ba5 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x70370cef siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa6e6951a siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb8202599 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0b5ed007 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b3152ce slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3d9f3f28 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4f59de54 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5960801a slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5a15ffe2 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6c2a4b87 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x78520186 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x79dba5d7 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7b65e166 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9453d2b8 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa1c04069 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa40e385a slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa6e24127 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaa1c1d48 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad58890a slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc089f4a0 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc52d80bc slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc5aead3c slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xccabf2be of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcdddd6d2 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdb4193ac slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdfb03d53 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe1b22bc0 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf27229f4 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfbe5525c slim_stream_enable +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 0xe5da128d meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0654feb5 apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0978ad67 devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0fa1bc38 apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x2682e387 apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x2997bcb1 apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x40ece9e9 apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x61765aa1 apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x6d3240e9 apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x76c156af apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa7204322 apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xae426fa1 apple_rtkit_poll +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xe5b8e8ac apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x88d7ff24 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 0x0167f84f dpaa2_io_service_register +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0261cd01 dpaa2_io_store_next +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1b7c4023 dpaa2_io_service_rearm +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2ea89927 dpaa2_io_service_pull_channel +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2f10852c dpaa2_io_service_select +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3f8992eb dpaa2_io_service_release +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x4994345c dpaa2_io_store_destroy +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x71773513 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 0x8d13ca23 dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2a294fa1 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x41293f2a aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x5dd4d7f2 gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7664a44d apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8239b240 gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8a2e0c5f __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x921ffb4e gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe6677478 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 0x7b4d6b32 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x8413268d qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x96a4d4ea qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa00c3b9d qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x44065353 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x99415fa1 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb2d80dd7 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x32cd0698 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xd979d392 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0c475899 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x178c51c1 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x907e4ab0 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa3ac5f36 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc10dbe39 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd718f625 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x677489d2 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x86aa23f4 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xba4fa4ad spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1801ff34 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6b9142ac spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6dc0e2ea spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6efb3738 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6f1ff040 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x780372cc spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x913b77b5 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x98c4a188 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4e4eaab spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab19c054 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb966b674 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba6e973b spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc5506534 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd0a03044 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd373fe07 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd94f34bc spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdd6e215d spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xea8f3b1c spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfa235844 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x0c690238 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2391d800 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x388aa07f anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3bfacdd0 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3ed2ef34 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x49d3c035 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x55249afd anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x584df244 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7e5636ff anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8914a67b anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8a149d01 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd7557df3 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdf18cfe7 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xefa31f8b anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x043f9d1e fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x47a14a02 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9fdd6e6b fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd40f728f fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x05021616 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x21154b7b gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x248b39f9 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3ffe22da gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5e7d65ea gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x64815126 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x78312622 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7b76ce06 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa44a0363 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaaf2f375 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb7a932a0 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcb71b445 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf6abd233 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2ec5fe48 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2ef2130f gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x55c753e5 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6ec7e872 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x705a73e9 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x951ffcf4 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9b85b095 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9d715446 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa59e6fce gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc2dd5fa7 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfa0567ec gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfa328aab gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfdc1c071 gb_audio_gb_get_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 0x1bd8ea19 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x4e271527 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xd31b252a gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xeabef0fa gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x43a54ea9 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xf132400e gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x15f50827 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x14fe337e imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x17687f83 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1c03bea6 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1d864041 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x23382058 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x26b1c6be imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x34b5d408 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x367a7a14 imx_media_capture_device_unregister +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 0x3cb7fbf0 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x48588c11 imx_media_pipeline_subdev +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 0x61f6f474 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x726515af imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x87bc7616 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8f9d9122 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x98a35142 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa0a42412 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa631199b imx_media_grp_id_to_sd_name +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9e2459f imx_media_enum_mbus_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xad43a0d1 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb6436a55 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xca6447f7 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 0xd7df0f56 imx_media_capture_device_error +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 0xf5aa48e2 imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf6016560 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0b201f38 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0fe72631 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1ebc9af5 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x38824bed amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3ae9cc34 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5160b8a1 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x596b51a9 amvdec_clear_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 0x7a79ff65 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7d104c70 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7ebf6ab4 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa363c85e amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb29db566 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb4583465 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc4d8bb55 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc57a79f4 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc8b8ba6a amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd0cd37f3 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd214c42a codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdbdf49ff amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe8e5128a codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xedad2e4d amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8aa5e9be nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x9973f101 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xd3d24d4d nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5877e471 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc3b3e2b5 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc5492dd5 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xec4bb7ee target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x07a9bfbc tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x234bf885 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x28d1785d tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x317b1edf tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x364b1300 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3bbbcdac tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3f7be5ce tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x52cc85a2 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x56445777 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x823ac75e tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8fca09f6 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa4297c1d tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb72afdb3 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbc922e39 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc9a204e3 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xccfc5f55 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd103b665 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd5b63804 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe34c40f6 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xeb2db6e0 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf179851b tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf29aa154 tee_shm_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x26ac9af3 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x36bee371 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x389cd70e tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3eea5052 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x413ef160 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x44522a59 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x47335088 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x55b705be tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x750d1def tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7bed70ac tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x82e6bef7 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8487554f tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8cd4a238 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x97ab798b tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb4e2a6a7 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc144cb86 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd0047154 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd6c33d3b tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd7b12340 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd9f2e337 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe0ba6a3d __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe67d6782 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf29c59ab tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfe9f75a6 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0270832e ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0dde93cd ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1eeee77d ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2dbf1c8b ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x356364aa ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x44e0cd92 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x48145261 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4f3304d7 ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x73980e73 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7dca02ae __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x80581cba ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8958e201 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9747782a ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa0500850 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa4314a42 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa85c92c2 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xad784313 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb431947b ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcfafd246 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd07bd5ce ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd4ed8c20 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd51157f9 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdfa5991b ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf4b7574c ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfc0d49a2 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x3ee5af2c ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x51e25809 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 0x7a0460ff ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xfaef7ba9 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/uio/uio 0x23a9e48a uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x32f91e05 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xbc5dd34a uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd24862ee __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x775ce9f3 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd026cd92 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0b0d8647 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1798b0a1 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x40d859ab cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x43fea7d4 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5f98d99f cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x672e00e9 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc88b4373 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xcdb1e3a1 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdedce52a cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0164802b ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8f64dea9 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9497e4ab hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa1e47aff ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3b0b8029 imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x522c40b3 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7904c74e imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x97e7a05a imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb9ca44b2 imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd32a10ce imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x280b13ea ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x40f586c1 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7452a520 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xaa08429a __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xefc7b525 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfbefc05f ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3e79de88 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4ed45290 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x56497736 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x570a83c6 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5aed7ffb g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6e345807 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x70a2ee35 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x80187c8d g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9db8a8e7 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa9f066e1 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb289a808 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbafabf89 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd2260ccb u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe4839bee u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf86e94d6 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0852c915 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x08c5eb2b gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x09b02c55 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x11f873d6 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2a7f9306 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2d0f5b03 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3b481f6c gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4d15ebeb gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62299e90 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x683a830e gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x72745814 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x734dedc8 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7bed9411 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7cbb2dc7 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 0x8be65a79 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcde7fa92 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0278b56c gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ee4017 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7cb46cc5 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe0eac923 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x73b4a591 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xaa6c729a ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x07cfbb14 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x132fbc42 fsg_store_forced_eject +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 0x20119302 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x23725a37 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28e2f486 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2af10a34 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 0x4bca6be1 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x59a72ac7 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x60b681af fsg_common_remove_lun +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 0x6eef0631 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7477dd3a 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 0x923601fd fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc87dac06 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd0154447 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd0f92e8c fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdc2c133c fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe4ae4f64 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_mass_storage 0xf9cc361a fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x01295f4a rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x14e14b14 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x232c8d5b rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x31e22251 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4583cdc1 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x511f47dc rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5c468382 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6c4e73b9 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x77726ebc rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xab497c32 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb90c615a rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd8d689c3 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdee4968b rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe775ccec rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe96d8ffc rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b39c121 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x150329c3 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1903d411 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1bdae463 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d241921 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d7de488 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d83afbb usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x22dab076 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b4b1c4c usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fce1331 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3552c065 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ed75b7b usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4310c5a3 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b9f10de usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x517dadc0 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54108779 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x57a9d27e config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5fb61d7b usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x620090f7 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x771480f2 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7de3bb95 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f92bfb0 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b5e8c29 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8de8e4f usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf882f7c usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6d4578a usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd34d1b81 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed516181 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf432063d usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf50526e3 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff0f179c usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0443530c udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x20c94873 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5aaa3019 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 0x6ddb82dd free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x73c61c0d udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7f61acb0 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xac728407 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xae7ea2a5 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc0b8210a udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004e4bff usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a9589ee usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1e5558e7 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2f7f6dc5 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3036fe3c usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x386f5a0c usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x39f32ef6 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4443530e usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x46584c64 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x48a05db2 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x54719782 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x57fd3438 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a115348 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79232b4f usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7beb2afd usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7c491cbc usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8db47869 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x91aab8ea usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x933a7cb7 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x973177fe usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9f3e4e12 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb4590058 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbc6a8757 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcaa21da9 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xda0239e5 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe3145eb0 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe61c1852 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe7640e54 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed68b1c3 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x5f42fde9 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x59c9844f ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6ee8adc0 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x18481432 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4504904d usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x520084ba usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa11866c5 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbccd1ff4 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdd228ac8 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe5a44dc6 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe5bd06a3 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf5928c01 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1c995a64 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x42770497 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x77b516b4 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x797b58cb musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x861d83f6 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd723f216 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2dc7ecc1 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x48068800 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x72ed38e6 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7a2c98a6 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xea59adc7 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x3339e04a isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x0ba908da tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x2c37f592 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9a6731ff tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xa512ec8e tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x296fdd33 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x094033fb usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0c4d8386 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x10e3fa76 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x145107c3 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x176ce340 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b3e6e92 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x48228205 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x49208a1d usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4c3c8de2 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5bef502d usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6f2f362d usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7c312c89 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b1e3787 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9b637ebb usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa794eeea usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xac49fcc7 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4224f6f usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6958200 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe7bbcd61 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf390fe8e usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x40b6aa24 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xa39462bd dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x0e8e1604 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 0x8d8e165d 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 0x044c45e8 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x046b61f2 typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08373844 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0fa2ee1b typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11b44a08 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1217f73f typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13c6d0c0 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15685721 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x17c10391 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x186b5030 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2bd19837 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3645e8bb typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36aaf962 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3c794cec typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3cad724b typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x465946bd usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x494b735e typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ada5266 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4b9e62eb usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5369a4b4 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5581f159 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57a3a3a6 typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58788563 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b834f6d typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x641227cb usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66790457 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x704c4da7 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x71e11fea typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x745c968b typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7816c567 typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7c90854b typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80bcb63f typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81e76753 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8652857d typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86d64c2c typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x87e3408c typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x88ab98ad usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a9e38c7 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ab50c41 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ec60585 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9155de3f typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91be13ff typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x924c1319 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96879abd typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9955fd78 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b4813ef typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cdfa105 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa37c37fc typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5ba4926 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa71f132a typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1d7f650 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb8ca3d2 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc200cd0b typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb329793 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb46bfcb typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcd27fa46 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcdaf3435 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xceece553 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5d74454 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5dd4756 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd70c650c typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc12bc2e typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde2ef71e typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1025839 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe44b1b9d typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe8a8ae07 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0f88f83 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf8a8f5af typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf9e0bc2d __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfb1f6e08 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3d2327a6 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x44ea419f ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x452d119f ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6d7f3064 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x93901d8e ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb32ef172 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbfec9170 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdb67376e ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe5e616fe ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x05e64900 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x07e80d07 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x389e93da usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x45c1a16f usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4af73844 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9d5fb1dc usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa1c616a8 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb5d0aff2 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb7f9b758 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbf46a82d 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 0xd697785f dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdafed01c usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xeaf77689 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x16c8bea7 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x415d91f6 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x42213657 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6891b20b _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6ffd13b6 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x729a3a1b __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x73ce3216 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbf1487cb _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcf61dfb8 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd6752c31 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe987f038 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xe0837364 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0315ef64 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x071e0f50 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1403d237 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2cfb2e08 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2e0212b3 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 0x68e7446e vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x68f29c30 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7821a006 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x85951e72 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x880834a8 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xad342290 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb15c3685 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcf6724b6 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd30d9ba8 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd376c8c7 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe3cca133 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xee06d6b1 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xee5d4647 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xee6aa3bc vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x37b7001f vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x3ee58382 vfio_platform_write +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x5ff1ce95 vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x60099ec9 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x922dd84c vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb5d736c7 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xeadc31a0 vfio_platform_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xebe9c17c vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xed65a801 vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfa8bfca4 vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0ccd7a8a vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x122b33a9 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x13976948 vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x157a5005 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x26518d46 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x28226ba0 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4f03f032 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6239cfef vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x66d9797a vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8c42a4f9 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x978dd06f vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa985ecbb vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb34b60ce vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbb28758b vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbe3fa542 vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc3ebcb6f vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd170047f _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd183226d vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd741a20d vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe29e4224 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe88e6517 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0bad53e8 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c4eb593 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x115b4ed7 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f781348 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23dbd2fe vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x295fb07a vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a55f9c1 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35c7bbcd vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36285de0 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b2c7e60 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3eaa659c vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x472a9123 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ccc42ca vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cccc340 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f92157b vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64169640 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c62bc20 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78b2d609 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8123ddd5 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84159c01 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8bd4fcf6 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b8f36e1 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f3bf75d vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1252242 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc321d715 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc586f2c2 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0412497 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1be3fba vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe28041c3 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe28260ac vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe364557c vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6b726f9 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8e81ccd vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee682520 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefb9f96a vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6bc4078 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf83cf6aa vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9e8dd77 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe807307 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffab8fd4 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 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 0x050d4dc1 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0dbb5adf ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x11c5223c ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x849531fd ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x91964323 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe6afc506 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe807705d ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xfa713a1f fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x0deef941 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x73465f19 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xa4f5946a sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xd3c96576 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1a094f4c w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x36508cf5 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x66be7e66 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7bf0c773 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x80d37274 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x93a27470 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9ceb5423 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb27e547a w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc90c3e3d w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd8556143 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe354cbd4 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x062d722e xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2b8a53ef xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x6ce30bf3 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x80419835 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xfb6e1c04 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x75bf12bb xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xa8f2a68a xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x07ce0bb1 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3197d71f dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x601ca23d dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b 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/lockd/lockd 0x0af64bbe nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3c458aed lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8ad1da2f lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8b551551 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x92787bb3 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc25973da nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xec755cd2 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01f812b3 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03507531 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ff357a nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09a7e89f nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09fa0b76 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0daefee5 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ee632e0 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f0cb849 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b34c37e nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ce21d56 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21acf0bc nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22cc8cf1 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2509b8a0 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x264a4697 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26833705 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26ee9b11 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x285d4e11 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28fd9180 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a97fadf nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d270528 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3022a780 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3258dd65 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37016e57 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x372f0190 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x387a7fae nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x395b77b4 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d74877b nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dd1cf23 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x400522f8 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x429e59b1 nfs_server_copy_userdata +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 0x4592bbc7 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48b6c5d7 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48e3f3f8 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bfe899e nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c61ca43 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f1699f9 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f2cee83 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52a34d6f nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x555b5c7e nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56d64a74 nfs_scan_commit_list +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 0x5c0d12a9 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f75e984 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6054960f nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60cd5bd0 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x613689dd nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61cbaeaa nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6228b8b4 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x671566fe nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6915ec49 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ad6a8d7 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6be77476 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71a4054a nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x780c164a nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78f1a4fe nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ba74fd9 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cdc31d2 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x816bb319 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x840f2006 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x867b049a nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8723c3a5 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a1a8767 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a4cba29 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a54296c register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d398eb1 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e36fa02 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90c53acd nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91378b20 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9143d967 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92d5c511 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94f8c221 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9589f4df nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9630e7cc nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96e2f317 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97a981c4 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c169edd nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ed1c2f9 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa07185f7 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa089744b nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1608cd2 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa30aee28 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4f9e41d nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa65f4097 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7defb05 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8700dd6 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9da44a0 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab2866ba nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab98fe37 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac1bcd25 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac6c0acd nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacd66380 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaced7055 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae499f46 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaef998a7 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0b2179e nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1a84336 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb24aebf3 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4aac03d nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4f6ac8e nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb75dac2f nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb924be26 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba657449 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaecbc15 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb8c971d nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc99c53e nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd447e59 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbde8660e nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1cf6d53 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc271f6ff nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3ffad83 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc44aa854 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7b62c4b nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc97a16bd nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca2a7e8a nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc0ada5a nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc9792c5 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce352a12 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd135bb26 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2d193d0 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd41e76cb nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd48c3e30 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5792af8 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6a9fc76 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd73d7f83 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd89dece9 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd94f2ef8 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbabdb47 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde2677be unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf0561e0 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea09ec41 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeac6c6ce put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb13bc23 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed886dd4 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed895c8f nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3e95f3e nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf40ca475 nfs_generic_pgio +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 0xffd7cd36 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x945438bf nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06611013 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x076a80fe nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x082179ec pnfs_generic_pg_init_read +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 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12b49a48 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18778527 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22e4fe8c nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2736b9dd nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2826348e pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33ce3438 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3474df93 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3918e0bb pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d9623c2 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41231bb2 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41ca46e6 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44830bce nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44e011e3 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4749375d pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a74b8b5 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4de6c1d7 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e96c3a2 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50978733 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5476c300 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5751e347 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58d85dd3 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59e722d1 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b73dcbe pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c5c9162 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edf4b76 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61361caa pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x696ce1e5 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b6f384e __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d0242fd __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d8ebb97 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6deb1303 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73a080e7 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78a2211c __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a89c6b2 nfs4_proc_getdeviceinfo +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 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82be2ab1 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8324fa6b pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e77eeba __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x912a067e nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9409fc06 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95da03b0 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x972c9190 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98de9efc pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d1f5075 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f63b76d nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8484315 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab288729 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab5017d9 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae269710 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaec22686 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5467706 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb61fa712 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6547c30 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6bdf85d pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba558938 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd8e8480 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdc797a7 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe181d65 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe1d5f72 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbeb027b4 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca0e715b __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb0f6799 pnfs_put_lseg +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 0xd43eabfc nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd65958dd nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd96667c4 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb4f8d14 __traceiter_ff_layout_read_error +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 0xe6093930 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6aab91b nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6c9eca2 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea57b6bc pnfs_generic_pg_init_write +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 0xef2566cf nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4a1269d pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf611d7a9 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7650033 nfs4_test_deviceid_unavailable +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 0xf9a16a56 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfad7bf13 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfce5d0d7 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0db6b02d opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd43e296e locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe315cad8 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x07b40b53 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x07e10187 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x2df252b8 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb2d41563 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x6fe31fb7 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2e7fd53c o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x44197405 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6bd73726 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x931e91dc o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9946200b o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xabe8d570 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb04fe4dc o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x0886eacc dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4237ba07 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 0x91d157fc dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa74917f2 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb3f41489 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb7ee07cc dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x02f8b6fe 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 0x346acd80 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0xc815823d ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf31eb75f ocfs2_plock +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x034b34a8 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x2d22de7c register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x7b807bd0 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x83da080f 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 0x33fb8d0c notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6c7ab162 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc +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 0x1516b7b8 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb6080dd4 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x14996fd2 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x57c0fbb0 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x898e1c08 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xa9e3cd70 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xaa62ea30 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf1998b88 garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x02107cf2 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x16ace557 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x430292a3 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x695c979d mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x78e05790 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xdf22b772 mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0xa405a72c stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xe99bfc66 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x4c8216b2 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5316a3f2 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 0x71b70216 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 0x4e955298 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6cef388d l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x89d44933 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa10f03d0 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa1c7daa3 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbfd0450f bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe17559ea l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf789be57 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf7c09a38 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x69d1a1c7 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x154ae5dd br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x202b4e4c br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x29ce3195 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x39723921 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x39984638 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x48295c43 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x57339068 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d2bebea br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x64444d43 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x72e58a1b br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7866cb15 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x845e65df br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x855ecffb br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8964f224 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x99e3da66 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9e2acc75 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa118c4e5 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa3e8e530 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa95e8c4c br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xae544eb3 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb50638e7 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb82a7f12 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc0bf12b2 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc859d88b br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf3d62174 br_get_ageing_time +EXPORT_SYMBOL_GPL net/core/failover 0x678d6d6b failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x74da0663 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xcf77e660 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x045e54b7 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a8e8021 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x180c3d73 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1aa844a8 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d5d3724 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x25ff86af dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28d7abbf dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x293ae157 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f03f13a dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30bf92f4 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x53250ba4 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x537222c1 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5be6bcd4 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x64d5e35f dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7335dc17 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7795149c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c83adca dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80b9b15e dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8221cff8 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ab4f028 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8dd49b52 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c558e2b dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa15128e3 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8ac4241 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4594545 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb51d8e25 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb58d0da4 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc2a089e dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe9ea13b inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc25ff04 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0e8d2ba dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe1fd16b1 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x416aaef2 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4c680b23 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x735ce752 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x861ed9cd dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa94d7cfa dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc69f7731 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x15540869 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1ba58c59 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x21af4f8f dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2ea3d423 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x346dd639 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36304515 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40adab95 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45116a90 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 0x4c2613f6 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5d423622 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6793ca43 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x85c13e4e dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x88410e1c dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x892373e0 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x983ee472 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9b2e77d0 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa57a3bcb dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb0dcdbf8 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb4f37434 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbebfac34 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc02abfc0 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc056c870 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc143c716 dsa_fdb_present_in_other_db +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 0xd1732663 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd4c4ea2a dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd54a395f dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xddab3490 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xde5b5006 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf98a05f1 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd0d7bf3 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1483efcf ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc90f9536 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdc9161ed nl802154_scan_event +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf731c382 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfb9c6f2b 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 0xb47bafb5 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xb6227fff ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6a578346 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x9394ade2 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd8017c5b esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x5af5e52b gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xdd2429f2 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0578df2d inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3c620a98 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x42c63d6c inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x48b2de00 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8391038f inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x94817221 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x97e87f0d inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe362c250 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xea15ceac inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xde94668a gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x00ee61ed ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x17b2571c ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1e068ae4 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x33a5eff4 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x46120285 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4a86b28c ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x511cc260 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8d5499f7 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa8bcec51 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc43557b3 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd32137ee ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd618a36b ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdff305e0 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe21b25a3 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf2ff1b3c ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf792e271 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfc2c4e3f ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xdf6fc3c5 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xf359151b ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x234f6fa2 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x2a60d3d3 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5daa014b nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0d296060 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x103008c5 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4ee51a0d nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc105ad49 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc582081d nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdff2e396 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfba89ab7 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe9263fba nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x2b798dc7 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x49763895 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa0646bee nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7a65876a nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xf04bc2a8 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x22176696 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2388a6b0 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xac5a93bb tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd08f34b6 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe5ad89a8 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0d0af14d udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x587f59b5 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x65777dce udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xacfcd194 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb2dfbb8a udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xce665c75 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf581c2ff udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfc0ee2a3 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x81671207 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x94b13523 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb0da11af esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9967a526 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd76a55ae ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xded4e130 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x28d93d2d udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6df0476f udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xf4c34a64 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x39be9cd9 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe4153cb0 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf89837ce nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x17660976 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0891b4ef nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0cc53985 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2d014b25 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x34e802d4 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x91379db3 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xeb0b7e65 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfc9a2ff7 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x6e419ed3 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x56693f29 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7463dbb5 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xeb914047 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x8b1ee9ac nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xbd6bd3a4 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x060001a6 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x100bc2c0 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x18d42e19 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ea2488a l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a295a19 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x310d1d8a l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x414c96ce l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4df0a784 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5483be1f l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5d3c27bc l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x61fc6db8 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x641392c6 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x802a155c l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8438bbb0 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8ffc12a3 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb025839d l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6819059 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca360dc5 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcc18a789 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2254d23 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1b1dfe4 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xb31ec7fd l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x60f1a249 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x03561257 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0fe1208f wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x158b9355 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16d3ce62 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1e64467d ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2266b922 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3194423a ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x35ec56b8 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39379bd5 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x496b8e28 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c2854a2 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x595b4252 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x60ffe44c ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x70546a57 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7571d783 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8509db85 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa539c0f8 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xac1abf20 ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb08a189d ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb4140d3e ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb4422da5 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb66b0419 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbebeced9 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc2ab7f6b ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf3879178 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x285884f2 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7983998d nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x992b95b2 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb051b0db mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf20d04a3 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3400134d ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x38af0051 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x49d8a64e ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4bb73e87 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4e378e51 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4ea58f91 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x562e6505 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5a2dab5b ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x639e3d16 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 0x7d1c1fe0 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8542cb5b ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8b2c24af ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa8bbc1fb ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaa8a3e58 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4fb2bca ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xce0cbcd8 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe03bf44c ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe3a9be98 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe69a67c4 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x07b2cf2e unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0ba7887e ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x38f377c5 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7d22fc6f ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x23b155fb nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3405086a nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4e9085e3 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7004cc9f nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8abb7af2 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 0x00e34b24 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x010e4dda nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03188f9f nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x034d7b62 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0362dc7f __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06370fe0 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06503fa6 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x066dd5c4 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ec78931 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x108a9874 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11943164 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11defe32 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ca4f8b3 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fb7d4f1 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22b009d6 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27286ab2 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x297ec910 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x299d8d81 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e8e799f nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3159dfc3 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ae85eca nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b0b1e0f nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ba99f26 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c2ef53f nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c67e7cf nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e4b0e7e nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fb11c73 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45d566ee nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x463bd2c6 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48929fd1 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4db9455d nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4de5aa58 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5114fe55 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5585f195 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x567d6948 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cfbf57d __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70544192 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72400e61 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x772f1cd6 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a7f8292 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7edc6f49 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81702f9f nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x848a326a __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e970c36 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95ad9f1f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95ff45ef nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97b35333 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x988b42e0 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d2fad95 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d8094e0 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5d53be5 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa63ec6b0 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa0091bf nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab264fbd nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad3e0052 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf441e52 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1518559 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8f9d6fc nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbae1f89c __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb3a7b45 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc7d662b nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbeebdc5b nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2237dbe nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc278195a nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2c3549c nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2e51f52 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6ecd3e5 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9e5b349 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbdd9ea2 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd107e713 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2fbaf19 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3063678 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd78c3061 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8b44b73 __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd983e58d nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebb1a865 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed02cdc9 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee7f7880 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1d8a1e7 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf525eb10 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf64aa75a nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6acc9c8 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf851719c nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x950689bd nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xa027ad75 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x3e26c855 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x32d5c67e nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x590b4daf get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xbb13124c nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x301d62ef nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x09640a9c ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5a2d0d65 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5ae55bc0 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd0878b89 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd0e07bb8 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdb1052f2 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf445eef5 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x9767e0cd nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xff5383f0 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6bdaae0d nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x769b2afe nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7c72b265 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x06b229b0 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x095a422c nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1670a318 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2bf85f59 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3fbb7553 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x40744ae2 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x42dd89f8 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4926cb81 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x553b67ed flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x61978cfb nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x645d705b nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x72bc9bce nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x97accf67 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9ee2a900 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa91141f6 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb356c5e4 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf1fa728c nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x03319902 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x142d4bff nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b4b0aee nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2076a6e6 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x28c24d1e nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2a17f4ff nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2d8fd190 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2f03be5e nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x33ea4231 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 0x52e398f6 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x54859849 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5a346da2 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8c509fff nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8f7d090e nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x98468e26 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa43e2013 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa62cacff nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb11a83a1 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_synproxy_core 0x100faa69 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x14658ffa 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 0x311344e9 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x331ac794 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x77b118dc nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7f034e0c nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x81a45fa8 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x93f8c787 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc07a23e2 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc8c87532 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe3c1c88a ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x048b5f83 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x079dbf4a nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a184e25 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ef395b4 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x12088ac6 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20f712e6 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b6eab09 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ea9d8df __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x322c7d47 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d08b8e6 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4b6a0d95 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e790e3a nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5aeae349 nf_tables_destroy_set +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 0x6c9740b9 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x776addd4 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78a2de2f nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7acd290a nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7e4b5bbd nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7eb0c9e2 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x82fdbf52 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x838d5d25 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x933ac136 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95289ea6 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95894795 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x98b852ed nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9dd568d3 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa0dab23d nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xadb48db1 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb179e4da nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbeebb264 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3b95975 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcfa5be8e nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd002a0cf nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd2b567bf __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd618036d nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb57618f nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe13f18f5 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe16a49e1 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeebc0623 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6807e0c nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa60f558 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1cf4b680 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x26384eec nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2ec85cc8 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x94bcef8e nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb592c624 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xde7786b6 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfd523e0f nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x24480ca4 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8437a5e5 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x895e9023 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x56284b9a nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb33c7ed3 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0d6db930 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0deb7709 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0f34787f nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x1f827db5 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcad76f7b nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5866f77c nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8147e40c nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x91ca2987 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x071aa056 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x10bc0a15 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x145ac602 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x245622de xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d1ee454 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2f7eda18 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x343caafc xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x36bf5ea6 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3b039faa xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5fb47bb9 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6aee63b7 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e2ac100 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x769635d9 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x772cbbfb xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x943b00ef xt_request_find_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 0xb8bf7d66 xt_request_find_table_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 0xca013a41 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd44c39a5 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb34e82c xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdd3b7b1e xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea1122af xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf77868f5 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf77e6e11 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x0558c7f3 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8d3cc726 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6d07db87 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xdefd1436 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xec590176 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3663f547 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf5d058d5 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xfc24bf59 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x3be37428 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xe617b60e nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8299ca58 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x872d5822 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x954b1530 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9fa0e437 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa2cc6dca ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xef2ec84f ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x09f678ca psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x444cfc10 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x52d92954 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x6a90f7a5 psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5f0ad905 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 0xe44ada63 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe9b9bdd6 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x077413ff rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x11a8c34f rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x134530a6 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1638633b rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x1aa48019 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x1ad4285a rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x1d665f1f rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2c2e736f rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3f2f553c rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x4d032b7d rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x535b4400 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x58452e76 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5ae8feae rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x605a2e6d rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x68fbf2a1 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x6b51a864 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x77d61bd8 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7821fa34 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7a1004fd rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x889af299 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x9401e868 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0xbe1f54bc rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xce251911 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xd4460e4e rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xdfc004dd rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xe052f216 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xeb723300 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xfff475f7 rds_conn_create +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xb85da9ec pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xbe5773cb pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2a3866e2 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3c345fb6 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3f4f3490 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc268ba2e sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x1d0a8d3a smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x2228f066 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x4de800d8 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x5a171383 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x5e38f3d8 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x6531df33 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x69259d48 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7db1c874 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x81701863 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x85453b15 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 0x4c11ccf1 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x62f2e876 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9d9a3109 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xad1ee210 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x024e505a xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02557470 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02ecc04f svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03c20cf2 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0720df97 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07d750ad xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09dd242b xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09e0cdee rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09feb9e6 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b6fec6c xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ed13c89 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0feb7816 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10662923 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10daafde sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11a1f001 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14fd264c unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15548871 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x165b77ec rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x166f256a xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18e4795c sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x193b3db8 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a106d81 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1adc69de xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b8b6913 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ca1c2a4 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d2ecbc7 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d3c8ba8 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee954ed rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fe60a65 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x216ed48f rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21834688 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21933b0b svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x244044b7 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27be708b gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x287a1602 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28b2da98 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x299d7b64 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a62911e cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c350a53 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d13c83f rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x302903da sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30645254 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314d512e svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32b49599 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3748bef6 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x386db5fb xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3878d23d xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x390a86dc xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x390c7bb0 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x395b6656 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d62907a rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e4107bf rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ed1de64 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3edeabd4 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3efc499b svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f371122 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f432fce csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40f488ad rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42418e9e rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42bf0ab7 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x448dab09 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a244ce xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a7b8f4 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f43cd2 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4564f8dc svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45b48959 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x464a68f5 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4970f6d0 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce5a531 rpc_clnt_xprt_switch_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 0x50d3d74e svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52215061 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56fef695 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x585de785 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x588e6272 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd63ada svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c06ad5f rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cb6b845 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e0f6f83 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ee37847 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fce74c8 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62226868 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x631f2853 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63353a88 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x639b8688 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63c98029 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64540757 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64d15e83 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x664b9ca8 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ca3d27 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69666acf rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a618295 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6afc9ec1 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cf67525 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e38d4c7 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e6cdc78 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fbccc6a rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70300c94 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x712e6416 sunrpc_cache_lookup_rcu +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 0x737c0949 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73baa2b6 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7439dbdc xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74d7d05f rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76243029 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76508480 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x769cee13 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76a2642e rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76fb7de7 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78153982 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a6d9b9c xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bd38b81 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c3e3f59 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d023f43 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7db3268f xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dbe9cf1 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e40cbc0 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fba41c5 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80644e32 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8293e6c0 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82eae56d svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x832b3e32 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x849b995c cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84b2a145 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x858355e6 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d0c9a1 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86db665a svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x897a367a _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89a4f5f1 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89dcd9c5 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89df2178 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a727aa4 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a79d80e rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ad790b4 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dae1bc6 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e3e554f svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eb6d03b rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x924a5dc6 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92985eca rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9459b421 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x957acc05 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95efc0a9 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95f1e212 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670c300 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x967bc965 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96d45459 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97f2d212 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99fc5509 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a518f7a rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9afd3517 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b87bfce svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ed1c1be rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f2bfc8b cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4256b86 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa443bb79 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa924e16c svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e695a7 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab8bfb0b rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabe1ec84 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabe6c21d xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xace80c83 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb14237b9 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2fec51b rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4fd9327 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5f25537 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb75c790a rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8573038 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3f91bb rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb6c3271 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd09357b auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde80c95 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +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 0xc212fe82 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23142d7 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc457342f svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc490d29c rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc68bb99f xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce2f2acb rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce4f39f4 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0812d42 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd102cdfc xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1897d29 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1c15d4a svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3737b1d xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd391f566 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4ddb2d7 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5de9b5f svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdacbbb7b xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdba4f2ae rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbc954d2 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc53b03a rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc6c1c47 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf8bc5b4 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe014e9fa xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0a06235 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0d2212c rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe24b000b svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe28593d2 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe345acb9 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3796803 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe41116e6 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe58baddd rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5f42a93 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe652e1ff rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7e58e21 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7fc3afc rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe83757c0 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe899159e rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d97b2f svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea960ff2 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb531dc4 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed03007d xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedb74846 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedd000cc xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee81cdfd rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee8d91f0 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf190a98e svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1e0d0b7 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf35fea9e xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf46e4a27 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4b06f02 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d83790 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf57038cf rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74944c7 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8bb2ba1 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9ce3823 xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa28cb5f rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa6caa7 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfab61e53 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc7c1292 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfce02a8e rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd08627a sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdf1a748 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe0183b0 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea25b38 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec422c6 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff8514d8 rpcb_getport_async +EXPORT_SYMBOL_GPL net/tls/tls 0x16ed192c tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x74790854 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xa252beb4 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xb2152b0f tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x000f35be virtio_transport_inc_tx_pkt +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 0x0d47bf35 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x117ba91e virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28863117 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2cdd310c virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d3e179a virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37aaf20e virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3cbf4281 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3fdb97d2 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4c4d1adc virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50db9263 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x61d5a527 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e3c97fc virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f01f0a2 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f3b9b44 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70c131c2 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x895f676c virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f7c6338 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8fb19377 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa2bfad23 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa6a11dbc virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa01ccad virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xacdb9873 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb129a75f virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb8bd2537 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc54056c0 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd124704e virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2885146 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda1cbe7f virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd58d320 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe33699fc virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7b5beb9 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xecbd21e2 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3b28533 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ad73d44 vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0d8e241e vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0fe2bb3f vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2a9857cd vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2dba68f0 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x35ecc965 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f9a611a vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x562a8ccc vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6a4ce8e1 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x75484a8e vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa99d7545 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xadefc748 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc812a67b vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcacddade vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcc9ecdc4 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd86a544a vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe226e05b vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe77863a5 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xea48be55 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4ddf0ec vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4ec8447 vsock_core_register +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00898c59 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0ccf9278 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x150f3702 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x25282071 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2fcda268 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x37601e64 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3e49cfc6 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x555b53f1 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x67c345e2 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6e9de14d cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9533fd54 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9eb020db cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc92014dd cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd7d898c7 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfae6bfce cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfe99df74 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0f39088c ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa2a75d5d ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xda1032ed ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe3b7b9e3 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy +EXPORT_SYMBOL_GPL sound/ac97_bus 0xc440534c 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 0x0783c5e5 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x11c3a8ec snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x1243bcc8 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x1c3d5f24 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x20d1b2e4 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x39e0ac3b snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x3cd2c69a snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x4f7a9ebe snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x68b64134 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x74321d8e snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x84d7d811 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x89a67bc2 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0xc06d6c88 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xdad137dc snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xe2f195ac snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xe7a2c32c snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xf2cab641 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 0xfe2b2782 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x57e7794e snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x5d8c80a0 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 0x09ed02ad snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x13513968 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1d7d977d snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x42d33a67 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x44be26c0 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 0x5e75bedf _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6396b30a 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 0x845d872e snd_dma_buffer_sync +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 0xa4199a96 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa81fe2f2 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc0533b48 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd331b6ca snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xee92d41b _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf64dbb52 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x029c2a92 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1c46c96e snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1e931055 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3496365d snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3a4151de snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7ab1cf2e snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7c61690e snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8d026eda snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9f748f41 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xac1eb038 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc089a2de snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xda94863c snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x7bc07033 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xcb486e1c snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0dfbd248 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0ef77bdb amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x47ecdfa4 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x69c9d5ce amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7180237a amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x723d94c9 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8cf8bff4 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8d49e9c5 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa8f4aeff amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xac923a31 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcd7bd4e3 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd6489189 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xef46a25a amdtp_domain_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x03916f8f snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x048f194e snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0cc9a51c snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x27215dfe snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x30e94d45 snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x33900f1b snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x34280690 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3d71bad4 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3d8a44cc snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e956827 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x46dc1913 snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4c9d1ab2 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x526da31f snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x600cc1a3 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x650ba987 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f9e5378 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9230146e snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x99373ae3 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9f857d01 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa2f0104f snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa5ab0f1b snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa873e7fb snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa39bacd snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xac2d4697 snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb2a0b626 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc6638211 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd4c95654 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd4d600c8 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd8884472 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xebd5b52c snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf4ebf2f0 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0283cea8 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03cf277c snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05a96fa0 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05ad218b snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ac92a37 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e9fe375 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fd73700 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11e2d3dc snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1511d2f8 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1563111d snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1579255b snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19744dbe snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ab0e358 snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b0fb6f4 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x211eb10e snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x217f380e snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2331b67d snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x288b3e97 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a77004d snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x304a57d4 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x305949bb snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34292148 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a0b5008 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b120ade 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 0x4176dc50 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46167aee snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48a0855f snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cd913e9 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51bd5352 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x531fecc7 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55a70d3c snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56e4c29c snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c78ef12 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d5fda3c snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63db1a02 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68e6ef8f snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6afd42ae snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7093b129 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7350ca04 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74ab2de6 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76e3817f snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79da216a snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b6db1ec snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cf0e5b8 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ed91b83 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8216b8e3 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85f0656c snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88ac8a11 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8db7696d snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90ce0746 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x924219fd snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x929d0d49 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96c821e8 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9720fd2d snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c152e57 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f046333 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0a0e836 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7017608 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa772f5ee snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf3235e8 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xafb0b215 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0316fc4 snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb09d7c2c snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb35f1a24 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd169b1d snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd178d3d snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe06b96b snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf2e05b1 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf5a9f16 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0bf50d6 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc32d788d snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc46c86b9 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6884951 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7c34361 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce416517 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0f3e18e snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4b19b10 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdec74840 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe01d0d49 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe18d74d2 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1a4eff8 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea2a5972 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecae1f00 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xede7a40e snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef99fafe snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf218b389 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3fcdabf snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf63504af snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8b7608c snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbff00f4 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfcaba457 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff78b40c snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x05600ce6 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 0x66b3f5e7 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x72e5bbca snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc4852556 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0b06ad8c snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x43257edd snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x437158d6 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x628512a5 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8dbd6fd7 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfd88435a snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0185d86d snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0476097f snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04e9ae04 snd_hda_mixer_amp_switch_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 0x07d292bc snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0adb9a01 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b4cf936 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b6c2a43 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d66439f snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1346b0f5 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x136288a0 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1463ed43 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x155e062d is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x162ac69c snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16d0ba94 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17e2f540 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1821382c snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x188b38b7 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b4538eb snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bd5e5e9 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d35aedb snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1eba594f azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ed00349 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26d8baf5 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x277bd1c3 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2922bc77 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29e50827 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a2c530c snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e0b6de1 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e476c34 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2eb49714 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ec00d32 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ee1cbae snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32df8ba1 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32e873be snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3572a77d snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b0140db snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d5699d4 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d60c3f0 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e6d36b2 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43d1a751 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43e1261d snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x442d250f snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47c8c9bb snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48bb606c snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49491b83 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d34d3ce snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e0e8941 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53b4c9fd snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58a61d8d azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59f2d3a2 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bd804f5 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d753a49 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x608e37c3 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61d4a79d snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64ffbe2c snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67381e2e snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68f4e812 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69b75501 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c7f71d9 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e9851bd snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f30ee1c snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7051e72d snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74d262c8 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78ef6940 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7db6bb2c snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f5835c5 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fa3b390 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86452ff6 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8711bbe5 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x871c2b22 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8be2cee8 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c8a71ee snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8caab072 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f7b38c4 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90ba37b6 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x959ba44e snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x969844a4 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d25e4e0 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d75041c snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0a4fc15 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1a94a8d snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1db1d30 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa30ba444 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa34f123c azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa71ee032 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa936b02a _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa99456c3 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac6c3c02 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad19c112 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2e725a0 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb35976bc snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3a48bf5 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5e776e8 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5f88f47 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb75d6a69 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb98017bd snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbed6fe19 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc23ff73a snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2bfcfa4 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc32247f3 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc45315a7 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc730bf38 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc987eee3 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc250ad4 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc8ed7e9 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd12baeff snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd28a4b09 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd469bb52 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd74b1b22 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8db0d29 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdabce70c hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb7eccfc snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe085050a snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe122bfaa snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe260cf9a snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2ce8b1d snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3a57426 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe476ca9e snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6d46993 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8a3e7d0 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec4ec87d azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeca4a1f8 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed34e5e6 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeee71a9c azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf33dbf0b hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6d8e84f snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7da8db4 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf848358e __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 0xfd124623 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09d3241f snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0bf4ac7b snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19ce14c3 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x27974a65 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x28caf9a7 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x40c88ea0 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x447f5e8f snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4878d14c snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5c291d64 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5c29b817 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x634adac9 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x64215c6b 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 0x7c4d658f snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8cee3ab1 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x950c42de snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x96228f1b snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9b715c1b snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa4f5ab9c snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa7a0f226 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf320feef snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf48b7571 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x758a69a2 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 0x382c0739 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xaff992ec adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xd3fd4a03 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x22c8b288 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x24e43dd6 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x55b34941 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x783f63e4 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8339149f adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x910f966d adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb00dff82 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbda31d9f adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbdacf415 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe09dddc6 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xf580c9ff adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x13c0f9b9 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xede982ef cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xfeefe290 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 0x02b00621 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0714e1ff cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x07d6cd1d cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0a658978 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2d1bbbd3 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 0x4bcc9f00 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4c68fcc5 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4c9fa66c cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x77ea27a3 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x82c57bc3 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb183cbc2 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf1829f34 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf9cdbad6 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x9614c264 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf11f8b03 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x11bab3b1 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5c4692a8 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x705a2d52 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x95efb446 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb37810ac cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x96e957fb cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc86d334e cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xda7dbde7 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x15bbf0ad es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xd2fffa5d es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x07ffa597 hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x999c480d snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xb44700ad soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x5d388f71 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xdab432e5 lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x72769e88 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0b069f8c max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x200fc0de max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe1aee86a soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xeb61ea5d soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x2753fdaf mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x5c0fb2f3 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x852823e3 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd4b217d8 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x30e7cacd mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x4bbb8591 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7719a39b mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xd28b6e0a mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xdb0e6883 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x37d03861 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 0x0176e132 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x35772ea5 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xdf988859 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x5b044011 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd8282471 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x307c98ba pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x8af7357b pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x51f7b8dd pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7136d65e pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xecabae7b pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xfa0b3d23 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6820b967 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x72037e78 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xcf6f54f5 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xfb5790fb 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 0x08e7d918 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8259d034 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xafaf5c9d rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xbd1936ac rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd8a86879 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xeb84f814 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x7e6589b8 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xae2edf21 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xc5e5de4f rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x6114862f rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x0e52d3a8 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 0x0d18594a rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1bc866b1 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x230226bd rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2eadfbe6 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3f857712 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x744a57d0 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x75b97751 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9c9390dc rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb8511b8b rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc8359dbe rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe070fd77 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xebe86b15 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x71ae0e0e rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x20babef6 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x274d535a sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4cf5488f devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4e5d05b6 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbb7d2905 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x19a901fa devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x639c5f75 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x840ea421 src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x85b2a891 src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x14e01171 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x5dcb639e ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf0b6b574 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xefd526c6 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x862a7694 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 0x1c404272 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x212248e1 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5e8b0c93 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x89478719 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc0499e0d wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x27af2c5d wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x27e12832 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2adb30e4 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x32eecbbc wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3d3ddd81 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x499885df wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4c9ef89e wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x510d4695 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x521c1c79 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5391e30a wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x63fc4673 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8645ed4f wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8eac4b57 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9e1559ff wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb71eac14 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb95f691d wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc23ebf6d wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc6516b75 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd13cda60 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd3c5443d wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdae46287 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xecc50f42 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf0a6adde wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfd18ad01 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xffc76a4f wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0235b2c9 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1a2a59b3 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x23f63a58 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x47fa6dfd wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5761d8b7 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 0x6a4de82e wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x74882353 wm_hubs_add_analogue_routes +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 0xdd127c8d wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xa12f45af wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xb58e09b8 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0a2839ef wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4ae45523 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x52631742 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5e28b6c8 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x4284e719 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x426ef642 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x913a370c wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xf01c8074 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xdeefa3ba imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xe473ee0f 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 0x0abe9910 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x02d861a2 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x88b49068 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xb8b7af74 audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xdbe7c435 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x29046bed asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3715d509 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3bc48f81 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3df44156 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x43b76c2e asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x563afa6c asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x643ef343 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6691947c asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6b005bda asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x766270c8 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x87585438 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x97f6cbc1 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9e46fbaf asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa70b167a asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xabf621ed asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbf909057 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd5281729 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd7fe08b0 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdb5fcef2 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xef09e1da asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf87b3162 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfa968d21 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0c5f8b0b mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0e9cdb74 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x16196f80 mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3719e472 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3d56ca98 mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3e52ac6f mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3fbe370c mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x44d18932 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4789774a mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5abda521 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x614b9010 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6ee3ad27 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7a6f68fd mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8d6d70a7 mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9966a9e8 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9f06ce53 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xae88b56f mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaef59e3a mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb0d7c91c mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb99a2580 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb9f33b93 mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc74681ec mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdc2d16c3 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe1ac7d18 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe36eff27 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe7a48cf6 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xee1b1c4a mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xff3dd95d mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0xe1a8217c mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x22d37319 mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x60c3664b mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x8783b40c mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xe792d4dc mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x09820436 mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x3275880c mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x70350034 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x19f7ff1f axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x683cef2f axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8ee3b99d axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x97d9963e axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa4b17d6a axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc2f80f08 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcbaef246 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe513ad06 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfdf9f0b9 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 0xa4a10a63 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xe51978ee 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 0x9eda2e41 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x33ca0552 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x411a6168 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x471fdf77 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x70841e05 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xa5354dd0 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xa9e2ce1d meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xcae019ac meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe60e2c5b meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x0e388387 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x59469e2e meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9452e45c meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9be3bb52 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xcc124b0f meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xd9f806a4 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 0x30f7650c q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x64693069 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xcfebffcc 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 0x518db17b q6afe_port_get_from_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/q6afe 0xfcec92c2 q6afe_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x43715911 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 0x44b66c3c q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x7c9f4b5a q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xb2f08012 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 0x0d6630f4 q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0fc00861 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1053e0d0 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x167569a7 audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4d301927 q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x54e6e15d q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x632cd57b q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x699dfdd4 audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7e95935d 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 0x811a00cc q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8191ee37 audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x82e55000 audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x90a3e237 q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x963f02b2 q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa0af6b5d q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa1a2949f q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa2a41a85 audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc7b1b6a8 audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc8847502 q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd0603ccc audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xea0a1f84 q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfd186b9d audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x2c7e12ba q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xa70d9c03 q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xe4376c28 q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0xae806c1a asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4c62773e lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x68235df5 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x731dc08b asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x74f09ab7 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7944a6c7 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xac04493c asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x4ad9d71c asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xa7f0b75b asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x44a8c95a qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xb3d4ad87 qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x0bbfdf8d qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x8491e097 qcom_snd_sdw_hw_free +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x862586bb qcom_snd_sdw_prepare +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 0x009e2148 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00b09444 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x012c9e9d dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0217a158 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x025b26c0 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03ea57a0 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04482530 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x052718d7 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x053022d2 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x066e0c0d snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06c15848 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09242498 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a32126a snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b10d658 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ba940cc snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ffc8505 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x107402f7 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1088f4d1 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10f47e4a snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1233f159 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x124a570b snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1448e55b snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14a44c67 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1598ea30 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x173c74f9 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x174b67ed snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x197daec2 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19bdc72f null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b2a8c0a snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c3b43a9 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e888ba4 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2049bc3b snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x208b047f snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2124e8ce snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21bea110 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2266b737 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x229d9fbf snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24e020c1 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25cb2daf snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29ee3804 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f05c94a snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f416aa7 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x303a7dc9 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x343f6384 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35b6d785 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36039c53 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36836b44 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36d7fe2b snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37444131 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x384cf5f0 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38971d61 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38d69061 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38d6b963 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x399ce159 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ae79bc7 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bee17d7 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c4d5c72 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e294d80 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e3d68f8 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f2b20e2 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f8d4ce1 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40339d4c snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41ddbb04 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43101df8 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43898c0c snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x459cf9ce snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48136387 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x481cbf0e snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a0571a1 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b40103c snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e28d584 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e2c066d dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e318524 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ea0ce58 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fc0bb4f dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52cafdca snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53c32f5c snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54ff77a5 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a0a1596 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cd9fd7d snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5deb74a0 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x614e5a13 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6183d95a snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x619d60c4 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6488e7f4 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65856603 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68168617 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6860ed6a snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a8f33a5 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6abed7c7 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b0fdf12 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ed01c9a snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f5c37a1 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fd73523 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7075af59 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7283c071 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72e3aab5 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75914ae3 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76020fc6 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78126984 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7920b8c9 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x793ce4c4 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79d63082 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d37dd88 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d3ec468 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e7cb44d snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f469694 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f65b50d snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80804f0c snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81f02b72 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81f7b245 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8294df7a snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83b66828 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84d6fa0c dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85386a38 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85e491ca snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86d6f5e1 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87b44c59 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88b348f4 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d4872ae dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e50feef snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f558ca3 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9068340c snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93150626 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94d0ac20 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x962f1e92 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97af6a88 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a25d810 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a97b867 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b3dc46c snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b3dd110 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cabba72 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e3477d2 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f4f9553 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fc62fc5 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa00bb4d9 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa05dc441 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa085b526 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0b15fac snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0de89ea snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1a1453b snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2381d3d snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa29de511 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa339f4cf snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa45f21c8 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4603e8d snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa471a9b5 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6fbd370 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7ada20f snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8cf52b7 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa97f5e7d snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaaaf853e snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaade8bf6 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaba2c523 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae816191 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafd5893b snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0f55620 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb48d4639 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb497b439 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4ffa1a1 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb552f315 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7add1d8 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9386a15 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba4cd08e snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba7d13ff devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbac5de21 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbee42c0 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe1375d9 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf24175e snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1c151d2 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc25b0a15 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2db1697 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3c130d3 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3f7d480 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc66e35e3 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc792ce98 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8a79a7e snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9c5a28b snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc9236f0 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcda851da snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfd7da7b snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0a1d0e8 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1795b78 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd19de24f snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c4d4a2 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd595eb6e snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7aefd0d snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8547ecf snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8bbb4ee snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda66b5b4 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdad6b7c0 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf141e70 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1f23b2e snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe21de474 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5464929 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5de76ac snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe64ae2a8 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe93b82d4 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe97ddedc snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaa81058 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaf08345 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed5f6b0d snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee0db84a snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef7af04d snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1fd0aba snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf21370dc devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5a6571f snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa0f3862 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb7e0de8 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc12fd8d snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe5d1701 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe92f0b1 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfea28e75 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x576082de snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x67be2e80 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x7c6ec9c4 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x7e473b19 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe9ec2953 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 0x6716efdf tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xe106bc86 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x008c41e6 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x3c011f31 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x48d9830b tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x92d0bc18 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x971b27ff tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xacf15131 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc658965f tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xca8475ca devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf8555717 tegra_pcm_close +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 0x6012b261 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x12d8bd1f sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x9187c96c udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x04338edd line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1d59b1f7 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 0x2982cdfd line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x389c2291 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x40f8c53a line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x44dd7327 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4697987d line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d166e5f line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x69978d9d line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6de0f291 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x89690a67 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9d9c7a1a line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa545881c line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb5f4599d line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbdf3617f line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc5633c8c line6_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0004d3a9 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x001640a0 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x003e314d scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x0040bc40 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x004deb53 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x005544d1 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005b811c ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x00714b31 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x0081a853 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x0082bf33 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x0083d4d1 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x0090fd34 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x0091e314 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x00bae356 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x00bc4d12 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d64764 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e0c23c destroy_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x00e5b193 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0109917c devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x01101349 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x01187831 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x012c4cd0 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x01309d2a __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x013359ee gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x013af19b devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0140be99 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x0150252f regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0151be58 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x0153831c fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x01684437 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x016ebff9 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x017682b2 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x0179bf26 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x0180c22f ping_close +EXPORT_SYMBOL_GPL vmlinux 0x01849463 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01a3efbe regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x01ba9350 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x01c633d8 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01df72ca spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e1ac18 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x020122bd ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x0217e688 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x02291104 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x022fd89c of_irq_parse_and_map_pci +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 0x02629a47 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x026c670e edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x0290982c usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x0295e449 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x02976c78 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x02a62f5b tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x02a679c1 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02e31667 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03156aff xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x03177659 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x033304bd xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03474381 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x034c3e3f rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x0359a81e uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x0359e560 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function +EXPORT_SYMBOL_GPL vmlinux 0x0370ca62 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x037bcc3c housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x037ee0d8 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x037ef9ee kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03953035 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x03a0f429 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x03a39150 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x03ae3a0b bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x03b9f833 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c6933b subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03ca1e57 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x03cbe804 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d354aa nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x03d6189d ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x03f0593d virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x04007cc3 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr +EXPORT_SYMBOL_GPL vmlinux 0x04404e2a devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x0462a96e cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x0464a1ba sched_show_task +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 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049722af thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c2d50f usb_lock_device_for_reset +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 0x04ccbed8 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x04d3b83f devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x04da80a0 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e129c7 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x04e23ef9 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x04e7b643 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x051f6ab2 virtio_check_driver_offered_feature +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 0x053ef4f5 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0555d2ce gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x055b6bae devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0572d7f9 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x05739cfd dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x057a85fe of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x059eccd4 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x05a0d30c dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x05a2591b key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05a56e4b addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x05b318ea get_device +EXPORT_SYMBOL_GPL vmlinux 0x05c242b0 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x05e6b0e3 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x05ef9be9 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x06105fcc decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x06248de9 dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain +EXPORT_SYMBOL_GPL vmlinux 0x06349c0c regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0649dfa0 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0651ddbd dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x065b1490 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x06607991 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x066c60b9 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x06727926 pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x0674e79d wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x067e84ff dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x06946c2f pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x0698a552 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x06a6c4fe iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select +EXPORT_SYMBOL_GPL vmlinux 0x06bd0665 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d5102f crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x06dc976a __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x06dd44ac meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x06ef934b vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0x06f3c7b6 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x06fe5b3c perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x07108604 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x07149b6f usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x071e24fb serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0731472e iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x073c9d35 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x0742cbdc devm_regmap_field_bulk_alloc +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 0x0758fbe6 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x0760abe1 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x076cccd6 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x0776015e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x077f7c6e dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x07a7db5a bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x07af5332 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x07b1a5ac regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07bb6bbe ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x07bb7b2f led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x07bbe7d0 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c1edd2 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x07c911ab scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x07cbf2ea mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x07e0b89d max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x07f3b065 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x07f57bb2 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x0810a3c7 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08189d16 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x08195e1c query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x081d4b1e device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL vmlinux 0x08255cd0 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x0827b425 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x082a4efe md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x083b3a05 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x084336a7 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x08434fda dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x084e1e1a usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x08634383 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x086620c3 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x086eea5a mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x086fc3a3 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x087f8805 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x08a14ab2 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08d6fd93 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x08e4d717 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x08ef119e devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x08ef999f tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0909c767 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092c1a9a ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x09321f68 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x0933afad kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x093b34fe acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x0941030b ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x095c36a8 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x095e2994 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x09679728 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x0979c196 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x0992b059 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x09a25386 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x09a47ae4 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b7c7d1 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x09b7ec25 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x09bed121 thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09c8c3ce pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x09dd353a tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x09e38411 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x09e4303a validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x0a0aea5f acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x0a1897a2 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0a1f227e meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a52df26 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x0a606ef0 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a7a4993 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a93b002 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x0a993464 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0a9fb1ee pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x0aa64642 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x0ab6ddc3 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full +EXPORT_SYMBOL_GPL vmlinux 0x0ac906db aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x0ad2b172 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ae46023 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x0aea65d6 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x0aec6014 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x0aef08fa inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0c0083 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x0b15c453 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x0b17bbb5 pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x0b18414f perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x0b18914e led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b1ccbec of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0b2029ce iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b353b59 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b49bf5d ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x0b4b4645 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x0b4fd1c9 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b64a099 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b7d9366 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled +EXPORT_SYMBOL_GPL vmlinux 0x0b92be1e clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x0b92c4f6 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x0b9aadc0 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x0bab942d mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x0bad4b72 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb2ba37 vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc0034a device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0bc98d0e sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x0bdde05e irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x0be12b76 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x0bea2185 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfac09f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x0c01e06d __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x0c1a5ee3 log_post_read_mmio +EXPORT_SYMBOL_GPL vmlinux 0x0c1b3c05 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c22d62b tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c2d77b1 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x0c30212f subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0c598f6a wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x0c612572 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x0c6a05eb gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x0c700851 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x0c722ab6 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0c75cfb7 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0c7b4d90 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8eca7e icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x0c94a647 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x0cbdb576 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc7a031 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0cd3761a pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0cfc6f2b blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x0cfc748a sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x0d0d5eae dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x0d26c909 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4a57b8 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0d4caa0a fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d64ca12 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d744758 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x0d74b4f8 cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0x0d906548 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x0da0a0a5 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x0dbbf046 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x0dc838d1 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x0dca1c13 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0dca9802 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x0dcfe779 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0dea7497 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x0decd521 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0df214a9 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e0549f3 acpi_irq_create_hierarchy +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 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e750aad evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x0e89a36e crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0e9a458a devm_ti_sci_get_resource +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 0x0eca0b59 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0ed71b5b scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x0eeb5f1f kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x0eebe8d3 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0efacc2f devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0efff12f pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x0f00a681 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x0f0a8cd2 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0f0b30ae clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x0f13025f ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x0f1519c5 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f25c7ec platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x0f2f7243 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x0f3a98c6 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x0f4167c3 copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x0f6a1b29 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x0f70f39e wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f785496 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8874ac acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x0f88f25d pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x0f998a92 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x0fa12408 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0facfb1a mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fcafa4f pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x0fd1fc9e usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd46440 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x0fe969d0 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x0fedb06d pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x0ff84ad2 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ffac5a1 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10146367 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x1016f485 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x103238b5 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x104d381b firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x1068772c of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x106d2a7d mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x107a9f01 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10bfa249 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x10c20633 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x10c7f174 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x10cf4ff6 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x10d1ea98 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x10d7a9b8 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10e040c6 acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f06337 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x10fb9597 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x10fba26f vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x1100047a gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x110965c5 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x110ca8ec wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x112ea5a3 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x1131d7c6 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x113a417f securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x11424913 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x11478d56 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x11640c13 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x118a8ee0 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x11b51936 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x11b61a19 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x11ccfeff pci_p2pmem_find_many +EXPORT_SYMBOL_GPL vmlinux 0x11ce71ad devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x11d21156 devm_thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x11d21212 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x11d7886c regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x11d9be3e sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x11ddac26 thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x11ddaeb2 usb_match_id +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 0x11fff038 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp +EXPORT_SYMBOL_GPL vmlinux 0x120c7f2c of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x120e8ae4 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x12123b69 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL vmlinux 0x121c13ae of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12243c5f balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x122d0054 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x1248f14d blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x12572e78 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1259517a regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x125ff68c disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x1260449d trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x126b70c0 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x126e5d0b ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x1274874f fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1276011c k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x127fe5db ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x1280fb8d virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x128e2e2c sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x12a726b2 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x12b6e31d spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1308f2ae pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x130ccd2c _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x1313fa6e ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x1314bc58 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131c9910 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131e8918 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x136f377c verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x13783710 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x137fdb5c hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy +EXPORT_SYMBOL_GPL vmlinux 0x13c180c0 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x13e134f5 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x13e566ee pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f835cf genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14046623 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x14065849 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x1418d3ce devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x142a0a85 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x1457a05e l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x1465dbea regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x148993e0 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x14986678 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x14a4b81d rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x14b273e4 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x14cc0358 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14f78f12 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x14f9d4f8 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x150cb463 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x151a312d __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x15227158 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1536f44e usb_string +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x154b6ec0 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155b7d08 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x156617fc xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x156a24b3 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x156e7596 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x157b8819 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x15920170 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15a29170 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15ba26a8 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave +EXPORT_SYMBOL_GPL vmlinux 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15ce1386 mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0x15e49742 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15f58fd5 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x15f985b4 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x1603f7cd ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x160b94e8 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x162d4c39 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x16317a66 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x163666f1 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x16372f87 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x164871e7 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x1657bdac pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x1665474a kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x1672e718 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x1674dd60 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1682b4ca hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x1685fd80 device_create +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x16a78c56 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL vmlinux 0x16d51e44 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e098fb __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0x16e4cb1a device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x16ef78ac dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16f56826 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x16fbe83f devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x1709c420 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x170a2ea7 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x170fb699 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x1716c898 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x1723a7ae serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x172a57ba rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x1734508d devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs +EXPORT_SYMBOL_GPL vmlinux 0x1759c92a devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176be96c ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x176fcff5 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x1770bc60 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x177dc017 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x17938efe meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x17a73be0 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x17c34b58 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x17c481ba spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x17c9ef41 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x17d4abf3 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17ec3528 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x17f257cc pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x17f45d9e __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x180a89df phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x18120f01 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x18151e0b sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x18240975 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x183037a0 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x183c3a6e altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x184ba667 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x185ac7b2 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186b4933 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18a3ebcc fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x18aa3a2c nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x18afb817 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x18b12084 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x18b98ffe xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x18bdd6e4 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x18cbb9aa usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x18d1be52 __traceiter_rwmmio_post_write +EXPORT_SYMBOL_GPL vmlinux 0x18d34277 clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x18e38976 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18ea867d pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fd2848 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x18ff3b37 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x1910e2e8 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x1919adbd PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x1926ceaf trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x19485a3c devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x194fbb4f pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x195a7ed3 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x19664bc0 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x196ba535 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x196e1465 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1973dc71 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x198a3902 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x198e8f41 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x198f2b17 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x1993f314 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x199be915 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a59226 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x19a8e5a2 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x19ab0b68 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x19b44df8 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x19d148c1 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x19db6a8c io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ebf04e __tracepoint_rwmmio_post_read +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f04e79 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x1a0b7bc6 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x1a0b7e02 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x1a0fb868 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a226f32 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x1a24349d tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x1a3bff95 of_device_compatible_match +EXPORT_SYMBOL_GPL vmlinux 0x1a3e7acc debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x1a429678 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x1a4bb3f5 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x1a5f2445 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1a6558b0 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a7783db __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x1a8074e7 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1a822a62 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a9619ec pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x1abbec29 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ae61208 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x1ae6cefb i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x1aeb6113 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x1aee3144 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x1aeed680 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x1af0d5e1 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af88ce0 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1aff2a1d edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x1b084d45 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b15f82c sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x1b183fb1 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x1b4660dc max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b7513fa get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x1b845ea2 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8d91a7 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1bab0697 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x1bc36186 fwnode_connection_find_match +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 0x1bc82e4f sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1bcb548a ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x1bd30fc2 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x1bd6d72e fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1befee3e __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x1bfe4914 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1c02f7ec wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x1c04b786 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x1c13d80c phy_create +EXPORT_SYMBOL_GPL vmlinux 0x1c164cc9 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x1c1c78ab regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x1c216d82 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c3acffa __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x1c43135b vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x1c5037cc lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c56b006 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x1c57fa21 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1c596840 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5c7a9f device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree +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 0x1c8d10cd usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x1c9f2b28 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1ca4491a nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x1caccbba inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb81f43 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral +EXPORT_SYMBOL_GPL vmlinux 0x1cdf3d6c debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1cf33fe8 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x1cf704ac init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d0a0dbc of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x1d1feda6 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x1d2075c7 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d25c1c3 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x1d2a2358 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1d521f04 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x1d54cf87 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d7940ec __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1d943d48 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d9a727e ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x1daceeb1 devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0x1dbfd6a3 fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0x1dcc42ed clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x1dcfe742 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x1ddb087b serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x1ddbe9ba hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ddd2b69 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1de2cdf7 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write +EXPORT_SYMBOL_GPL vmlinux 0x1def33f6 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x1df0537a of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x1df2db7b pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x1df6ca25 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e082f79 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x1e159ac2 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id +EXPORT_SYMBOL_GPL vmlinux 0x1e1e51e1 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x1e288c83 zynqmp_pm_force_pwrdwn +EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e3bfd0e pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x1e401f65 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e462ed7 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e5f31a7 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0x1e621ff4 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1e62d40c pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e6890e7 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x1e6a7745 ata_bmdma_port_start +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 0x1e906e47 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x1e98b8d2 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1e9f4a82 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x1ea46e28 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1eb4daef __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x1eb7ccf1 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x1eb832be i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebcee3a get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecd5d9b regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1edb4989 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x1ee0d3aa pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1ee1d5eb regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1effb6c1 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x1f059f83 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x1f07d7b5 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x1f1455e5 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x1f1c9194 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f1d1d35 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f2c5b1f pci_generic_ecam_ops +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 0x1f7af2b8 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x1f7fd862 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x1f801bc9 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8f517f fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x1f930161 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x1f945f24 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable +EXPORT_SYMBOL_GPL vmlinux 0x1f9d1a2b devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1f9eba14 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa87580 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x1fdbf73d file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x1fe10953 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200a3817 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x20115812 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x201d3777 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x202f9695 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x204be645 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x204fa637 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x206fa032 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x2078001d devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20911c0d wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp +EXPORT_SYMBOL_GPL vmlinux 0x20a97028 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x20b41a92 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x20d14850 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x20ed35fd ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x20f3a132 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x20fe3531 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x211e42d2 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x211fe0c3 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x21255dde gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy +EXPORT_SYMBOL_GPL vmlinux 0x2136b58d sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x21394bdc mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0x21568397 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x215d0cca __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x216817d2 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21750df8 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x217ae9e8 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2185922e register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x21939b5f of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x219aedcf peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x219c7717 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21abaac4 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x21ac2d83 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c05173 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21c16e21 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x21c22500 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d4e215 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x21f112f6 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x21fc5724 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x22056fb9 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x22090dd0 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x220e1c17 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x22252daf exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x22273e74 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x222cda5c vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x222ebaa2 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x22311160 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x22478a1a perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x22541a8c tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x226395fe devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x226bdeeb sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x228a00c3 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x22aa9bf0 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22ae7e13 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x22bee0a3 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x22c09e83 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x22d55aea lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22ebf77c device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22ed6ec6 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x230a9b3d rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x231eff85 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x232f0cfc crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x23450982 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23511531 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x235aecd8 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x236777a7 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x2374fd6a iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x23828a65 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238cd6ce phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a78fc6 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x23af50cd rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x23b01b0b mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x23c80972 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x23d032f0 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x23d0c42c of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x23d17254 mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x23f20201 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x24015a22 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x240b1d7f kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x240e2757 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x24144614 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x2418f2b5 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x241d85c5 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x245adc5e kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x246639fc dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2472a59b crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x2478aaa2 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x24867e79 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2490958b usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x24994cc0 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b2ed83 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x24b6bf06 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24ce2cde xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x24d13d80 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x24d22423 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x24d96617 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24daa1b5 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24eef94a blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x24f0cbbc blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24ff5267 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2509ff33 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x252011b2 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25385e53 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x2545c2e9 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x254e9f0f spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x2553ff08 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs +EXPORT_SYMBOL_GPL vmlinux 0x258702b1 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25aaea4c ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x25ad96d3 __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x25b7571f sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x25d7cd8b scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x25dade8a raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25f4377e regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x260c0f26 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x263943ba input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x263f74c5 clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x2649bfc4 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2657d92b vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26673c0d dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x266a49d1 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x268a0b6c fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26aa29b9 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c72a21 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d57fdc regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x26e87dcb devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27036c3c skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2720b031 pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x27234b0f ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x27400030 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x274fb9e5 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x27582631 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x276e1c28 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x277b92bd gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2788ac0c bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x27897ad5 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x278e9df0 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x2793b0d1 mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0x27b011cd skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x27d58be0 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x27d670de da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27dea83d cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x27e9ff31 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x27ec546f xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2806ba98 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x2818ecb6 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x2821b88e i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2834122b dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x28369527 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x2838947c pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x283eb7df trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x283f88a1 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x28478bbf mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x285b2eb3 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x286f1be8 pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x2877c85c serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x28783f67 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2882e34d gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x288dfe38 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x289c7a9e usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x28a234c6 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x28a4e697 tegra210_clk_emc_attach +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 0x28b26ace transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x28bbe0c1 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x28c420c7 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x28cd1d8c kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x28d277b1 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x290b0752 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x291f6f1e usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x292834f5 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x292d5459 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x29323883 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x295da5f0 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x296682b0 zynqmp_pm_get_rpu_mode +EXPORT_SYMBOL_GPL vmlinux 0x296a2a4e gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x296b80f2 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x297c48ac inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2983a5f4 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x298e63fc inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x299753ae dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x299f86a9 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x29ac100a __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x29b4a4e9 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x29be2ca8 k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29c15f76 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x29c7ea03 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x29c9a918 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x29d03de8 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x29d6937b regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29dfad00 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x29e7a5d0 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fc3e00 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x29fd0ce0 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x2a13deb2 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms +EXPORT_SYMBOL_GPL vmlinux 0x2a341266 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x2a4a3863 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x2a4a9d0b blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x2a549d58 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a67f974 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2a693f2e __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a7dc307 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x2a833507 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x2a8342dd extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x2a8608f1 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x2a8828ff pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x2a8a4e6e crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2aac5504 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ac8678b devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x2acf7804 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2ae62945 dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0x2ae64dfd sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x2ae80c49 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x2af2e5bb crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2af45b81 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x2afb8588 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x2afb92ec rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2b0b9550 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b2d92b3 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4f01a3 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x2b548de4 rtc_update_irq +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 0x2b7af35c acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x2b80f2d5 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read +EXPORT_SYMBOL_GPL vmlinux 0x2b93d4aa bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x2b95df32 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2bb081be device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2bc83c78 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x2bcff621 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bdeb4ce devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2be4eed5 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2bf15dbd debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c25f6f4 component_del +EXPORT_SYMBOL_GPL vmlinux 0x2c2adbd6 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c63c4c9 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6a462c kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2c6ec1eb regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c80fc65 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x2c8dbfac devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL vmlinux 0x2c93825f kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9f7d24 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x2ca5133c inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x2ca739c1 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x2ca7d2d9 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x2cb84b0c gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2cfc5b71 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x2d00ac5d cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d25dd22 dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d2847e6 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d31a345 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x2d406852 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x2d406eeb ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d5bed6b lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x2d5f6704 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d669356 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x2d68ea17 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x2d734455 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x2d734a75 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x2d7895a8 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x2d79f62e rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x2d7da5db of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x2d7fd116 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x2d951b0a pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x2dabf214 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dbed7f6 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x2dc0f833 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x2dc5e347 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x2dccc0dc pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x2dd01e3b __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x2dd0dfe7 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x2dd57d95 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2de76864 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x2de96c3a dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x2df62f82 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2df9d4b4 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e07e292 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e08dc07 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2be460 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x2e337ed4 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x2e3b90bf acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2e50a077 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x2e5c5d61 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x2e5e9b7a devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e73e328 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x2e76988a spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x2e778fc9 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL vmlinux 0x2e81d5c2 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2e8746db crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x2e92cec2 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x2e9ab7c3 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2eab66aa __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec7ee24 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x2ecf50ca ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2edeaa02 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2ee711fa mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2efbf2ee io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x2f0d7bcd cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0dbfb9 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x2f10fcc6 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x2f12a63f blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x2f1bf829 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f269a1a vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x2f281b38 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x2f285b53 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f40ce45 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f61c6e0 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x2f624aeb spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f6a09aa led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f6adbd8 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x2f738565 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x2f755cb0 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x2f79392c pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x2f7d6629 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x2f800f5f skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x2f8f7bea kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x2f98398b dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x2f9ecf5e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2faf65e6 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc4a539 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x2fcd3af9 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x2fd08350 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x2fdc76e5 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2fe397a8 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2fe50c25 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x3026723f trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x3028e6f9 stmpe_dev_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x306baea7 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x306db2de __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x306ea546 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x307377dd trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x3083db6a dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x30901ad1 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x30ab2865 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x30b09d52 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x30c5fb38 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x30c828c2 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x30d2a8c2 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30eb46f9 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x30ef99c6 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x30f15d56 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3109f59d fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31175e50 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x312581c8 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313d44da __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x31740123 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x3175ef3c scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x31798542 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x317fd2ba devm_mbox_controller_register +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 0x3188158d phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x318af138 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a0a01a devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31ae551e fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x31b2127e dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x31b32ff1 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31bcbf6e get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31d3a10e __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x31f73de3 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x320139e8 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x320a9a01 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x32163da3 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x321e4a22 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x32280244 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config +EXPORT_SYMBOL_GPL vmlinux 0x322cb5c9 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x3230403e i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x323ded34 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x324ba038 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x325d02ea usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x326103b2 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3262b769 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x32640761 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x32687601 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x3275943a of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x327c73e6 __SCK__tp_func_rwmmio_read +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x3291f192 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x32a2ed08 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x32a4dfa6 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b77268 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32e3cedd __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3306ff30 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x3317315f usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x3324524b get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x332b6c91 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x333d71d0 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x33465f5f trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x33533cea vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x3355251f pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336a720d security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x336e789b pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x338154bd sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x33ac1a4b ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x33acb4a7 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x33bfd8a2 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x33c85cdd rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x33c9a3ef __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x33e25176 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x33f9023f of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x3405b847 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x3423ee36 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x342badcf cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x342d7d5a scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34337c38 devm_pci_epc_destroy +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 0x34530759 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x345df6d7 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x3469e063 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x3488a2d7 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x348bbe34 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x3494fa02 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x34969cf8 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x34b69dbd usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x34b71440 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x34c1a858 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x34c5c317 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x34c8f043 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x34ca1e1b ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x34d1f6e9 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x34d86506 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x34ddb3c1 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x34e4429a i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x34e6eb0a inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x34e8d8db kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34f4a5ef platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x34ffa1ba rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x35029bc4 iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x350ceed8 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x350eb061 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3516fad9 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x35193b9c __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x352afe03 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3545e348 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x3561db83 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x3561f422 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x356e83a0 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x357a0d15 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x35843cf7 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x35862ed5 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x35869fcb pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x358709bd tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x358f2fb6 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider +EXPORT_SYMBOL_GPL vmlinux 0x35a868a6 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x35b3818a devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35b58385 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x35c4cf1d dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x35c8e46c synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x35d3c8b0 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d3e620 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x35eb47f8 mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x360a0f14 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x361f6697 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362eb822 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x363399af class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x36362b4b pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3642ca30 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x365e97d2 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x36666c91 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x3676e4d8 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x367e5bc8 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x3696346d devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x3698469a tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x369c7065 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36c23f83 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash +EXPORT_SYMBOL_GPL vmlinux 0x36ed3528 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x36fadacd i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x3711bc7a of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x371c6250 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x372a0407 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x372dafd3 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x373ba5f0 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x373dea16 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x37490989 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x37601d7f ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x37657022 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x37672e69 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x37681b57 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0x376e7453 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x376ed56e usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x37732732 spi_bus_lock +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 0x37838512 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37916b64 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x37a4bc6e ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x37a84887 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x37b78381 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37bbded0 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c08634 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x37cd7185 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x37f5b8b2 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x37fa87d5 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x37ffe9d5 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x3800d2fc pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3802ffe0 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x380757d5 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x380928f6 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x380b2d30 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x380f631c serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3821a80e gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3836d2da bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383772b4 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x383d7f3a zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x38446261 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x3845c8c5 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x3858ca77 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3870882c mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38750306 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0x387b8a94 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x387d3dc2 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x3886aac7 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x3893d327 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x389e2552 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x38a2a18b tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38aff0ac crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x38b4d162 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x38b67aba platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x38ba72b8 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x38bb23d3 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c87049 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x38cb2922 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x38e1e7fb gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5a01f blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e9e7c6 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x38ec22ed ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x38f09bab msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x38f27c75 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x39271ccb tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x39334008 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x394f84ba platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x395da028 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x395fde6f dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x396ca02d irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x397d1ef5 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x398180c6 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3981d469 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x398743d6 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39a9612b debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39ad1149 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e5bf2b generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x39fb689d regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a080ec8 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x3a15d554 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a32e7c6 acpi_dev_gpio_irq_wake_get_by +EXPORT_SYMBOL_GPL vmlinux 0x3a36b187 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3a3b65c3 xfrm_output_resume +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 0x3a58c7a7 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3a5cc6c8 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3a62b5c6 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3a69f046 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a702fa8 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x3a72d227 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a780031 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x3a7c0cc6 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x3a7d86c1 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x3a9948ef fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aac49c7 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x3ab2bbd7 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x3aba10a8 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x3abbe829 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad075ef kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x3afa49b8 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x3afb5e1b sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b27f907 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x3b3202de pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b423eb8 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b65707d phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0x3b69602c usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b84136c gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x3b8c7e1d ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x3b948e1e input_class +EXPORT_SYMBOL_GPL vmlinux 0x3b9ca7d7 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba9db0c rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x3bb3da73 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x3bbc10f1 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x3bc20450 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3bdcd1da __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x3bf0a626 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf2129f pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x3bff4d40 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x3c0d0deb pci_doe_submit_task +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c0f97f2 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c1a4963 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c27dfd3 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3ba859 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c4569d8 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3c460075 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3c51789f ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x3c54931f mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x3c5a6ebb bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c60df09 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x3c854b89 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x3c93027a fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x3ca6e54f devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3cac6ac8 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x3cb03a4d of_regulator_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x3cb20143 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x3cb63df1 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x3cb87c38 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x3cc86b4b power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x3cc9ec3e spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent +EXPORT_SYMBOL_GPL vmlinux 0x3cce54d6 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd97c84 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3cfe854b devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x3d1c0e17 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x3d2822d4 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x3d342eea dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x3d373bc1 i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0x3d377df4 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d45d023 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d4e7ac4 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d73aca0 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x3d83e0ff trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d877b84 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d99a3a9 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3d9af123 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3d9e2da4 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x3d9fb239 led_put +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3daeebe5 psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x3dc32080 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df022a5 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x3df53b12 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x3e0795df sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x3e1a702f pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x3e22d3bb powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x3e352b26 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x3e6982ee pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule +EXPORT_SYMBOL_GPL vmlinux 0x3e7cc56d ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ebb44ac irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x3ec35e3a usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x3ec782df mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x3eca619b generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x3ed9b44b cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef06b4b bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3ef55094 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x3ef61665 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3efbeb79 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x3f049829 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x3f085c5e md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x3f152713 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3f1b44da mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f39fdd0 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x3f3a174a phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f60d539 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x3f63dd92 imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3f662d68 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8e6ce9 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x3f8ea54e mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x3faaba83 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fc0a7d8 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3fc7a051 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x3fd2089a generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x3fe227fe ahci_platform_disable_resources +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 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4005b4cd blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4022c079 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x40282249 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x4029f3aa pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4035a4b4 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4036fa77 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x403f2b61 scsi_target_unblock +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 0x40513698 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x40594f13 clean_acked_data_disable +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 0x40954cba check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40bda9c2 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x40c91251 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x40efc5c9 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x40f028b3 zynqmp_pm_set_rpu_mode +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 0x4106b055 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4119d71e wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4135193b ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x417b2b37 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x417c69c0 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41831ee8 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41908da1 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x41951d8c dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a4b446 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x41abe519 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x41b0f3d4 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x41b1dc59 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41ba8721 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41be7ed1 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x41c23cf1 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x41c7106e ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x41e79900 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f31fe0 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x41f3e74f crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x41f44bc4 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x41f9186a dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x41fc012e __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x41fef1b0 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420a4abb of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x420c5115 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x420d009a iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4215c753 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x4223b577 mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x4224ec94 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x422cfdb8 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x423bb60e power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x425d02de usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x4262ed01 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x42650ed6 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x427797de sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x427be123 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428402ac fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x428602e3 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42a43fcd hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x42ae883f crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42e4edcd rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x42f68d23 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x42f69565 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42f7af7d of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x430bcfdc nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x43135728 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x43241894 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x432c2f98 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x43589621 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x436fd6c0 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x43712e73 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43a4fd1a iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x43a7cc0c badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43b5ced9 mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x43bdf91c device_del +EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear +EXPORT_SYMBOL_GPL vmlinux 0x43d00865 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x43d1c3da xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x43e5fc19 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x43f5e4cf fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43faafbe crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x44096059 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x440bffa5 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x4413f461 zynqmp_pm_request_wake +EXPORT_SYMBOL_GPL vmlinux 0x44153e76 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4422ac24 zynqmp_pm_set_tapdelay_bypass +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445ee156 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x445f7b4d task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x446dfa90 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x447a516d wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x447d4ef6 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c63747 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d1451e blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x44de2f02 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44eedcfc acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x44fbf8ad sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450a6059 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x4527325f phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x452a9868 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x452caa34 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x453b2b40 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x453ca753 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x45470065 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x454bfea1 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x454f6b2c evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x45505a7e mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4555f057 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x4560b488 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457ad296 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x458384dd ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x458f5e09 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x45906811 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x459a2b23 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x459c8196 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45be5661 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x45d80077 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x45ddde38 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x45e5fe85 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x45ebc0e8 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x45f45ae0 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0x45fda61c gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x46049e21 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x46127738 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries +EXPORT_SYMBOL_GPL vmlinux 0x464117ec crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x4642605c phy_init +EXPORT_SYMBOL_GPL vmlinux 0x464d7193 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x46539b40 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x465631cd bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x46582fe4 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x46614a0a dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x46706884 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4684792b show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46b0960d pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x46de8acf shake_page +EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap +EXPORT_SYMBOL_GPL vmlinux 0x46ef4b74 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x46fc2462 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x46fc7714 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x470abd80 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x4716757f io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4717013d vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x473aabef tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x474bf7a9 device_register +EXPORT_SYMBOL_GPL vmlinux 0x474d8732 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x4752546d inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x4758523b irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x475fc580 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47650b66 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a06f15 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x47a551f7 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x47aa83b7 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47ca44e9 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d10559 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x47db0f99 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47ed8d38 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x47ef6e33 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x47f67346 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x47fcaf9e regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x48054a33 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x480dec0b xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x481efbc7 mbox_client_peek_data +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 0x4839dd0d pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x483a4dfe dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x4842bf0b tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x485d8503 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4863e874 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x48645553 usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x486863b4 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x486f39ff thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x4875a4ff bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x487dece6 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x488bc1d8 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x489436bc watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x489e25f3 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a7c0c6 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48cfe2ef pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x48d2f222 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x48ec1ca6 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x48ef797e sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x48f74786 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x492ebe26 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x49316239 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x49343782 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x494f9179 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x4959f12c tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x495b9c4b pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4976d3c7 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x49813be0 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x4986ec33 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x498dc414 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49999d89 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x49a56b9b shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x49ba0fec regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49e0219b ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49eb070a da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x49f0d5c9 usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0x49f94d23 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x49fd1975 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x4a05425f rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x4a05e7b1 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x4a07c691 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x4a0a0d28 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x4a0d276e usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x4a0ff66d pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4a145a0f regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a194166 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x4a2577a9 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x4a3f7485 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4d5be8 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x4a642438 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x4a703392 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x4a7d6a8a devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x4a922cd8 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x4ac0be8b irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x4ad73e95 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4ad8ceff mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x4ae7972d __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x4b00a9fb dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x4b30b934 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x4b45e99e power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x4b50920f devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x4b551c47 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b67be82 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x4b6b22f5 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x4b766fc9 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4b7e204e event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4b9577da ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x4b97564a dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x4ba8ecdf devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x4bbfab60 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bcb63da vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bda4bd1 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be64845 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x4bf80c8b elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c11100a of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x4c235a4e usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x4c2681b6 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x4c2a6678 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c378dc8 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x4c42c3c4 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x4c48a5df wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x4c511d6f dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c562e43 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x4c57f95d inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4c591f8c dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x4c604a33 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4c72db70 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x4c7f8fca dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c8e0525 ahci_platform_find_clk +EXPORT_SYMBOL_GPL vmlinux 0x4c915995 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x4c9dcff4 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4cafe23f xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x4cb079c4 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb558ed regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cc321cf pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x4cc3a40f irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x4cd301ca device_add +EXPORT_SYMBOL_GPL vmlinux 0x4ce0ce09 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x4ceab956 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4ceb7800 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x4cfbeadf clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x4cfeb47e xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d027582 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x4d03db72 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x4d03e5af __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4d076924 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x4d080177 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x4d15f3b0 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x4d275819 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x4d353342 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x4d36c70a regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d401d6b iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x4d4597ff regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x4d48df36 tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x4d607ec3 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x4d611e57 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x4d61b9a2 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4d61c1fd sdio_set_host_pm_flags +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 0x4d8e73ab mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x4d91215a led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4da4aceb power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dbbfda8 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x4dbc8944 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x4dbe9803 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x4dd49cff sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x4ddf8e95 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e058397 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x4e114d3d mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x4e16a93a blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e1f5676 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x4e26503a bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x4e2f3c90 mtk_mutex_enable_by_cmdq +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd6e3 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e5dbbd2 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x4e5fc9c4 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e7046a8 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x4e73398e regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e7de97a spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x4e7eb909 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4eb563fa pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x4eba4cf1 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x4ebfd343 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ede85da mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0x4ee709f1 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x4eed85d5 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x4ef22418 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4efded14 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x4f084b92 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x4f116132 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x4f1350f4 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f2dc428 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x4f380771 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x4f52a6c0 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x4f58f093 pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0x4f62fe9b tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7c45e7 mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f825ec9 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4f8f0698 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4f97eee6 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f990bbb tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x4fa27f36 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x4fa4c226 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax +EXPORT_SYMBOL_GPL vmlinux 0x4fc10976 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x4fc25d36 phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff3286f debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x500077f4 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5019a30d cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x501c8e64 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x5034193c tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x50395c6f crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x50511e86 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x5057d2b0 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x505bb0a6 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5061e8c3 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x5063c533 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x5066d578 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x506f1adf debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x50754dc2 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x507cc4f3 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x50809c7e device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x508e1479 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5094baf0 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x50aa48e4 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x50afa035 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x50beed89 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x50c1b647 rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0x50c7f9cf spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x50ccd755 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x50da5a70 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e13b54 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e9f707 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x50ea98c2 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x50eafdbf rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510d3ff7 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x5110bfe5 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x512997cb fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x513080f7 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x5137e319 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5147c6ff ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x514f7e38 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5160e509 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x5174190b nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x517bdedb tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x51816aa3 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x5181b0fc usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518d7435 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a5721a pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x51ab8621 md_run +EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x51b274a8 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x51bd20b4 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51c6d202 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51d70990 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x51de17c6 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x5202bd21 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x5204e710 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x52050954 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x520994b3 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x5221aa43 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x52221bb8 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522917d1 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x522bc83e fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x5244c7b6 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x52460ece ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x525f3c11 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5263ee9d clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x527d3818 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x528052fc attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x5295ffce of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x52a01a66 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x52a0c922 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x52a3b625 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL vmlinux 0x52acddfd event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b2a098 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c693cd nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52dbeb01 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x52e02c40 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x52f20fe7 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x530bd72a usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x531d3205 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x532b788c srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x5334b466 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0x533662f8 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x5357eb8f rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x5387fdb6 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5391797a pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x53a0ff25 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x53a45907 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x53a6e77f handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x53b2b37b thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x53b8ced9 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53da7a6b vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x53e1e21c dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x53eae5ad __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x53f860b4 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x53fc4a71 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x54176f7e gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542199d3 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x54338a67 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x545ee7dd rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x5462e8bc usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x54784556 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x54814e17 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54add911 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x54b96e3a tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x54bfef0c cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x54e0129e ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x54e2644f crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x54e75e22 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x54e78b6b inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x54efbf21 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x54f88877 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x55039a19 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x552e39c2 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55355ed9 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553b5c3c gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55417f6d crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x5550809d sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x555355d2 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x5563a9f1 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5573042d of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55860362 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x55a6b7fe devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x55ac9352 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x55b7464f ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x55b781e8 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x55b9bd13 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55c1fa18 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55d91921 alloc_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x55dba3c1 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x55e5e868 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x55ebf81a devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561a9802 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562b017f samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x562ed25c regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564f0697 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x56506179 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x5652b04e wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x565716e8 dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0x566e724f relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x56750213 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x56791c12 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x567d0805 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x56b26a0a __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56eb3330 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x56f5f7ca rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5706718d nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x572a477d fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x572e9672 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x572ee4ac devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x574138dd device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x5743c930 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x5761d767 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x576a3eb4 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x5782b195 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579b7694 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a525d3 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x57b37dc0 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x57b88b82 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x57bf93f5 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x57ce69d5 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x57d2b441 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase +EXPORT_SYMBOL_GPL vmlinux 0x57ddcec9 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x57dfe130 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x57ea2a62 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x57eaf0ab memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x57ef0b9a crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57fa37a4 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x581d325f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x5826728f usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause +EXPORT_SYMBOL_GPL vmlinux 0x582debc0 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x58559e6f extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x5864a0b3 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x58a78e97 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x58aa8cb9 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x58adcee9 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x58d7fc9f vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x58daf07c devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58df1e48 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x58fa50c0 __traceiter_rwmmio_write +EXPORT_SYMBOL_GPL vmlinux 0x58fd31b3 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x5900e9af devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x59055ce8 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x5913cbbb regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x592744fa ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x592f545b rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5933667a fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x5933cd09 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x594b0bb6 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x594d328a devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0x59526602 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index +EXPORT_SYMBOL_GPL vmlinux 0x595f132f fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x59632aee pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598f4fa5 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x599b812e device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x59a12425 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x59a14989 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b5f0ee device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x59bb167d __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59d4e52b pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59ea98fd usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str +EXPORT_SYMBOL_GPL vmlinux 0x59f02f50 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x59fd67cd __class_register +EXPORT_SYMBOL_GPL vmlinux 0x5a05dcf7 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x5a0a9c9a pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x5a0c5285 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x5a0d155c mddev_init_writes_pending +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 0x5a2101b3 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x5a34615e ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x5a3ab959 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a5378e8 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a6d16e1 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5a6de829 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8780d5 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x5a8b02ae platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab3a400 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x5acceee8 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x5acd671c __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5ad6f8f9 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x5aefe96b sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x5af85a66 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5b0786f7 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5b0c5826 mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x5b1c4972 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2967a2 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x5b31853c uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x5b44d036 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x5b4546fa iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x5b4cc7e4 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5b5f5cb1 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x5b635064 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b70d233 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x5b8e4c84 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5b9f03c1 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x5ba53a3e driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ba550f4 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bafce74 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x5bc5fd36 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bcba29c ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bce4c7f of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd4499a acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x5bd72585 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be78883 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5bea536a dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x5bfb73ae aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5bff92a1 device_move +EXPORT_SYMBOL_GPL vmlinux 0x5c0238fe of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str +EXPORT_SYMBOL_GPL vmlinux 0x5c07ceff devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x5c0d5774 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c24aa11 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x5c2ccabf ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c3939be fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c41be06 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x5c47aefa of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x5c532a7f kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5c550d34 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x5c5881d0 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c722534 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x5c7c6481 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c857e15 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb0440f rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x5cb45150 mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x5cba4619 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x5cc57fd2 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x5cc6d9cb cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x5cdfd8a4 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x5d0f590b pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d2c2797 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x5d2c3619 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x5d3979a6 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x5d615cda crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d8eb301 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dba346f unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x5dbc3a92 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL vmlinux 0x5dc39d07 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x5dcac383 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x5de06d63 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5de5f275 ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5df64e89 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x5e00f9a6 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x5e1527c2 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1e5e25 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5e282008 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5e2a4ba2 PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x5e2d4981 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e6d5160 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x5e75a9d1 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e79f4f6 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5e7e59d1 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e8a1d1d dev_pm_opp_is_turbo +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 0x5eb593b0 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ec77f0d set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x5ec86e3a fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x5ed14f0e device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5ed4b22f usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x5ee07d2e acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5ee7ce18 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x5ef379ed bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5f1b5eae alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x5f1f9628 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x5f227fa5 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f478fac pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x5f54f693 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x5f562546 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x5f5a38a7 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x5f5ab22f clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x5f604817 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f6f6762 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5f733568 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb42ad6 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fc0ee9e d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x5fc5c102 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x5fcce390 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x5fd4e6b4 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fe9e823 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5ffb5d0b fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600c55e1 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x6016e4b6 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x603d9b00 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x603f65dd crypto_shash_update +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 0x605fdca8 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x607100e1 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6085e90e i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x608cf627 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a1a0a9 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +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 0x613e81a1 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x6152e88c __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x61676cb3 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x616f47ff __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x617c4460 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6194121a sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x61972587 ipv6_proxy_select_ident +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 0x619e8189 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x619ec049 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x61a2907b gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x61aeae40 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x61aee190 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x61bcfd76 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0x61c65257 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x61cf112a i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x61d0dff1 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x61d1529a tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x61d22599 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x61d3fbcd n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x61db7cda gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL vmlinux 0x6211523f gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x621491c7 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x622bf3b7 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6238f433 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x623ae0a9 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x62402093 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624821e2 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x62517eec pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x626ad182 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x6276446c devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x628ced85 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x62aa5ff2 mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x62afe278 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x62b5cbfb nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c07cb4 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x62c65e83 vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x62daf523 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x6311859e xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x63220e83 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x63309d62 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x6334f6bd dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x633ead88 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x6342bcd2 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x636ab182 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x6386c0ac rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x638a0bfc dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x638a21b9 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x63a35242 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x63a396c3 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x63aa4a0d thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63cc3ea1 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x63d221f7 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x63d27957 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f10c24 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x63f993f4 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x64005703 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x6414c31c extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x641c7e89 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x641e7cd7 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x641fa510 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x642fa45b regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x643a5415 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate +EXPORT_SYMBOL_GPL vmlinux 0x64584b24 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6479d1d3 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x648c3a10 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x6499911c rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x649a5ffb gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x64a1a5ce phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64dc5a0c mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64eaaef9 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x64edfd16 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x64f00843 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f562b2 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x6502a69c crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x650c1513 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x6519c922 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x652d4323 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x65413958 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x654e18b5 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain +EXPORT_SYMBOL_GPL vmlinux 0x6565251c pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x65664082 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x65671de8 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x6568cef6 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6571bbf7 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x6587f2d0 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65c66b8f unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65dac163 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x65df752c irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x66157ac5 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x66158cdc dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662996cb kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663a0f49 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6647aa64 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x6648db98 __SCK__tp_func_rwmmio_post_read +EXPORT_SYMBOL_GPL vmlinux 0x664ea501 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x66514f32 fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x665ef6cd pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x66641df2 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x666ff6dc do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x66798f5e ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x667bbdc4 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x667f33d3 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x66804236 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668abc03 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x66990840 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x669b3b9a crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x66a198ec perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x66a773ad fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bf3ca6 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x66cb162d k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x66d0f606 devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dbbb4c spi_async +EXPORT_SYMBOL_GPL vmlinux 0x66e731fc devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x66e8b5b0 phylink_caps_to_linkmodes +EXPORT_SYMBOL_GPL vmlinux 0x66eb3b3f metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x66fe397b pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x67001c17 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices +EXPORT_SYMBOL_GPL vmlinux 0x6713200a cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x67195ff1 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x672517b0 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x67398100 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x6751200c scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x67640194 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x6764ddd8 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6766f206 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x6770c37e debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x677b7c7c ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add +EXPORT_SYMBOL_GPL vmlinux 0x67861f71 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x6788e832 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x678c9eea devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x67912480 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x6793c020 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6798b015 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x67c888b3 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67e53aa6 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x67e8e435 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x67fce310 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x6802e38b dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6804ee2e regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x680f7510 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x68183d63 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683da9b9 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x68494338 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x684ea889 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x68514486 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x6861ec54 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6887bbae fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x6888b9ed xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x688d95a2 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68985efd devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x68a1590d scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x68a5e509 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x68a881de dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x68bde11e __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x691dc0eb wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x692671be xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x69282837 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x6933707e irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x693707db usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x693f9929 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6950237e tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x695ef30a clk_hw_set_rate_range +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 0x6971ee90 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x6975840a xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69820133 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x698edfc3 zynqmp_pm_set_gem_config +EXPORT_SYMBOL_GPL vmlinux 0x6992e706 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x69932e37 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x69b3b6d2 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x69b94ae2 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x69bd17ae pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x69c27e5d blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69e2d356 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e755a8 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69eff4c9 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x69fe1e33 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a0784fb hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x6a0ef012 tegra_mc_get_emem_device_count +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 0x6a4ca398 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x6a4e4b4c dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5523ab clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x6a57b5b7 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a6dd607 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x6a766fb1 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6a78f83c transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6a79d955 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8b54d1 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function +EXPORT_SYMBOL_GPL vmlinux 0x6a956eee rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x6aa21cd0 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aaa5974 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab8b3e5 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x6ab9768e __class_create +EXPORT_SYMBOL_GPL vmlinux 0x6abec972 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x6ac3869f pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x6add779f rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x6ae50e32 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x6aeb9d42 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x6af984f0 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6afcd2bc crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b1161f6 of_thermal_get_trip_points +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 0x6b6b9047 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x6b722180 log_read_mmio +EXPORT_SYMBOL_GPL vmlinux 0x6b72a26d blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x6b77c993 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b7f576a crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x6b88f414 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x6b9dd007 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x6ba329ec pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x6ba339a0 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba691f2 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x6bb278c4 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6bb5ff5b blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bcbf363 handle_untracked_irq +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 0x6be659e5 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3a3aa5 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4ac0cf key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c526732 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c6148d0 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c6c705b fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x6c721653 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x6c81bf38 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x6c87bc6d __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c98d02a skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cad842b platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x6cb0098c irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x6cb290c8 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x6cbe2f92 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6cef5236 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x6cf4693a tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x6cfe3fa0 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d09b4cc __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d0b84d1 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x6d15358d power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x6d16b294 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x6d1a470a generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x6d20a0b5 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x6d21913e ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x6d25433b __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d32ed57 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x6d366af6 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d4e44af vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x6d5a867e led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x6d602f32 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6d634eb3 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7abfcb blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d89764e of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x6dadef61 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dca8660 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x6dd3a7a9 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6de002b5 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x6de66ad5 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x6de942f0 kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0x6e085162 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e109f8b phylink_create +EXPORT_SYMBOL_GPL vmlinux 0x6e14c5be __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x6e152aeb devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x6e2ed83a __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e342979 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e4b36c5 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x6e4b65b2 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x6e51a7ac md_start +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e83b0b7 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x6ea52bde splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ebd7828 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ebfe184 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0x6ecc57c4 dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x6ece90cd tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x6ed57cf0 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6eeda2d9 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x6ef616f0 disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f16e59e encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x6f1daf05 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f22470f dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x6f42387a trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x6f57b6d2 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x6f655ec2 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f77851a sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6f7bcab5 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f81b536 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x6f929571 blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa05407 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fc53331 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x6fcb8ccb sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fcefd7c clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x6fd16275 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x6fd86fe5 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff81425 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x70142b06 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x701d0ab6 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x702ba2ce do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x7039273a wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x703d241d sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x70423efb zynqmp_pm_set_sd_config +EXPORT_SYMBOL_GPL vmlinux 0x704bd885 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x704cb2a0 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x70650430 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x707fe8dc pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x708fa4c7 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7096680c devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x7098e936 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x709f1a8b proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x70a9701a regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x70b04500 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x70c1aa09 user_read +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c36cee perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c5bf05 iov_iter_get_pages_alloc +EXPORT_SYMBOL_GPL vmlinux 0x70c820e6 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70ddac7e gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x70e28557 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x70ee3cac sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x70f64797 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x71014464 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x71073933 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710d8262 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7111b4da __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x7113aeb2 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x711d7bce clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7120c3f8 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712b683d devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x714ada71 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x715c7824 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716313c7 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x7168e1ee nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x717528dc sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x717db71b skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x719462f1 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x719821fb is_virtio_device +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 0x71aa67f1 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71c45563 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x71e1a2c6 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x71e55e13 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x71e99a8d acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x71ee050c dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x71f1be0b power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x71fd3a1f mtk_clk_simple_remove +EXPORT_SYMBOL_GPL vmlinux 0x7209370e ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x72454906 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x72633e65 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72735c30 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7281c462 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x728b5b01 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x72941411 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x72a09eea ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x72a19a56 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72c088ea udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x72c3bfd0 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x72d07d89 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72da2431 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x72e584d6 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x72eb7a20 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x72f6fe8b dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x72fcb381 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x730a8f5c pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x7322b64e debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x7334a8f3 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x73456992 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7354ff28 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x73585365 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x7367014c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x73697c3e i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x73804785 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738de763 imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0x73917445 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x73a3ce5c md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x73a46352 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c601fc switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73decd33 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x73e79b76 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0x741c5b68 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x741f4d4f skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x742378fc devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x74385a0d sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7469d76a acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x747361b7 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74aaea80 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c5ec25 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area +EXPORT_SYMBOL_GPL vmlinux 0x74d93675 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x74d9b889 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74f44afc of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x74f58919 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x75016f75 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752975d6 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7534596b mtk_mutex_write_sof +EXPORT_SYMBOL_GPL vmlinux 0x754208e4 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7545fcdd scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x754c930a devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x7551d271 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x7575606a usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x7579c0dc locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num +EXPORT_SYMBOL_GPL vmlinux 0x758e7161 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759a2b1d mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x759cfaf8 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x75baa3b5 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x75bb2943 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x75db526a switchdev_handle_port_obj_add +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 0x75f32a09 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x75f9839e ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x75fb976e debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x76181554 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x761dadc9 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x761eaf86 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x76383c1d amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x76444f01 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x764db041 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub +EXPORT_SYMBOL_GPL vmlinux 0x765b4b6a proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7670e738 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7685da82 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a61e85 __SCK__tp_func_rwmmio_write +EXPORT_SYMBOL_GPL vmlinux 0x76b10966 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x76b3099d blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x76b70808 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 +EXPORT_SYMBOL_GPL vmlinux 0x76d31e20 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x76d56586 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76eb4dad __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x771cf0e9 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +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 0x77633ffe shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7775607b __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x7777e1bd device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x7788728f adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x778ab384 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x7794c76d i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x779816b2 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x7799db2f pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x77a8a734 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b6c35a fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x77c63729 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x77ca89b6 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x77ca9f0f skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x77cec69c dev_attr_em_message_type +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 0x77f89c7f usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x77f923d6 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x7822a593 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7838239d devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x78449a2a synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x784b7f17 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786cbc6f arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0x7875ee3c gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x78774d22 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78934ec4 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x789b3f2e efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78adc0f2 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x78b1e6cc fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x78c912b8 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x78d152dd serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x78dc7d3d debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78dfd470 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x78e11f0d of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x78ee0f95 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x78f91bb2 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x79083e4e inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x791998ce io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x79257161 devm_gpiod_get_array +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 0x79406e17 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x7948d5d0 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794f2f27 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0x7952f854 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x795da872 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x799f8c8f fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x79a231d9 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79a2d8df icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x79b6da88 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c78c4b start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x79d034eb extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x79d3858c gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x79d4a1a7 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f1d6a5 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a1dc56c kick_process +EXPORT_SYMBOL_GPL vmlinux 0x7a20528b pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x7a2556f4 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x7a31f3ca ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x7a3d5dbf strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a64ceac phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a79b4a6 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a858710 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x7a8a55c7 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aabebed ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7ab2c0d5 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac5a427 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acbc2dd thermal_zone_device_update +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 0x7ad364ba devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x7ada4dd5 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7adb0648 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7ae4534e crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x7ae4aed4 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7ae9d4bd i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x7aeb2d74 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7af145a8 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b04523b gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x7b136681 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7b1e0ee8 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x7b211902 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x7b24da75 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7b293880 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x7b315ed5 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b318305 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7b38489f gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x7b489b2d smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7b4a9fff of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7b4c0d8a __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b654bd9 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b6fbccb mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7b70691e genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7b8140d7 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b91558c debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x7b94b79c device_rename +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb259e8 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x7bc1a295 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x7bc65f46 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7bd15b39 nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x7be05c3a devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x7be7c216 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x7bea3d51 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7bec70b2 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7bf4ebbd gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x7bff1132 __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0x7c1dc142 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x7c204167 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7c20f2d7 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2b9bff __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c5db379 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c8c1dc9 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7c979ab5 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9f67d2 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x7ca0d014 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb4feb4 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7cd987cf screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x7ce393b3 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cfc7fab edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d02b412 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x7d199a61 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d1ee54a sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x7d375a57 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x7d38e157 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d4c80eb i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7d4eed71 k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x7d4f70b1 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x7d5093c6 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7d54da34 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d666648 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x7d6722a2 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x7d69d7a6 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7d6b7ad8 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x7d7481f4 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x7d7820df account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7daca4dd clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x7db1bac8 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x7dba25e5 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x7dc2739f fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x7dcf865e add_disk_randomness +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 0x7de7b3b6 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x7df2e922 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x7dfbe813 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7dfbf99b usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x7e2d3d19 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x7e34b626 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e4b3f04 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x7e5302cd usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6a9118 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7b2749 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e7fe855 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e99519f pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x7ea39a61 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec99548 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x7ee9c6ee fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x7eea6796 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f18663b ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7f1d146b md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7f261138 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x7f2c19a6 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x7f2fa451 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x7f32123f linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x7f3b3ed6 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x7f3e15bb meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7f4b6414 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7f6c8319 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f7a6ebe dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f9464d8 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x7f98cb10 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x7f9a505e mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7f9fe531 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fb1fdd7 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fc09c2d max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7fcb61bc debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fe16afa ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7fe71d92 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7feac8d4 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail +EXPORT_SYMBOL_GPL vmlinux 0x801e55ec __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x8022b968 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x80291c95 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x802c2251 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x805950a0 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x805cd689 irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x806f0f3f crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x807127c8 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x80743f0c devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807e2813 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x8091d128 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x809324a6 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x80946d30 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x80955353 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x809cef46 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x80a18b7d badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x80a34b0d of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x80a603a5 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x80a93aeb bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x80b7563e __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c43453 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x80c4c041 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c92c72 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x80cf4db9 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80de77ec kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x80ead686 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x80eae7d9 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0x80f7b0e6 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x80f8601f __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x81019db6 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x810d0f27 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x810d116a sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x811decd2 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x81354162 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x81378f51 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x813b2d90 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815a429f gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x815bd648 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816171ee meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x817a1763 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x817b6d1a xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81888b58 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81a87319 tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine +EXPORT_SYMBOL_GPL vmlinux 0x81aae404 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x81bafa1e ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x81c6916b call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x81c8ea64 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x81ca1c45 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x81cd94d9 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81f02198 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x82031ded of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820c8fb4 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8252ff4c mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x82827eb2 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x8286a2c3 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x828abe9e nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x8295e9c9 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x829e9309 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82c0c73c tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x82c5851e __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e11176 dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x82ebbe79 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x82f2aa81 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x82f4bfdf __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x82ffc280 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x831485e8 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x8327f4f1 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x832d956d skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x834026cf irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8367a1c9 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x8377b16f usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x83934a82 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8394715c gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x83965960 mtk_devm_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x83bc393d blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x83bd0569 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x83c26599 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x83c7f688 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x83d03f73 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x83d8fc1c fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x83ee239f iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x83efae39 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x83fb20f5 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x83fdb416 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x8400eeb1 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x840aece1 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8418b668 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x8429e03e get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x842d106a tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x84391ef6 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x843a2aa1 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8444f56c dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x8461bc15 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84645e7a fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x84750510 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x8481e3b5 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x848adb76 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x84a4b348 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84adfa3c dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x84ae7d04 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x84d64293 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x84dc473d nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x84e3b895 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f297de usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x8501acd0 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8510544b regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8536a09a ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x854f4981 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x8551cf0b locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x8557b88d netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x8567adea edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x859b1ff6 phylink_validate_mask_caps +EXPORT_SYMBOL_GPL vmlinux 0x85a04b21 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x85ab3674 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x85bb9c2c virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x85bcafa9 rockchip_register_softrst_lut +EXPORT_SYMBOL_GPL vmlinux 0x85dfb8f9 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x85e08fa4 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x85ebda87 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85fff5bd kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x86110f13 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x861fa4be devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x864187f2 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x864f9f9b of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x86563628 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8668d0b2 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8685c127 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x869c249b rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x869f2b42 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x86abbc68 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x86abdf6f iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x86ad9e19 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86b2a73d shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86da6349 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x86dd7280 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x86de8dff ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x86df4715 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f85548 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x8703ee73 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x87060517 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871a5daa devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x872388b7 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store +EXPORT_SYMBOL_GPL vmlinux 0x874f79e5 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x877fa0a4 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x87862337 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x879e35eb devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x87c3777b devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x87c7963c acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x87d9935b component_add +EXPORT_SYMBOL_GPL vmlinux 0x8820df54 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8834cb78 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x883b2e45 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x8840bf0d sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x88484b71 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x884d6d77 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x884f717f bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x8867fce3 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x886cb828 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x8882430c virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b88e48 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x88c4287f lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x88c70ca1 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88d375e0 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x88db8153 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x88e2ac27 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x89038288 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x890699fa icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x891a10ce ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891a6e88 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89274bb3 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x892a0fa6 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x89310508 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x8931097a ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x89340fee dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x8934d876 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x8939afc9 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89537865 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x896a3a5a of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x89732868 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8984c2bb dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x89875bd6 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x898a4ed0 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8992a825 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x899c7db2 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x899dc6d1 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x89c3c2bc icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89c47416 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x89c8feab pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x89d488cb iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89f102ec pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x89f29bda proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x8a058bb3 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8a088701 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x8a0fbd85 devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0x8a1510be extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x8a1c3b58 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x8a33e07b tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a4f4efe ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a5cf425 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a5eed45 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a6a7681 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8a792fb6 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8969d9 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot +EXPORT_SYMBOL_GPL vmlinux 0x8a9833b7 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x8ab1a54c pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8ab87bf5 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abcfb7d trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x8ac8beda regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8acd1073 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x8ada9a5a net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x8adb0712 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x8add45de dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x8ade3ba7 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x8aecabbc devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8af6c059 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x8affd4e0 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x8b05b081 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1c4181 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc +EXPORT_SYMBOL_GPL vmlinux 0x8b45d258 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8b4d8373 pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x8b4fc59a of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x8b53e467 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b6705ab perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x8b7a0d05 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b7cc513 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b918c02 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b969d44 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8b9a94c0 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x8b9f570d ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8bca512f cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8bd0d843 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x8bd1bdad fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x8be3b544 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x8bfc41c4 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c2e3d76 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x8c31d804 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4a27b8 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev +EXPORT_SYMBOL_GPL vmlinux 0x8c5405f8 fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x8c553611 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x8c5bcc53 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x8c620739 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7ba754 pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x8c82d9b2 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x8c84a68c dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9cfad3 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable +EXPORT_SYMBOL_GPL vmlinux 0x8cbef823 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x8cc331df nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8cd35df1 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x8cdcf805 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8cde3171 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8ce75a01 of_msi_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x8cefd503 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x8cf16b9d irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x8d033d9a pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d12b051 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x8d1601c7 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d45dfdb spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x8d47675d pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d5b132c blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x8d789bd0 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x8d79d12b gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x8d7a6f50 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x8d7b11d3 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d8a226b mtk_clk_register_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d9aa2a6 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x8d9f3310 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x8daa4b12 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x8dbd5249 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd9e73e platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8ded7c8d transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8df174a1 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x8e0b09b2 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x8e1dd733 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x8e2cf1fe to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x8e365b4d xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x8e3828c1 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x8e3c6330 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x8e404807 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e5a7e2e dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x8e620521 iort_put_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e767960 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e8696ff genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x8e86be12 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x8e8f4dfa clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e98b98d nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x8e9a9187 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x8ea55200 clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eb5cbc3 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x8ec7d90c __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x8ed10dc2 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x8ed3ed54 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x8ed560a9 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x8ee615bb wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8eee3837 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x8eef9bc4 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x8ef6d02e ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8ef7e479 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x8f03fbd9 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +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 0x8f3e1d26 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x8f555c34 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x8f6ad10c devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x8f6b75b0 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f70726c ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f82295d static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fab64c1 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fe85faf pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8feacc81 xdp_rxq_info_reg_mem_model +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 0x9003aa66 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9009207d fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x90190279 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x9021f076 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904659a6 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x906a60e3 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x9085f1cc icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x909518ee sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x9095cfba tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x90a18277 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90aa0540 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90ae5f5f __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90b3c610 put_device +EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90ca2a7f pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x90d26fc1 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x9116bc7b sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x9117bc2f dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x915657b5 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9178e637 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x918f62e1 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919e2165 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x91a5a283 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x91b038e9 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91bb7aef usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91cc80e4 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x91cccc0c phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x91d2ad01 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x91d92212 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91ffb553 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x920394b7 of_css +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x921f92cc init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x923fb940 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x9247d3e1 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924c6900 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x9250d7f6 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x92547924 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x925d92d6 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x92755684 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x927dd385 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x927f6f51 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x9281a532 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x929a1f28 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x929b294e devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter +EXPORT_SYMBOL_GPL vmlinux 0x92b28850 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92b964c0 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x92c47258 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x92c98957 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d4900f acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f0ce29 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x92f2e06a genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x92fc35ef tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x930266e2 kvm_write_guest_cached +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 0x93387993 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x9338fb9d tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x933c9c09 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x93406d82 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x938d2c17 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x939b655f unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x93a598d9 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x93b7ecb4 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x93c1e3a9 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x93c4b608 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f40a7b crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x93f6797a dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x93f6e7e4 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x93ff2633 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x93ffe898 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x940cd222 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x94272046 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946aa6c9 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x946aeb62 iort_get_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x94753e83 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x947a4b79 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x947f14ea alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x9482e2ac regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x94907fc4 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949b9fd2 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a2767c sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x94cff8be kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x94d43311 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94e6d09a __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x94e6d0ad nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94f849d2 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95052eba nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x95229bc4 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x953c6983 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954a40ad serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x954b3af8 mtk_register_reset_controller_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x95575c33 __tracepoint_rwmmio_write +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x95720f79 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x957949d8 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x95865682 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958f89fd dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x95904aa1 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x959340ca addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x959d47d7 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95a2151e pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x95b12914 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x95b34431 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x95bbcdde devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c19e1f __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95ea06a1 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95ff7da2 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x96213af6 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962c233f register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9649d81f pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x965426a6 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x966043fe tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x966b3164 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x96853df1 __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x96865fa4 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9690f7af dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96999e6a page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96b47260 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset +EXPORT_SYMBOL_GPL vmlinux 0x96b90747 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x96c0db86 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x96c62490 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x96ca5294 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x96e5aacb xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96fbdcc5 mnt_idmap_owner +EXPORT_SYMBOL_GPL vmlinux 0x970a492d dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971d9f01 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x973c1263 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x9740f4b2 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x97545f0e bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975f9dd7 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x976906ef mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x976b1610 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x976fc7d4 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x977ee85e sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x9784a185 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9787cf09 acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0x97a7f387 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x97b90920 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x97b90ab0 blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0x97b926c7 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x97d9551c iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0x97e2de41 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x97e7b1aa fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x97ea82b4 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x97f5ee31 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x97ffad0e raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x98045061 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x9806268b ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x980ff612 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x981aa171 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x982db90b sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x982f2854 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98429e8b gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x984980c1 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9860e92f __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987ab2ad ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x987defc3 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0x988e40b8 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x989438fc ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98ca429a iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x98cb64e5 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x98d871fa __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x98d98bbc platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x98ec292a vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f5a4c7 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x98f826e5 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x990fddb6 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x9915c7d2 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x993c96d5 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995df43b serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x9967825f led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x996c5c1b pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x996c66ed devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x996f5cbc fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998fcbf2 clear_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x999678bc icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure +EXPORT_SYMBOL_GPL vmlinux 0x99a61502 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x99c00167 vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0x99c7ad64 pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f09c40 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99fd6404 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x9a00a5a3 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x9a00adad devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1b16bf regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x9a1bee75 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a43b213 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5a03de vcap_chain_id_to_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a5b5c61 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a66069e device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x9a70f669 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9a737284 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9a76551e pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x9a901633 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x9a970927 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x9a99ac40 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x9a9c46d8 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x9ab3eddf gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x9abfe536 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac1b9aa __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x9ac36f92 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x9acbae33 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find +EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule +EXPORT_SYMBOL_GPL vmlinux 0x9ad2f372 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x9ad4779e pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9ae4ef40 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x9ae71f23 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af34503 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9af81740 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9afe4fd6 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0x9b043db4 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b339664 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x9b53f927 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b56bef6 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x9b5f9264 regulator_get_hardware_vsel_register +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 0x9b6f6bc4 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b743ba3 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x9b75c2aa memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x9b86055b dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b933725 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x9ba0b128 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bb3c887 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x9bb5ceae regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x9bc7d724 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9bcedf26 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9bd9cb8b tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c0455cd mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c47a7c8 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9c4b8845 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x9c5a5a97 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9c5f0595 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x9c63fbe9 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid +EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location +EXPORT_SYMBOL_GPL vmlinux 0x9cb207ec xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x9cb2f91f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cbc452a imx8ulp_clk_hw_composite +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 0x9ce05629 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cee8456 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9cef6f51 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf4ae59 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d15490f of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x9d1ac231 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x9d1c7c94 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x9d1fc4ae fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x9d2047bd bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d33475d transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x9d5e51c4 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9d7e093d fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x9d8413c0 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d953a20 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9db0c173 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9dcbcff6 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x9dd94eaf mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9ddff3b2 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9df07833 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x9df4c64b bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x9dfa5b0b meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x9dfe8e5c __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e082707 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x9e210a14 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9e2b8713 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x9e4202a2 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e64e9f1 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e69a3e7 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x9e6e1982 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9e7a461d phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x9e801d4a security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x9e816688 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9e94e03b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x9e98163f crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9eac19a2 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x9eb138b8 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edea76d mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x9ee30483 fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x9ee9c894 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef643b3 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x9f04574d devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x9f0b95dd irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x9f1bbc99 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x9f4fd903 rockchip_register_restart_notifier +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 0x9f62d4e5 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x9f6af469 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x9f7915a6 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x9f7d59f4 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fa54fe8 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x9fb78504 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc01621 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x9fcad023 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x9fcbc849 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd98eea public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe1f96f access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff1c54a synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x9ffb56ef lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xa000aec0 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa0089cb3 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xa01317c7 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01ae5ee vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0xa035d76e __tracepoint_rwmmio_read +EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0466cf0 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xa04c3002 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0521533 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa073dc57 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa094260c acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0xa0b23f62 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa0b6c5e0 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xa0bc686e netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0de36e2 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa0df431b irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xa0e10999 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa0e4ae05 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xa102bd12 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa105cae8 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b03fd regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xa11e4a39 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa12f02c9 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xa12f14b3 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa13b0e89 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa151bb9b device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa154d702 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15a8491 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xa15c7aa7 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa15e762d kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xa160d78c wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1d8d967 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xa1e4b021 user_update +EXPORT_SYMBOL_GPL vmlinux 0xa1e9fda2 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xa209dc4f cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xa20ae30c skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2104c61 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xa21d5d8e devres_add +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa2235167 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa25e825b pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa282270e usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xa288357b of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa28f40bd __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa2a0e992 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b26e19 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2bfe4e8 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0xa2c9f821 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e2d9bb dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xa2e856c2 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa2f7a19e dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xa3039531 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xa305f00a __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xa30d351c device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xa32232c4 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa323f4ff call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xa3314d05 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa355ea43 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa364f272 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa36899ad tegra_xusb_padctl_legacy_probe +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 0xa38ac599 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xa38e808a devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xa39c71a6 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xa39dc4c1 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2f34d of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xa3a4365c __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bdc69e irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xa3caffbd inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa3d1e326 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3e8b926 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 0xa3fcfefe xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40e5eb5 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa42b5352 mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xa43a1932 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xa440a5b9 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xa444d47a thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4564119 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xa456461e vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xa459fb75 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xa473d4ed aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xa479735a pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xa47a1d5f rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4885680 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b12a6f shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xa4b736d3 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4c556ad md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xa4ccda14 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xa4d1074d nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xa4e7c4f0 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa4f529e9 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0xa4f981d1 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xa5057821 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa5267381 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xa52f0272 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa53674cd perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xa536834a virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xa53f4399 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa540aaed regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa54a2658 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa55dbcae rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa56abb61 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xa579bd41 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev +EXPORT_SYMBOL_GPL vmlinux 0xa58155ed fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xa59aa9a5 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa5a706a5 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xa5b434fd debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xa5b9befe bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5c5d2ba regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa5cdc1d1 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d5b5e8 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5dde026 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xa5eb5159 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5ff7027 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xa606c15c wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xa60f71ca ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa6104237 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xa615a8f5 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xa616ac85 fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0xa63074b8 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xa630e812 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xa6405d85 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa649df75 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0xa64bfc1a to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xa659070f devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa66a085e platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa6856729 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xa691ccd0 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xa69ddef7 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a507ce iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk +EXPORT_SYMBOL_GPL vmlinux 0xa6a8d609 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xa6a9af64 devm_irq_alloc_generic_chip +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 0xa6b493c5 pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6b7ae70 pci_msix_alloc_irq_at +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 0xa708ca58 mas_store_prealloc +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa71308f1 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xa71478a9 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa714f7bb i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa71a0ddb __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa71be580 of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa72dd105 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa73c3b08 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0xa74d1a14 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xa74f5264 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa751d4a1 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xa7769b9c buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0xa7771ce4 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xa779460a inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa7a6aba4 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa7ab2859 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa7b0f5a1 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xa7bad4b6 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xa7d40601 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xa7e6bf89 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa7fa59ab ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0xa7fb877e stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xa804ef96 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xa809ea2c dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xa80b0479 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xa80d5201 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xa8136914 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xa8188c53 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xa823d85d fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xa83d914d skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xa84a15de usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8551dbe pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa86e7c91 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xa87f1bc8 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next +EXPORT_SYMBOL_GPL vmlinux 0xa88cd51b dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8d7fe25 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xa8dad51f dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xa8e88656 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xa90c9aaf pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa912bd9d of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa92cb95f devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0xa92cfa69 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa958398a platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa95e5cf9 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xa9682bc8 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa96f4544 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xa97366da virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xa974ef01 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xa9778bc5 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xa98c1473 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xa990e476 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99bda31 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa99fc298 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xa9a0b7eb mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xa9cc667d watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa9f25aea sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xa9f8eaf9 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xa9fef469 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xaa0818ca is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xaa12fd5e clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xaa13ce7a dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa256c93 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xaa2787b4 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xaa2dfb8c blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xaa3dbd41 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xaa4456ab wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xaa48c8e4 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xaa4b8498 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xaa4e5232 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xaa592856 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xaa5c9b86 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa73fe89 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0xaa9554ea vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaa9a4ebf wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0xaac22340 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xaac69558 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xaac85536 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xaad18539 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xaad1d3d2 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xaaeb874f pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xaaee924e vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xaaf9f4f7 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0xaafb60ca unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab0ff87e ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xab1392c1 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab1fc5ba devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xab2352f6 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xab3a5b46 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xab3b5078 iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xab3f2c4d divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xab484c20 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xab585461 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xab5a0a06 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xab5ce2be rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xab66c3ab __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xab688e5e fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0xab72c68f rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab81689e synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xab8b5332 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xaba44f8d ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xaba46237 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xabba8209 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc665a6 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xabd72d28 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xabf1056e acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xabf2b434 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xabfdc11d sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xac0f5599 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0xac112abd dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xac17c0b6 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xac1d468b gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xac27b239 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xac2e9f30 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xac468a09 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xac55e9e5 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xac5c85f1 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xac5e48a1 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xac65f629 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xac6f9450 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xac71537a crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xac73812f virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0xac73a1cf fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xac7f1915 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xac8a98ca nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xac9bdf0e aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xacaddbf6 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacbca3b0 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xacbfc317 devm_thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0xacc6aaf0 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xacc732dc xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacc97f8a crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xad22c38b driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xad24ec30 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad329a5f regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad3cfa95 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4d8fd1 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad51197e devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xad56eef3 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xad58f7bc acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6671bb umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xad689ace dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xad73bf33 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad9102ff gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xad962b73 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada5ea4e __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xada600f9 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xada83283 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xadb5ec8d __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xadba88f3 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xadca1946 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadf608df udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xadf9c1b3 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xae0be13e clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae0f974b mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae1c3f4e i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xae23d839 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xae38bb34 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae51fe9b virtqueue_add_sgs +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 0xae6cceda stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xae769193 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae80a2dc __tracepoint_rwmmio_post_write +EXPORT_SYMBOL_GPL vmlinux 0xae814db6 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xae822cdd serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xae836526 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xae8d0307 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xae8ed973 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0xaea6ebd0 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaebf1901 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0xaecec297 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xaeddc9ff debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xaee915fd fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xaeef5275 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xaef3138d __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xaefc75e9 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf095317 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf174636 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xaf1a99f9 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xaf27f500 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf3a7520 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xaf3c47c6 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xaf3ed93e srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf4e77a0 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xaf5397a6 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xaf72e941 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf93de7a dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xafa10dc4 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xafa2d262 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xafa8fed3 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xafaf50d7 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafb5cde2 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xafb8f4b5 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xafc934ed of_map_id +EXPORT_SYMBOL_GPL vmlinux 0xafcdb41e spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xafd11cec sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xafd8a96d devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafdf8a99 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xafe32b47 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xafed014f dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xaffd944c bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xb0096b3d input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xb0206f9d acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xb02a26da phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02fead4 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb038603f mark_page_dirty +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 0xb0639a29 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb0665b4c gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07b72f4 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xb07d32f8 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb08fba2a devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0935cd5 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xb095e38c kill_device +EXPORT_SYMBOL_GPL vmlinux 0xb09cabf3 ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xb0a19f22 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xb0a23530 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb0a47e56 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb0aecc14 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c106cf tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xb0c82b46 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0dbd5e5 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb1063c55 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb1133709 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xb114a949 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb12601de to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xb12d6357 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb13265f2 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xb13429e3 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb149dacf dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xb159d242 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xb1620e1a dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb1765810 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0xb1801f9c usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb1817f45 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xb188510a virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xb1900820 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xb1a93811 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xb1b388d3 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xb1b9848d gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xb1ba28c7 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c4c0ce fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xb1cb20aa crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e3f5fa iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xb1f40214 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb1fe2323 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb207028d bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xb20d8dfd irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb21c5126 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22b565e pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xb239fbf4 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24197f1 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xb26582df i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xb26839cc regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2a8dbbd pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xb2ac821e pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xb2b1f5d4 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb2bcae75 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c961c5 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xb2cc5df9 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb2cfa16e paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xb2d5dd5c netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0xb2da7db2 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xb2e17132 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb2e29315 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xb2e48931 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e9a300 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xb2f0fa24 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb2f59fa7 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb3025797 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb308be6d blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full +EXPORT_SYMBOL_GPL vmlinux 0xb30c9e52 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0xb30ee7c5 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xb3290b6b irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xb32abfe3 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xb32bfea4 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xb3319b3e list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xb33afd80 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb340b3f0 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb34b00f2 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb35adede gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xb36b3d77 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xb38be096 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb3a3bfa0 iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb3b01a56 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xb3bc4850 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xb3e396d7 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xb3eced42 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb402226e cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb43fee12 dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb4757cdf dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xb479315b __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb47e26e5 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event +EXPORT_SYMBOL_GPL vmlinux 0xb493b26f pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xb4a585a1 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb4af7b79 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0xb4b09b03 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xb4b52515 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4ba93bd relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xb4d18acd rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb4e45960 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xb4e6f538 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4ee0ebc tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xb500d062 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb500ec12 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb5237646 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb5426a85 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul +EXPORT_SYMBOL_GPL vmlinux 0xb5664f90 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xb575f567 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xb585b83d irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xb5893fef meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xb5977493 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xb59d6cf9 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5a8db10 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5bed48f ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xb5cac5e9 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xb5d7c3a5 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xb5e387d2 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xb60a1c52 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xb610795f devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62945f5 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63f5b48 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb64a82a5 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0xb65332a6 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb65e267f irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xb6779fe1 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6833bcb __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb68426a7 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xb684ef68 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0xb6878d8f amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb6904d5a clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb6a2011a irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xb6a38cdc fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xb6b49b7f l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb6ba3b3c irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xb6bf690f nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb6c1cf2d fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb7019376 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xb701d437 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb7021167 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xb7228e89 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xb724330e check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb7347a90 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb738f5a7 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb77bfbe2 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb783d5af virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb792ce06 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xb7a1138e icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7a613ee clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0xb7afcd1a clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xb7b17711 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7d44140 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xb7d8d410 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xb7e409d0 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xb7f3b4c6 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb7fd272f ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb800f152 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xb8020780 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xb807b8be wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb81d8c05 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb82a25e9 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xb84e794a device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb85410c9 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xb8630814 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xb863d08d __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb876f828 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb887da6b folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xb88bdf25 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xb88d0b18 virtqueue_notify +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 0xb8aa0058 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8ba94f6 ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d71ddf kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xb8ec438d usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f29b12 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8f2b8f6 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xb8f92be0 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xb904a1d5 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xb907c053 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xb9082132 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb908da03 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb918d158 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xb921660b sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xb9241846 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xb92d431b mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xb9391823 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0xb93af50a i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xb94032e1 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb9422ae2 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xb94c2fb7 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xb964a4d5 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb980a899 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb986e7c9 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0xb99b503a ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xb9ab4257 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xb9b12d30 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xb9b2a6c0 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9ddaa6b gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xb9dfc096 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xb9e67d5d devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0xb9eafb8c platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xba04c06c usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xba083592 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xba0a2e88 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xba14b970 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0xba1655a2 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xba200b6d ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3f4172 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xba3fa8ae virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xba54d000 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0xba742b8b clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xba78066c nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xba8786bb devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xba8b8a8e blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xbaab7199 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabb7cbf __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xbad3f395 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbad8ff60 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xbae8f573 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xbaefeec9 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf4140f pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xbaf4f7fc dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb016d76 fscrypt_d_revalidate +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 0xbb0e9ce2 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xbb155c24 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb2abb16 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xbb2ea27a phylink_generic_validate +EXPORT_SYMBOL_GPL vmlinux 0xbb30937a sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbb540247 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0xbb562566 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xbb5efd8b nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 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 0xbb9452e3 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xbba2b530 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbbb38b0 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xbbc2d32b thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbbc688d8 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xbbc89dc6 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbe9cc9c crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xbbf82b6f zynqmp_pm_set_tcm_config +EXPORT_SYMBOL_GPL vmlinux 0xbc01e5ea gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xbc158b9a crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xbc19a354 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xbc2be9df clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xbc30ba8b edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc50f888 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xbc551ce8 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary +EXPORT_SYMBOL_GPL vmlinux 0xbc6882a2 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc71ae84 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0xbc83d1cb sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xbc9a2e38 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbca6606d tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xbca83415 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xbcbcce31 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcd359df vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce303d9 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd0d0932 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xbd0d7731 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xbd1cc348 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xbd3dbcd3 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4a48b5 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd4c44e9 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xbd514ef2 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd5b674c dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd5f45cf devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbd60d7b7 mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xbd635e04 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbd6ea94b usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd8c7a0d nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xbd8e57fc gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbda1ac32 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb2f760 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdc01532 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xbdc92865 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xbdcd7cd4 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0xbdd17387 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xbdd9815b imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbde7bca3 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xbe0aa2aa __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xbe0cf085 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xbe0ebf5a devm_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0xbe13dead clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xbe202cb3 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xbe20f7c8 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xbe260c72 split_page +EXPORT_SYMBOL_GPL vmlinux 0xbe2af2aa rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xbe3031c0 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xbe3c0b52 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xbe3f71ca device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xbe40f608 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xbe441e98 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xbe503760 usb_remove_hcd +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 0xbe70d62c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xbe76d37a regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea4000f crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb7b7d3 __traceiter_rwmmio_read +EXPORT_SYMBOL_GPL vmlinux 0xbeba74ff dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xbebb8604 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbecd6044 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbed101b0 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xbed29522 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0d9494 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xbf123652 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xbf22f22a inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf440ace bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf6cfbd3 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xbf93d2ff devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xbfa2d5be devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xbfa468c4 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfe135aa udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbff3143b led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xbfffd2d8 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xc028dcb8 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xc043cd4b gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate +EXPORT_SYMBOL_GPL vmlinux 0xc04853bf devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xc056a35d mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc0626ece perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xc0634c65 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xc075ec52 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xc081438d scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc084ed5c fscrypt_set_context +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 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0d8a7ad put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f70e31 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xc1005e24 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc12de612 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc13fc468 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xc143329d irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xc14f7616 __SCK__tp_func_rwmmio_post_write +EXPORT_SYMBOL_GPL vmlinux 0xc1655b10 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xc165e63a ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xc167ca95 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xc16d731f dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1784c0e pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xc17e05a6 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc1904d6e phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc192b50d preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1998f47 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xc1aba64e sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xc1b51fb3 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xc1ba7138 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc1c6f9a3 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL vmlinux 0xc1d16d31 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xc1d5497f nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xc1dabd6f blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1df937a sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xc1e1c121 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xc1f09d0c devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc1f7b29d ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc200b5a2 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xc20d77bc skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xc2128075 i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0xc24187ca power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26382f8 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc271545c ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xc274efe6 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc27f4972 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc298d5ac fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xc29eec59 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2aa2f8d reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc2b6642d dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2bed42a dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c81eaf rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc2cb1cf5 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc2d89f68 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xc2da7ded register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2df5cc1 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xc2e00070 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xc2e3faad dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xc2fc64e6 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0xc2fe6895 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xc3068080 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0xc310a437 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xc325e89f dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xc3342bd4 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc33aa82a ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3421a99 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xc34a59bb dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xc34ded63 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xc352d96c __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc362c384 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xc3639ba7 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xc363a4bd regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xc3651b5d qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xc36f9bcc phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc37316bd __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xc3781ede divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xc37aa7b4 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc38cba0a da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xc3ae7c3e spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xc3b4165c devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xc3b637f2 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c5afdb devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xc3c836f9 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xc3cc7c0d pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xc3cd6929 dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0xc3d2a822 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f2ac70 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xc406aa8f edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xc40c8e74 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xc40d360a rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xc4216945 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xc422aba4 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc433bab2 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc4382f0b fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc443fc3a __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config +EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc451d1a8 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc46644fb pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xc46b7ddf devres_release +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc49280bd pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xc4977580 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc498a29c debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc49f2a75 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4ac6d87 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc4c95aa8 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc4cb9714 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc4cd4645 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xc4d3449a blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xc4d35710 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xc4dcd6e9 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xc4de1d16 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xc4e03f06 mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xc4e7a633 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc4ef6285 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xc4ef849b device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc532cec2 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc537f25a dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xc538b251 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc53ba064 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xc53bbcbf icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc540bc44 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc54131cf fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc560f5ca irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc572a2b5 gpiochip_line_is_open_source +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 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5b5d796 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xc5ba7766 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xc5bc1789 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xc5c9f6f1 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xc5d99669 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xc5d9fbb4 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xc5dd6ada clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xc5ea1b50 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xc5ea8e20 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xc5edebbd gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc5fadffb devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xc5fd7f0a bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xc6143915 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc616197c ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc620a6e4 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError +EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xc63a5671 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xc63db7d7 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xc644eb36 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc6480f5d genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xc64c295c set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc68815a2 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc68d7314 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69e8407 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xc6a41be6 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ad0400 devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xc6af4fa0 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xc6b0a75c mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xc6d96bc7 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6e84b52 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xc6f0b7ac __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xc6fcbbe1 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc7056c10 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc707f058 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xc711f9d5 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xc71abf37 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7381557 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xc73bc837 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc75294c0 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0xc75e988e posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc766a097 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc77a0599 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xc77a7af0 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc77d63cb trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xc7810046 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a345f5 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc7a3be31 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7ad06a5 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xc7b04440 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xc7c05f84 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7ce2011 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xc7cf1de6 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7ea2a53 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xc7ef7dfd iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc80b12dd acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c1fc4 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc82e819c fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0xc8361824 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc83d236e mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xc83e71ee __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc83f772a __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc852ef94 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85a41a1 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc87e8bca pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets +EXPORT_SYMBOL_GPL vmlinux 0xc8cb2eaa ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xc8dc32cc serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc903f40d pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xc905402b log_write_mmio +EXPORT_SYMBOL_GPL vmlinux 0xc91a8327 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc930906d acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc937773e crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc953c90b subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9683d15 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc975fc12 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0xc977026c phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc98db077 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xc99f4261 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0xc9ad274d find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xc9b440ec skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xc9bfb477 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xc9c952f2 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ed6181 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xc9f5d1a2 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xc9f87c46 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca13c519 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xca14c161 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xca2a7e0e sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xca2eb2c6 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xca37d1e2 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xca3977d1 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca45869a debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName +EXPORT_SYMBOL_GPL vmlinux 0xca516862 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xca5f7123 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xca659852 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0xca737a0b ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xca77e306 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa6094b pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xcaaf3231 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xcab59f12 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcae8fec0 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0xcae91a56 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xcaeca1ab to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcb01e9e6 mtk_mmsys_ddp_dpi_fmt_config +EXPORT_SYMBOL_GPL vmlinux 0xcb0faf9a qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb198d11 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb34f75f ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb6407e2 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xcb670d43 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0xcb689102 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xcb82a263 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xcb992c0d perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xcbaa663a pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0xcbac4f9e devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcbb83560 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xcbc54faf md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcbc7eeaa tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xcbcae635 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbeee0cd fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0xcbf1a2b5 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc26c7fd dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc399efc auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc4cde65 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xcc4fff07 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xcc5e5764 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xcc7934ee fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc83a3dd blk_mq_wait_quiesce_done +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 0xccbec948 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd3731c device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccdf071c task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xcce1242d dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcce2afda __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xcce3fcf3 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccfa204f ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcd0997a9 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xcd0c9d9c get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd25e40c pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xcd30541d tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule +EXPORT_SYMBOL_GPL vmlinux 0xcd4171c3 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xcd4d5096 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcd5e146a rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xcd5f25f8 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xcd66679f free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xcd6a6921 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0xcd6d1a2c phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd705c13 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xcd707401 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd75e0b4 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcd864d5c __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xcd87c20b vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xcd902206 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd93628a ata_sas_sync_probe +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 0xcda8ffad pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xcdb5df3b tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdc9a9f0 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd748d8 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xcdd80cda ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xcddc5596 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde710fd balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xcdece817 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce1e0068 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xce283a1a spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xce288402 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay +EXPORT_SYMBOL_GPL vmlinux 0xce3218b6 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xce44e50f key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xce4a2650 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xce4e6dbd smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xce557db3 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce632b76 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce75cf64 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xce8fda99 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb2f110 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xcec7ef09 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xced2d20d __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee43e33 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xcef73cad irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xcefe9fac crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xceffb167 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcf0e664c __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xcf12370f pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcf1cabce mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcf1d1ca2 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xcf2501b3 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xcf40b5fa acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xcf428153 dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0xcf55f8ad blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xcf6273e4 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xcf70bb4e blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xcf909c2b percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0xcf998c68 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xcf9f7cc9 crypto_hash_walk_done +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 0xcfe1a4ec fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xcfe97a47 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xcff7426a gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xcfff6024 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xd003a72f acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xd009defd of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xd00b6218 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xd00fb8bc skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xd01fb194 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd02703d7 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xd02d3c2a vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xd0385304 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd03c5d35 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0419c3a __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd04e40f6 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xd04e53f0 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd0598aa0 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0xd05f76a1 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0682e7d tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xd074cd23 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd07aafcd acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xd080001d of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xd08f14e7 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a1b7ae dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0xd0a76240 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd0b0e2f9 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd0b7ae3e cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xd0bdc50b __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c81f0e clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0d8200c pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0f993b7 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0fece88 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xd102ba74 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0xd1333d6d alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd13c25ae nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xd13e4af8 dma_fence_unwrap_next +EXPORT_SYMBOL_GPL vmlinux 0xd14326d2 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0xd144d137 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1549e86 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd1694981 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd181e9fc wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xd18d8864 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xd197ffaf mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xd1991972 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xd1a1a4b2 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xd1a668b5 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1b0ceb5 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xd1c8bb72 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d3d0ec wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xd1ee3088 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd1f1f7f7 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd214858c phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21a09c4 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd21f8df5 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd22b1473 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xd236b3ed xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd247f037 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd258452f pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd269f919 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xd26bdf38 ahci_save_initial_config +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 0xd281cea5 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xd2848217 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd28753e6 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xd2938331 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xd29a2b6f blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd29c7440 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2d561ef pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xd2d67084 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xd2d67196 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2e43034 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xd2ef6a40 phylink_mii_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd2f10cfd trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xd2f8a34f fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd2f9256f devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xd30a3f25 vga_default_device +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 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd347d2ed blk_mq_sched_try_insert_merge +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 0xd37b7cd0 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xd37be0f0 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 +EXPORT_SYMBOL_GPL vmlinux 0xd39172b6 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xd39a934c regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xd39d69b8 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a8aa7e acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xd3acd9c9 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0xd3c2eb6c xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xd3c35a52 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd3c9ae64 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd3cc37eb of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd3dc1140 blk_queue_write_cache +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 0xd3f49348 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xd3fb610e modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4127e71 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd4486f9d amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45e0bbe crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xd467b8be crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd46f0f84 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xd479bfa4 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xd48f5680 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd49694b9 meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd4a9e370 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xd4b5b417 sysfs_break_active_protection +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 0xd4d7e84a ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xd4d80ba3 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd4d8e381 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd4fdd585 scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0xd50e2237 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd54cd225 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xd55725ad kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd57b5d67 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop +EXPORT_SYMBOL_GPL vmlinux 0xd586d2df extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xd592bb71 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5bde74e irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd5ca5f5b xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xd5cafa16 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xd5ce74f0 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xd5f44a62 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0xd5f4a097 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd610794f hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xd6148b07 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xd61fbb29 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xd62169ee pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xd62297c4 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xd63d5944 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd63e29b8 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd642d765 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd653d7f4 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xd65cf795 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xd66ad592 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67c3699 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xd68dd8b7 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd693b89c ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xd69b716a usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6af44dc spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6b2b71c edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xd6cd24f5 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd6d2a2c3 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xd6e118ea bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xd700988d sk_clear_memalloc +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 0xd73a1a95 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xd74d6be8 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd756b09c devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd75ac69c __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd762e08e param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xd765e4cb sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xd7665b4e devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7682b22 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xd768ce0b pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd769e6d1 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xd77be5f9 generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xd77c8a24 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xd791a0f5 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xd79ba087 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd7ac751b xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xd7b1b785 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xd7bf8f3c vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0xd7c03081 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7ce4737 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d6a314 blk_update_request +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 0xd7e2a170 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd80747c3 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xd81ae7bd dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xd8471588 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd84ef530 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xd858479f component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xd85b44b7 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8809cf3 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xd88defca __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0xd89e2bb4 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xd8a778d5 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd8aa0a52 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd8d01fc7 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xd8d079f2 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8dc1ee7 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd8dcbe87 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xd8e0d39f ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd8fcfaeb pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xd903f419 phylink_get_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd90aba88 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xd918a65d srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xd91d99dc hte_push_ts_ns +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 0xd9420db5 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xd94fe857 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9512944 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96bce5d fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xd96bfb35 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0xd97b9b89 acpi_cpu_get_madt_gicc +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd99e12a9 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xd9a6d978 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xd9ac4a78 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd9b5772b __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xd9c9cd36 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9dff8ec ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9f837e0 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda019942 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xda028ef3 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0d1713 vcap_rule_get_counter +EXPORT_SYMBOL_GPL vmlinux 0xda113e7c crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xda150d39 dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0xda22ad41 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3e7778 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xda47d5c2 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xda552edb devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xda6d81e5 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda7f5728 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xda8234f7 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda851191 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xda8b7e29 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda9aea1a mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xda9db6c5 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa221cd devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xdaaffc3c css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdac6b1fe crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xdacd165f vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xdad29cff relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xdad863cb rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xdadc38af mmput +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf4e0be pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xdaf5ae52 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xdafca813 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xdb073801 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xdb1b78c3 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xdb1c5a0d ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xdb275359 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xdb335f98 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb681c5a fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xdb6f64c2 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset +EXPORT_SYMBOL_GPL vmlinux 0xdb74e2e4 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xdb76d3a4 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8a9ba2 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb920572 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xdb9b5dc1 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0xdba40fa0 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xdbb7390b uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xdbbcdc63 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xdbc9d0a4 blk_mq_unfreeze_queue +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 0xdbfa2500 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc031c84 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xdc046bc0 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc0f6fbd clk_hw_unregister_divider +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 0xdc1e7d97 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xdc3a67d6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xdc3feb40 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc4447ba __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc502f32 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xdc5328d9 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xdc593abd spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6b774b phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xdc6d698b xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0xdc71eab3 mtk_clk_unregister_cpumuxes +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 0xdc85c9a7 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL vmlinux 0xdcb6086b ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xdcb6d109 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xdcc371c4 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xdcc5244f devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0xdcca84cf ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xdccc3a99 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xdcd341e5 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xdcddff78 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xdce0ea4c mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err +EXPORT_SYMBOL_GPL vmlinux 0xdcee24c2 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xdcf0709d folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xdcf2ab2b gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdcf64fa3 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xdcf89964 platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd11d8d5 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xdd336f8f fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xdd3926bd __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xdd39e97e tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd4bb657 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xdd5183f4 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xdd556f91 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd67f966 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xdd757255 mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0xdd77c3d1 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd918796 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xdd9f1085 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xdda93051 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xddbe22ab rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcb2fa0 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xdded32f5 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddfbdeeb edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde1a0c81 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xde26fcee __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde28ca26 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde2cc924 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde3c3174 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xde4478f1 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xde4e4a8d __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xde687556 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde761bfc __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xde7bdcaa __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xde8180e4 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xde83e548 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdea676ba divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdeb3ffa0 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xdebcdb5b platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xdec340aa __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdeef40ba md_allow_write +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 0xdf11e745 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0xdf1a4a28 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf1d4fb0 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xdf1f4d54 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xdf1faa94 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xdf219b68 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2fabbd xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xdf314236 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack +EXPORT_SYMBOL_GPL vmlinux 0xdf34e32b elv_register +EXPORT_SYMBOL_GPL vmlinux 0xdf3a1ab0 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf4578d0 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xdf4c16e7 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL vmlinux 0xdf5b0650 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xdf869b3f edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xdf8b70ef gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xdfa3d1fa scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xdfb10427 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xdfbaac33 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xdfbceddd phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xdfbd9dfd dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xdfbefc1b devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd60f61 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xdfde7d9c of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xdfe54bc2 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdfeaac71 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xe0003d61 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xe00cbc35 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe01429e8 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe022e055 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe0376707 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe0481047 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xe048f938 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0673265 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xe06ba268 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xe06ee2dd percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe0a695fa rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b6c151 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xe0b91cb2 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe0c03b3b ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xe0c12f7a ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0d1c0c1 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xe0d34e30 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xe0d5dedf ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe0da94fe mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe0e2e03f class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0ed854b pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xe0f1baad ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xe0f211f1 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xe1018a24 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe10897d9 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1291cc6 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1380e2e mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xe13f6e3b fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xe153b336 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe1553097 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xe163e318 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17d818b pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe17fe4fd sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe19a1371 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0xe19a9e12 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xe19f145b governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1ad87bd perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1b37411 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1be11b1 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xe1c55395 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1db24bb unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xe1e4da8c scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1ef94f2 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xe2228b05 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe239d65c _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xe23e24de bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xe243c03f dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xe24b09f6 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xe24f1b2c crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xe25aee31 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe270d495 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xe27eae2b tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xe283b8f3 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xe28a3e8a regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0xe29991fc ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xe29cecdb dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xe29d7b01 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe2a6a119 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xe2ac2ab7 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b57144 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xe2c79415 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xe2c8e132 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2cfb2f9 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xe2d3c937 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature +EXPORT_SYMBOL_GPL vmlinux 0xe2dfeb40 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xe2f28718 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xe2f6915b proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xe2fe21f7 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xe30f9eb2 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe318c32b shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xe32a94f1 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xe335dbad xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xe3413513 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xe343ac48 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe35b2ed6 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe3641de4 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe37aa105 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe38300bc regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe394796c irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a4b90c rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3c29089 devm_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0xe3c58747 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3d0ecf1 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe3d8f3de devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xe3dbc79b iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xe3dc4d53 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e8b93b __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe3eb7d8e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xe3efc9aa clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3f7ecdc rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xe3fe6186 tegra_mc_get_carveout_info +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4247dcf class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4286ab5 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4323f3b usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe44110d0 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xe44156f7 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xe44c7126 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xe4530858 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xe45f19b9 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe46ca41a usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xe46d8290 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe47990cd tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xe47cb1fb hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xe486a6a0 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe488e0e7 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xe48d3a74 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe492a3cd gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49a82f8 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xe4aead7f pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b17560 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xe4b773fc bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c2a060 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c773d9 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xe4dc38bd fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xe4dca6f3 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xe4e0f799 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4eea9ee acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xe4f58809 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xe51aa921 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0xe51fab16 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xe530e6a4 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xe5335a41 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xe54c68f9 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe54c8996 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe555e58f dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xe55d99e1 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xe567f91d regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe56901db tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe56f57cd dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xe57517fa dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe57bc6bc devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xe57c1576 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0xe59239bb of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xe598b8ef ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xe598c609 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xe5a16469 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5b69809 ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xe5d210d7 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe5e06f3e pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xe5e790e4 __traceiter_rwmmio_post_read +EXPORT_SYMBOL_GPL vmlinux 0xe5e7d024 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xe5ebbf03 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xe6039262 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe607e072 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe6345d69 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xe63479b7 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe64e423a rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xe666605a __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe686cd95 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xe68a05ee dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe69acce6 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe6a4290f serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log +EXPORT_SYMBOL_GPL vmlinux 0xe6b50ead __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xe6bd7004 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0xe6c3f7a2 acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0xe6c4302f regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xe6c71ea8 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xe6c7eebc __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xe6ca97f4 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xe6d0f74c iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xe6d4374f hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e64faa irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6e7e82a crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xe6ef7aff onboard_hub_create_pdevs +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 0xe71cd784 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xe73306e3 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xe7451a28 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xe7490800 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xe74f97b0 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76aee93 zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0xe77f4020 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xe77f5d43 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe787ec86 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate +EXPORT_SYMBOL_GPL vmlinux 0xe79690b7 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7b2bba8 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xe7b51816 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xe7c0bf37 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xe7c3a511 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xe7ca85a4 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xe7ceb5a6 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xe7d0c209 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xe7d238dd devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe80fc219 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xe81466bb serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe831e4b8 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe83d1b44 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xe8430a29 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe84db8be fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8526306 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe869b67c ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe88b78c5 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe89fd4b1 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xe8a42103 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c4e201 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe8e7f0ab devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xe8fb11d7 spi_new_device +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 0xe9123d69 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe924f540 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xe92ba666 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe93d29d1 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94314d4 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xe9437061 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe970fb3d kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xe97a9f5f vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0xe98eca82 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe99e4e89 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xe9abac93 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xe9b72fa6 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xe9c1bd00 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9d827f1 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xe9fb736d led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea025c3c blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xea082be2 fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1bfe80 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xea1d889c bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xea324230 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea49fe93 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0xea4ecff9 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xea4ff9aa devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea608313 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xea63b7b0 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xea72c014 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xea74c808 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xea8229f7 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0xea864159 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xea8c08f8 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xeac6c70b tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xeac7101d ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xeacb449b nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xeacc0a4d crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xeaccbe7f ata_sas_async_probe +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 0xead76560 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xead7b1fd device_property_present +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 0xeafd9098 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xeb037e37 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xeb121469 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xeb133b08 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xeb13bb26 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xeb1ad197 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xeb241ffb acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb34c369 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xeb359000 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xeb3c26d7 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xeb4b1af6 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xeb60743b crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xeb7731d4 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb8280af unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xeb8ad997 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xeb96794f of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xeb995e10 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xebc7438f register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xebd2a210 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xebd30fe5 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebe2ff6a fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL vmlinux 0xec0ada2d bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xec11d085 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xec1765dc regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec279bf5 mtk_clk_register_gates_with_dev +EXPORT_SYMBOL_GPL vmlinux 0xec4dd4df dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xec530776 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec76a853 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xeca14353 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xecafaa8f crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecbb37ef folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xece5e0ad genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xecf8d8f1 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xecfa4e75 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xed05dbb1 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed1480a7 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xed2bd781 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed3c0854 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xed48a45d fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xed4ab6ad xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xed7cac07 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xed83d27d fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xed873547 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed9620ad usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xed9b638e acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xeda1932d usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xedaa246d mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xedaf1686 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xedb4f2e4 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xedb50694 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedde0a1b pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xede15bc0 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xede25134 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee0f7225 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xee0f7ab6 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xee1d0208 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee23e756 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee41a905 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xee486a3e pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee523dc6 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xee54dba8 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xee587a62 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xee67ee17 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xee68cf13 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xee6afee0 wwan_port_rx +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 0xee70a76f crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xee77cf12 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xee9667e5 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xeea928e1 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xeebbc830 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xeebc1b96 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xeebe7919 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xeec5716a platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xeed69f99 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedea1b7 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported +EXPORT_SYMBOL_GPL vmlinux 0xeee3e272 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xeee6f170 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xeefca5bc blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xef0b7169 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xef17d553 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef2525e4 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef6b1dd7 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef754fd2 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xef76d648 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xef8563f3 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef931444 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xef9338f4 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefafff51 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0xefb74228 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xefbf915b sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xefcc87f7 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xefd251cf tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xefe2f170 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xefe74360 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xefe7fab1 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xf01d9c9a trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xf021aec9 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf03396cd transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xf036f36f regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xf03f026f clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf059f248 mtk_mutex_write_mod +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 0xf083b2ae wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf0876c5b kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xf09016ca dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0997932 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xf0a71290 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xf0b80f65 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xf0c0abf8 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf0c179fe nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xf0d7118e platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xf0e21963 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted +EXPORT_SYMBOL_GPL vmlinux 0xf1095cde devres_get +EXPORT_SYMBOL_GPL vmlinux 0xf11800f3 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xf11b842b bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf125e9c2 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf1292b91 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xf1420299 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xf14314fa da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xf1579363 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xf159b66f fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xf15dd722 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf1893b44 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xf19cc2d9 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf19d6a62 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xf1c0d176 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xf1d026d0 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xf1e036a3 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2264f8a wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2267b34 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0xf251b0de serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xf270090e rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xf2730be8 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf284f503 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf2886300 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf28e09d7 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xf29342b2 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2affc19 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2bfbd99 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xf2c6e755 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0xf2d03b03 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf2e81667 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xf2ed5ca8 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0xf2f48d39 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf2fea6d0 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported +EXPORT_SYMBOL_GPL vmlinux 0xf3011b17 acpi_device_fix_up_power_extended +EXPORT_SYMBOL_GPL vmlinux 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3152f70 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31af2be thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf337430d rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3394abb devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf3435b43 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xf3489ece tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf34b9253 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf36640b7 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf36c3ea8 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37d60b9 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3a00f3c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3a52e3e gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf3ad4352 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3d18b5e usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf3daf475 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3eb44e0 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xf3f1abea nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xf3f87e26 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf409dd90 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xf409eecc component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xf4261912 pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf43dd102 vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xf44681ed ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf4478bc0 vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0xf4484a1b follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xf45c0dcd ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf45c2c88 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46d8485 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4848c3e get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4a25067 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xf4ab1668 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4bc6851 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xf4c82893 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d504bd mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xf4d537d1 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xf4e53f0d udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4f734f1 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xf4f9857e mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0xf4fd8e3b kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xf500d138 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xf5032b0e ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf50db81e devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xf50f2f05 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xf511230b __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xf5222310 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xf52a0ba4 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xf52e4497 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0xf544a859 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56605f3 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xf5698931 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf5791bd5 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xf585b25a gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xf58c1a45 kthread_queue_work +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 0xf5afbee6 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xf5c133b7 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0xf5d04a8c dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf5d45f11 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xf5e466b0 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xf5e96a63 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f56da8 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xf6121a8a bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xf61693cb of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf627b4be trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0xf62d72cb of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xf63109bd imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf64beb08 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf65f1c23 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6651b46 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf6667d75 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xf66fb4b7 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xf6786046 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf682d672 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf6931889 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xf69872db dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0xf6a0dc3a relay_close +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a5bd38 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xf6af21cb of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xf6b08f2f fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xf6bc7747 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8c58d phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6dab05d serial8250_release_dma +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 0xf7021e01 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xf707618b ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7449a59 crypto_stats_decompress +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 0xf75e711b device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xf7641e85 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xf76b7273 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xf76c4913 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf7813a98 usb_choose_configuration +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 0xf78c7318 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xf78cea0b crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf7922792 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0xf7ae23e6 invalidate_inode_pages2 +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 0xf7cd5a0e devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d95241 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0xf7e0a403 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf7ed67b2 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xf7f07941 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xf7f0f28f xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xf7f6a02d pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xf807e896 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xf80b4464 mtk_clk_unregister_dividers +EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf811ac51 xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf8201863 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83c9685 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xf8406906 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xf84661e2 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf84e3b0f pci_vpd_alloc +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 0xf86c4f16 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf884da06 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf893b892 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0xf8a478f4 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0xf8bdc3e5 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xf8e6975c tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xf8eb8984 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xf8ef63e6 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf8f29c7e device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9010d60 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf9185fe5 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xf9193728 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xf926a606 phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL vmlinux 0xf94552ab meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0xf947cdb1 meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf94ac01b devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95cabe1 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xf95f1f95 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi +EXPORT_SYMBOL_GPL vmlinux 0xf9a4a4e8 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xf9a668de ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9b17c44 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9d1be83 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xf9f46f5b devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfa008974 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xfa0f0a6f dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfa1bca2e gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option +EXPORT_SYMBOL_GPL vmlinux 0xfa2ce945 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa33bcc2 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule +EXPORT_SYMBOL_GPL vmlinux 0xfa415cb4 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa4d3c24 log_post_write_mmio +EXPORT_SYMBOL_GPL vmlinux 0xfa4f453b ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xfa521e94 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa606e21 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa8f983f crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfa917969 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xfa9285f0 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfa93fafc xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xfa9d0b5a device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xfa9f3d6e inode_sb_list_add +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 0xfab8525c pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0xfacd426b devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae35da8 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xfae5bcf3 mtk_clk_register_dividers +EXPORT_SYMBOL_GPL vmlinux 0xfae6852f pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xfae6916f cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfaf8efd2 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xfafd2e49 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xfb1620f4 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3771cd of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xfb3d3a5e clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb46ff0b da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xfb4b1708 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xfb4d6ed7 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone +EXPORT_SYMBOL_GPL vmlinux 0xfb69d06e sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xfb6b4e28 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7aaa13 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfb809816 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xfb9b5db7 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfb9c5b86 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0xfb9f2013 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfba9fce9 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xfbb3512c crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbd8e90 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xfbc022cc init_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0xfbc5dd0a of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0xfbce91aa fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0xfbd2b992 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xfbd936cf blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xfbf80ac9 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xfbfa3daf crypto_remove_spawns +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 0xfc0838ff fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0xfc0d11d2 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc1c51df tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc25bc9e regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfc316b33 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc441c8c crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xfc6463c3 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xfc79f00f wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xfc7c22a9 ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0xfc85e634 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfc8d774d ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfc9ce576 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xfcb42d56 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcce2234 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xfcd2e4fd fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xfcd9bdfd lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xfce52473 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xfcee227d __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xfcf88ef7 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfd4a32 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0xfd0172b2 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfd09e03a trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xfd158906 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xfd1d146d iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd309343 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfd374ffe blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xfd429df1 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xfd4d1b75 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xfd5461ce vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xfd562217 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd866d92 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd8b391a phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0xfd8d579c crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xfd97ab51 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd9d2e30 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xfd9d9a53 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xfd9eddc1 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xfd9f862a mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0xfdadca90 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfdb1ff8f usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xfdbd28bd virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdce8475 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfdd86e57 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xfddb82ce mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xfde3e44a devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdf68616 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0xfdf82bc1 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a4a6c devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xfe1baacc fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xfe2893c2 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xfe2a4245 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe5ea2aa crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xfe6f0923 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xfe76dff0 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xfe7edd4b crypto_aead_decrypt +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 0xfeb19ace blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xfeb3f532 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xfeb5c870 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfecc3670 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee8b1ec nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff005e77 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xff02654b fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff090756 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xff0fb112 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1840bd acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xff1ac0fa devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xff1c4748 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff4e4d52 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xff5fa790 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xff6b27a6 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xff76e979 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xff774799 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff7e736e phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff838200 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order +EXPORT_SYMBOL_GPL vmlinux 0xff99dc94 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb02514 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xffb93491 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xffc2a907 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0xffc4d075 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xffc6641e param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xfff8b5dd ata_pci_sff_init_one +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 +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0a31c7b9 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1ee736cd cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x20124e12 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x222aa1a1 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x2d037ddb cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3d3a50ea cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4d0bf8b7 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x576cb67f cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x661297f5 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x73a0faaf cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7b8da676 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7d995602 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x83fde764 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x928296e6 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x939e90c6 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x945fcfe6 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x97983a89 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xad35787d cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb4eaa145 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xbf82a361 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xcd74fd60 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xda760b0a cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xdc828d71 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xdec2a323 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x1a656ca9 hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x3586f9a7 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xefbe8d04 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x257609e9 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x3d297bcd ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x641c6bcb ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x7e1c8afe ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0xb37b7daa ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xd8f8cf2e ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x3dc1f305 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x491ef72e __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x148ceba6 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1ecbb285 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3afcedeb adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3e0a81e3 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7119eb6d __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7964ab93 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xaec4227e devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc4f82c30 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xcaea1b0a __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd7d881a9 adis_init drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x36cdab90 __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x8a7bb354 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x9eb17fcc devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x3e859445 adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x5bf881d9 adxl31x_chip_info 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 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1d8d09c adxl314_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_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 0x4d2f5e0f adxl35x_chip_info 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 0x91e0f032 adxl355_core_probe 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 0xa8a7d67d adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x0e59bb75 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xfb06d730 adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x127f0215 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x36b8aa36 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x60f37d33 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x84b1e30a ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x91b49a05 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x91f313eb ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9e26fe8c devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc8451af6 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xdd9d8478 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xfd64dcc6 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x293d5e3f bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0x76a4e0c1 bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x1d0631a1 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x75848442 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xa7bffd59 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xc3136257 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x4ddd09ff bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x69692a2c bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xa64a5560 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xdf17f46b bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xa54aab09 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0xc1cdfff7 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xaebd763b bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xdafcadf3 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xe491730c bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xee953e4c bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x65797981 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0x331919eb bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x6962221a bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x6cb64999 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x863094fb bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xcc464684 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x07cfaed1 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x43101a7a bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x603d92ec fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xb0c7547d fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xf1367c11 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x00b6c594 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x37ce136b fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xa2685151 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xfd6a7038 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x13ce939a hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x38df0b01 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x5fba5dd0 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x631723ed hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x773c1786 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7e366fc7 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9be82862 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x9c307066 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xab843c53 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xcf6b1e01 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd81dfb84 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xdfcc2ea9 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x20ba7339 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xab79eeb7 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe74883c6 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe7584982 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x3343b3e9 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x6aaecae6 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7f761911 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x1d388130 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xc2b6a58f hts221_probe drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x46091ef4 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x678d3356 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x74bf7edc inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x0226ae90 kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0x3c7b413f kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x593e8c62 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x73776144 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xba276a20 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x5836e55c st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xcc8abc5a st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +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 0x3e9d4ca8 ms_sensors_ht_read_temperature 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 0x4cdda4da ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4db5040d ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4ec0f7ea ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x51195df5 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x5327b036 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x8d11a01e ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa14979c7 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc96f569e ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x6c29465c mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xadc0ef68 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xae1ac409 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x05b10c91 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x23d0ed92 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2cc935bf mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2f69ec4d mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x493b55ad mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x66ca670b mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x898ece84 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb0522ac1 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbfa5aebe mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xca9db9e3 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xcb74276e mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xde921355 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xe79ae27d mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xec222614 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf166018c mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf7ebd3f4 mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0x2c738d51 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x952ac2ac mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x71da73af inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xd85da479 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x34caf62b ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0x7a1c1412 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x86aef05a rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0x90cf900c rescale_process_offset drivers/iio/afe/iio-rescale +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x35c0402f 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 0x23f3b770 scd30_probe drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x4b6fe5d2 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0xf23e07a3 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0xa01d0ecd ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xa271f7a4 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xa9d46a29 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xb5c9b724 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xe2a14591 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xe4beb85e ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xe84ecc85 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xf0faa10b ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_ST_SENSORS EXPORT_SYMBOL 0x040bd8df st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x06a5839e st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x08d8f633 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x0f402a09 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x184a33c9 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x21d0fbfe st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x23a25e3d st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x3807bfd2 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x3ab0d6e1 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x45ae287e st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4e11195e st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x584ccf78 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x6880480f st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6b5417b6 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7a2bef9c st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x8c427a2c st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x92153385 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xa4ce1100 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xa9f37473 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xb9390d40 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xcbf79c7a st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xd803c241 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xe447e469 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xf80e889f st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xf91335e7 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xfe6aa2d1 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xfaba2cca st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x3a920074 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x59809b29 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x18a5618b zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x1c516794 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x37e52ce1 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x61a442d3 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x8f90f0f9 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xf84e50b6 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4f27ad07 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x53fb9ef4 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x5c4123a0 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x6e401a47 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x73b2d912 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7de02e6e iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xa245f6d2 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xb462da55 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xd565b827 iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xa18f741a iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x065c32c5 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x07659853 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0db1a365 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0e5b0343 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x107ddf4e iwl_read_ppag_table 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 0x1843e21c iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1871410c iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x19a66d13 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x215e6b55 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x24ae3b4f iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x24c82f97 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x24d3a3cd iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x25919c16 iwl_acpi_get_dsm_u32 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 0x27421b70 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x28269251 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2d7b0fb3 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2d8edf43 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x32b6575b iwl_fw_dbg_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 0x37755731 iwl_cmd_groups_verify_sorted 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 0x39cf54b1 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3cb9b49c iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3e04130a iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3ee813d7 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x42d73a15 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4483f26f iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45e84632 iwl_pnvm_load 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 0x4b14218d iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x564ddf37 iwl_fw_runtime_init 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 0x628aace6 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x640d623c iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x657ef7ee iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6ad24977 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6b19c640 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6bb7fa8b iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6c36f093 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6d760cd4 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6deee258 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x71ce20fc iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x75e1f128 iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x761c77d1 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7639e4ab iwl_fwrt_dump_error_logs 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 0x799c0fe4 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7c1c9cf0 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7d11bc3f iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x80324385 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x81d48962 iwl_write_prph_delay 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 0x85078493 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x852fbc5b __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x86b7036a iwl_sar_geo_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 0x89946f23 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8bf09ea9 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8d70f73d __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x91026b7e iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9113b050 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9b19bec9 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9b543169 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa4cfc859 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa8bd783b iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xab07e397 iwl_fw_start_dbg_conf 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 0xb40e7646 iwl_trans_send_cmd 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 0xc6d4970d __iwl_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 0xd164211d iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd693c1e3 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xda280dec __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdb786f34 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdc08e6b5 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 0xe1bc2050 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe2e47d25 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe3c2bfec iwl_poll_bit 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 0xeaa0aeb1 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xec661d91 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xecfb596e iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf090496c iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf92ecb01 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfe8b9fa9 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x45133ffc ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x74630157 ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x10d14186 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x25460f66 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x262ec832 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x363ec741 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3b514f42 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4d5132f3 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x568fd5f1 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x715d5751 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x725823ee mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x85b5b0b9 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9bc9cd33 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa9371f9e mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xcf19a5e9 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdf42f94b mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x738c8341 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x8fd54a5f ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0xd071c06e ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1e78845f nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x723759ac nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x80fc2329 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbb7e8faf nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd97e8666 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xddf1f3c2 nvme_put_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x110caa38 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x14b03049 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x20f4c7b8 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3372f689 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4b5ebbdb devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4dd8e331 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4ea38e32 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4fee2317 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x50608253 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x62650c19 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x64dc55fa peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x69e75515 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6e3cc208 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x790cc17d peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x916a4907 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x91bda61f peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9e189613 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa4bb4b20 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbce16609 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbd0c5c47 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc61d43dc peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc7e6bf99 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd14d4aa9 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd26b0a5a peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdd8a86c4 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdf865f93 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf23755db peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf488a308 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xffe02554 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x2ccc2c32 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x312a9635 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x3cf600a6 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x6b54a1e3 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xddf935c5 peci_ep_pci_local_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x000d1532 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0d1f6b09 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x17d10f05 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2798489b pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x342e68bd pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3e0f6ceb pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x495bd027 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4de9d923 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5579e0c9 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x62180a0c pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7cb4b57b pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8518dfad pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8d9e0be8 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9e71ba71 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xba086345 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe3619477 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe4a78e63 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xeeaea5ba pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xfb05a7c3 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x1e37f015 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x1fe0bb1e sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x35c5dc8d sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x830b76fd sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 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 0x62713b95 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x8c1175df hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x8f9c255c hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xf596a928 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x75e7d7b7 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x846e11fd cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xd929d850 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 0x9e47a25a cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xc7d487a1 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xec74b2a2 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x1876b526 cs35l45_spi_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 0x5b4e746a cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xc7ef2b8e cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x204f3a8c cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x20556fe6 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x385d1e04 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x48b84240 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x8c7efae4 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x9113d36c cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x96ed41ea cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa4bec299 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa88902f6 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd7931cdc cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe196ba23 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xe0516dc2 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL EXPORT_SYMBOL 0xaf721127 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x1ab4ceba sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x437ce3d7 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 0xb231cb67 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xd24eaded sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x04f67785 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x1a500708 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x5dbd6ef1 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7d6ab447 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8ccbc75e dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8ec22d1c dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x90453468 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xc92aaf88 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xdf91e63a dw_spi_suspend_host drivers/spi/spi-dw +SUNXI_CCU EXPORT_SYMBOL_GPL 0x079708d7 ccu_gate_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x0a9707d3 ccu_mux_helper_get_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x0c64ee0e ccu_sdm_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x14438263 ccu_frac_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x1f23b840 ccu_nkmp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x3e362444 ccu_frac_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x45837646 ccu_sdm_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x50165be0 ccu_mux_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x517768aa ccu_sdm_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x5cddbcc6 ccu_nm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x61abda39 ccu_mux_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x6668446b ccu_phase_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x7279ee3e ccu_mult_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x831d58e6 ccu_gate_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x844f1c47 ccu_mux_helper_set_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8813232a ccu_pll_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8a845fdb ccu_nk_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8bdea961 ccu_nkm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8e63463a ccu_frac_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x923edf17 ccu_sdm_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x976fa968 ccu_mp_mmc_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x98224ec7 ccu_reset_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xad1062ab ccu_gate_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xb159e62a ccu_helper_wait_for_lock vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xba365240 ccu_sdm_helper_get_factors vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbdb5d83e ccu_mux_helper_determine_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbe8d8188 devm_sunxi_ccu_probe vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xc4608f36 ccu_mux_helper_apply_prediv vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xce9edc4f ccu_frac_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd050ca65 ccu_sdm_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd27db71e ccu_mp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe49056d8 ccu_div_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe70cc090 ccu_frac_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xeb47a9b9 ccu_frac_helper_set_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf66eb443 ccu_gate_helper_is_enabled vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x06b28712 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x079cc19d usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1b451a8b 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 0x22e11deb usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x410bc259 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x48d60ff1 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4bfd52e7 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x515786d5 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5598afa8 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x57685f03 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x62b980ad fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6d1bffb6 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x755b3b1e usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x96c78007 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xab67cc45 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xba715fca usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xceac43a0 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcff1eecf usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd6f7db7b usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xda4bd9ba usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdaf48e09 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xed89a31c usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf06e7936 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf9bf78ff usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage --- linux-gcp-6.2.0.orig/debian.master/abi/arm64/generic-64k +++ linux-gcp-6.2.0/debian.master/abi/arm64/generic-64k @@ -0,0 +1,28033 @@ +ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux +BRCMFMAC EXPORT_SYMBOL_GPL 0x5979903e brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0xc674c8b6 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x1979ff5a counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x2c6c3214 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x31b66106 counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x749803ea counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x85a7dc86 counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x9c8640f8 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xa34a854f devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xa5fb1feb counter_put drivers/counter/counter +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x042ecea3 otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x04c5bbd4 cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x0608083e otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x07e708be otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x081c0a36 otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x08cf39fa cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x15b4c3ef otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x194c68f2 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3c189721 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x672f9152 otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x7673f3b9 otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x9f063016 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xa07d8d03 otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xd65dda18 otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xd6f2089e otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe766775f otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xfd288e31 otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcdf1da99 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd689ae15 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xe002f197 crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x026f78c9 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x02de383b cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x0aea36d4 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0c15d2c1 is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x18926482 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1bbd9ca0 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x201ffdad is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2288d5d0 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29d7d3cb cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33b2e417 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x42baacb8 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x447bec15 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4492a688 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x464d002e cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x542ccbc9 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x54fe6eaa cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6577122c cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6a6df5ec read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6e17713b to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x731b8f69 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73c5fe75 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x75b4c9b8 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x760d8215 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x775d1a9a schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7acf569e devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7c06f1d5 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7d0d8574 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux +CXL EXPORT_SYMBOL_GPL 0x834c642a find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux +CXL EXPORT_SYMBOL_GPL 0x85913580 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8e333165 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8ee0230c cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x91339e61 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9ac0a00c cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9dbaa793 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9f2238df to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9ffba879 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa1f22886 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6b3c5cc devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xac3b6f41 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb7e9e74a devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbdc8285e cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc2cb0a23 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc888e425 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcab1b018 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd5ac90d4 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdcad61ed cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe25e1453 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe2f9ddb6 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe32891ea cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe355290f cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe5058fde devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe8a3cfdb devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xeb3af32a cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf34960a0 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf5588c18 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf6eb2689 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf9efe15d is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfc68d670 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfd297a46 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfed8fb84 cxl_map_device_regs drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x2bc0e842 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3dfc8608 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4df5f2cb dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x561a0741 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5e1fe5a5 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x63f02821 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7185fa5f dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x73907150 dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x755483d7 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8862fd67 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x954c5f3d dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9a6ea6b4 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa439bdb1 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xbc2ae98e dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc0b408f2 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd202ca46 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xda5489aa dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xde11a565 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe05e86c7 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xeb3c1238 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xfc3d6df3 dma_buf_map_attachment_unlocked vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x2303b915 efivar_lock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x5a3c9dbb efivar_get_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xa336852c efivar_get_next_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xc961bff7 efivar_unlock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xefc77711 efivar_set_variable_locked vmlinux +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xb1d6d33c 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/crypto/sm4-ce 0x0fca045b sm4_ce_expand_key +EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0x7155f33f sm4_ce_cbc_enc +EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0xe609a0d5 sm4_ce_crypt_block +EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0xed1f9633 sm4_ce_cfb_enc +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 0x07b8d040 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x8eee4ed5 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x9b6c642b crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xb54e3ee6 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xc87e348f crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xecc9a1d3 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/sha3_generic 0x5d92c11f crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x6d0f9d6c crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0xa5cc2173 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0x32672ef2 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 0x103735ba acpi_video_report_nolcd +EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight +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 0xab17113b acpi_video_backlight_use_native +EXPORT_SYMBOL drivers/acpi/video 0xb56e8e42 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0xc0973cf5 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xd1aaf8d4 acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x5009ddc6 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x11394f4d bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x47c48176 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 0x15e5b6ff paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x3a3df871 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x3e9e5229 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x5ad5f6ea pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x83aeb921 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x8abdc9b5 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x93234220 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xa9e7ef16 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xacee145c pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb082c1ab pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xbe87b714 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xe9fb40e5 paride_unregister +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x1d3dbe09 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x22d7fdf9 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x44399a82 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 0x4aaf227e 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 0x6f3dbc28 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0xcd48bdbe ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0xfd1bf068 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x01ccaa46 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0cf47055 kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x12e9c38e kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1915dfbb kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x27e269ef kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x34ed9dc9 kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x470e913a kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xb6d86355 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd2258c18 kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd8bd7659 kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xdfe2d7c8 kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe78227ce kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xfdd0e264 kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2d9dbea9 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x432c12f2 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x793c1db8 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb9cfdd7b st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0877659f xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0da3ebda xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x6e7f6483 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x023cdafa xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x889a732a xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc71a8184 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x63cb50b0 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xa590dfd2 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb45cc5c5 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_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/caam/caam 0x17572340 caam_congested +EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free +EXPORT_SYMBOL drivers/crypto/caam/caam 0x59b21250 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0x63a2996b caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x657bfa23 caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xd844d866 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0ede18a0 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1fdbf2c5 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6ff0b7fe caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd0fe30ce gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xea8054b5 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 0xdf608fbe dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x5afdf9fc caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/error 0x60dbc82a caam_dump_sg +EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x9062d6f6 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x159d34cf fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3fef19b9 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4058db56 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4192b136 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a9412df fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c454a8f fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x544ac3ec fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5675c6e5 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e46eba4 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ee17204 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa42b2467 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8d28be8 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xac95d7eb fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaff24b20 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb3a36d4 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbdfab6c0 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc538031a fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc652c51c fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc70b23b3 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcc3d8a4d fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xde63f338 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeb0f793c fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf9400bdb fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf970cf7a fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf9f6d920 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfe8acd94 fw_core_handle_response +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x66b27756 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xa4b02a93 imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xb149f6d9 imx_dsp_request_channel +EXPORT_SYMBOL drivers/fpga/dfl 0x9523f318 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xe571bfb5 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x583d83de sysconfig_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 0x02aefd3d drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x047b148e drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06700d8f drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06962747 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06a9a766 drm_dp_mst_dump_topology +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 0x0b864541 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d299184 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d8f1f2b drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x11fdeb1f drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x15e032b9 drm_dp_atomic_find_time_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 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 0x1b6286fb drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1c80c771 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1fe0756f drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x227244a3 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x232ecd9d drm_dp_mst_topology_mgr_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 0x2419db7c drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x25bfe777 drm_dp_pcon_pps_default +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 0x277b9ba6 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c50596a drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2cbcf03b drm_dp_atomic_release_time_slots +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 0x30f38fbc drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34292377 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34b57594 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x36aa8dc3 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x36fde329 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x374ce511 drm_edp_backlight_enable +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 0x3b9e2827 drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3d64542c drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42d51119 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43201201 drm_dp_downstream_debug +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 0x46512717 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4786545e drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x482e8e35 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e7f76b7 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x50e52d05 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x51d30896 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x538878f1 drm_dp_check_act_status +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 0x550f2ef7 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56a19c50 drm_dp_cec_unregister_connector +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 0x5a86f411 drm_dp_phy_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c1fc6e0 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5cb2bb1c drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5fe50fe6 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x624724b3 drm_dp_send_power_updown_phy +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 0x66f1056c drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x66f45444 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x67315ad3 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68fe36a9 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x698fc70a drm_dp_cec_register_connector +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 0x6e2d8a26 drm_dp_add_payload_part1 +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 0x7081a137 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x726e8688 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x72db2165 drm_hdmi_avi_infoframe_content_type +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 0x73b0a207 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7464e4dc drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7670403d drm_dp_cec_set_edid +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 0x7a23abfc drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7eb41805 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7ed1acea drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x800e3d68 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x84283c43 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x857082f1 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8709d510 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x87bc0ecb drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8988e29e drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b75e95b drm_lspcon_get_mode +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 0x8dacc631 drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8de079ec drm_dp_dpcd_read_link_status +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 0x9e332b0d drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9e51a11b drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9eaddaff drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa13c5ef0 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa350f7c4 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa44063a8 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa4946fee drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb0b175f4 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4580aee drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb715b388 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb81c2dee drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb9c4b962 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xba2ce971 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbc748325 drm_dp_get_vc_payload_bw +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 0xc31027f8 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc522c5ad drm_dp_pcon_is_frl_ready +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 0xc961a48f drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb40311b drm_dp_vsc_sdp_log +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 0xcd2fcd74 drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf9845f6 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0730319 drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd371d61d drm_edp_backlight_init +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 0xd6ca1402 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd7916067 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb5f42ff drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdbc62c4c drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdc365225 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xddfbba16 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdef48fd6 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3a79f79 drm_dp_aux_unregister +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 0xe6b12683 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7aabd17 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb061f06 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb35ad1a drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec526593 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xed0b14e9 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeda72993 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf5329e93 drm_dp_pcon_hdmi_link_active +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 0xf6a30bab drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf99b852b drm_dp_pcon_pps_override_param +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 0xfbca5896 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfc12e6dc drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfd230d92 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01b9163e drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x022414c9 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0242614f drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x038d7e0f drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03a90bb9 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e0a40f drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0413828d drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04507650 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0481ba19 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ba62b4 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04eb2daf drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07317ae0 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0754db1e drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x076ec04a drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x088c15f9 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c68f95 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09cac867 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a0541c9 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a338e01 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ad665cc drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b7c6ec3 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bdbd559 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bf2e627 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c71a3c4 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d5f16cb drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db74bf6 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e5526e8 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e8cad16 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ee8c99b drm_gem_objects_lookup +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 0x107727ab drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10fc9479 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x130cd9b2 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c78a5d drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15f26d84 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1651567f drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x173f3d1d drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18bec9ed drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19118611 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x193eb81b drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e10909 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bf6d070 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5430db drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ca2c18b drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cd5b928 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d08eef6 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d0f1b0a drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d25e86c drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d2e6faa drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da4bd23 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e2c3a90 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f6b0749 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20b64ccf drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20f12d8c drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21226984 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2276010e drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22f51a93 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23440f2c devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x245618a4 drm_atomic_get_bridge_state +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 0x254b7ada drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x264be9e5 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x278fe632 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2795f44a drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27b7bdd4 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f8501b drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2919fd86 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x292a3bf2 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a91d07 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29afd023 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29be2ec8 drm_warn_on_modeset_not_all_locked +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 0x2bab7eb9 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d909a86 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d9337ca drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e1bf176 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e4d23aa drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e56bb65 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eee0f46 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fc4f917 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe1382b __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32234efd drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32959c3f drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x339f33b1 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34c7514a drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35049d28 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a0d607 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x369d81ec drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37b9bd93 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38d8cb84 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39ed3307 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a2f2c5e drm_atomic_print_new_state +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 0x3b47efc2 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b763be5 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bbeeea4 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ca79669 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cfacf1e drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3edb78d6 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f8ba5b5 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb739b4 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fd33a4f drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40a59eed drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40e6f501 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x415f529d drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4220f07b drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42665f1a drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42e4be97 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4374b18e drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43df67d3 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x441a9810 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x443c3aae drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x444a09d7 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x444ff9a8 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4467a100 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a1f6f5 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x452df35f drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4531ba81 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x462640d1 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46997c62 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46fd633f drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x476d83a5 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x482119fb drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49a9f4b9 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f5acec drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f869fe drm_mode_create +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 0x4bd5d26d drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c1c9c6d drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d0193c9 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d524f51 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d5fd58a drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd8f70c drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4c2729 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e7f3539 drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ec7cc24 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ef23dd6 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ff039d8 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50326a0f drm_set_preferred_mode +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 0x52b239e1 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54753a96 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55673fd4 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55daf3d7 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5692d521 drm_gem_mmap +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 0x5854f256 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5961edc2 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59aa8bfb drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a90c83e drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ac179eb drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5d904a drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be16b69 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c958a36 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d3fa401 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5d080e drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d764446 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e194fb7 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e5e307e drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5edf41ba drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f39c2c3 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f43082a drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f4c6b88 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60e1fc2b drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x619e7ab9 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x637cd1bd drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63c21b42 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ee47e1 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64c9e841 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65665884 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x660eaa8d __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6882b94f drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69a9e0ad drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a5d00a6 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b1f69d8 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b54f913 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b7c1ed6 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ce578d4 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d3d47e3 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea43631 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7030cd28 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70cfdc42 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d2d80d drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d2f28c drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x711c59a6 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x729e990f drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7307eaaf drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73fb943a drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74a03c23 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x750c4039 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7513f4c2 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7544e011 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7589608c drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x769356f0 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77db7924 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a0b5b64 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a6a3fe1 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7afc0f40 drm_privacy_screen_get_state +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 0x7cfb49d2 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0f3d70 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dca183d drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e7791be drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ea7b76d drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eb3209e drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f0366bd drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80937802 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80f69712 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81251966 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a8925d drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b29d5e drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8212f6f7 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8268bb31 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853e770c drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x859ce432 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x862884a6 drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x864a3dff drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8690c05e drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87eee355 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88332e88 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x887722c2 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8945ac48 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b36fa2e drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b6dce0a drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b70a8cd drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b82ec1e drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dca48fa drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ddd95fa drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9a54d1 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fd42514 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9037fc5c drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b874eb drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90bdfc80 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91067f20 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91ad4295 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91dfd429 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f8d21c drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932ff03d drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9612c451 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x979093b7 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x987a13e3 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x990b473c drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99d2da26 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a24a3a2 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a7aeaec drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b62a9c8 drm_crtc_check_viewport +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 0x9bca0bc7 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bde58c3 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bfe03bb drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c1ca30c drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cf9b6ae __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0c44fe drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e095ec3 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eb17de0 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fdb92e7 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa230c001 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2745457 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa31fedd5 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3cddea8 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa46868ef drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4898009 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a0b1c6 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa61a1088 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa661a71e drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa67eaefd of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7156436 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8847fb2 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab035aa7 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac14fc34 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac32f46b drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac5c3829 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadaa360a drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf53217f drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb024d07d drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1073d7e drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb24e4afd drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb28bf9ec drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb28e5df7 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3dc5564 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb436bd7f drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb494cc21 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4bdb63d drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb511a219 drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e623f2 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7cda521 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84e55f0 drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb89058a5 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e17f93 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9476c2f drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8be9cc drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbab1764a drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbdb476c drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc0aa37e drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc0b705 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd85b45c drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf2af588 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1294237 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc150ea08 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc15bd59a drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2001b9d drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc33df579 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a9efc7 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4c7bf83 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4ce008b drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5316bda drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc557b343 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc656ad6d drm_atomic_state_alloc +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 0xca549889 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb1512fb drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc12a8b3 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd2fbca6 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc3b67d drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdca93a4 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf498dce drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfe2b8cb drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd01087d5 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd03c2ed8 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd04615dd drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0dd4e45 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ea9402 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2ccaaec drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd35eb287 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd441143a drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4af0f24 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5207d3d drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd641e801 drm_modeset_lock_single_interruptible +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 0xd8a4b4e6 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8f9fdb5 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd90f815d drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd983c3de drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1a2b8d drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5bd78f drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc42683f drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc7c8a71 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdce601d7 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde36f9a0 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde74ff8d drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf48e0e9 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfa90bed drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0dcdd15 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1e18062 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1ecc4a0 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3306b5f drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe35207f0 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe41c49cb drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe44985f9 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4a95956 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4edf48e drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe546c691 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe568b427 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5c3fdd1 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d1b77b drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6579034 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f2b109 drm_bridge_add +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 0xe8b11ce8 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9e52c94 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaa68f33 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebfe4ade drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec80eb53 drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec825f37 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec954db8 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecd78cb8 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9fb6e0 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeddc5f71 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1375b6 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee18b04f drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef27f4e5 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf08bd699 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf142f290 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf530351e drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf56d66ae drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5e5e33e drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5fac5d7 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7aab227 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8d808a5 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a7cd32 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa56d777 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa86a7ae drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb164219 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbd68572 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc2b14da drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcc6520a drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd280968 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd543f48 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd61e604 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfed642d1 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff92076b drm_state_dump +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_dma_helper 0x2a6dcc1e drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x371fc2b2 drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0035c898 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x038e89f3 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03bafd53 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a37ab2 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0865ca3f drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09925388 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ab42d22 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c66fa55 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ebf1665 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x106f9f1f drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12af974a drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13485950 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1375d7b5 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14a2a482 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14bba8ef drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15664fd0 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15a0865f drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16ba310d drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17526697 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x185753e5 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ff02149 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x214b4c2d 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 0x22bf21e9 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2311c68c drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x248bc0b1 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24ae1fda drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26c0389b drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27292466 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x275ecc0a drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27c91f47 devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29bacad6 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cabfb76 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x334cfeb5 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3499de8f drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34be9594 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34d426c5 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x356c5198 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35f46595 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38208691 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x389e185a drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39f577c6 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b8bbffd __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d494da7 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e086169 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f54d7ea drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fdadf1f __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4202b212 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x423d238a drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4362cf00 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44b24141 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x454d75f4 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45f6ca33 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46729516 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e33025c drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e58763c drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e820816 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50a9484f drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52deb178 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5311a641 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5351d1ba drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55afccd4 drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x566f53fc drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5784a8f4 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58b8f5d3 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5948a873 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a587d12 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c04c069 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5debac9f drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f08ed17 drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f94b616 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61983b9e drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61b7a3b8 drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x650420df drm_fb_helper_cfb_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x676023dd drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67ae39bc drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68a1d8ff __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6962f334 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b105865 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d0fe60c drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dcb1de1 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71348aee drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71875569 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74a02ceb drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7520c15c drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76604157 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76bb8959 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x773e8541 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ccc3dde drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dab96e2 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eb27d63 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f0c02ef drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f5a4aa9 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x806efcad drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82e34859 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82fb7eb3 drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e90b98 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86e376a2 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8904251a drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a98596a drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ba15fb4 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d8c3ef3 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8da3235f drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8db452de drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f77d169 drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x912ce9a0 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9318350d drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93df82bd drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x941b4377 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95208bb7 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96efded0 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9728777f drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97643f19 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x980670e0 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98c86a81 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98d00134 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cde5731 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e5a7ea4 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0158a31 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa153eec1 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa16da871 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2dd0b08 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3d41ac8 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa50e0c48 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7b9c312 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa81dc199 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaafa8672 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad383fde drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae4d28e6 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf213ac7 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0d60343 drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1e5bd08 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2104e84 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb258838d __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb45c52b5 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb565d838 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb661ff13 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb67649f0 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb962135d drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbd0e1b3 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbca3e989 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe70197c drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf17cb5b drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf4cf1cb drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfed1105 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc304db07 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6fffacd drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc769fb2f drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7fc97b9 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8d83907 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8f35f77 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc2ee096 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccaf6d9e drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdd51306 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfb65148 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd08e5bea drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0fb463f drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd44108a5 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd45d5ca7 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4c3b2be drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6376777 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd79bef86 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd87b95b9 drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb5a4e1f drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc13d550 drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd34168a drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde468828 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0072adc drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0e1d564 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2b22cbc drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3ad6f2b drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4d5698c drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7729f49 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8db8934 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9f64f0e __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea5692b6 drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xece66423 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed1c691d drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf047d43d drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf04e44fb drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1d64abb drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf22eabc8 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf266c320 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2b43a8d drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3271f50 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf327c838 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf402fa18 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4edc6ae drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7a2884f drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7bc3f61 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf83376cf drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8672c7b drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf88a6dc1 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf919de20 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa2c312e drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa7a45e1 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfda516ab devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdfd82ed __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x021ebdb4 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0e351fd8 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1c318480 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1c6f8023 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x38854487 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4c0e5f7d mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x575e50b8 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5a15101a mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6a733dba mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6ca9dc25 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x702312c0 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8779b4a4 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x90528e46 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa54d602e mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc6d55e19 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe14c5312 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf4348bf1 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf8bf4ca1 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x21ac4bc7 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2fb19afa drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x34457606 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x410c5b62 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x50ee94b2 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x80ac3362 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcde4581a drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd465bb2e drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdd6d7d5d drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xe3ad8d0c drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x29a6be11 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x62669c72 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd28b681e drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xdcfd028e drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xe813868c drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x13365635 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1e4534f6 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2848cf36 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2bfabea4 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x33134398 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x42eed031 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4ee0732f drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x50625c90 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5a68d763 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x615db81c drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x78555034 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8f718668 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x91910364 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc197914b drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdacca0f9 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfbc1fb5a drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xf0aa9990 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x02aef2fc drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x03735467 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x04d6e179 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06994a99 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06c9ae5f drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x08c25042 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2edd6a42 drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3328c728 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x43e7d42b drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4f558de3 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a8d49ce drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7aa5307b drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cf10c35 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8f047d89 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9844ac21 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa3ab4b5c drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xabb2dba9 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xca4ae767 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xda0de242 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdedc2853 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe0594d3a drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe128f159 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe12a75e5 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf4d8c35d drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x30c20828 sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x5fc37148 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x85e1aebb sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x96b2314f sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xa24bab87 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe3a0c06d sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x1ff65cd5 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x67a13229 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01da2067 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0961a5cf ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c231474 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e977268 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17f6baa5 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c817bdd ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e594de9 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fbd44ba ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21b164e5 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2763653c ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28addfcf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x346ca238 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c1eca08 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40b4d7bb ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42376169 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a94b77a ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d8c2805 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4efb7eb4 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f7323bf ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50de8261 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61e4ddb5 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6336c707 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64895c96 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72be4298 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7904c43b ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ff78584 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8147b026 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81ed89d7 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86ff37a9 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89e6a9d6 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b3fe6b4 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f02df3f ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92b65df2 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x938153c9 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b2cdf73 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fb02ddd ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa62139fd ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa66dc942 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa911a879 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb18ce00d ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2065bde ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb230c7c2 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb30d84dd ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb968ddb0 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc7f6278 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc75e512e ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb56b690 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce3c8a59 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd13c90d6 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd58f8433 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd709e988 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd98b3f92 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb8fb6ae ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde64fe6b ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdeaff5f5 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf3d24a2 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3826aa7 ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5d62deb ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6d72507 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa6bd599 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe716f13 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x005411a0 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x06264dd4 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0a9961df host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0ba38682 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0d8b26fe host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x13707c7a host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2185af59 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2972bd80 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x32602fb7 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3b8f1513 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3ecae099 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4918f9c4 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4bf5dfcf host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4dbddd85 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4fd3948d host1x_fence_create +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5174e95e host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x529bdbee __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x53f83df0 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5ce690cd host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5cfe21b4 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x612c4f44 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x849ee3a0 host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x88dc32d7 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8b3816e6 host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x93eda958 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9423964e host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa2916791 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa52da722 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaa601c23 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaac86c4d host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xafb5a119 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb299e6d0 host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc813ef83 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xceee7a18 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe42a29e9 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe79b1470 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeaeb4f39 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeb845c78 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeba2e4d4 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xee402fe7 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf6259e9f host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfe6ddfdc host1x_syncpt_request +EXPORT_SYMBOL drivers/hid/hid 0xca5436da hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x3d042aed vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x52fc44ac vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe249d6a4 vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x6003bd9f adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x2ea71122 ltc2947_pm_ops +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 0xd78c1169 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x99f9a712 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa2e064de i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc45670cf i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xea332d6e i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xebe83b3e i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x02571d50 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 0x8f6c5c08 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xe1b25fca iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x45b89e82 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7887186b iio_kfifo_free +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x26888097 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x0cc6e44d __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x36155dc2 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x496e3d68 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x4dbfccf0 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x51da361d __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x5831b718 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x5870ceff iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x5991b550 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x63b83eb8 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x6ab045fa iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x73a5db55 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x7e3c6576 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x91c79d7a iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xbcd3042e iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xc39709f4 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xc6b8b9de iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xc6f040a1 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xc96f4964 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xce7f687f iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xd8669500 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe9ffdacc iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xef395bbc iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x65efce2a iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x07308897 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x35144c79 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x46c12d8a iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x97e57b4d iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x31ae8ce1 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x624c2c07 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb2006bd9 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb2e6be41 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4d7656d3 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xabff5234 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x09f49062 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x07046460 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1a9520d1 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1f73183b ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x36724050 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x51ffedd5 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6520698a ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x70541022 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x771e2d5a ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa315ecba ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba6c4721 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd78e501 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd42ad3ea ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe7b3a253 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe954f06d ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xecb9e10d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0145b77f rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0156b249 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0212e6a6 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0406d80e ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04576813 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x063853d0 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06740690 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x079df317 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07ff1529 rdma_copy_src_l2_addr +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 0x10c38853 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x132d2ea4 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1724f3e7 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17b20d2c ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b5f1f40 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f7010e0 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fe7bcb4 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20dd9882 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x238ade83 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2456a3bb rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x271653f9 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x271ca7f9 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a37cb5f rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a3be659 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a659737 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ea04ea8 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3196ad2f ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32383b98 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x356eeb3b __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3591e6e8 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x376e00de ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x380012ef rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38662d83 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x387852dd ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38b19db4 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39d45684 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b5c0dc ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40f1e10a rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x429c2408 ib_drain_qp +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 0x44b94886 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4553171b ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x477742a2 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x484c5056 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48754c18 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a763367 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4af57a22 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bf778f3 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dbfee0c rdma_restrack_new +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 0x4eff9360 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f21e313 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f65b356 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51c2674c ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52a0ec97 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53ee279b ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53f368ff rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58111d3e ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59b4a447 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c025238 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5de39c8d rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e2c5e15 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ea6f607 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f9e61cf rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6081257c rdma_nl_put_driver_u32 +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 0x63947616 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65158a40 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65423da0 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65ebb587 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66ac6def ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67b230d1 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67bc8413 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a20be70 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a6bfbbc rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6abfdcac ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b1744ab ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dc6d310 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x729f59ed ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x742164d1 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x746f869d rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74f0054a ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74ffc4dd ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7653e197 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7912c4e7 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a8fe386 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c699f01 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d1bb4a5 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ee8bdb6 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ff3f11a ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8441abcb ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8571e337 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86429079 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86561198 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8847da99 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88afbf11 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b161d17 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ceb407b ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d6a3d62 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9511b266 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98ee895f rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99dc3e9d rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a2e649d rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b9fd19e ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d24b74d rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9de5e1e3 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e92e76a rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ead3296 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f7365bf rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fa2ac93 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1d611a0 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4b93bc5 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa61c05c4 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6800d76 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7071650 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa763d057 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7a6c0a7 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa85aa4c1 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8a93520 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9b67a87 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa2976c4 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab127a1e rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab8a4bf1 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacf92f66 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadf167da ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb043c739 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb079778f ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb14b8295 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a47379 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1f325bb rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb31da3e7 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7554d00 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb86019c9 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8de2dc6 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb99e7cf1 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba7a3356 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe5cd082 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf9f66da ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfe13dba ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc04e8cd6 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0f191a0 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3fcb266 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc87869e6 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e0eae6 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca77e128 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb2c8ca7 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc33542c ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdc86a05 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0245c2d ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0395e14 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd13ac6a0 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2ce23c5 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3bce942 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd420c030 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd552aba4 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5604231 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5a5071f ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd65c9ef6 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd76e526b ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd836c7ed ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb8d242f ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbeb7da1 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd2727cf ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde650acb ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde6c814a ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe27f27c0 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2d63e34 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5d1f51a rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe76b68f2 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8c7587b rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9725007 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe995d832 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9d611db ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea9e3250 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeac92f9e rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0859bdb ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1327fbc rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2c67479 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf39c3839 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf39f781a ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf41010c8 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6d0d027 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6d18b8d roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6e59a87 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf78011dc rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfade0a6b rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb1bfd58 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbb23593 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc9280f8 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd48299c rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x03b5f3b4 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0414014a ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x05213721 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07747e41 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x142d19ba ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23952650 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x25a9e2e3 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2c6f3689 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2d316f9a flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30191a4c ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4a2f3897 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4cf385f2 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c60749e ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d45646f ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f8561a9 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6fab6a39 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8066fee3 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x822d37b8 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x888858dd ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x98b5aba0 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e46a229 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa0f49b03 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3f47263 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa693d886 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb19b2ac6 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb30a7f02 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb532171 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 0xbf876d96 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc0073a22 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc8182f86 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc919d04d ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9d868db ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc2c9390 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce785d77 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd881d207 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2685cbc ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfb6b486d ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1dc75a8a iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x637abcd1 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x65cd23c2 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x74f69240 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8f4fe889 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8fc692ee iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb3962f9c iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf8205116 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x087d5a00 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c3807ed rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e944cbf rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1acf17ee rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x21753ec4 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27dd347a __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x29f0e7cc rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2d0c4654 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x30ddad8f rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x341ad416 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x352b3086 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4443eea0 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ce52822 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x518b639d rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5868eea4 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6033c1aa rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x678f59b5 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6bb69d44 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70d5392d rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x713d17e6 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x71c249ee rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x798f2a59 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7af45988 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e4cdaf6 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x827c4710 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8304f32a rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc57ff95b rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc87c9134 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd5d276c2 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdcaf9dfe rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4d06d28 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4e811ce rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf4149676 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfdc8859e rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x028bc3c3 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x29406f1e rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x32b39540 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x66dd31bb rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7228fd48 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8d9a177d rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdef19542 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 0x6925d38b rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6ab6d6b4 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 0xbf959062 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd0ef2d06 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x32929c7d rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x34e4353d rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3636bded rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x627d5513 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa62f8e49 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe18f1780 rtrs_srv_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x00f98b1a gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x04b9acb7 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x43435d23 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d71b3ca gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4f00ed70 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x56e0c029 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6cb8865c gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa4504587 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfaec352d gameport_start_polling +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x8695cd89 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x947fdc8f iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe0c4bcf4 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0xc61cfca4 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x17a54692 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xaf527cde ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe7a0d226 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x87bb3649 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 0x7a823a5c rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0c5b28c9 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x197e3297 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x59b82e7a sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x972a2f89 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfd1124e2 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3e53b777 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x98365bc4 ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xb79cdb92 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xd9418efe qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be78dd2 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x89d24ee9 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x937ddfb7 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f521f78 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbcc9453f 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 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x519f80b2 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5e26f5c7 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x75546d2c mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfda0df91 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9218591f mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9ac772b0 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x070cba4f mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0c8b2904 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x18b48ab1 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ced6115 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f5d12e9 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26a83e80 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2939f805 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2c336cf1 mISDN_initdchannel +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 0x42e1b81b mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x49c21d49 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e873afc 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 0x635691b2 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x67b75044 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6a7ed394 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6cb8bad3 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7209202f get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x791ae148 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83214157 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x925d083a queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9851a77a create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 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 0xe94fb172 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec2816f9 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf36c5057 mISDN_unregister_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 0x1fc82659 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 0xbf6e3f94 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 0x5e661f0a cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x2a773305 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x94ee847b omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xb05a9261 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x0b6fef59 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x5a98da49 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x883d9cf7 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xaeba6d34 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2f34e982 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8c35c9e3 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x959eb8dd dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa4ad450f dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd7bb3cd1 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xddab9734 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x73e9904e raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0xd4d5485a r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0c42e072 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1af2eaf6 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x46da59c8 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8f610631 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x99d4aa7e flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa8761b00 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb92b1655 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdad752a6 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd0ff046 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe510e9d8 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf4d93eae flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf5587d74 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf7257024 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x25f78234 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x32f1202c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x56af8ea1 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x67a01925 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcc95cda0 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 0x68e3bb16 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xdea16177 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xb7873dd9 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 0x2c11a742 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xbf385e55 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x418b090b vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x74eb35b1 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8bcb52c8 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xbe8d3250 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc6e72643 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd9440a45 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x8a9d612e vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x039ac765 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0581efc3 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d0dc241 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10dc2608 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10eca25d dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1a7e91ef dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1c785edc dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x233d695a dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2ed10b46 dvb_frontend_reinitialise +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 0x41e6dcc6 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4434eca9 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4783c68b dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5143ca13 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x51bd9f87 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x530f1617 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 0x5690adc1 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x57b10cad dvb_generic_ioctl +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 0x61a12ad2 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x729f54f7 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa71ce88f dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaeb640ca dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbefb1ec3 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd0e1c878 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 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 0xff431630 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x11ab2a88 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x1a0f22dc atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0f8ca475 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x52c26291 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7d3c73d3 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9bdae22b au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9c701d7a au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9fbf914f au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcd6d8b79 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd0c1e589 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe3128f17 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xed328f50 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x0b14dc66 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x84cf2767 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x52bd5616 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x9fdf6d08 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x6ea8bedf cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc6996f82 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x25f949be cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xcaa4e019 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0a1dfaca cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xf14ccbc4 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xfd62b131 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x47fd41a3 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xcf040b10 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x110ce075 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x19995b0b dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4a5e8475 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4b0bd886 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x63d2a2ac dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa9373443 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x22c86a7e dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2483056c dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4eab8770 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x75e01a99 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8502caff dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9766c5b5 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x982fc594 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xace5cd3d dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbe8669b5 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4de9b59 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc6664ec0 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcfcb9b74 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd0d3621a dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd58fd26e dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf30a031d dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xc1288a21 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3498957e dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4f6f73e9 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x659b6daf dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x828222d4 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe3e68f07 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xeb0c21c7 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5371afa0 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8e31d5cf dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc8557ee5 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfb7d5452 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xb58c3bdd dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xe5bc0cce dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0262cdd9 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0ac46705 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0fa8e9b6 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1240222a dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x41638be5 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x45cfefee dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x54bc3763 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6a2e0d15 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8dd15ace dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x98eb89ab dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaa175d30 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaf3a6a71 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xea521af6 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3256d9f3 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x55dd63eb dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x63474913 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x947e36b4 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc881a5a2 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xe55a7adc drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x496f1d08 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x41d2a49f drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x7be4fe08 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x9531326f dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x41d4d8c1 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x857a4c13 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xea1afca9 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x44201e89 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xc6aaa9c4 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xcb08b9f6 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xae394083 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x2f6f922d isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xf61d8968 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x34d89579 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x9c04b652 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x366fe96d ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xd79f34e4 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x9aa0fa6c lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x9360445f lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x8f40d9a3 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xcb490165 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xdd373beb lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x78b7c4ca lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x9ce153d7 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x3d9a6cac lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x350a00fb lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xded6bf83 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xe498cd52 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x077e54e9 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb6320c4c m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x37b3cc72 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xcdc81d79 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x5c70f392 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x2844b81b mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xa176b433 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xf36a94ad nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x40d7cbc5 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x11d9e471 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xa66b9ff4 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd36330df s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x2fd2f099 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x437ce7e9 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa08836fe s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x2163dd45 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xddaa63ab s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x5c569a9c si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x7ecae574 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x6c69cc3b stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x6607c4b9 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x35e0bcd6 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x8d76b97d stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x18d0e017 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x1409fccc stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5864d152 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x6894cf68 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe9a63505 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xf417e2a5 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x2815df38 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x9a4646d2 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x117786a1 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x34c200bd tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xa77f7818 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x3421f6ac tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x4cd728a6 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x775a37d2 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xcb36df5c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xc49d2e99 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xebced321 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x3906ddbd tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xdfbd7cd2 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xc349250d ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xf4cbf45d tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x39843127 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x49cfc8d5 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x3d6cc261 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xb0542172 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x329547bb zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x732a57c1 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x24450859 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x44241cda flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4eaec07d flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x60d13844 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8c130b4c flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x962663ad flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdc623591 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xeab45785 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x130bf5d9 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb9c23f03 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbfa83ae2 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd6405033 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x03d36f5e bttv_get_pcidev +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 0xd47f3777 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd636d402 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1defb5eb read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x213c0417 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x285aec00 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4c9c1df3 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5b344eaf write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x807640c4 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa3253429 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcb925bae dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfefa7dd3 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x5e2fb340 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x05cc0682 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0a0aecd7 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x99131fd2 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xca007193 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe91c053c 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 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x524c337a cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5b2c83f0 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x710d4ba5 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa132cbc0 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa67c0daf cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb5b716a0 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcc90fe6b cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x165f9c82 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb3514779 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x31172618 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x50a24431 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7e828206 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x84db2de6 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0113bae9 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1add9d20 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x445256ba cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xae363719 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xccd6fbf6 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdc4e7f30 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xee7ae300 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x004004dd cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x078d96d5 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1fb42dd6 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x32672daa cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x35202b97 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4186b547 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5473287b cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x573c0d67 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5d808802 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 0x73151b81 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x77b25b3a cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x79905b96 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86c435a5 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 0x9e43fcf6 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa22ae341 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa92ca8ba cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xabf89a0b cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7fc96d0 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcd1cc1aa cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8a191ab cx88_newstation +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xfecc0b3a ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x198428b1 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2203ea99 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x32fcc4b9 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b0b0738 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x55a6ab56 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5ba575fc ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5f40bfc2 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x626cf5f1 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7911b025 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x797583d3 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7ad53648 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa47fc211 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcdca3b79 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd3ce199c ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd52d853a ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf4e401f0 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfd62ae81 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0880cfaf saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x21328c6e saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2e766979 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3c29dcc6 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x588a5bdd saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x61bf5f6e saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x72226b03 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75d9c2ee saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x94aacc7e saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcae33185 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfaeba3b8 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name +EXPORT_SYMBOL drivers/media/radio/tea575x 0x0db9f5a8 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1823668c snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4046f209 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4e57136c snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4e932269 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa7ea591b snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc4f4d9bf snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x06f5a713 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 0x94ea7bc5 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 0x2fd132f9 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x6a732f30 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4ec50b62 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6b356954 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xaf9b0e84 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x87b423bf max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xe5cddbbe mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x50970bc6 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x4d0b99ce mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xa558f2c8 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x7fe55dde mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x084ea1cc qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xdf6d89a0 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 0xd783fcf7 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xa5f44972 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xf5d61339 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x877711b4 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x98384a5c cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x08d0b155 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3cb62217 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x50a911f7 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x609da37c dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c057dd8 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6d3da7ef dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x856fbd44 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8facdacb dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaf32a0ed dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1bc51f1e 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 0x8b891e28 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x90700ea6 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x94225edc dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x95cb954d dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xefdfe1dd dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xb01f321c 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 0x34800f64 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5e9be9dc dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x673764b3 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8f6122b7 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 0x9bb9ce0b dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb29470ae dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd9e8c786 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf820ce37 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfd88a022 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x26615e56 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x6cc41142 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xcad4b6de em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xdbe2f7db em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1f66858f go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2d7bcdc2 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6c3b171f go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x705ca0ff go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x751d198d go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8b1f46c1 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8bf77d04 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa1c01558 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb0d27533 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x00cce419 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2081a8a1 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2480a738 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x39117d71 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4212be7c gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5892bce6 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8a82d7ab gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xffa2e207 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x5c6e8933 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x77a988f9 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2c9fa48c v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3c7f01e1 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5d9f6ffc v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc700b338 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe15ca933 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xfdb8d7f5 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 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5dd82555 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x62b446e0 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x87593ab8 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9eb3549a v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00528d4f v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x010cbaf6 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x012409be v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x064a92ac v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x078dd0c3 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0932aed8 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x099dbb60 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09f8cb04 v4l2_g_ctrl +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 0x1e9e016f v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x298de7db video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b5a95ab v4l2_ctrl_g_ctrl +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 0x40c0a9cd v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x457243af __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x486bac83 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x492e8710 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4abd7804 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e9e7636 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51385256 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5314950a v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a9ce3b9 v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60e8c170 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6350d4e1 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x638c1543 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ec92a4a __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x736de758 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x751c37dd video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76960fb7 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79ba4e51 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ab72a9a v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b8e84c4 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7bfcb668 __v4l2_ctrl_s_ctrl_int64 +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 0x8f24eb16 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x901a3348 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa047f7a1 __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa42123a0 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa8c76e15 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xacd7722f v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae6b4a59 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb4ae0 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb95c023b v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd35a324 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2a92b12 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc645eed3 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc76ba5a4 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc2bb403 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd06a75f5 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd07bea93 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0f61d30 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd12a7e08 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6e0344a v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8206182 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xddb1f45a __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3777a7c v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe47f185e v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6cc6a0d __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed2f6d86 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7839334 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x297254c8 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x38e674ae rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa28c1f72 rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb22bc23c rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xd0c2664c rpcif_manual_xfer +EXPORT_SYMBOL drivers/memstick/core/memstick 0x09d231da memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2acb5f24 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3bfe82c3 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a7c304a memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7d6a94c9 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c2400b7 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa363bb91 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xafe3d1b2 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2b01430 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd142ff52 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfa850278 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xffffe40e memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1061889d mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22db8cd8 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2350bc15 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f5396d3 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x456ba603 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4bcb765d mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4cf657f7 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d78b271 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x50312875 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x531e4688 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5ce2b048 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x716c8508 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7de3e97b mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80c749bc mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8453c204 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9adc647f mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa26f2d18 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5b36283 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa83eded3 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac2ca831 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb3856227 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba34c644 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc20a8fea mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xccb2330c mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdaa1530c mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdfd8c6fa mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf09ab2fe mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf8ffc22c mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd14af96 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x10207794 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17c54892 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1a328e8b mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2d4a9b95 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x47a81df5 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4deaf63a mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x564803a7 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x611e300b mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x672dac5f mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8048cd5d mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x97988965 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9eebf097 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1aab4cc mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa4d64e98 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaa32944f mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaac54e1a mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xccc83378 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd26a1416 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd91485fc mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd7e9832 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdfef25dc mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe073c1fb mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xedc84d0e mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf1d5baa2 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf8d54545 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc138e43 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc3fe776 mptscsih_suspend +EXPORT_SYMBOL drivers/mfd/axp20x 0x3fb222ac axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x4b048303 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x4daf73a7 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x1a1ed456 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x7945fa5a dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x9c91dd1d dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xa85ed2ba pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe0f4207a pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b113583 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2c515133 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3a68f139 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x44eb676e mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4be89832 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8f017917 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x918975ae mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa07676b0 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaa8c68fa mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdda4d7fd mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xecf7cf6e mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x68da10a0 qcom_pmic_get +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 0x1546853b wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x1c0bdcbe wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x277c3ea2 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x29097c78 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb81e3c8f wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe2dad2fb wm8994_irq_exit +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xd1e7cb9b ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe05e1af4 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x2ef78ebb c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xffc09b71 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0b7d5fbb tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0d1477fb tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x19577d73 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x2fd861be tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x30565c8e tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x3e70e41a tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x6549889f tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x6ba3a167 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x6befbcd3 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x782d0826 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc58892d0 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xdf2d156f tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x16abb7f7 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1fb388e6 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2eb8836b cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9d0e96b7 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd748ab97 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x3220bff5 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4082066c dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4d3ee3af dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x81190c30 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x839e9980 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe74f9a84 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3a51fabf cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3b457189 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x571442ff cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x751f567c cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9252ff67 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xad04e930 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe7e51294 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x26034faa map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdc9261b8 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xddb76de6 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xeb36bc26 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x86aa7d01 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x9f1caaa0 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x694dba7d simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x99806369 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xa2acbfe5 mtd_concat_create +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 0x729dd019 of_mtk_ecc_get +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 0x0832c255 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0a17c07c nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x102f854d nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2e29cb33 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x38f983f1 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x450b004a nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4c3ae4fd nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x56eee172 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x645e955b nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6a2d865f nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x79fb7bd1 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8739b863 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9cec72a9 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa46061fd nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaa780b11 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb48a868e nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb734a562 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb9cb7aac nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbce803d8 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd187ec5c nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd937ce89 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf8a81121 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x02f5f765 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x3e97acf2 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x358ab66d denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xa88299af denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x11c40c81 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x312a01ba rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x356fd1c7 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x42ec1722 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5a101563 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x650cc411 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x77b1c3fc rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9671c19e nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9dfb7053 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb3a363e0 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbf7fc2ec rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd071b8f0 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd8bf4a99 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xebaa34b1 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xed0034b2 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xed5a6078 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf005418c nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x9c489204 elm_config +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xa9fd8250 elm_decode_bch_error_page +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0df89914 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1f8480d2 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4d542aba arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x59759e8f free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x77b07709 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7ab00f9c arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8e55bd36 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa72058fd arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb2cac3cc arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc1065a67 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xca952e83 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2fbbe03d com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6438a2e7 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf4101850 com20020_check +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x39048780 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x728b8f4b ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xc89743be ctucan_suspend +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x73dc1d27 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xf72f6de3 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x03041e65 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x08521903 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b980f2a b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x183c240e b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1f451610 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x20cad979 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2368d726 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x247aa643 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x262e70c4 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29223ab9 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x33e13702 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x40e1d130 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x41be12c5 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43c9bfcf b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4457e9fb b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46011682 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x47f0e8ca b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x52b00b61 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x53dd01b6 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x560ed25e b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x56ccc5f3 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x58bff7a3 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x592d7846 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x79f23891 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e774fb8 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8375acbb b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8aac9d00 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9629437c b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa11eb86b b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa64ee330 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xafd1918b b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0122cfa b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb3db99e9 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba350501 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0a042cc b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde7f1e5c b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe56b3aec b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc3c84c3 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x031d5ead b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x110ef05b b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1a141551 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x99c0e29f b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3bae8e3c lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4df23ddc lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc6516431 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x0497e6e3 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xd1acfd8d ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xd1b88246 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x483923d2 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xe3a588c9 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xffdafa2b vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x457013f9 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x71f5117b xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xdc0d7739 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xedef3446 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0637ce1a ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x26d95c7e ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3f82a002 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3f9b44e3 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4ea7bae9 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5bfcdf36 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6b6824d8 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x90a2e1e9 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa8752737 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb152d1ef __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xd8db105f bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xee6cddbc cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x7b3715d8 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x7c75a7d2 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 0x042f15f6 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0e7341d6 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0f90b51c t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1e347dfe cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x24caf15f cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2afdfd68 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x54266366 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fae59c1 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x912597bd cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa20f2d6a dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa608b82d t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb3097b96 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4a54d2b cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd74ea03e cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xde121ae3 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf794ddd5 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03262bfa cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0333e689 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x05738ac8 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0859ee3f cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x161c29f5 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1991dc28 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1aa57bb7 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1bf12e56 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d998fa7 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1fe71689 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2090dce5 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27291013 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2997ffd6 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2de02b1f cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x328a84f1 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x359ebe85 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x36737b1a cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b890856 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61fd6d25 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62488416 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f026302 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9645ff54 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96e32596 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b9de533 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9fce34a4 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa15b7304 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa456ac0a cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5b7afad cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8514f7b cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae26453a cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9dcd78e cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbadd0002 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc879b105 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcaf8876a cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xceb7fb5f cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd654a2c2 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6ea4d82 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd92deb66 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda1f89ae cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda23b0ab cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda5d29e3 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe879a37c cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe964025d cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf28b9b38 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf370a76d cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf6f20d4e cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x12be95dc cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1a2cc4cf 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 0x5986064a cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8f5e151d cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x955e6966 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xda81e06a cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf6a08d53 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x194cdd73 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8740f2c4 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x98ce449e vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa4d5d7be vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb8d20f67 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xff984bec vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x008f1b6b 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 0xd0a72679 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 0x53d6e126 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xd57e05e0 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 0x28ffe272 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xb4e48dc3 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xca98c740 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xdc3602f0 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5e971ed6 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x965883a5 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb87ba1fc hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xcabbea97 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xe96016e5 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x63bb7ef7 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x70156be9 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8ac5136d hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x9d12fe03 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xbfee6f6e hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc2b9f015 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd4c8a20f hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xdd74e794 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe1e3de0c hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x1d768c21 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xdcb6a29b 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 0x2c399dcf otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2c757223 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x317c3eae otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x364e8761 __SCK__tp_func_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x435d8c60 otx2_mbox_alloc_msg_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 0x4b1f664c otx2_reply_invalid_msg +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 0x5490baa5 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5deb2643 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 0x695ecb2c otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x74be69d8 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x91efe308 otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x94b7137c otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaa573a53 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 0xb151efce 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 0xd11f6826 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xda87b937 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf7eae67e __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x000a14be otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0504442a otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0db0b4ae otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0f345988 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x13e56211 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1b434552 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x22c3909f otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x28cea780 otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2af6bb17 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3d49c0f4 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3ff5649c otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5a34f525 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5e0e17ef otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6a47f0c4 otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6ffc3d64 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x77fc7edd otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7897160c otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x856982a2 otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb0799971 otx2_txschq_config +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xba243d74 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xba7b12e7 otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc314cbae otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc5bac7fd otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc87e6149 otx2_smq_flush +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc95ac95e otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcb67b759 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd4ead64c otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd8f2efbc mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xda50a3ad otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdeae04dc otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdf7fcce7 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe41e0576 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe935658f otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf40e272b otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf9555e26 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x6716580f prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xe9b5a4e5 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05b34716 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d5aa994 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12ee92ed mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1617ea14 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c57fd7c mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f6a355b mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bd00fc1 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33ca8b62 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cf99b43 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ec11cd5 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b974269 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5731af17 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x609a4a28 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x657a254f mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67a94b21 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68b03432 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a8cd2ca mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bcdaca2 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c4bcb22 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d783c6a mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74de110e mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7520d94c mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80eeda42 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x810d6217 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8de441ae mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f1e544e set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92f5c736 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d817ae mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e7a3b95 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f425f32 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa004027c mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7f059c4 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4de049a mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb622bd06 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc71358d mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1cfe520 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6543e75 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4e3c93b get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8f273c7 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb1aabb6 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2cc5c1a mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf784e50e mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7b56954 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb1bd9a4 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03062af0 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06f65253 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a74752c mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d022698 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d44afc6 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d565c7 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1496fee7 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14c3f1f1 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15d0c076 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a8755f2 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ac34607 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ba275f1 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e38486c __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e7ad440 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20a7d687 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21b93145 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2273f957 mlx5_lag_get_num_ports +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 0x2385fd95 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27e64505 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28fbb7d7 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2faed6b9 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32390a21 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32e89fe2 __traceiter_mlx5_fw +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 0x3b3d149b mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bd8dbe3 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42da06b2 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4399bcbd mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44fa18e6 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48bc3cff mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49fbb2c0 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4adbf3a1 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d564dd2 mlx5_rsc_dump_cmd_create +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 0x4d8d03fb mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x501565fb mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50e17995 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53ec69e3 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55da3510 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56e914f7 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x571fd44f mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x574a3c42 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5850e3f5 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59915f0b mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a75b91e mlx5_notifier_unregister +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 0x5d4595b7 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60e81ffa mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6482eeea __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64b3e59a mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6511245d mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6724ac25 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x692fffcc mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b1b5224 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bc0b642 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c1668db mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c2d1017 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e6f4a56 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eb7b450 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x710478b0 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71b45652 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71bb597a mlx5_is_roce_on +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 0x73f19531 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7535834c mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75631538 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7639d984 mlx5_core_destroy_mkey +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 0x7c72118b mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e241c5c mlx5_modify_header_dealloc +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 0x815db77c mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86548a1f mlx5_lag_query_cong_counters +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 0x888a2246 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93300575 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93ea54d6 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93f6beb9 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x940e3b01 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95051e8c mlx5_core_create_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 0x9906f82f mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a7e97f4 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c6b087a mlx5_lag_mode_is_hash +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 0x9e28b3d1 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9faf5abe mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaae5ef2b mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab1ec9c7 mlx5_eswitch_get_core_dev +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 0xad72a71e mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaef76f16 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf0838ea mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafe61f99 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb24bf3c6 mlx5_eq_disable +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 0xb2d85646 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6da4e79 mlx5_core_create_tis +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 0xb9000c4f mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb93b0c8c mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb97f7566 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9aeb823 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba1e8ac9 mlx5_cmd_init_async_ctx +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 0xbbae54a8 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd694e63 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2fa1f1a mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc52db5e6 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc611ec9e mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc67c7fb5 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc70cf289 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9e91691 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca7322e7 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaeb2df8 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaf914ec mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbf607c5 mlx5_core_destroy_rq +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 0xcc29ef0d mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce47066b mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf22dd2a mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd015bba4 __traceiter_mlx5_fs_add_rule +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 0xd44ff6d3 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd496e3ed mlx5_eswitch_vport_rep +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 0xd7616e6f mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda5da59a mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe08d6d9d mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0dec226 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2eaff77 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe410503d mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe484833a mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe97ea44c mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea678cd7 mlx5_core_alloc_pd +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 0xed9b76c9 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf425cda3 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4968ca1 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5262f47 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf59223ac mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf594f461 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5f98d14 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7b08550 mlx5_qp_debugfs_init +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 0xf9285724 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf98e8f5a mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc905df5 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd388286 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 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 0x07db2f63 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0c2ac43a mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f45e52a mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode +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 0x16f4221d mlxsw_core_irq_event_handler_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +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 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2fcd229b mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x31e14969 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x41c9c3fa mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x48302ce3 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50154a74 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get +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 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5acd55ac mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 +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 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x666fe733 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify +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 0x7e08c6e0 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x86817014 mlxsw_core_read_utc_nsec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86ff1346 mlxsw_core_port_netdev_link +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 0x97ef9e48 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9be0366e mlxsw_env_reset_module +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 0xa509fafd mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler +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 0xb75a33ae mlxsw_core_traps_register +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 0xbda212df mlxsw_core_irq_event_handlers_call +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc1223e6a mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc935dc44 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag +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 0xd888ffb3 mlxsw_afa_block_append_ip +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 0xdc5c95df mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc72b6f0 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde44007e mlxsw_core_skb_transmit +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 0xe1860dde mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop +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 0xefec2b1f mlxsw_core_port_devlink_port_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 0xf9d689bf mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x0f9a2c18 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x1fe60dc7 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x317be3d4 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x6b6c50e5 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00ba623e ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00e28a2a ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01dd1f76 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06206359 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a6bbb11 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1137d833 ocelot_sb_pool_get +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 0x199f1faf ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19eeb8ac ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d1a327d ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x284b90d4 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28e9c0b4 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2be76666 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c802254 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d13b730 ocelot_port_vlan_filtering +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 0x30b47514 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x335e198b ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36043909 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37e1e52f ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40c5db38 ocelot_vcap_policer_del +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 0x4ae6e1cf ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ddaaf9e ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53b33aec ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54a781df ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x555fee99 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56dd80e1 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5912f23b ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ce253e1 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x652d2ca0 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67320f72 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6971c02e ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ae15c11 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b707d20 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6e2881eb ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7020e654 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73b54c7e ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7505c9d7 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a3fac27 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f76d278 ocelot_sb_port_pool_set +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 0x86b911c5 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89112afa ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8be13985 ocelot_get_txtstamp +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 0x91ae5eea ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7e8c60f ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab7abf66 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaba56445 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf705231 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1b31804 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1ca3886 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2892086 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7ab124c ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9a90582 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba5e8fd2 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb2398b4 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbcfc469f ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc576f92d ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9603c6c ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcafef1bc ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc7694ce ocelot_vcap_filter_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 0xd1e09523 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1eeaceb ocelot_init +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 0xd76c86ef ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb0a52ee ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbf28f63 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdcd79b40 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde346fbb ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6665af9 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe69c1e8e ocelot_deinit +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 0xedab8b65 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf11ecf74 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1ec1ead ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7ad4c7c ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb7cd59c ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc06227c ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd19ce94 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x60dfb9d1 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7df4b402 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 0xceaf58cf qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe377b19a qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x162949ef qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3a46be90 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0144a856 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x12f53d9c wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x27cc0c5d wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x29c7e0f9 wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3d0515dd wx_clear_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x60762c18 wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x73b29aec wx_set_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x73dc28b7 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7ef836ac wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x870c3ee1 wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x948bf4d7 wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa00c68e3 wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa9184a52 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb13b66c8 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd25bae00 wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd647b954 wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xda9641b9 wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf7f09333 wx_host_interface_command +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x24524d32 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5e3a6904 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x91265bb5 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbf1c4b82 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xea738d2d hdlcdrv_receiver +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 0x7e8fabde 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 0x5b19d8e9 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x69d42c69 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x8a20043f mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x0f536c42 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x54b2a09f xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x5fff1efd xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x91cbc5e8 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xce517e39 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xb4b0700c bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5fa6a3c7 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xaf7e38b4 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xdf9b8dfd register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xf17f440d pppox_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0x98ff7fa8 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x32d89f6d team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x3d8f6563 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x72afb372 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x77281a35 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x78623549 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x9b1424d4 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xdc0678d9 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xf2414e4c team_options_change_check +EXPORT_SYMBOL drivers/net/usb/usbnet 0x52bc379f usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc7090a5c usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xeba4acae usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1b96bc7c unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3ca09cac alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3d53ea03 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4c797f45 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6fb7caaa attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x77605434 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x87e866cf detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc12322f9 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd12833ea unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfa4914b1 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0ca643f5 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3e31128b ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x42e19ded ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x508aff90 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x53379e14 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6d90f43e ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x89c1067c ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x95e2de43 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcc0f5035 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdd2f9535 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe7a3cbe6 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xec942e44 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf4145357 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e8d1bcf ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x108bc56a ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x111f5a2b __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1595cc42 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18176652 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22e33544 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x24c35912 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2545a33a ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26a92e9e ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a6bb932 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x336c5820 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x359c943f ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x382cd45e ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b370394 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c8ef86a ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f446afe ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x417cbecb ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42cfc08c ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d403b6e ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50f72337 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x59c02274 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5dc35eb7 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6040950d ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6635aa2f ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x673479e2 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7709850c ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ba757e2 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82937554 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82cfba20 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87b4914e ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90a8b43d ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91cc7729 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x99851e42 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b025731 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa54d6f3b ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa68956fc ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaca327b7 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8b46a59 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca1cc944 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd70a3bd ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd734cd3 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2ed69f3 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6b64e88 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8bacecc ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdaace270 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb7e0c76 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc1d6af3 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc25a473 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdcc18815 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd13be87 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe26f0e92 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea28d43f ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedd0f061 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeed336bd ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5be32da ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5f2c0b6 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x068304bb ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x087d4699 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0cd630af ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0fa4afe0 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2b5e61d7 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x39c7487a ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3e84fe1b ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x40b09c46 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x49af8082 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4bd82bb0 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4e348746 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x50232991 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5b0e4ce0 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6000f646 ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6eb99f71 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f99e141 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x71a0fdf9 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x77fd5a2c ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x799b94c1 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x80267b87 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x82af8f73 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8dde1679 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa530c668 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xad8da54e ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb2c5bc2a ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc3d9faf8 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc8ff0729 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcff8765d ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdf025b66 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe1b352ce ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe2f6206e ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe392ccde ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe5e87409 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeb1bb2fe ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeb9762bc ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xee6a27cf 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 0xf401e7c0 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf5ae9f84 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf62e6de2 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf6892b09 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfd796e74 ath11k_err +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 0x5193ee22 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x548e3085 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x756e899a ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x77c39bcb ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x81a99804 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9497bd2a ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa108b9f5 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xaa234b66 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 0xc1dcb784 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xee8ad476 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf7ddec84 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0348f633 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0e4e2907 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x13e613c6 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x180a8ffd ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3b873e72 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d1df343 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 0x53730eeb ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56eda1a5 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x591310b3 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b4529d6 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5d90e0e6 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5d930c9f ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x827ad259 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x91aac76e ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9bd4ffa6 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba763759 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe85f967 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc234e3d9 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc3d1aa75 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc84b6f53 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcaf61aab 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 0xf846099a ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfa58d610 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02190889 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0623d7aa ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d1683c5 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10c2b047 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11eff212 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x122f428e ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1292d591 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12eb73b4 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15a9c4a8 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16bfea45 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19fff40e ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b8d2989 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c0c2a8d ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ee9c4a5 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x208b37a9 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21413748 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x246fb861 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2493fbf1 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bbc7b1e ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c8c46f4 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d168ae6 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3048f9c6 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30ba40a5 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3282d682 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x329d37a1 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32c0c242 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x353544ee ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3631f963 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37389b86 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37d4a9f0 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38d66396 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39d46a73 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3aee012b ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e3d8099 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44a2c3ef ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44c6eed1 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e1045d3 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56c2ec42 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dcda0b6 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fc81bb1 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x619776dd ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68aa3a60 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68e92ccd ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b7185a0 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d293ace ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ed4ed39 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71b31443 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71cc365f ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73b801a9 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75540f23 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75bf1ddf ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x782cea27 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84b409c0 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x878e0f46 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88a578a8 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89baff84 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c6b4ba0 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ec3cf4f ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f0bb791 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90ca3e27 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91eeb8cc ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91f4e65b ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92439061 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9474601f ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9502ef81 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c5d301e ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d7aaabc ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dd98604 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1c01e57 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa20e06c0 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa44c906d ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa87a9b30 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac092872 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaddbb594 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaddee6ee ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb48e3115 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb68987b3 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb958014a ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdd492c8 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc13be986 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc514a01f ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc620bcb0 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7e07cc7 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc94bcd78 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9bc8c0d ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc1c977e ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc7deb96 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd577efd ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0849e1e ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5384a91 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7fbaa64 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8f23cf3 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda487dd6 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcb1a008 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xded6b32c ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf889704 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe548061d ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe87f6aff ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3b8ce84 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf43d01fb ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf571b9ba ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf646eb00 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa24d2bd ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa408bf1 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcf358eb ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffa46e0c ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffc563ea ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x10d906f9 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x21923281 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x838596d8 atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x08f9d944 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0c73e41b brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1c475527 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3387ee69 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x533f83da brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x59f5de8a brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6a7c8b2b brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x861c95e7 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9c6d25be brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb6050091 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc89390c6 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd7ce7395 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xef2bb2b9 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2c242301 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x36212182 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x380c2d8b libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x387d2532 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4aee6169 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4b4b0c99 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x548a338e libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x60d6a871 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6ce16684 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x717a43c0 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7f74c765 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9718332c libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa45d3826 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbddfe244 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc397aa7f libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcac38862 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdf21f671 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe4a83002 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfa3a14e8 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfdb9d054 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03964a60 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04390563 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06aad907 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07c1a5c3 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ab57202 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13ee46f5 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x152d7940 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x179b19de il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19be1afb il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19d9030a il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a82305a il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1affc63c il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bf1d38c il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x202762af il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20ae020a il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20ae66f5 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23f27030 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x248f9afe il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24b56cfd il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x259811a1 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d0516e5 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33bae249 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3441e98e il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x387593db il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41a479eb _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44b81737 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45567ffb il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51212914 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ab66fc7 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5db91082 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e84dd51 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ebaf0ec il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f6a50d6 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x608b9583 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x634a773c il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63d80d4d il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x642d909a il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64e64b47 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6891700b il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c3dfbf8 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x754458e5 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77c6fe74 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a2878c5 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bc0b37e il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c60776f il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e675b38 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ebcce22 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83733308 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x861d0578 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88caa794 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88fa78aa il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8af0eded il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b8e264d il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bf7e5a9 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9245980f il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93ff1520 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x958207bd il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x993a472e il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b67b0e5 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f049a4e il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa37bae76 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac21d6ff il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3267e98 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3f9118f il_leds_exit +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 0xb857a8c6 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbab1c4e9 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc6624e5 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf57c599 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf60bffd il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc70833db il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7c78d0f il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc81e5c3f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8faa5fb il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb54df9b il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcda5cdb2 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf0d7c27 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd395b97f il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8e3d0ac il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdad6ce15 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdbc9e91b il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc55e498 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde9e2df1 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe110920d il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1789407 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2a98362 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe409dd06 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe57cbd5f il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe586b545 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe810d328 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe91250ec il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb567d0f il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec0cc2bf il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xedddc83f il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef862ab1 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf31cc9b9 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf46a6fff il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf76c50a4 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf98bfe4e il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f7c4b2f iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22e0c140 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d23c104 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5bdf6ea8 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x806b4680 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0e508afd hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1af3358a hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x332351f1 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x40755a4b hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4094b8fe hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x41775585 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5a09dd70 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5cc1959b hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e27e869 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6d3efbcb hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6ed24c9a hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7312d52e hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8bab21da hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8f6cf98b hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9167f9e1 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac2e2d68 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb328468a hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb6fd47ad hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbc4815f9 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbeabe7af hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcc0c249e hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd118ddcc hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeaecc23d prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeff08005 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf2993d6a hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x11535253 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x23ebfb59 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x62e3e2e8 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6a299e71 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6ff831af __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7e707306 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x80050907 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8b94110b __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb28ede8d orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbc445d1a orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbed08848 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc56bf268 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xce05b7e9 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe9468ab9 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb6efe11 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x1cbdfacf mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x0cdf104e rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x025355e4 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08e8a6c2 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1163bb9b rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f7bc4d4 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d583cc3 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fe16e5c _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x321d3bf4 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33e67dd3 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35f1e502 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43f3c52a rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44a27e12 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x516b2469 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c95e203 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c4f83bf _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d29ab0e rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6de44062 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x731866c9 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75c0fb96 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cf5c5b8 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e783d8f rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8aed9b2b rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f1cc2d5 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90aeb774 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93c53bc7 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98b5ee4b rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4917364 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6102219 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8e5bfe9 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac6c6b1b _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaca13c6d rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb60cbf81 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd09a650c rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4340dd8 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd439ee5 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfd12154 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe3e34445 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe881baa8 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef7ace4e rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf03948ee rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf10874ea _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf511b862 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0ac1a302 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x68d13808 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc928eed2 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfb83e3c0 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x303931a8 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x30b669c4 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x68f2c6f8 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc9a15b1e rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0203c91e rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x022d7140 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02a97254 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a7c2754 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0bf150aa rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ca23bc3 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0de1a728 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f48739e rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1926b2ca rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1baf6e62 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c72065b rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x297c6f8e efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f5a73b0 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51e8d78b rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x567bc9ec rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x568002dc rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x614a8137 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x682104fa rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7aed6933 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87a5d8b9 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5da0972 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf826582 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc30fc90d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda8ca84c efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4e1b84f rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9968ecc 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 0xf404edee rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6eeedb7 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb9a3a64 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffbcd279 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x6a30787e rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xf7f00ff3 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x81d002cc rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x6e1269f2 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02b3e0ad rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x04e0ef38 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0aef77d8 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0cfa8e1e rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1413af1f rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c40d62c rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dc53c8d rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e8c862f rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x269013a1 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x296ee5c8 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2b4fe5f5 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2de8020a 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 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3704ff1a rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x396ce45d rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40e69951 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 0x48c423fa rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4ba3c170 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c27acd1 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x522bfc17 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x52b39e36 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d1bd26c rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f7f404d rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60d01e1e rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x779c76a5 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x83dfd9be rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x84fd1b33 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8cd86332 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8fb1073c rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90d4e8bc rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x94ece891 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x98a252c7 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9936f67c rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa289f2ab rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa355bec9 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4f86313 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa846f9e7 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa700f75 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaca7d705 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf8dfd12 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3411e4d rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7b7e03d rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9c03caf rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2a532d2 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc3b70d50 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6101211 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc7ca39d5 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc81cd9b7 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc90f06fd rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9f61620 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0582c2c rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5637cd2 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd657d181 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7135310 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8888cf1 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe026bb94 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9d2da46 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2917964 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf4492eea rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf610d411 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfaca50a4 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x80040c8e rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x902af8ff rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xac1b0e89 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xda034d40 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x05d68f98 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x27ec391d rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x2f14e932 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x588a3bc2 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xc32f77ad rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x04a7cf4d rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x06bd520d rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0ac0e5a0 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c986409 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1842b624 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x19018ae9 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x19b4914c rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1b5e7323 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x38843965 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x38e72043 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x38fabb87 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3d455cee rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ea6a822 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x408ff025 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x46b4cd49 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x47edd1a7 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a0f3e17 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4b58a8b3 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x559f6d16 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x56a61a26 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x57a071e4 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x588f3257 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5da02bc5 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x629d99a4 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e6356b6 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x70408b5c rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7083ed7a rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x71fe1513 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x73dc9fb1 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7772ce6b rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x78eee550 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x808ea4c2 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x85490a5d rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8c9fd38b rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8d4331e7 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8f8130bd rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8ff704bf rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90b1fd55 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9c5e792c rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa6b65909 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xab101add rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xacd1e58f rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xae4d6604 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaf65bfc6 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb2aba8e4 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb7822ce4 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbda143d7 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc0e487b8 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc81f57d4 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc8957716 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc8fa90f7 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd46828d4 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd7d627c1 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 0xe67388e6 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xed6567b5 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf8425fcf __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf91515fa rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa4991c8 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfcf8d790 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1011d5b8 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x11123269 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x152e0981 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x18c55433 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1db8d128 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3802b68e rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x4fa6c7c7 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x60f6e561 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6da4b4a5 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x741dbfb5 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9cd7205c 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 0xa49548c8 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb6153b23 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbf91191d rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd2a7c65e rtw89_pci_recognize_intrs_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 0x600e2f63 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7b1c651e wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbefecfa1 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbfc67a0f wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd8e92523 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x59962383 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x77acccaf fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x20a47e29 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xae3d3195 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x18510e15 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x236a9fa8 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe5ad5352 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xe39944cc pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x71fae966 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x9afb06a5 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x10b8276f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x86fd2f7e s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9a1e997f s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xee55dff7 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x053dec25 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x41f477be ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x68675b63 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa3588111 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa5c51362 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd88a328a st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd99dabb8 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdb0e59f9 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe08940d5 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfe902424 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01e893ec st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09a57139 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0d624fce st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0f74b444 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1758bdca st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x35859921 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x39cd5b52 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x563c60bf st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6b380618 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7a2dfdaa st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x906b2332 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xab070c11 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd2a1adcb st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd8fdeacc st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdc64bebc st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe5980790 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf1c52817 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf68d55a1 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/ntb/ntb 0x05f90c89 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x1045d8d7 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x13762afc ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x23c186b0 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x2ce447b4 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x75353c81 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x960c1cf9 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xa84f2671 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xa8a0c318 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xab42363c ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xafba7222 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xb1a4cb7d ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xb4fd7f9b ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xb6b008d3 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xc02b368c ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xc1c84e54 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xc513a90d ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xe384dc1e ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xe5688e3d ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xfdd22228 ntb_unregister_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x1b3154a7 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x399f7ff8 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x2398f68e __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x23db14a7 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x2e576042 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x470f3ff8 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x53a56769 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x55558e0e parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x5831e3b0 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5f462213 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x661403a0 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6aea66e2 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x7a59a7e4 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7dcb121c parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x8ad6e278 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x914d1fd4 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x99c7da4f parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xa1d8461f parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xa2adccdd parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xa609bba1 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xa7eaa159 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc3818aa3 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc63c83a6 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xdc53a4c6 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xe4a1c1b9 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xe51bb591 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xe69e0f54 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xe8e49e09 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xf13801ed parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xf40ae724 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xf55973af parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xf77ea529 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xf96f5908 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport_pc 0x5a96fd7f parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x63a4b5fd parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x208955d0 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x226163d4 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a3edc8e pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2f4f782d pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb4bba4a0 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd61df5b6 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd9be71a3 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf301e667 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf8f1dbe9 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfbef6da1 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x5c12fed0 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0271191e cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x366873a4 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xb949be55 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf737f48f cros_ec_unregister +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x0f51b78e rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xdbe80dc7 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x5d89e4a2 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xab6b6e16 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x15eb6c01 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x25e6e17f rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x316de1a5 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4fa0b5a7 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x51286c38 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7099f4d7 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7760eab5 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7cc80af3 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x84cfe61b rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x913bf504 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x93c8d931 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9d0751ad rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb62f3c9e rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd5737e28 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xde0ec681 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdea27921 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeb93d512 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeeb0dcf6 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfd3231a9 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xdabff852 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x2f75f1cf ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0eb51593 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x261628c8 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbc0b17db scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc0e11bfd scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x07d3f90a fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2f2c4051 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x59bbd406 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa97ef0fd fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xae615538 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb5a636b6 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdc9c1a5f fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xde8dc5c0 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe6c6bee8 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xef54d588 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfa7a2d4b fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0254f48a fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a955847 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ac1b1c6 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c032eb0 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cff7cec fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0da72994 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11d719c6 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17754567 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b6b988a fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1defb8e0 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fae4254 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26cfc400 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c599d39 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2cdabfb9 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31a80aa6 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3999ae4c fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b597afd fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x437ce723 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43dd8be7 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46ba408a fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46ea0558 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x470458f9 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x515c3249 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51e9f0d9 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x569dd730 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x604eabc3 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63262c3b fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66062c12 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e102964 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71313691 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x760f1137 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fbb1b0d fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fcf7da0 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85dd8f38 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x861887fd fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9341d6d8 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95be10cf fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c88ac43 fc_frame_crc_check +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 0xa50d6fe5 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6e5047f fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9b014dc fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb06ef219 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8c153ab fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbcbb806f fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3cc6915 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccf1bb7f fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcdf8350e fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd455dce6 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd840d8e1 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8d85ee7 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde7eadf6 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdefe7aca fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebae667f _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xefd7bd7c fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeffd92a0 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf7869163 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf81d8c78 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfda45037 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0d6a8ced sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x57a8a23d sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6b802799 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a5c66ac sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2902e87e 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 0x1816d27c qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2ed3035a qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3fa42fd4 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4c32a70f qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x86e5cc5c qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa919371d qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xadb6eabc qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb7b9895d qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc29d5394 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcad91fce qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdbcbe1bb qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe9a95606 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/raid_class 0x45b61cc6 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x9fe5b812 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xd509081d raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x11eca59c fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1a11a80a fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1c6169b6 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2258e9b6 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2b930f56 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4b797685 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6c932664 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x801855dc fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8b2c1ee0 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x99a039ca scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa85ae2ee fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xab9290ec fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb7e3041e fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc1d79373 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc47c6e1f fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf246eac8 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf379c783 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06d6bb2b sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0778f8d2 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1c2a72bb sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20c69f69 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x245afc8e sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d68660a sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e874233 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36454da0 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e218ddf sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44f3f57b sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c3211da sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c76a8d3 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6bf686e4 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e7ee62a sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x719c06f7 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8dffa446 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8fcc197b sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa8c19fbc sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa9dee487 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae5e0932 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae8e373d sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb3b46c53 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbd194eaf sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc939ccd2 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1ce6c31 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0324c04 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf1f63132 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3ad76ef scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf95d5c42 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0699a388 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x220f6a3f spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2c140f5b spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5941d9bc spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x90307186 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x09130acf srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x59109345 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5af07580 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9b4304fa srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa88a2b7e 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 0x07564e82 cmdq_pkt_assign +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x081d1a1a cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1152797e cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x149b84d8 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1f3ed632 cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3f6fab3f cmdq_pkt_write_s_mask_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3fc19424 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x45dae4fc cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x578699c0 cmdq_pkt_finalize +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x58cdc788 cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5a123a5e cmdq_pkt_write_s_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bfd584c cmdq_pkt_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x61433952 cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8aa532b3 cmdq_pkt_write_s_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8ab965b5 cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x9194f23f cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa40c93c8 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd529f27b cmdq_pkt_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdf8340fe cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe9b0e26e cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfec2df2b cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x88919fb1 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 0x03d42e3b geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x22521fb1 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2dde7c25 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2eb71216 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3a1a1147 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x409633cc geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6e9286ce geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x802449a0 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8d686bfb geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x92538b67 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xab831872 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc54bfaa7 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcbf83c3f geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcda39e6e geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd8f3bf86 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xda3868ba geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xef5d3d36 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x3dfe0c72 qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x24546ef6 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x41053151 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x44bdaf42 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4bd76f1a qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x560815e8 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6a797b11 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9f730047 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc0d6975e qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe07a7ea4 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe7478d89 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 0x9e1b2a12 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x028d0f35 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0a74afc1 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1c9cbcbb sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x24b07e4c sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x30ec7139 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4049aff5 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x53d6ec0b sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58268f99 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58d458b3 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5ee540f1 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6ae15646 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6e02300f 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 0x793c031d sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7eb1e5c9 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x851b1055 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x89188179 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8e62b6b6 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x91a0b5be sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x93e55405 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9db15eec sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xadf1a3c0 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb3b7a846 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcf1058b4 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd4b2ecd4 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe01ed8af sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xec9d58de sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeeac8bf3 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x06471d11 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x17df8eb9 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x186dcede cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2785fd09 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x36d81f86 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x40889107 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x528b88a2 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x80397f20 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa3a201fb sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa7021d19 cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xaea03355 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb3343918 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc0507589 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc3d84183 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd60cc415 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf72b06d7 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf9cceb75 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xa6ce7e27 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x029d2464 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x043f6074 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x0b9d31c7 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x135248d4 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x193d9caf ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x32658216 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5559c3b7 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x860f9909 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x90dbe797 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x92f496d2 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x9352bbb0 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x9517e6f3 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xb0c0a034 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xb791adb0 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb8b80d43 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xc203788c __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xc41bb9c7 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xc5ed86ed ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd8020df7 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xf593ff10 ssb_pcihost_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0b884bfc fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1489f627 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x15254bc3 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d138307 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ca0aa2b fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3f4bb628 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47e2cf30 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4c7d9402 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x53aca297 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x58100a44 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5c442200 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e7c5fe3 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x612b56ba fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d53f7c4 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x733141c6 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x77c2a464 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xac7784c4 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb11a7231 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc41f18d6 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc4b565e9 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc50d54d6 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde775552 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdfb80ab4 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3612408 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8f2b240 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x4b2cdc1e gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb2449efc gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xe785a496 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xb28f5ae5 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe2ea36fb ade7854_probe +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x1151644c nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x88c49b1f nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09fabf4d dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bb60393 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d51cde0 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x13d46a45 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a6119b9 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1bd2f5f7 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f149935 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21db711e rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33688c99 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34f801e6 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49f5ddc6 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x519bd2eb rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x527b133a RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b11ac1b rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5eea30fc HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6984c5d6 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69afea83 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6dda816f rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e762193 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x742f3c41 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b373851 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x805802c8 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x842d6924 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ae38c03 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d28ceb1 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa50c5a19 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa3db7ca rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad75af0e rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb06871f0 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb661b2c7 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc19514c rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0424cb8 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc75d2dd2 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9a5065f notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca723a70 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc4da0e3 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3ca3d73 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd54b0790 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd85d2cb9 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xddf6a893 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf240adff rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf50ad750 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf64d2763 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6507650 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf77e3ac7 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf854b650 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa42cb38 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfbc1a793 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd25434a rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x036b0a3b dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04a30903 ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08864441 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d9f8675 ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c097a33 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e3d6f63 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2339e9e2 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x356b129e ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x362e7bb8 ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a0f204d ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3bc126a5 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ef6ada6 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4044123f notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4830f605 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cd4c402 ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d91c851 ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53f71451 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x567874fe ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f87d6a9 ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6440d16a ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65eac7f4 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66197efb SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6dac5668 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f5817eb to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71e2cc01 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7482d75c ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x753bc487 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76712d0e ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84007f89 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x844d9b37 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8633f962 ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89a269f9 ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8aef79b7 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8bcb9030 ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91cd68c3 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e74cff4 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2098fff ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4216b51 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa623133c ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2d1c6bc ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8cb7ca6 ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce5652bd ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd78111c4 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7e3d7ea ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1d72878 ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe29a3836 ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4b97f35 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe73b920c ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7cbb4e3 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9f5eb6c ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefcc9c1c ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf775af7b ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfece2367 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x024ca19e iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x062a8114 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08b17f42 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27663ce9 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a16a5df iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b2039f9 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x397d2746 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d35dd1c iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d970464 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40b9de96 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4135d20e iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48df1d78 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50bdfdf4 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52bb60c9 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x579afa04 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a650a35 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d6c6f03 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fbb26f9 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67e3682f iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x68b051e3 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ea63c44 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b7391fc iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c0629f6 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7eaf0969 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87c966a6 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87d0f512 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8bfb0e95 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8fee6e7c __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1623465 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa522dd29 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbaf728a8 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc15dfbf iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1cfbd9e iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc34726fe iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc65def2e iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6d021d3 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd154636f iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1bdeb2c iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3156b0e iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0238b5e iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5169b76 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8a0f72a iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea4787ab 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 0xf53ff391 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfbcfa1ba iscsit_aborted_task +EXPORT_SYMBOL drivers/target/target_core_mod 0x02f74ca3 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x05b4e659 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x05c45c81 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0617b07f core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x07cdb821 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b4e1e7f transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cfe0262 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d3dbff0 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x0fd545fa core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x14f7938d target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x15394e82 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x16fc4adb sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x19cba3dc transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x249f525f target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x28ab6d4e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b423285 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c6c08cd transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d271024 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ec37ea1 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a8120ba target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3db895e6 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f50adfc target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x44ffbb0e transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x4633d4df transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x46e5739c target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x49acd7f2 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c6533f9 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x58e238cf transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x593cbd7f target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x593e35c3 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a6cf9fc target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x65c01bfb core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6655a41f transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6910e303 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x6da95522 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x733000b7 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7494e70f target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x76045eae transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x80d388e6 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x816ebf33 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8300d730 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x8add51ea target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8beee6d4 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x902af02b target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x915fb921 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x920581d1 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x95b38b05 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x976ed89e spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x978d887c transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3b1bfa5 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa88f4a1f target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5789004 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6129230 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6a09280 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8ea52a7 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc6e1e24 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe728d04 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3decaae transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc575fd04 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5d49203 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xc61204a3 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xc715d0a7 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc6b3c07 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3345f4a target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5db3947 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8179b5a transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9dc40d3 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd06834d core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xe248c6e7 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9d11a7a target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xeac976f8 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xeafbe5c6 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc382ecf core_tmr_alloc_req +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x1669c9d9 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x34a5bf65 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x673acf86 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x686f8f82 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x8e50634e ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb7004ffc ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb70bb2b5 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb9991e48 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x03e50821 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x55b3a893 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x20216026 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x277fe1d8 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x8de218e9 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x423d27f0 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x04e368af sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3338592f usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x49a62a97 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4b87cb3c usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x52655d89 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x63db5cc1 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xacdbe843 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb2bcd21a usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc1d9cca8 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcf881e5d usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe722b69d usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf300165e usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x313ce5e1 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd9041802 usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x4a71bd81 vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x14c62c8b mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x150e712b mdev_register_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3f191212 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x565fbc7d mdev_register_driver +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x4ff14197 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x8436f4a2 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xeb45a35d vfio_unpin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x0eed58fe vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x5dfedb3f 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 0xa9c72575 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc574a937 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc8404f58 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc9c99825 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0c9d8e66 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0ed96a24 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1946dd4a svga_tilecursor +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 0x576604d8 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 0x8b4809bc svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x991da47b svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcccdc702 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/syscopyarea 0x912bccfd sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x91e5d69c sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x7021d54c sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0f566e1b cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x8d2d3291 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x071a323d matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa54a8553 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb3683ac5 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x499c3d0e DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x63b477b7 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc52001de matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe8bf03f9 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x36399115 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xa71d1ea4 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x363d3e72 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x54e37751 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbbbe5744 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe9c81d0c matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x99c5437c matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc5fa12ea matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x05d3734e matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1b21bd7b matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3cea5381 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7927d0fd matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc1571bc3 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x11fb4e33 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2279788b virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x47f72b55 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x60491651 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x36267ef8 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x3681273d w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb4590469 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf7d470de w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x121fa2c7 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x2611e56e w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xca6a2bea w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xf337385a w1_add_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x0779ed18 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x082ad10c __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x12da6aff fscache_relinquish_cache +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 0x24d8818c fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x2b8315f6 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x324e18fe __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x32a861a4 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3f938a1a fscache_withdraw_cookie +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 0x6336c710 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6b0fdec9 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6b293f97 fscache_caching_failed +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 0x7105c8c1 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x76005483 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7a2d5e66 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x8d407131 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x9a9e68fd fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xa15b22b9 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xa7046554 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0xaa80bc4e fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xafa99564 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xbcfe8675 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xbd32b249 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc0b9ef54 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xcf66d7f1 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xd268094b __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0xd825e3ba fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0xd8dd487b fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xf6037693 fscache_wait_for_operation +EXPORT_SYMBOL fs/netfs/netfs 0x04de7f96 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x1df278b2 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x35f2e70f netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x9387c4df netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xa0bb718c netfs_readahead +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x920471fa qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9cb953a2 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x9ce16dea qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb15bdfa0 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xe8b9d8ad qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf4550220 qtree_read_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x6c713da5 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x916491ac 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 0x0cb562e6 lc_put +EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed +EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get +EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del +EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x77ff614f lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create +EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find +EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xeb947a2f lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xf0e20f9b lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xfba16232 lc_get_cumulative +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 0x732a744d lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x834267da lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc464ace5 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc9fe9d08 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xceb6540d lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd5d2dd6a lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0xc5499dd8 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xd1d4426d unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x32ff5165 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x903b1bb3 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x093ed804 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x0ad287b2 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x171c0f8d p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2e70f4bb __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x2f7bce7f p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x3328eae5 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35bf1087 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x38374eb2 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3948fa96 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x399318fb p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x407f081d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x49737e5d p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x4b234eca p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x4cbd6a2d p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x58b7da82 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x5a59fa1f p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x67833328 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x6fe6103d p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x7291e46b p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x740367f1 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x74331267 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x7942325f p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7b03d3ef p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x8df70261 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x943af319 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x96c4e17e p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x9870dcef p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x9cb8d338 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xa149e439 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xa356017d p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xac5ad1ff p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xaf6062f0 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xaf93a73c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xb9e1eed5 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xc2cd09b8 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xc4a5153b v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xc50fff7c p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xc94ddf38 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xcc3f228f p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xcd9e609c p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd569248c do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0xde607ab9 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xe0e42ed4 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xe4d5125c __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xe54a9a5e v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xfb95d858 p9_client_write +EXPORT_SYMBOL net/appletalk/appletalk 0x1f3503ad alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x76f39395 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x9f1a478b atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xd07c0e68 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x046e5f87 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x05478ad1 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x37b5f832 atm_charge +EXPORT_SYMBOL net/atm/atm 0x38570d79 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x58b76b69 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x5d8d5707 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x87f6af21 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9aa6a71e vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x9ecabdcf atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa949c1a6 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xe4786eb6 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xecc98b2a vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xef6cf0a8 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0caf7b05 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x1ba83c71 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x49bd2f5e ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x598bf84c ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x7c961eeb ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8db8955f ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcab06a60 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xda4a37da ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02a732fb l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03e05c33 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x08360e04 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0891430c bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d83262e __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1009422d hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10a5b44d l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b9da868 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c4c06c7 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x261d3bf6 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2be653ee hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36f5a96e hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b4ba1d7 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c85fb60 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x462b4ecb hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fe2a2ca hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x559fc3d3 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a2af4cf bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ab56a96 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ace5256 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ca50d4c hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5dbf8cb2 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5eb456ac hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x61de10e7 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x66420534 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x72cb4d5c hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x74324043 __hci_cmd_sync_sk +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 0x7bd9427a bt_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d3a74a6 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c7befb5 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95078f1b hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x963e030b bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x966c29b0 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98012edd hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b2e6754 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e5addf7 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9539c8b __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc042ebf9 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4f79ee7 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc778fab9 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc884d02d hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xca82502d hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcacd2f3d bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1b2be02 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2186b1e bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf948feb hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef0956ca bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf363f8f6 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf69e4ce2 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf709cdd6 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb4870ae bt_accept_enqueue +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0d74df60 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0fe5dfff ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x86693173 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb01b42f2 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf1a659dc ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf570ad2e ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x190a8045 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x7b286d4b 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 0xae7eaea5 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xcec0dfdb caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xef97247f cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x595f8a6b can_sock_destruct +EXPORT_SYMBOL net/can/can 0x62978a55 can_rx_register +EXPORT_SYMBOL net/can/can 0x87f5bd7e can_proto_unregister +EXPORT_SYMBOL net/can/can 0x8b70180c can_rx_unregister +EXPORT_SYMBOL net/can/can 0xddfea01e can_proto_register +EXPORT_SYMBOL net/can/can 0xf7e8ab40 can_send +EXPORT_SYMBOL net/ceph/libceph 0x00972337 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x01ad5aa6 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x01c55b9c ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x05875940 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x0759410f osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x089b0a55 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x089d3710 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x08e4c12c ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x0a7d73a5 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x0d865773 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x0f92e3c8 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x13b11639 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x14b8502b ceph_check_fsid +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 0x17e547ee ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x183ef42b ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x19d0ef26 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x1aeb570b ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x1c95e1e2 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1ff056d2 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 0x21df4ff7 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x225539a4 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x27832887 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x27f5f884 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2a31bd04 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2c681c18 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x31e7ebe6 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x32467d9d ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3a62bacc osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3ed6108b ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x419830f1 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x44ba136d ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x4634f391 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x46391c8a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4a422966 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4d45288f osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x4df4d054 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x547a0b56 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x54960fdf ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x56843aea ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x59e38346 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5b0105d3 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x5c08b2b1 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x5cbfd9dc ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x5f7212fc ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6695c703 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x66cf142e ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x74612467 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x772a99a5 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x774b8a71 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x7868cdf0 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x789dd0fd ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x78ccf4c5 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x7fb14df7 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x88b21dd1 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x8943be57 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x8ab66ec1 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x8d7fdbfd ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x8ef54997 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x8f2487f0 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x914a2255 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x9272aae8 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x93425cf3 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x98e46f90 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x998da0c6 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x999a84ea ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x99de43e1 osd_req_op_init +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 0x9dc87dba ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x9e5eccb1 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 0xa4677218 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa74604cd osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xad5d7438 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xad95aa86 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xaf54f29d ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb09ffc3d __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb2f170b7 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xb4e64cc1 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb57991f7 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xb7189fa9 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb7926f6f osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xb9dd5b7d ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xb9eba36e ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xbbad44e9 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc2b7c25a ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcaa4aebe ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xcb1af835 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xcb863f26 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd2825599 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd5271f9c ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xd667cfcb osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xd81e5bb5 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xdc66088d ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xdded9265 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe6f8038a ceph_auth_handle_svc_reply_done +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 0xf4511310 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xf4819cf7 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xf55dc6ed ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xf64cf0f3 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xf87ed434 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xf9bae360 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xfff4d073 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6ff87d37 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xccf75a62 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x05a0341b is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x294c6dae hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x74be9ede wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7c543a45 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x91a5a801 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa3420ede wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf11fee3b wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf16a2ea5 wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x617d2eef __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xec4aba6b __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xeb97aa64 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xab7a9cde ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaf751e08 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd38830f6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe18f9950 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4f7b2dd2 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5bf99bf8 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5f620b57 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x74b50505 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x09fd44ed ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x32e4da17 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x63c3a166 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xffd91f82 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x588d79b5 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x86ea3248 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa6957aca udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x12b573f1 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2ba3114f ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x36a2b0c6 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3cc04f20 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3fde1ade ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x67b0d746 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9c3fb835 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9f9bed58 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbe1ba12f ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9dadf84e ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdf0f2d8b ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xec0bcfe5 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf7639bf2 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0xdaa50d74 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xf62ce1de xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x83f5d7b8 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xeab6d10e xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x0c8f0962 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x224f0a90 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x422d482f lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x57afe505 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x7f5d660e lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xce3692e8 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xda798159 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xf4fc8391 lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x43a1e72f llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x563e3982 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x78a21e48 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x92d0aa5c llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x9995831d llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xe1b4e145 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xfa555262 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x05171d33 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x068add99 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x070d5267 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0a7900f0 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x0b299c40 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x1439008c ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x172bb624 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1afa9650 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x20a3e273 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x22a909b6 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x2316b7a4 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x25dfc769 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x28b38f0d ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x2994191d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x29a3c2b8 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x2ac49b76 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2cbb3869 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x34e64b3f ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x352252bb ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x37a29f68 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x3c4818e8 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x3d757174 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x433b7cbc ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x43e1cc3d ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x45b9ee5c ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x47dfb145 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x48f6f4ef ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4e668b78 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x5321167f ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x55657854 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x5d385b2b ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x61d99494 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x641a36c2 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x654b49ea ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x668b882d ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x68ec7282 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x699f6824 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x6a5a13c3 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x6da589e3 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x6fabfb74 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x71ac1fb2 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x71c21ae2 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7428a66b ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x78445aa3 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x7ac6bcb3 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8466ae05 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x87c5b51b ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8a881e30 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x8cc1d5f4 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8e948e00 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x8f2fe98f ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x910fb401 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x934f5083 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x93d3e47b ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x95e2c6cb ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9963de9d ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x9a7005fd wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9c242fc1 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x9c9f842e ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x9ed38523 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xa045f61d __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa1299cfc ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xa40d1ecd ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xa4408e83 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xa46cfa3b ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xa81f4129 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa9b38340 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb4d902c0 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb5a95833 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xb5cad99a ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xb7f61bf2 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb85eb7af ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xbe0209a2 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xc1843b29 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xca65a886 ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xcdf37112 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xced24266 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd0632807 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd069df2c ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd49562df ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xd507c038 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd604c0a4 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xd62567eb ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xd7d84ca4 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xe153c077 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xe161d208 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe3f331e8 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xe5e0dd74 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xe91a4445 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe9a6d5c0 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xec82d10c ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xedf301bb ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xee73b242 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xee86d595 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xf1f52dfc rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xf7d4a6aa ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xfdcb4100 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xfdf0e89b ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xfe011e04 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xfefc7354 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xff3ca1ad ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac802154/mac802154 0x0064d91f ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x02c1d555 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x1ff383b7 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x37e07414 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x7091cbe7 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x83d007e5 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc83074ce ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xfc986d91 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xff9079fb ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x29ba1bd7 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4c67ca90 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5722d10d ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5becccb5 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5e8f81ad ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6f2fdf66 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x925ec8f8 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9516032b ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x999497ba unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaae41860 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb1fd241b ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc2570e1b ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd0e53844 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe6831c2f ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec71904c register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5c35b59e 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 0x1019787a nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x15963035 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x5004265b __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xefc03bf2 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x26878643 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x30c4b916 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x387725f6 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 0x4c494cb0 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x6de929af xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x8d609b94 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x92611bb7 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9921bc4e xt_register_target +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 0xce3a3ebd xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfaa0890e xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x06f2336b nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x12d32136 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x145758bf nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x300fed3f nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x3ab9b559 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x46a4fd20 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x794a61aa nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x79f0c835 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8c5677ec nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x90f78847 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x9dc41cf6 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x9fb5a5ea nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xb039c866 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb1b5d8c1 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb1e857f1 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xd629cdf7 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xdab2304b nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe3e45b98 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xe6391aef nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xea673098 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xf51f62df nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/nci/nci 0x0812a127 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x199eaeef nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x25ace8c7 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x312a539a nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x3d8192d8 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x5098672f nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x5c365dcc nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5d86189f nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x68ef6601 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x6b9d5f4c nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x7e6e1e43 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x81bf9203 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8a2a77ef nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x8d388e8f nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8ff48a45 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x90dc79a1 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x98b54f99 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xa1aa94ac nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xa7f97121 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb5ce2406 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xb9c81768 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc253d26a nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xcb7686af nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xde0909d3 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xe0536eb5 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xebaf7840 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xf2419bd6 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf384d3e6 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xfcd72fbc nci_core_init +EXPORT_SYMBOL net/nfc/nfc 0x14ba5e39 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x1c0aaeaa nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x1c7eb5e6 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x1f516bdf nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x2ee04138 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x2f26f07c nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x360d30ee nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x36f00973 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x37cdd58f nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x4746ecea nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x4e771bae nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x5f204a38 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x6221a4f9 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x6487798d nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x70d58dcc nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x9b9ff073 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x9df3a8c0 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x9fa71c0a nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xa59d838e nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xa6c13a09 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xa901cdf1 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xa98ba7c1 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xbb260165 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xe1b6f093 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xefa612c8 nfc_class +EXPORT_SYMBOL net/nfc/nfc_digital 0x90407aeb nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x96924850 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9d09ee2e nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa7dcb365 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x3034dc3f pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x36d2a2e9 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x48d1532e phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x5dd7b915 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x5f3762ad pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x6870f358 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x747fa287 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xb39d145e phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0a85dfd0 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0c6078d4 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x23c47717 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3906412e rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3da46c00 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4b485d4d rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x535d5419 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5ba6fa1a rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d2f149e rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d36152c rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6ab08d50 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8687e0fb rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa5c5b0b4 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc2e7ef07 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc650e93f rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe19c18c1 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe98764d9 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xec3105a4 key_type_rxrpc +EXPORT_SYMBOL net/sctp/sctp 0x705da152 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 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 0xbcb29e3e __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xc5a0dcfb __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 0xee78631a __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xf6037b45 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x073db0d7 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x13d26bdf gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x75444f10 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3e3d3376 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x56256e69 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc8d5eda5 svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x4cdb1030 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x95d35631 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xde6bfc6e tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xdf50d786 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x257c2766 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x002913f5 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x008bd8ca cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x0a395d37 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0f8a37db cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x1046ee3c cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x11af8cd9 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x135926ab cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x15232351 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x160548de ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x192b4104 wiphy_rfkill_set_hw_state_reason +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 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275c97f0 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x2908ee72 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x2a121f3d cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2b93eea7 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x2c87c332 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x3307065d cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x334b3511 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x35d6d54d wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x36875fa0 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x37db10c5 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x38a48cd2 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x3945c483 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3d2ad0a2 cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x3dbe72fc cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3f59c4c9 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x40158db4 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x41d3a958 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x421cd139 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x42e0e9cc cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4325b778 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x4390b4d5 cfg80211_ch_switch_started_notify +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 0x4d9ef511 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x4f47d21b cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5155d223 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x522fee34 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x536206b7 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x536c8a17 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x557e6dc9 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x55a18044 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x5813b28a cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x5a2589c6 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x5afd515f cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x5b83e179 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x62ce1dc8 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x6477678d wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x6558c399 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x660265e2 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6af3949d cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x6babbd82 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6d27d9b7 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x6e70c53d cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x763719f3 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x774b3453 cfg80211_bss_color_notify +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 0x7b33b504 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x81c12e8c cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x831508d9 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x868019b7 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x8d302746 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x8d935a4c cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x9539c32a cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x95b37b85 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x971a9451 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x98b64bc4 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x997aa95d wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x99f4a187 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9d9abe25 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x9dd2f2d2 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x9dee3e19 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa863576d cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xaa08cb78 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xaf07d377 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xaf597b55 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xb0f9f244 cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0xb21e19cb cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xb5032131 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xb64a5ddd cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb6bc8865 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xb74cf948 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb8256be3 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xbaa35644 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xbd62e262 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xbe8f0408 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xbed122fa cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xc002c938 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xc46fd598 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xc5bd6a5e cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xcb80300f cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd87eb763 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdbae8c05 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xde12ad49 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xdf888f83 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xe05a6ac4 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe3752c55 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe9cc18d8 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xea19e766 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xf053ccff cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xf285184d cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf4993476 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf681d586 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xfb5ad8a1 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xfbcc6b0c __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xfee93b9d cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/lib80211 0x177ec032 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x20f4a9c6 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2948c91f lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7d152bd3 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xafa96ecd lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf12eebe4 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x34b0b45f ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x378b4262 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x119e1d3e snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x60fd4798 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 0x7109147e snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 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 0xf07f752c 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 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 0x4d019272 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02cd66bf snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x05e06922 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x071889d0 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x07beeb0e snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x09471299 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x0f324471 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x239c659a snd_device_register +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3bece992 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x40e8b26a snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x44b33e2f snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x45d253c6 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4ab2a257 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x56155003 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x5ad5a7b1 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x5f5e2648 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x660e50a3 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x6e450951 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x729055b2 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x7a6956db snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x7ae66b10 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x7bc8c82c snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x7de33745 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x81f35a81 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x834bf584 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x84fb1143 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x88ef9f70 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x8c4d8608 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x949dbce5 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x96950c91 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x9aaa0c63 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x9d48a156 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xaa391235 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb5d14e23 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xbac3dbb5 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xbbdff8df snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xbe630b26 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xc1998671 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc80497f5 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xcf409482 snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0xd001ad15 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xd3b17dad snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xdc3e4d9f snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xe6bee831 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xeb953a07 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xf32f1315 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xf8c7d6e3 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xf957c483 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xfa0ccba4 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xfb0ee2a9 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x158db30c snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0x20e9146f snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0xf98262d6 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x0357f5f1 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x05c8157b snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x05d001c1 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x05f45d29 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x070e5f4d snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x11fd6cf3 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x17aa4420 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x17c65f79 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x185ace6f snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x2c5d2511 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x2c9324ae snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x311e5f1b snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3327e029 snd_dma_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 0x40abd090 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52282c3c snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5e3c96cb snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5e8610f5 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x61758fed snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x640446f9 snd_pcm_lib_ioctl +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 0x6da979c3 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x76e632bb snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x7bfc79c2 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x813a3d38 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x849706d0 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8b0c36bb snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x8f6d64db snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x8f7ffb3f snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xa0a488ae snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xa0ef091d snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xa3dcc70c snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb0454159 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xba78b295 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xc7635dcb snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xc7d7507a snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xc8544321 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xc9df7a75 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xcae21e7c snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xcd5f8b1c snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xdace4736 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xdd88e21d snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xdf80d57d snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe2623e8b snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe596eac2 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xe6b396f8 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xed479d9c snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xf2799a16 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xf5e6f72e _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xfb6e5141 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x01e174aa snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x15634fa3 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1709e8d3 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x197cdd82 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2ed1a99c snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x340ba791 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3459374a snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5f92f9ea snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x61913fae snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x65651351 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x70502463 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x711ca6d2 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x857653a9 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x955383e5 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa2ccfd46 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcbdaad6e snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe8e6696a snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf655a5d2 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xdb61910f snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x117afafb snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x1f52701f snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x57c90958 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x584018a3 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x8cd019bd snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x97621619 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x99e2d8f7 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xbf4039ee snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xc3585776 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xc3baeafa snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xec1640b2 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xf6dcd187 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xf8629a3f snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xfbfea5ed snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xfc80b209 snd_timer_stop +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x74615ded snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x52df8e2e snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x57685244 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x73fae120 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c7e1f41 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb6cb6f53 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc33bd2b8 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc58cf8df snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd553a45c snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf4f88bca 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 0x64a859d7 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x694f11d1 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7c8895ab snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7f08a58c snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb455a050 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc68cb00d snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd1455ed7 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd223b6ba snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf561c92a snd_vx_dsp_load +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0727e1fb amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x090ca858 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c1ce86d cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x21bff9cd cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x346b35db amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35b53519 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39d69731 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e51c467 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4abebb19 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c6f48e8 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x529dc856 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x59afbc0d cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ad556ff snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5fb12b3d cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x65a18af5 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ee06b77 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9359e2da fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x947e1fcb cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x95c3a65d amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa8394b9a amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2848377 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb497c0a2 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbd5b5106 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc913160f avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca297415 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8748e4f iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdce1add1 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe5a97915 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9a9816d fw_iso_resources_init +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 0xb7b836b3 intel_nhlt_ssp_mclk_mask +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xfe0c53a9 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x01a065d1 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xcf0ec26b snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x25e73493 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2dc5a7b9 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6dc7bed9 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8d583220 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb6bc5e14 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd1de0ce3 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xddf4bfe1 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xeac82fc0 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc0515355 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc616a00b snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd37ddf0a snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xfa526d04 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x579b093a snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x70bdba5b snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x19b34c27 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2361b1a4 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x446dac51 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5c2db9dd snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6ee80191 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xeb694372 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0d017362 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0fa67796 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x21f8702b snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x862084f7 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xae614fae snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd910f405 snd_i2c_device_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0d8843e8 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11dc240a snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x191271b8 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c7899a0 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x228372d6 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x28778f7b snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x37080854 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x516f7233 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7c7aafe9 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7dc50a8b snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad90fa05 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaee3ad54 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb9895bd1 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbc1e04b5 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc9302603 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce27008a snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdcdbb518 snd_ac97_resume +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x08006522 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x329e68b3 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x374e7e7d snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x50689efa snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6f4895b0 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x88191df0 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd9d7c65e snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdfb9bbdb snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe07ff414 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x18366dfe snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x60acd4ef snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9251d4ee snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x015dfbe3 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x07282956 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x08eddc66 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x179eb564 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1d3e853d oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a40f2dc oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ea28cdf oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x37bc7bc8 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3bf82390 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x48880dbc oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c20fb73 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70099583 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x759e12fa oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9cd10952 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa92fca2a oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xabc9e014 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xadcbebd5 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbc264dd8 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc17c73d3 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf17a8094 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x781b8735 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x81afbdef snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd86a20a2 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe0df26f8 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe8e4ab91 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x7531ae39 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x935247c4 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xafc1fbe7 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x3297c883 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x5f2281bc wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x5d087bce pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xa839cff7 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x33948981 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x57e14196 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3018f725 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6cab2b0b aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf15eb67f aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x842a129d aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xc7948f97 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x1fc9e70f 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 0x74cc5eaf wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe5e43615 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x248761ca fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x7c03e8e0 fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xd2326407 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xbec358ca mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xdbdf7cb8 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x620d8678 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xbd756b2c q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/snd-soc-core 0x2f19e3fd snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x00498e38 imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x4cd51aa0 imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xc9532b60 imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xe2814993 imx8_dump +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0xa4b3d9da mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0c05537b sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x128f9e03 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x136889ad snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1519430f sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1630c6c7 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1b89e57e snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d6b947c sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x241179be snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x261ed281 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a6a3858 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c7736e7 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x383918a5 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x386eff9e snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3eac0654 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x44b1691f snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a14d993 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4b02b58b snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x54edd708 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e1246ef sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69f26438 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6e600430 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7119809a snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x73d48a9a sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7615eb44 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7aa6bd0a sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x921aee8b sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x954cad7b snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9758ac22 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a4c3f6f snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b5b0645 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9fc4c85e snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa465fab8 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa85a8b0e snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8f5a2ce sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xae4603cd sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb0b37ad4 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb254ad37 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb46801ae sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb6e1ca17 snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb70d5616 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb823fa59 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc001a300 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc36d4af4 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc7d83c2b sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcc9dccbe sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce440cd3 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce925d08 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf5a9467 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4c14577 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4f3455c sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd7b1ac4d sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd98f81be sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea1cd320 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb39f104 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf17e844f sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf40fb5d2 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf81d07d4 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x312536d0 sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x43a25a6d sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x91d9beec sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xa05ae144 sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x827296ec snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x69bec998 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa8c9b488 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xdd5c2e9a sound_class +EXPORT_SYMBOL sound/soundcore 0xe2d480c2 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xfefdf6c0 register_sound_dsp +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2c72f0e9 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x621f735e 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 0x92c88e49 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb54e3c55 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd468930d snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfd1a761a snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x914f3491 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9223e14b snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd3fdaca6 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x000cc9e1 param_set_invbool +EXPORT_SYMBOL vmlinux 0x000da707 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x002f170c mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x0043bbee rproc_detach +EXPORT_SYMBOL vmlinux 0x006577cd __break_lease +EXPORT_SYMBOL vmlinux 0x006ad424 inet_add_offload +EXPORT_SYMBOL vmlinux 0x006e772b textsearch_destroy +EXPORT_SYMBOL vmlinux 0x007965be kernel_bind +EXPORT_SYMBOL vmlinux 0x008a8479 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x00928200 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00c394c6 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x00d2bf79 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00fc52ec scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x010c9c55 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x01132481 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x01196a0f jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x011e80a8 key_unlink +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012cfe7d bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x01311174 fs_context_for_submount +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 0x0162875e security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0167034f kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x01677a5b neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x016d4680 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x01ae3f38 udp_read_skb +EXPORT_SYMBOL vmlinux 0x01b459e5 inet_offloads +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01d0f811 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x01d30d0c device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x01d9e2a5 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x01dc8a99 qman_update_cgr_safe +EXPORT_SYMBOL vmlinux 0x01fe2a64 path_is_under +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02119fa4 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x02187c00 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x022d08a4 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x0237d346 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024bf930 rproc_boot +EXPORT_SYMBOL vmlinux 0x0251fddc sock_create_kern +EXPORT_SYMBOL vmlinux 0x0263c6b3 register_qdisc +EXPORT_SYMBOL vmlinux 0x026bb3fe backlight_device_register +EXPORT_SYMBOL vmlinux 0x026ce566 rt6_lookup +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02872a66 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x029f718e mpage_writepages +EXPORT_SYMBOL vmlinux 0x02aa097b tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x02abd938 dquot_resume +EXPORT_SYMBOL vmlinux 0x02acbd16 rproc_put +EXPORT_SYMBOL vmlinux 0x02b26fb1 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x02b871dd netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x02bf329b flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02d7977e of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03408730 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036b11e0 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x039544dd ipv4_specific +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03a20fc2 irq_set_chip +EXPORT_SYMBOL vmlinux 0x03ae3471 follow_down +EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03cfbabd lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x03d1fdbe fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x03d6774d of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x03d85190 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x03e70a33 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0401b325 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x04157b25 proc_set_user +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x04922139 __invalidate_device +EXPORT_SYMBOL vmlinux 0x0493fdfd block_dirty_folio +EXPORT_SYMBOL vmlinux 0x049a96f0 inet_getname +EXPORT_SYMBOL vmlinux 0x04a9bc10 done_path_create +EXPORT_SYMBOL vmlinux 0x04ae9f3e __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x04b5c494 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x04d3f88f __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x04d49cea dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04ee8893 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x05060bf9 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051c1d69 __pagevec_release +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05227eb6 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05392126 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x0541b76f skb_pull +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0559a477 pci_set_master +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x056686be fasync_helper +EXPORT_SYMBOL vmlinux 0x05681ed5 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x0572f11a proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x059dd140 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05abc7c2 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x05bc0cf2 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061316a0 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06354e07 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x06556f5c __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x06595fe0 kernel_listen +EXPORT_SYMBOL vmlinux 0x0661f58b dquot_release +EXPORT_SYMBOL vmlinux 0x0665a395 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06740b3b pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x0674a43c blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x0678f47f md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x067df35d vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x0680b3aa vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x0685cdbf mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x068e9a1e give_up_console +EXPORT_SYMBOL vmlinux 0x068f5788 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x06906d59 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x06987f99 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x069da251 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x06a4c785 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06e883ca dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x06eca4dc vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x06f61fd6 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x06f65b1c seq_open_private +EXPORT_SYMBOL vmlinux 0x06f6dcf8 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x070091e8 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x0706eed5 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x07132928 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x071a68d0 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073e3cdd __do_once_done +EXPORT_SYMBOL vmlinux 0x07427cb2 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x0795827e vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07adbcba devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x07b74631 dev_add_pack +EXPORT_SYMBOL vmlinux 0x07c5c4d1 vfs_link +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07db2cd1 sk_net_capable +EXPORT_SYMBOL vmlinux 0x07e0d64f io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x07eb13cd pci_enable_msi +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f587b6 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08088b77 km_state_expired +EXPORT_SYMBOL vmlinux 0x081178b6 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x08191f00 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0840606c ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x0863dbc9 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x0865e0c3 single_open +EXPORT_SYMBOL vmlinux 0x0875ff9f vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x087b459f _dev_warn +EXPORT_SYMBOL vmlinux 0x088c3b4e sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x0898a52d set_posix_acl +EXPORT_SYMBOL vmlinux 0x0899112d rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x08a56093 seq_bprintf +EXPORT_SYMBOL vmlinux 0x08c37dd5 scsi_host_get +EXPORT_SYMBOL vmlinux 0x08d79298 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08f78bab netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x08fae09e neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x08ff200a poll_freewait +EXPORT_SYMBOL vmlinux 0x09061466 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x090eb389 generic_perform_write +EXPORT_SYMBOL vmlinux 0x09116955 unlock_page +EXPORT_SYMBOL vmlinux 0x092af677 d_instantiate +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x092fb70c fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093a5c9a fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097a822f tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x097b5f96 submit_bh +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09ec0c8b dentry_path_raw +EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put +EXPORT_SYMBOL vmlinux 0x0a008330 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a0c6aa6 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a273b2c pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x0a2c618d pci_release_region +EXPORT_SYMBOL vmlinux 0x0a4d1ded simple_statfs +EXPORT_SYMBOL vmlinux 0x0a54d30a __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0a5bd9bf input_release_device +EXPORT_SYMBOL vmlinux 0x0a6253c6 dm_io +EXPORT_SYMBOL vmlinux 0x0a656bbe import_single_range +EXPORT_SYMBOL vmlinux 0x0a76d2db param_set_long +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a888f8f scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x0a9ab6d0 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x0a9f861e iget_failed +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa5a2ca input_inject_event +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ab84ec2 blk_rq_init +EXPORT_SYMBOL vmlinux 0x0ab90071 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adae24c nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x0afac4e3 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x0afbe192 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x0afd0215 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x0b06c586 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b21b11c phy_device_free +EXPORT_SYMBOL vmlinux 0x0b224014 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b3164c8 nf_log_set +EXPORT_SYMBOL vmlinux 0x0b35ea41 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x0b406665 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x0b57aeb6 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x0b62d219 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x0b637467 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x0b652789 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b93a673 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x0b9a0174 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bbd139a mmc_can_erase +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x0bed292f jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf5f2d7 __bh_read +EXPORT_SYMBOL vmlinux 0x0bf7d82a ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c01c60e simple_write_begin +EXPORT_SYMBOL vmlinux 0x0c07a68b secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x0c161414 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c3b7cd3 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c59f424 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c820f9d config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x0c86b5a0 wake_up_process +EXPORT_SYMBOL vmlinux 0x0ca04e48 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x0cad3e7a lynx_pcs_destroy +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb7674c nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x0cbb6d77 set_anon_super +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0ccfb048 nf_reinject +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d1d9c13 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x0d2253fe __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d334843 __register_nls +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d697411 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x0d936dbe vga_client_register +EXPORT_SYMBOL vmlinux 0x0d99675a set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0dc9e8cb filemap_get_folios +EXPORT_SYMBOL vmlinux 0x0dd2ea53 import_iovec +EXPORT_SYMBOL vmlinux 0x0dd724af free_netdev +EXPORT_SYMBOL vmlinux 0x0df4c07a dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x0dfd8af5 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x0e008d4e __serio_register_port +EXPORT_SYMBOL vmlinux 0x0e0a5d73 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x0e1429d2 qdisc_reset +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e18c4b6 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x0e1d38a1 lookup_one_len +EXPORT_SYMBOL vmlinux 0x0e26e20f path_has_submounts +EXPORT_SYMBOL vmlinux 0x0e276551 fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x0e31616b blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e519473 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x0e6f51a8 param_get_ushort +EXPORT_SYMBOL vmlinux 0x0e6fc626 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x0e79a589 user_revoke +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb1beb6 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ebf5b49 tty_lock +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eecfc01 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x0eed0a66 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f18761b __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x0f1905d9 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f1e3a67 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x0f365835 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f54623e cdev_init +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f6a1c26 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x0f83e2f7 stream_open +EXPORT_SYMBOL vmlinux 0x0f869ba7 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f9a64bd scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb07064 config_item_put +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb4fd9c arp_create +EXPORT_SYMBOL vmlinux 0x0fb834ea tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe04d22 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x0fe1a247 d_exact_alias +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x1001b30d tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x10211a1c __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x1039b02e xfrm_register_type +EXPORT_SYMBOL vmlinux 0x1042ed60 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x104dbbfa call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x1054a508 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x10593ef1 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x105b0d58 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x105c365c poll_initwait +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10713efe of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x10724b10 __netif_rx +EXPORT_SYMBOL vmlinux 0x1073fcf6 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107d1540 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108a9845 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e1e02a dcb_getapp +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10fbaa63 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x111d5658 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x11201006 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x11210078 ps2_end_command +EXPORT_SYMBOL vmlinux 0x113e939c linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x114169ac inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x114bd3c9 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x1151df36 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117a0341 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x118895c6 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x118b3d80 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x11a9f959 phy_init_hw +EXPORT_SYMBOL vmlinux 0x11b486a3 page_mapping +EXPORT_SYMBOL vmlinux 0x11cb22a5 netdev_crit +EXPORT_SYMBOL vmlinux 0x11df8be0 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x11e03bdc pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11f0446a phy_detach +EXPORT_SYMBOL vmlinux 0x11fa0fae __block_write_full_page +EXPORT_SYMBOL vmlinux 0x11fa617b scmd_printk +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x1208a691 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset +EXPORT_SYMBOL vmlinux 0x1236bdb3 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x123e51cd xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x12425fd1 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x1242dbb2 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x12473520 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x124ebdb9 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down +EXPORT_SYMBOL vmlinux 0x12814d7d mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x129479d7 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x1298c1d0 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12a9ac43 inet_shutdown +EXPORT_SYMBOL vmlinux 0x12a9de39 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x12ac05ce blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12e3fa17 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fb390a twl6040_power +EXPORT_SYMBOL vmlinux 0x1308d122 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x130adffb to_ndd +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1311b453 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x131f061b device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x132a62e2 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x1334fd2d generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x133757ae fput +EXPORT_SYMBOL vmlinux 0x1342c113 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x13487730 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x134cae71 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x1365f4f4 inet_addr_type +EXPORT_SYMBOL vmlinux 0x1390a35e bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x139b2ee8 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a0949a init_special_inode +EXPORT_SYMBOL vmlinux 0x13a0c793 md_write_inc +EXPORT_SYMBOL vmlinux 0x13a32b0d ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x13a720a0 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x13a92708 mpage_readahead +EXPORT_SYMBOL vmlinux 0x13b44629 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x13bf083b udp_pre_connect +EXPORT_SYMBOL vmlinux 0x13c2d0a8 bio_endio +EXPORT_SYMBOL vmlinux 0x13c31522 inet_listen +EXPORT_SYMBOL vmlinux 0x13c6b2fe fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d6d100 dev_uc_add +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13e87514 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x13ff573e md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x13ff9963 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x14209b11 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x1429f72e scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x142d82c5 scsi_done_direct +EXPORT_SYMBOL vmlinux 0x142ebc6f elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x142efb1f fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x1434fc98 default_llseek +EXPORT_SYMBOL vmlinux 0x145e136e skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x148945e2 __free_pages +EXPORT_SYMBOL vmlinux 0x148efc58 datagram_poll +EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg +EXPORT_SYMBOL vmlinux 0x14acdeb2 clkdev_add +EXPORT_SYMBOL vmlinux 0x14b5f9bc __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14c6e094 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x14fa97db __nd_driver_register +EXPORT_SYMBOL vmlinux 0x1501a106 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x150a7e37 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x15339f0f ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x15446e72 del_gendisk +EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x1548ec95 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x154bec72 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154d3167 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x154fd231 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x1551e5f9 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x1554b507 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x157d42e4 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x15848c5c __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x15954980 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x1596535f pci_clear_master +EXPORT_SYMBOL vmlinux 0x15a8ba0a netdev_txq_to_tc +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 0x15ca8880 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x16248584 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +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 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16a5219e flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16f0ff1e simple_rename +EXPORT_SYMBOL vmlinux 0x17095a78 edac_mc_find +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x171401dd mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x1723fdff simple_get_link +EXPORT_SYMBOL vmlinux 0x1746fd7d dst_init +EXPORT_SYMBOL vmlinux 0x17482164 seq_read +EXPORT_SYMBOL vmlinux 0x174d6584 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x1761a58f netif_receive_skb +EXPORT_SYMBOL vmlinux 0x1762b207 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x177dd389 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x17b3c13d filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x17c99a2c vma_set_file +EXPORT_SYMBOL vmlinux 0x17d9b7f0 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x18000a47 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x180381ef neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x181e943b mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x1825d9e6 tcp_prot +EXPORT_SYMBOL vmlinux 0x183253ac param_get_invbool +EXPORT_SYMBOL vmlinux 0x1832e538 alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1853933b vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x185b9ffd xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x186402d2 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x1878b330 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x1886ab69 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188e6561 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x188f5039 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x1891bb63 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x18a6a5a3 put_cmsg +EXPORT_SYMBOL vmlinux 0x18a75302 __destroy_inode +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18bdac71 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x18be846b tcf_em_register +EXPORT_SYMBOL vmlinux 0x18be9858 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x18c73f2d register_md_personality +EXPORT_SYMBOL vmlinux 0x18ce1bb6 kobject_add +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x1903a8d3 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x19091a35 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x190d8c6c sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x19152118 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x191c8c76 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x1924d5a7 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x1953f7d5 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x196705c3 vif_device_init +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x19930731 node_data +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19ae2b7b nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x19b5bb92 seq_release_private +EXPORT_SYMBOL vmlinux 0x19bbfdeb rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c9299d pci_pme_active +EXPORT_SYMBOL vmlinux 0x19cb0e02 mount_single +EXPORT_SYMBOL vmlinux 0x19eb0426 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x19ef3c20 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x19f85848 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x1a25c6aa pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x1a3cc8d8 __skb_pad +EXPORT_SYMBOL vmlinux 0x1a451b21 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4c4bb6 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x1a762f83 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x1a7cff1a fget_raw +EXPORT_SYMBOL vmlinux 0x1a8f96a1 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1a9c984f page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x1aa6e4c6 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x1ab1fac4 clear_nlink +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1afea142 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b29310e twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x1b360cf4 mount_bdev +EXPORT_SYMBOL vmlinux 0x1b387d4f mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x1b46d164 may_setattr +EXPORT_SYMBOL vmlinux 0x1b47c32e inet_get_local_port_range +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 0x1b627d1b inet_frag_kill +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6a3b98 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x1b6a5a13 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x1b752e4e set_nlink +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7e34e6 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x1b7ecf23 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x1b8f4cca nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x1b9c0312 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x1ba4884e sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info +EXPORT_SYMBOL vmlinux 0x1bc53bb6 param_get_charp +EXPORT_SYMBOL vmlinux 0x1bcaa566 bdi_unregister +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bdd1e24 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1bf12f56 dev_load +EXPORT_SYMBOL vmlinux 0x1bfaa586 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x1bfbadb7 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x1bfff46a nla_append +EXPORT_SYMBOL vmlinux 0x1c04c61a init_task +EXPORT_SYMBOL vmlinux 0x1c08ec45 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x1c12aab1 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x1c2a7c27 lookup_one +EXPORT_SYMBOL vmlinux 0x1c2f5a10 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x1c4817d1 netdev_update_features +EXPORT_SYMBOL vmlinux 0x1c50e1d3 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x1c51768a scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1c5723f9 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c7d8631 vme_dma_request +EXPORT_SYMBOL vmlinux 0x1c81082e ppp_unit_number +EXPORT_SYMBOL vmlinux 0x1c852bb5 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x1c8d1990 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x1ca77204 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cb6c291 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x1cbbfbca free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x1cbd069a seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cd0a93d cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x1cd41ee8 of_chosen +EXPORT_SYMBOL vmlinux 0x1cd78f95 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1cf79d7c xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d0ec4e0 param_get_long +EXPORT_SYMBOL vmlinux 0x1d189a91 kset_unregister +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d2940d9 __alloc_pages +EXPORT_SYMBOL vmlinux 0x1d3ce5b2 param_set_bool +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d74c4bb phy_device_create +EXPORT_SYMBOL vmlinux 0x1d7a2efd tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x1d840ba7 seq_read_iter +EXPORT_SYMBOL vmlinux 0x1d8b1e9c ip6_frag_next +EXPORT_SYMBOL vmlinux 0x1d8b6f9b __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1d972fc7 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x1d9ab769 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x1da079d6 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x1dbe55f6 eth_header_parse +EXPORT_SYMBOL vmlinux 0x1dc1173c proc_create_data +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dc9704b nexthop_bucket_set_hw_flags +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 0x1de63d38 tcp_inbound_md5_hash +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 0x1e1b4dd0 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x1e241ffa unregister_key_type +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e6eb521 kern_unmount +EXPORT_SYMBOL vmlinux 0x1e7f668d xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x1e940a33 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb5c2cd sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ee2aede tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format +EXPORT_SYMBOL vmlinux 0x1f04b83d elevator_alloc +EXPORT_SYMBOL vmlinux 0x1f20afbc dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1f4209fb buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f6032ec kernel_read +EXPORT_SYMBOL vmlinux 0x1fb2a726 from_kuid +EXPORT_SYMBOL vmlinux 0x1fb6516e ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x1fb9f1bc mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbfc9ed migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x1fc3e7e1 sock_no_listen +EXPORT_SYMBOL vmlinux 0x1fcb246d get_fs_type +EXPORT_SYMBOL vmlinux 0x1fce4de1 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd4e1fd genphy_read_status +EXPORT_SYMBOL vmlinux 0x1ffc382c i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x1ffec12f ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200f6063 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x2012eead framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x20145866 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x201e7f46 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x2044bd65 configfs_unregister_default_group +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 0x204ebd4d d_obtain_alias +EXPORT_SYMBOL vmlinux 0x20506aef filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x205a31a0 dentry_create +EXPORT_SYMBOL vmlinux 0x206119a5 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x207f8d40 vfs_llseek +EXPORT_SYMBOL vmlinux 0x208afcd0 generic_fadvise +EXPORT_SYMBOL vmlinux 0x209dd6c5 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20aac941 napi_enable +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e216f1 is_subdir +EXPORT_SYMBOL vmlinux 0x20e5719b vfs_create_mount +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20eae6fd skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x20ebb527 sock_efree +EXPORT_SYMBOL vmlinux 0x20f1a520 vme_slave_request +EXPORT_SYMBOL vmlinux 0x21008b0d serio_open +EXPORT_SYMBOL vmlinux 0x210118e6 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x21020195 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x212ac9b7 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x214533f1 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x2148a1c9 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x216ccc01 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x2170fc42 misc_deregister +EXPORT_SYMBOL vmlinux 0x218a69a6 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x219efeb9 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x21a87a69 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x21aa26cb vc_cons +EXPORT_SYMBOL vmlinux 0x21ba82a3 sock_no_linger +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c437b7 fs_bio_set +EXPORT_SYMBOL vmlinux 0x21d8c8d1 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x220239a2 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x220e1796 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x222d8ded blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x22335c62 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2267d0ee vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x226943d0 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x2270e044 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x228f0fd6 d_delete +EXPORT_SYMBOL vmlinux 0x22a1422d percpu_counter_sum_all +EXPORT_SYMBOL vmlinux 0x22a440df udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x22a68839 dev_driver_string +EXPORT_SYMBOL vmlinux 0x22b2bc69 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22ba7065 skb_copy +EXPORT_SYMBOL vmlinux 0x22c4d56f pps_event +EXPORT_SYMBOL vmlinux 0x22dbc567 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x22dcd805 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x22ed7552 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x22fb1e7d fb_blank +EXPORT_SYMBOL vmlinux 0x2313d20e netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x2347b76d lock_sock_nested +EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x235fbb24 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x2365b170 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x23739f63 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x238cd7dc of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23a78c8b rproc_shutdown +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bcbfd2 backlight_force_update +EXPORT_SYMBOL vmlinux 0x23c615b3 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x23c9e51a mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23dabaf4 __register_chrdev +EXPORT_SYMBOL vmlinux 0x23e336da genl_register_family +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2402f1f8 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x24064d41 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x2412d6b9 skb_tx_error +EXPORT_SYMBOL vmlinux 0x24265791 icmp6_send +EXPORT_SYMBOL vmlinux 0x242e4d4c get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2444f920 unregister_netdev +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245b0dba ip_output +EXPORT_SYMBOL vmlinux 0x248151bf param_set_ullong +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24b669b1 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x24c7ff67 override_creds +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x24e80feb page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x24f59daf unix_attach_fds +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2515a42e xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x252eee5f tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x25353818 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x253839c6 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x2566204b security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2584c1f1 __ip_mc_dec_group +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 0x25a2b7aa tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x25cdb4ec xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fe96cd param_ops_bool +EXPORT_SYMBOL vmlinux 0x26077a0a netlink_ack +EXPORT_SYMBOL vmlinux 0x26086745 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x260e52ee dynamic_preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x261c6b2e simple_fill_super +EXPORT_SYMBOL vmlinux 0x262d7864 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263d3530 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x263f6d1c netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x26427d94 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x26644a73 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x26713068 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x26764b28 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x269db8e7 d_invalidate +EXPORT_SYMBOL vmlinux 0x26a09557 ps2_init +EXPORT_SYMBOL vmlinux 0x26ac45f1 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x26baa262 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x26d5fb48 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26ed4b7d tty_register_device +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x27163906 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x271a4dc8 generic_setlease +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271fa2ce tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x2720994b filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x2720e0ac devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d2cee __nlmsg_put +EXPORT_SYMBOL vmlinux 0x2759cf30 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2768dc85 block_commit_write +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 0x27837fb0 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27b3ac0a skb_flow_dissect_ct +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 0x27da2bcf get_cached_acl +EXPORT_SYMBOL vmlinux 0x27e0dd0a qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x27ec3546 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x27eee10f current_time +EXPORT_SYMBOL vmlinux 0x27ff8802 simple_unlink +EXPORT_SYMBOL vmlinux 0x28177102 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282e668b dev_uc_init +EXPORT_SYMBOL vmlinux 0x28363af2 register_quota_format +EXPORT_SYMBOL vmlinux 0x284a5850 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x285ea935 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x2865fc29 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x28663780 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287d1abf tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x288c9ff7 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x289771bb commit_creds +EXPORT_SYMBOL vmlinux 0x289a34ec uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x289e05df zpool_register_driver +EXPORT_SYMBOL vmlinux 0x28b213f5 f_setown +EXPORT_SYMBOL vmlinux 0x28bafaf7 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x28bb649e sk_common_release +EXPORT_SYMBOL vmlinux 0x28c3de52 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x28cc04f8 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x28d85403 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x28dfc63d netif_skb_features +EXPORT_SYMBOL vmlinux 0x28f05aaf textsearch_register +EXPORT_SYMBOL vmlinux 0x28f77755 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x2907f0e4 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x2912abe8 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x291449c2 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x291d0032 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x2956c19c phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x295b2eb1 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x2969f765 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x297f9a91 nf_log_unset +EXPORT_SYMBOL vmlinux 0x29b08dcb tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e3adb1 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x29eae661 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x2a01013c inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a4b2ab7 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x2a5dc3e2 xudma_get_device +EXPORT_SYMBOL vmlinux 0x2a5f7942 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x2a6841a4 seq_puts +EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable +EXPORT_SYMBOL vmlinux 0x2a76018a try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x2a773f7f sock_alloc +EXPORT_SYMBOL vmlinux 0x2a7f30bc alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aab4186 vga_get +EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ac0c053 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x2af79b6d inet6_add_offload +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b2a48f8 netdev_info +EXPORT_SYMBOL vmlinux 0x2b2f2717 security_sk_clone +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b5cf350 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x2b818529 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x2b872764 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x2b904d6f phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba18fc9 pps_register_source +EXPORT_SYMBOL vmlinux 0x2ba3f4ed reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x2bae204e mt_find +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bb81b2e user_path_create +EXPORT_SYMBOL vmlinux 0x2bbedfce tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdb0825 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x2be73bc1 inet_accept +EXPORT_SYMBOL vmlinux 0x2bec859d tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x2bf8f9d8 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2bffbce8 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c568b82 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x2c56ebb5 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x2c5921e8 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x2c5d0495 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c75f5f6 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2c9b7fbf generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x2caf3942 param_get_int +EXPORT_SYMBOL vmlinux 0x2cb9db7c pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x2cbb9200 mdio_device_create +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2ce40d36 d_alloc +EXPORT_SYMBOL vmlinux 0x2ceccd30 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table +EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x2d0fda5f simple_getattr +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1e740c blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d389eea configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4bb5ee vfs_create +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d5d88a7 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x2d6626d6 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x2d8e5bd0 rtc_add_group +EXPORT_SYMBOL vmlinux 0x2d8e6ea3 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x2d900604 inet_put_port +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d9352d3 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x2d936734 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9f92de skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x2da12eec keyring_alloc +EXPORT_SYMBOL vmlinux 0x2dae3bab dev_activate +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2a424c _dev_err +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e485eac qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2e6cb965 of_root +EXPORT_SYMBOL vmlinux 0x2e6eb4b5 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x2e8e1153 tty_devnum +EXPORT_SYMBOL vmlinux 0x2e9018c3 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x2e9ac65b key_type_keyring +EXPORT_SYMBOL vmlinux 0x2eb850b1 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x2eb89ebe ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ed45230 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x2ed90897 skb_split +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ef51389 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f10dd54 input_register_device +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f17f135 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f35c841 of_iomap +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f554fcb proc_remove +EXPORT_SYMBOL vmlinux 0x2f629268 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x2f723e2c mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f8c994f no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x2f8e0bd9 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x2f8e688c xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x2f9eba2a input_grab_device +EXPORT_SYMBOL vmlinux 0x2fbfb9f0 inet_select_addr +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2ff6947f nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x3024568a mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x302bd609 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x304558fa pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x304a2b85 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x305e235b pci_find_bus +EXPORT_SYMBOL vmlinux 0x306e2788 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x308c22db dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x30969270 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309bb884 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30aae5cb phy_stop +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b19efa ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x30b357b9 ping_prot +EXPORT_SYMBOL vmlinux 0x30b5e4c6 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x30bc5b9b tcp_peek_len +EXPORT_SYMBOL vmlinux 0x30cd6315 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x30d6ba6f udp_sendmsg +EXPORT_SYMBOL vmlinux 0x30f078ff ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x310627e3 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x31092395 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info +EXPORT_SYMBOL vmlinux 0x313b9d83 pci_select_bars +EXPORT_SYMBOL vmlinux 0x31561ed2 config_group_find_item +EXPORT_SYMBOL vmlinux 0x315e2c90 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x3189b887 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31a5e8ca simple_setattr +EXPORT_SYMBOL vmlinux 0x31aacf1a napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x31afd3b5 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x31b5903c fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x31e0807f ip_frag_next +EXPORT_SYMBOL vmlinux 0x320aae9f blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x323e0026 try_module_get +EXPORT_SYMBOL vmlinux 0x32496019 skb_seq_read +EXPORT_SYMBOL vmlinux 0x3266e80f pci_get_device +EXPORT_SYMBOL vmlinux 0x327537be input_mt_drop_unused +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 0x329f3fd3 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load +EXPORT_SYMBOL vmlinux 0x32ef2de0 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x33142bb6 mr_table_dump +EXPORT_SYMBOL vmlinux 0x33167c03 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x33304af9 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x335193bd bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x336155ec prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range +EXPORT_SYMBOL vmlinux 0x3370b78e pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x33732647 __check_sticky +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33753d3b skb_unlink +EXPORT_SYMBOL vmlinux 0x33769be3 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x33803db9 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x33830305 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x338d7133 input_setup_polling +EXPORT_SYMBOL vmlinux 0x33a35c56 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x33cddd51 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x33d5d679 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f8f5bf rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x34023155 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x341b899d mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x346882e6 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x3472c6b3 inode_init_always +EXPORT_SYMBOL vmlinux 0x347f1409 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x349ca20c super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349e1be1 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34a2384e pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x34a42e45 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x34a70704 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x34b3d4cf skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x34bf5929 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x34c27b0e generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34c89076 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34ed3cdc backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x34ee8654 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x34f12168 bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f48c72 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x35054c80 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351b6858 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x351d9a31 mr_dump +EXPORT_SYMBOL vmlinux 0x351f0d01 pci_restore_state +EXPORT_SYMBOL vmlinux 0x35245eff xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3541ea8e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x3554f4d6 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356be6a0 sk_error_report +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35bd23cc amba_release_regions +EXPORT_SYMBOL vmlinux 0x35d1978f generic_file_llseek +EXPORT_SYMBOL vmlinux 0x35d252af ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x35de3f00 of_match_device +EXPORT_SYMBOL vmlinux 0x35e63d7c fifo_set_limit +EXPORT_SYMBOL vmlinux 0x35e8e3d1 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x35f27fd7 slab_build_skb +EXPORT_SYMBOL vmlinux 0x36027ecf phy_device_register +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360dadda create_empty_buffers +EXPORT_SYMBOL vmlinux 0x361b629d netdev_printk +EXPORT_SYMBOL vmlinux 0x362989f8 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x362e0ee3 amba_request_regions +EXPORT_SYMBOL vmlinux 0x36397c0d show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x3643df5a devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x364512ab set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365c7212 skb_ext_add +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3662c204 notify_change +EXPORT_SYMBOL vmlinux 0x3678dbe3 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x368de09d page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x36941bb6 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x36956431 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x36b69ee0 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36cbd899 sk_wait_data +EXPORT_SYMBOL vmlinux 0x36e93f25 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x370609e8 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x37134516 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x37247d39 proto_register +EXPORT_SYMBOL vmlinux 0x3727a1dc dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x372adca1 pskb_extract +EXPORT_SYMBOL vmlinux 0x372b65e8 processors +EXPORT_SYMBOL vmlinux 0x372b748c mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3747fa94 kill_anon_super +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x376124a8 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x37958699 devm_ioremap +EXPORT_SYMBOL vmlinux 0x37a49242 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37bb73ef cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e33d84 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x37f68470 unregister_nls +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x384b84b5 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x3850fdf1 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x3862b51c bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388a35d4 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x388a515a mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x388ac583 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x388d1603 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x388f6f52 nf_log_unbind_pf +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 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b0f598 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x38bb1d41 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x38c30802 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38fac70a inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x38fb3c7a mq_change_real_num_tx +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 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393c2476 param_ops_charp +EXPORT_SYMBOL vmlinux 0x3941eec8 dma_resv_init +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394b80dc jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39567ef4 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x39584865 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x39609b59 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x39637d78 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x3969de50 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x396d1497 d_find_alias +EXPORT_SYMBOL vmlinux 0x3975f63e mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x398cad30 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x39919c41 fb_class +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399acefb imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a36a60 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39be9ae5 bio_put +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39e521e9 ip_defrag +EXPORT_SYMBOL vmlinux 0x3a056719 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x3a10cdf5 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x3a1921e2 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x3a35a7b4 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a6f378a pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x3a7344e2 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ac5c8fd xsk_uses_need_wakeup +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 0x3ade99ec get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b0e1351 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma +EXPORT_SYMBOL vmlinux 0x3b1b0c20 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x3b1e4900 pci_bus_type +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b33911c twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x3b35f92f simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x3b3f6e96 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x3b4d8c1e netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x3b544f61 kthread_bind +EXPORT_SYMBOL vmlinux 0x3b5ad760 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x3b620e08 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x3b64188c devfreq_update_status +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 0x3b727dc0 udp_seq_start +EXPORT_SYMBOL vmlinux 0x3b7299b1 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x3b895a56 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3bc1e7ee configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x3bee504d skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x3bf8d05c tcp_child_process +EXPORT_SYMBOL vmlinux 0x3bfdcdee __nla_put +EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c222c6d i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x3c2b3dd9 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3f977f jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c590f05 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x3c776a6c pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x3c813935 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3ccfd0c1 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d0595f2 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x3d1a7b07 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d217a1a iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x3d4e7bef inet_frags_init +EXPORT_SYMBOL vmlinux 0x3d79fa55 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x3d8b2a95 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x3d8cc7ff submit_bio +EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da5447b input_get_keycode +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 0x3dbd4f29 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x3dbe11b6 inode_set_flags +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dc78a4f uart_write_wakeup +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 0x3de1897a __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x3ded0ea8 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x3df24f09 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0e8300 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x3e1a9ace xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x3e257e6c iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x3e26eca3 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e441146 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x3e5f4d51 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x3e6e908b send_sig +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3e8d1d4a dqput +EXPORT_SYMBOL vmlinux 0x3e91d8f1 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x3eb3f9a7 xp_dma_map +EXPORT_SYMBOL vmlinux 0x3eb4d271 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit +EXPORT_SYMBOL vmlinux 0x3ed4221c pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x3ee083be tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x3ee7a1bd kernel_write +EXPORT_SYMBOL vmlinux 0x3eec0994 __folio_alloc +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f2fb60b key_link +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 0x3f682131 kobject_put +EXPORT_SYMBOL vmlinux 0x3f836c68 param_get_hexint +EXPORT_SYMBOL vmlinux 0x3f851bf0 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x3f87c303 kobject_set_name +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f910af6 nd_btt_version +EXPORT_SYMBOL vmlinux 0x3f98e922 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x3fa1b4de fb_find_mode +EXPORT_SYMBOL vmlinux 0x3fa8134d acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x3fb1f713 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x3fbf1643 _dev_info +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x4020f107 input_open_device +EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x402e2bfc udp_disconnect +EXPORT_SYMBOL vmlinux 0x403d4c82 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x404112c5 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x404c4d1e dev_addr_add +EXPORT_SYMBOL vmlinux 0x405a5ba1 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x405b84f5 of_get_next_child +EXPORT_SYMBOL vmlinux 0x405c5887 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x405f8679 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x4064672e mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x406b3af0 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x408222fc request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x40863ba1 ioremap_prot +EXPORT_SYMBOL vmlinux 0x40871378 clk_get +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40ae5273 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d6e12d zap_page_range +EXPORT_SYMBOL vmlinux 0x40e0cb6e pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x40ea3757 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x40fb1d03 bdi_register +EXPORT_SYMBOL vmlinux 0x40fd206d tty_name +EXPORT_SYMBOL vmlinux 0x410ba325 lynx_get_mdio_device +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41352438 key_invalidate +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x415d644b sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x415fbfac devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x417863e3 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x41861896 input_free_device +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range +EXPORT_SYMBOL vmlinux 0x41a7ea39 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x41c03320 folio_alloc +EXPORT_SYMBOL vmlinux 0x41c45180 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41eec846 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f149ae send_sig_info +EXPORT_SYMBOL vmlinux 0x41fd1b4e dump_skip +EXPORT_SYMBOL vmlinux 0x42084c35 invalidate_disk +EXPORT_SYMBOL vmlinux 0x420ac55b napi_gro_receive +EXPORT_SYMBOL vmlinux 0x421d4a17 genphy_resume +EXPORT_SYMBOL vmlinux 0x422624a1 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x42316f65 md_register_thread +EXPORT_SYMBOL vmlinux 0x42351f59 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x42358e70 get_task_cred +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4251f3cd block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x4254c57d blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x42624b99 bmap +EXPORT_SYMBOL vmlinux 0x427bd872 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x427ca453 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x428370ce mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x428c78f0 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x42a7819b scsi_host_put +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42db784a request_key_rcu +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f56d65 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4307ccfe config_item_set_name +EXPORT_SYMBOL vmlinux 0x431591c0 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4336d56c __seq_open_private +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 0x4359a6ea scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x436732a5 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x43674b37 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x436a6b25 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x4379bf97 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437d0dc9 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x437eba55 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4388f522 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x4390fd74 km_report +EXPORT_SYMBOL vmlinux 0x439416bd md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x439ed7ff phy_print_status +EXPORT_SYMBOL vmlinux 0x43af8661 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x43aff75b buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one +EXPORT_SYMBOL vmlinux 0x43d22486 sget_fc +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43edb5ac da903x_query_status +EXPORT_SYMBOL vmlinux 0x43f7b641 keyring_clear +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x440124ae mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x44098f08 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x442feebd dev_uc_sync +EXPORT_SYMBOL vmlinux 0x443df4d3 arp_xmit +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x44559b25 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x445dad00 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4478a16a i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44adaf43 update_devfreq +EXPORT_SYMBOL vmlinux 0x44b372b6 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x44cf5727 param_array_ops +EXPORT_SYMBOL vmlinux 0x44d24ea9 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f6773f ps2_drain +EXPORT_SYMBOL vmlinux 0x44f6a3ab of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x44fdb1c4 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450639ab sg_last +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 0x45299702 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453755ff d_add_ci +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45441d89 generic_update_time +EXPORT_SYMBOL vmlinux 0x45496a43 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x456874bf posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45be33a7 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x45c00439 of_match_node +EXPORT_SYMBOL vmlinux 0x45cdba05 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x45d2f9af pnp_possible_config +EXPORT_SYMBOL vmlinux 0x45d5d19e arp_send +EXPORT_SYMBOL vmlinux 0x45fb42e1 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x463c5bcf reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x46447e39 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466bc3eb pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466c225c d_alloc_anon +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46829641 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c589d7 __bio_advance +EXPORT_SYMBOL vmlinux 0x46cea2df devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x46e159da ip6_xmit +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 0x470f3f10 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x4744bc41 param_set_int +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x476c502b netlink_net_capable +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x478055d9 skb_copy_header +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x47a482d6 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x47a4c382 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x47a6a006 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x47a8ba89 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x47ae41bd ip6_frag_init +EXPORT_SYMBOL vmlinux 0x47ae6a4e hmm_range_fault +EXPORT_SYMBOL vmlinux 0x47b2daf7 genphy_read_abilities +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 0x47e22ac6 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x47e387c1 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x48169301 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x48171bd4 d_lookup +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x482945b2 dev_get_stats +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb +EXPORT_SYMBOL vmlinux 0x483c0690 iov_iter_gap_alignment +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 0x485bdb7b netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x486296fe set_page_writeback +EXPORT_SYMBOL vmlinux 0x48678313 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x48826385 freeze_super +EXPORT_SYMBOL vmlinux 0x4894f134 phy_resume +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b1e932 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node +EXPORT_SYMBOL vmlinux 0x48dd340b cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x48f25088 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x48f8a764 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x492a83c6 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x492f0b27 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x49395d5c dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x494b9df8 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x495e3297 register_netdev +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x4974187e get_tree_single +EXPORT_SYMBOL vmlinux 0x49765bbd genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits +EXPORT_SYMBOL vmlinux 0x497ae475 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x497b9473 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x497befcf __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x49803e87 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x4984a040 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a5e948 generic_read_dir +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b222dd security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x49bc48bf file_update_time +EXPORT_SYMBOL vmlinux 0x49c6642d scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x49c9f161 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x49ce055d backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x49e8668e km_query +EXPORT_SYMBOL vmlinux 0x49f369ec pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x4a211332 param_ops_string +EXPORT_SYMBOL vmlinux 0x4a37a403 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a3b5591 noop_fsync +EXPORT_SYMBOL vmlinux 0x4a47c58d __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x4a49c188 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x4a49d286 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x4a576de0 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x4a64739a netdev_emerg +EXPORT_SYMBOL vmlinux 0x4a6b1993 tcf_classify +EXPORT_SYMBOL vmlinux 0x4a76f2eb dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x4a7fab2d devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x4a89243c sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x4a8c91bc max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x4a8e3162 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x4a92d183 param_get_ulong +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a940250 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x4a95237a blackhole_netdev +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4ab4e51f sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x4abff794 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x4acb8ea9 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x4ad7a94a nla_put_nohdr +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 0x4b1bf35e locks_init_lock +EXPORT_SYMBOL vmlinux 0x4b2c5bf0 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x4b3bb7b3 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x4b4c9bfc filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x4b588e4a folio_clear_dirty_for_io +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 0x4b7de6be mdiobus_free +EXPORT_SYMBOL vmlinux 0x4b8dc2a9 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x4ba3bc5b flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x4ba4e70a mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x4ba52c90 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x4ba8f9ce rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x4bacab7d fb_pan_display +EXPORT_SYMBOL vmlinux 0x4badb17a task_work_add +EXPORT_SYMBOL vmlinux 0x4bc1d83a pci_assign_resource +EXPORT_SYMBOL vmlinux 0x4bc4ae19 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bd57575 sget +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c528a11 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x4c5502c4 register_cdrom +EXPORT_SYMBOL vmlinux 0x4c8a4497 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x4c98db64 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x4ca2236f mod_node_page_state +EXPORT_SYMBOL vmlinux 0x4cb23ab2 unlock_buffer +EXPORT_SYMBOL vmlinux 0x4cba4462 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x4cdf2635 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d54e824 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d6a4b4f devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b36d3 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4dc9d2c9 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dd4f05b md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x4ddf00d5 scsi_print_command +EXPORT_SYMBOL vmlinux 0x4de18229 ipv6_sock_mc_drop +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 0x4e25f8e8 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x4e2b1dae udp_ioctl +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 0x4e459862 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e4f2b06 dcb_setapp +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e690fdf rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7834ce gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x4e87fadd skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x4e88312c dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eacd539 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb6eed2 qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ec73c2d build_skb +EXPORT_SYMBOL vmlinux 0x4ede44e2 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x4ee10243 start_tty +EXPORT_SYMBOL vmlinux 0x4f0f77d8 input_match_device_id +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1cddc9 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2abb5e xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x4f2f3047 dev_get_flags +EXPORT_SYMBOL vmlinux 0x4f3760ff jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x4f491352 __nla_reserve +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f5ea155 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x4f65f2a4 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x4f75f9b2 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x4f7c3d34 keyring_search +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f91c9a0 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x4faef2df cfb_imageblit +EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x4fd073c0 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x4fe7c27b ns_capable_setid +EXPORT_SYMBOL vmlinux 0x4ff76d0b pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x4ffa6637 acpi_device_set_power +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 0x500a0faf dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x501bf9ed kill_litter_super +EXPORT_SYMBOL vmlinux 0x501e0730 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x50327856 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x505d87a3 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5079e804 tty_unlock +EXPORT_SYMBOL vmlinux 0x508181de pci_request_region +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 0x5094d518 simple_release_fs +EXPORT_SYMBOL vmlinux 0x509b1071 rio_query_mport +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 0x50ba12e5 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x50bb8942 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x50bc9cd6 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c69cfb vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50f76a5b sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x50f9e5dd d_make_root +EXPORT_SYMBOL vmlinux 0x51012575 pin_user_pages +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x51063ea2 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x512bb217 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x5151a18b register_netdevice +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x516994de tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x518c70ed param_ops_uint +EXPORT_SYMBOL vmlinux 0x5196a929 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x519ca030 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x519d63e3 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51aa73d2 phy_error +EXPORT_SYMBOL vmlinux 0x51b40718 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d175ad iov_iter_zero +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x520aa3af mdiobus_scan +EXPORT_SYMBOL vmlinux 0x521b38e0 cont_write_begin +EXPORT_SYMBOL vmlinux 0x525cee75 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5277acee tty_unregister_device +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529ad4df xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x52a15b10 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x52a1f900 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x52b70062 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x52c60445 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x52d1d519 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x52d3b732 sock_pfree +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52e149b8 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x53028559 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530d6ac8 __breadahead +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x534e4319 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x53559449 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x53850ae0 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53ea570a ppp_channel_index +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53f0a8c3 xp_free +EXPORT_SYMBOL vmlinux 0x53f704dc d_drop +EXPORT_SYMBOL vmlinux 0x53f81222 netdev_notice +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x53fa9b46 cdev_device_del +EXPORT_SYMBOL vmlinux 0x53facde3 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x53fcfc94 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x53fdb8f2 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x5417cc19 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x541c3f66 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x5424e0bf kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x54293f8b dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5446082f iov_iter_revert +EXPORT_SYMBOL vmlinux 0x544d1231 file_ns_capable +EXPORT_SYMBOL vmlinux 0x545de89c page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x54669abd rtnl_unicast +EXPORT_SYMBOL vmlinux 0x5471ae45 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x5476285f md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x54779a0f pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x549a107b __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x54a1fd95 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x54adb7c6 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x54c05085 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0x54c6aa27 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x54d9a123 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x54d9ec8c security_sb_remount +EXPORT_SYMBOL vmlinux 0x54daf19b tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54f11e87 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x54f61f55 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x550955ec input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x5510579e sk_alloc +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x552ece8e input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x55364777 ilookup5 +EXPORT_SYMBOL vmlinux 0x553c98d4 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x553d61a5 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x55437745 __bforget +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x5562e7ae sock_wake_async +EXPORT_SYMBOL vmlinux 0x5565ba1b vme_bus_type +EXPORT_SYMBOL vmlinux 0x556eb8eb mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x557b8a51 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x558c7516 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x5596817d tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x559fbe64 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x55bf6176 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x55c0f503 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x55c86fcf vfs_getattr +EXPORT_SYMBOL vmlinux 0x55c8c9e4 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x55cc5542 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e620d5 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x55eb8141 kern_path +EXPORT_SYMBOL vmlinux 0x55f739d4 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x55ffadcb d_find_any_alias +EXPORT_SYMBOL vmlinux 0x56077221 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x560e248f flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x561771f9 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x5625e5aa _dev_printk +EXPORT_SYMBOL vmlinux 0x562cf0d7 d_path +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x566a397e pci_claim_resource +EXPORT_SYMBOL vmlinux 0x567bf161 netdev_warn +EXPORT_SYMBOL vmlinux 0x567f60af tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x5694c711 vme_lm_request +EXPORT_SYMBOL vmlinux 0x56a09f80 netlink_unicast +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cebaa7 flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x56fcec05 stop_tty +EXPORT_SYMBOL vmlinux 0x570488d6 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x5712a0a9 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x5727d13c inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575ff983 mount_nodev +EXPORT_SYMBOL vmlinux 0x5766ff73 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x578e032f mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x57924e0a is_nd_btt +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57a1d17a filp_open +EXPORT_SYMBOL vmlinux 0x57a282b1 serio_interrupt +EXPORT_SYMBOL vmlinux 0x57ad37ba unix_detach_fds +EXPORT_SYMBOL vmlinux 0x57baab38 kthread_stop +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57dfb11f __post_watch_notification +EXPORT_SYMBOL vmlinux 0x57e29688 mmc_put_card +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x58030103 uart_register_driver +EXPORT_SYMBOL vmlinux 0x5804ed6f udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x580572b3 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x580619ce tcf_action_exec +EXPORT_SYMBOL vmlinux 0x580feddb simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x58125a0b security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5820fee2 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x58245c2c pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x5827e5b2 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584726cd generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic +EXPORT_SYMBOL vmlinux 0x586971ca xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x588e7774 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x5892ff27 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x58944574 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x58a2f2c0 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bfa888 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x58cad869 flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58dedce1 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x590752e2 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x5909bec6 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x5923911e unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x596876a0 genphy_loopback +EXPORT_SYMBOL vmlinux 0x597df209 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x597ff10c tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x599136d8 devm_devfreq_register_opp_notifier +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 0x59cb8e0f dst_alloc +EXPORT_SYMBOL vmlinux 0x5a02642e netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a15e11f seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a3140ae of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4a255e __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a55efde sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a653767 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x5a92004c param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a92a5c1 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x5a956b5b empty_zero_page +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa033f9 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x5ac3e6dd scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x5ad3d689 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5b1c483f __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x5b1e28f1 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b3693f7 write_inode_now +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b65cf6f msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x5b75308f cdev_alloc +EXPORT_SYMBOL vmlinux 0x5b9edad8 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x5ba9921b vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x5baaa2bd phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x5bad9533 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order +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 0x5c04d11f zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x5c17197d security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x5c18bc1e migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c2b0df3 eth_header_cache +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c4b47b9 __find_get_block +EXPORT_SYMBOL vmlinux 0x5c75d05a ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x5c833b6e of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x5c906d37 readahead_expand +EXPORT_SYMBOL vmlinux 0x5c98e0af neigh_connected_output +EXPORT_SYMBOL vmlinux 0x5cb8643c __scsi_execute +EXPORT_SYMBOL vmlinux 0x5cc453f2 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x5ccd32d3 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5cd8e1fb blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x5cd9b666 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d050421 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x5d10c80f component_match_add_typed +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d1a0f89 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x5d1a1e87 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x5d2f71f0 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x5d406e09 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5d4687a6 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d539760 cdev_device_add +EXPORT_SYMBOL vmlinux 0x5d6501ae locks_copy_lock +EXPORT_SYMBOL vmlinux 0x5d709eca mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x5d78a864 kill_pgrp +EXPORT_SYMBOL vmlinux 0x5d8d1e68 free_task +EXPORT_SYMBOL vmlinux 0x5d920dc8 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x5d94c7ac simple_dir_operations +EXPORT_SYMBOL vmlinux 0x5d9508fe thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5dcb73be sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x5dff01a5 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5e0495c2 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e0d64ea vfs_symlink +EXPORT_SYMBOL vmlinux 0x5e1ab406 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x5e2bbaa8 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e423065 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x5e69e2f5 devm_clk_put +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e77c378 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e8ad4c9 mntget +EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5ea113f7 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb9632b md_check_recovery +EXPORT_SYMBOL vmlinux 0x5ebc1a8d fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0x5ec25927 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed7fc6d blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5edeb009 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f11e890 framebuffer_release +EXPORT_SYMBOL vmlinux 0x5f16a12e filemap_release_folio +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x5f3ed316 mmc_start_request +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f575074 devm_memunmap +EXPORT_SYMBOL vmlinux 0x5f67d7e6 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f7f1965 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f9e6397 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x5fad2d77 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fe8bead jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x5fe93ed6 pci_iounmap +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 0x600dc666 cros_ec_prepare_tx +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 0x6059abd2 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x6060d340 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x6060fc6d xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x606633e4 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x6072c9f4 eth_prepare_mac_addr_change +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 0x60c00b8a ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x60c769ee ip_options_compile +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e318dc fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x60eaa586 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x60f523f7 lynx_pcs_create +EXPORT_SYMBOL vmlinux 0x61036f94 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x610ead06 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x611bd61d secpath_set +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x614a0989 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x61551610 sock_init_data +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615adecf ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x61693862 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x616aeddf genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x6178eb80 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x617a29b3 passthru_features_check +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6183418f pci_read_config_dword +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 0x619cbdc6 neigh_lookup +EXPORT_SYMBOL vmlinux 0x61b49db8 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x620a7bda inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62198756 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x6228b736 phy_suspend +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622c4adc devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x6232d13f xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x624aa681 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x625c7c44 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628d3704 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x628fd923 phy_driver_register +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62917eb9 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x62a3211b md_write_end +EXPORT_SYMBOL vmlinux 0x62a6db7c netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x62ab2bf9 tty_kref_put +EXPORT_SYMBOL vmlinux 0x62bc4ad6 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x62bc949e begin_new_exec +EXPORT_SYMBOL vmlinux 0x62d76e59 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62f715c1 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62faa6f6 scsi_done +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x633bba2f unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x634713b5 single_open_size +EXPORT_SYMBOL vmlinux 0x634a4d69 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x63554555 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x63585219 iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x63751c97 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x6397ad15 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c3a549 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x63c5f410 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x63e8d3a2 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63edde93 mdio_device_register +EXPORT_SYMBOL vmlinux 0x63f11a56 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x64060a86 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6419c9c0 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x643643dc eth_gro_complete +EXPORT_SYMBOL vmlinux 0x64384599 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x64569907 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0x6468742d blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x6476822c blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x647d4075 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x6495ca5d skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64baee50 neigh_for_each +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64bf2f5e vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x64c6c165 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x64d2b151 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x64d73185 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x64f03faa file_path +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 0x652a5b09 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x652baf46 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x652fd6cc phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x6534bd76 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x6546c27a input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x654d3658 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x65515832 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x6579c9a8 rproc_del +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x659c695e blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x659f4faf vfs_statfs +EXPORT_SYMBOL vmlinux 0x65a946ee deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x65ba735b __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x65bff9d7 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x65ce6a5f d_add +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65dfc413 of_device_register +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x6615387a sg_miter_start +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x6626ffc2 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x662e8c34 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x665a1912 mr_table_alloc +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 0x6668771b get_user_pages +EXPORT_SYMBOL vmlinux 0x666c4fc0 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x667b69c5 inet_ioctl +EXPORT_SYMBOL vmlinux 0x6681d541 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x6682e103 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x66899930 blk_put_queue +EXPORT_SYMBOL vmlinux 0x668a3720 console_stop +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x66905751 sk_stream_error +EXPORT_SYMBOL vmlinux 0x6698ff09 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x66a90651 vfs_setpos +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b0efaa inode_to_bdi +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66bd5a91 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x66d1f25c mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x66e0d4e8 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x66f3a840 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x6711adbf netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x672b322f proc_mkdir +EXPORT_SYMBOL vmlinux 0x672f57e8 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x674e88d3 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x675bde2c skb_dequeue +EXPORT_SYMBOL vmlinux 0x6779c832 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x677cf873 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x678a9455 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67a2a472 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x67a41ec8 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x67b008c1 clear_inode +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67d0d23e mdiobb_read +EXPORT_SYMBOL vmlinux 0x67d71079 pci_dev_put +EXPORT_SYMBOL vmlinux 0x67e24ced vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x67f0111f xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x67f27749 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x6803f859 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x6808e3b4 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x681f1f5a dput +EXPORT_SYMBOL vmlinux 0x68436fb8 napi_build_skb +EXPORT_SYMBOL vmlinux 0x685211bc inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x686d5b6d input_register_handle +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687cde1d dquot_initialize +EXPORT_SYMBOL vmlinux 0x6888d139 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x688f15fc dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x68961f01 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x689816bf serio_bus +EXPORT_SYMBOL vmlinux 0x689a3b45 make_kgid +EXPORT_SYMBOL vmlinux 0x68a7b7b9 dm_get_device +EXPORT_SYMBOL vmlinux 0x68ba9ed9 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x68cdc0fe proc_set_size +EXPORT_SYMBOL vmlinux 0x68e283d2 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x68e540fd md_done_sync +EXPORT_SYMBOL vmlinux 0x68e560b3 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x68f09c53 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x69112f6a ram_aops +EXPORT_SYMBOL vmlinux 0x6916a779 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x6939f638 vmap +EXPORT_SYMBOL vmlinux 0x69470f5c find_inode_nowait +EXPORT_SYMBOL vmlinux 0x69591b46 __netif_schedule +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x6975eba0 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x697b490b tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6983b6d1 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x69c64d34 input_set_keycode +EXPORT_SYMBOL vmlinux 0x69c67c65 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e16fc4 fman_port_bind +EXPORT_SYMBOL vmlinux 0x69e77a48 key_alloc +EXPORT_SYMBOL vmlinux 0x69e865a8 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0416a4 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x6a175db2 kobject_init +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a449d83 inet6_getname +EXPORT_SYMBOL vmlinux 0x6a512945 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a60d6da amba_device_unregister +EXPORT_SYMBOL vmlinux 0x6a613740 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x6a6858c0 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a8d33ff fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6a9488a2 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x6aa79e2f blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x6aac4506 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x6aac73c3 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x6aad4a6c fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x6ac2dd6d ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x6adb3cf5 d_splice_alias +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afb543c dquot_disable +EXPORT_SYMBOL vmlinux 0x6b079231 alt_cb_patch_nops +EXPORT_SYMBOL vmlinux 0x6b129fef qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3964a9 drop_nlink +EXPORT_SYMBOL vmlinux 0x6b44b338 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b64837f __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x6b7d7069 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x6b8395f0 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b94888d security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x6baaf8e3 mdiobus_read +EXPORT_SYMBOL vmlinux 0x6bba8ce6 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc74457 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6bed06b4 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x6bef8756 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bf29113 phy_attached_info +EXPORT_SYMBOL vmlinux 0x6bfe1c0e simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x6c14b586 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c23e932 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c270355 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x6c403c65 put_fs_context +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6ba997 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6cc192cc sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x6cc2a7bc __of_get_address +EXPORT_SYMBOL vmlinux 0x6cefa5ae get_tree_keyed +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cf7a03f tso_build_data +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1d398c pipe_unlock +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2c2139 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x6d2e765b input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x6d3c9aa0 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x6d4bfa5b vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0x6d51f688 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d6d0568 gro_cells_init +EXPORT_SYMBOL vmlinux 0x6d7150aa skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d7dc094 dev_uc_del +EXPORT_SYMBOL vmlinux 0x6d7e7e8d fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x6d8b72f3 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x6da28297 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dc5d777 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x6dcbb75d tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6ddcc419 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x6dee1014 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e15575d udp_prot +EXPORT_SYMBOL vmlinux 0x6e1645f4 param_get_string +EXPORT_SYMBOL vmlinux 0x6e1d0a94 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x6e3e06a5 find_vma_intersection +EXPORT_SYMBOL vmlinux 0x6e47f7f1 empty_aops +EXPORT_SYMBOL vmlinux 0x6e4d9fc0 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x6e550318 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5d47c2 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e72b584 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x6e7a5cc6 acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0x6e7e247b rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x6e8385a1 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x6e910dfa __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x6e943925 pci_get_slot +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eb5a314 serio_close +EXPORT_SYMBOL vmlinux 0x6eb92f0b km_policy_notify +EXPORT_SYMBOL vmlinux 0x6ebeb7d3 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x6ec0f979 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x6edb5236 kill_pid +EXPORT_SYMBOL vmlinux 0x6ee3c301 simple_open +EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6ef1740e from_kgid_munged +EXPORT_SYMBOL vmlinux 0x6ef80fe0 sock_no_bind +EXPORT_SYMBOL vmlinux 0x6ef99734 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x6f032aa2 rpmh_write +EXPORT_SYMBOL vmlinux 0x6f12c54f netif_device_attach +EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock +EXPORT_SYMBOL vmlinux 0x6f38b997 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x6f3c1b3a mmc_request_done +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f468522 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f4de57d dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f63a15d netdev_features_change +EXPORT_SYMBOL vmlinux 0x6f696c32 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x6f7c0014 device_add_disk +EXPORT_SYMBOL vmlinux 0x6f8e4ade i2c_transfer +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f97aa89 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fbca63b inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x6fbd7aa1 genl_notify +EXPORT_SYMBOL vmlinux 0x6fc10920 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x6fc48021 dynamic_cond_resched +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd14d21 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x6fd287a0 bdi_alloc +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6ff3a485 dynamic_might_resched +EXPORT_SYMBOL vmlinux 0x6ffad82a netif_device_detach +EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700ca44f tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x700dccd5 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x7022c686 input_allocate_device +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x704c7ab9 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x704d12d5 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x704e7667 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x7051b81d padata_free +EXPORT_SYMBOL vmlinux 0x70585652 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x70661c5f genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x708a7caa filemap_flush +EXPORT_SYMBOL vmlinux 0x7091015a __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70b1c535 phy_connect +EXPORT_SYMBOL vmlinux 0x70bb8fb2 dump_align +EXPORT_SYMBOL vmlinux 0x70c69115 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x70c8f690 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70e7bf78 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x70f59431 md_integrity_register +EXPORT_SYMBOL vmlinux 0x7103dc4b cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x71151615 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x7124553d phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x716a8d2e __devm_request_region +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x719d1481 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71bea7df skb_dump +EXPORT_SYMBOL vmlinux 0x71cb574e ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71e84f05 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x71eec79b load_nls +EXPORT_SYMBOL vmlinux 0x71fdb238 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x721aa355 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x72230e4a scm_detach_fds +EXPORT_SYMBOL vmlinux 0x72234e6f param_set_hexint +EXPORT_SYMBOL vmlinux 0x7242be77 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x725b135b unlock_rename +EXPORT_SYMBOL vmlinux 0x725f0c67 input_register_handler +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x727de424 mem_section +EXPORT_SYMBOL vmlinux 0x72a17a11 skb_queue_head +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72a7d41a kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c77d89 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x72d1c058 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x7302fed8 fwnode_mdiobus_phy_device_register +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 0x7326929d netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x732f0ff8 read_cache_page +EXPORT_SYMBOL vmlinux 0x7352f7ad sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7398bbb4 scsi_add_device +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73ad6162 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x73bb12ab tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x73c40c48 dma_map_resource +EXPORT_SYMBOL vmlinux 0x73c7c608 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x73d55ae6 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x73e36569 neigh_destroy +EXPORT_SYMBOL vmlinux 0x73e3f6a0 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x73ef53fa md_write_start +EXPORT_SYMBOL vmlinux 0x73f2c247 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x7407ff46 inet6_bind +EXPORT_SYMBOL vmlinux 0x740d67c7 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x740f185d inet6_protos +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x74182119 truncate_setsize +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742a720f page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x743370e7 tcp_mmap +EXPORT_SYMBOL vmlinux 0x743a1c1d md_reload_sb +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x7446e6f4 devm_free_irq +EXPORT_SYMBOL vmlinux 0x744af6ee ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x744d7e20 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7469c2cb skb_clone +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x747c8eee open_exec +EXPORT_SYMBOL vmlinux 0x7480d96a xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74846d2a dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x7489bf7a vc_resize +EXPORT_SYMBOL vmlinux 0x74b21c12 dma_set_mask +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74bd448a __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cd3507 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x74d9846d phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x74db19c4 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x7511b31d xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x75164f85 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x75415441 sync_filesystem +EXPORT_SYMBOL vmlinux 0x75532ab6 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7579e97a pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x7580f028 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x75844681 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x7588ea50 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x758e2f05 unregister_console +EXPORT_SYMBOL vmlinux 0x759a130c dev_mc_sync +EXPORT_SYMBOL vmlinux 0x759d4f3e jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bf3de8 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x75d05c7e of_device_alloc +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75e36c34 napi_complete_done +EXPORT_SYMBOL vmlinux 0x75e73d46 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x75e80829 fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x75feb78f clk_add_alias +EXPORT_SYMBOL vmlinux 0x76032377 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x76045572 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760dbe04 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x762bc70f fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x762c73dc follow_down_one +EXPORT_SYMBOL vmlinux 0x76399968 tcp_req_err +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765348dd xfrm_register_km +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76745544 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x768ea48d rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76ac4007 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x76b6616e nd_device_unregister +EXPORT_SYMBOL vmlinux 0x76bbd4a2 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x76cef93d vm_mmap +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d51caf drop_super +EXPORT_SYMBOL vmlinux 0x76eeb67e page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0x7704a2ef inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x771b3b25 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x77252ebf register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x772ccb1d rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x7750fa9d sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x77532852 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x77694b15 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x7780f0c9 dquot_transfer +EXPORT_SYMBOL vmlinux 0x778fb0fd mark_page_accessed +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77a0382e generic_ro_fops +EXPORT_SYMBOL vmlinux 0x77b6f9e0 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c96f71 mii_link_ok +EXPORT_SYMBOL vmlinux 0x77dc4ef2 proc_symlink +EXPORT_SYMBOL vmlinux 0x77ddcae7 path_put +EXPORT_SYMBOL vmlinux 0x77e21bb8 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77fa8a86 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x77fd2bca dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x77ff06b4 flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x781e4d7d tty_port_close_start +EXPORT_SYMBOL vmlinux 0x782ecd12 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x78348397 phy_attached_print +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784a17dd I_BDEV +EXPORT_SYMBOL vmlinux 0x784e40a5 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x7864108f of_node_get +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78894b85 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x788bfc5c tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x788c67e7 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b2e311 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78bc0e4f netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x78c3cb42 pci_release_regions +EXPORT_SYMBOL vmlinux 0x78de9292 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f4445c md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x78f72d13 posix_test_lock +EXPORT_SYMBOL vmlinux 0x78f89b50 param_ops_long +EXPORT_SYMBOL vmlinux 0x78f9c2d4 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x7910f043 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x791241ff write_cache_pages +EXPORT_SYMBOL vmlinux 0x791a4ca6 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x791c6727 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x793566d6 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x79419b8a xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x794a792e bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x7975e089 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7986576c dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x7987d6cd locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79b25d15 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x79b32811 do_SAK +EXPORT_SYMBOL vmlinux 0x79cde356 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x79d1f78e set_capacity +EXPORT_SYMBOL vmlinux 0x79ef4cc5 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x79fc52c2 flush_signals +EXPORT_SYMBOL vmlinux 0x7a02fee9 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a224eae of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x7a2a0472 vme_bus_num +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2b77da igrab +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a33b2d6 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a918f2f jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x7a9492a1 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aca86f2 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad3317c __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7ae8238d iget5_locked +EXPORT_SYMBOL vmlinux 0x7af06e26 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x7af9f269 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x7afa770a tty_port_put +EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store +EXPORT_SYMBOL vmlinux 0x7b11cc93 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b3df54a flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x7b4b18c1 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b8a8e75 bio_reset +EXPORT_SYMBOL vmlinux 0x7ba2f2a3 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7baa8517 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbbacf0 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bbe50f8 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x7bc65036 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x7bc7ff25 unpin_user_page +EXPORT_SYMBOL vmlinux 0x7bc80577 vfs_get_link +EXPORT_SYMBOL vmlinux 0x7be3018b __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x7c04a5dc jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x7c0bc3a1 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x7c166d88 generic_write_end +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1bd68d dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x7c1f29f8 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x7c273179 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c59bbf3 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x7c6a05a2 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x7c6c0c64 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x7c89780b inet_frags_fini +EXPORT_SYMBOL vmlinux 0x7c971a53 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7ce7580f pci_irq_vector +EXPORT_SYMBOL vmlinux 0x7cea02f0 pci_ep_cfs_add_epc_group +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 0x7d11c9f1 current_in_userns +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d18262c pci_enable_wake +EXPORT_SYMBOL vmlinux 0x7d1a71ab __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x7d21515e inode_init_once +EXPORT_SYMBOL vmlinux 0x7d39ea6f __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d5fd89f d_genocide +EXPORT_SYMBOL vmlinux 0x7d73bbda tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d8b5ab3 input_flush_device +EXPORT_SYMBOL vmlinux 0x7d992352 __ps2_command +EXPORT_SYMBOL vmlinux 0x7d9a4c1f fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x7d9f5b10 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db6c9f2 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0x7e134f84 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x7e23ed28 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e3e08e6 vme_irq_request +EXPORT_SYMBOL vmlinux 0x7e5a7468 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize +EXPORT_SYMBOL vmlinux 0x7e652bbf pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x7e67f281 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x7e77289e d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x7e7c5c55 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x7e93f9eb add_watch_to_object +EXPORT_SYMBOL vmlinux 0x7e9a62f3 seq_lseek +EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info +EXPORT_SYMBOL vmlinux 0x7ec04839 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x7ecc9bdc freezing_slow_path +EXPORT_SYMBOL vmlinux 0x7eec049e sock_i_ino +EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f08df40 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x7f1741c8 config_item_get +EXPORT_SYMBOL vmlinux 0x7f1f31c9 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f3e5f8f pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x7f41856d kset_register +EXPORT_SYMBOL vmlinux 0x7f42a00c security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x7f4c3700 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5d2e82 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free +EXPORT_SYMBOL vmlinux 0x7f6ad989 md_flush_request +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f91fe0a dm_put_device +EXPORT_SYMBOL vmlinux 0x7f933184 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd61795 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe64587 audit_log_start +EXPORT_SYMBOL vmlinux 0x7ff1a92f elv_rb_del +EXPORT_SYMBOL vmlinux 0x8001159b sock_edemux +EXPORT_SYMBOL vmlinux 0x80036bf1 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x801280a3 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x803055ca kernel_getpeername +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x803feec7 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x8043005a pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x8055056e sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x8090b9ba unregister_md_personality +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x809e2f5e dev_mc_flush +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80ac315c skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x80ae726b scsi_partsize +EXPORT_SYMBOL vmlinux 0x80baba4d devfreq_update_target +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d15bcd fman_port_get_device +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +EXPORT_SYMBOL vmlinux 0x80eea636 netdev_alert +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x811f3675 fman_bind +EXPORT_SYMBOL vmlinux 0x812ed137 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x81348d24 tty_port_init +EXPORT_SYMBOL vmlinux 0x814a786c pnp_device_attach +EXPORT_SYMBOL vmlinux 0x814c1188 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x81513918 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x81678500 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x8183baaf crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x8186333b cpumask_next_wrap +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 0x81c214ab fd_install +EXPORT_SYMBOL vmlinux 0x81c87b21 xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x820c6fea __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x820fbd88 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x8235f09b ip_check_defrag +EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x8242b626 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x8243015d pnp_device_detach +EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x825a8288 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x825ec32d twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8277e564 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x827e33a9 elv_rb_find +EXPORT_SYMBOL vmlinux 0x8286611a truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x82899c72 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x82bcc9f5 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82ce5603 ps2_command +EXPORT_SYMBOL vmlinux 0x82ce92c2 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x82cfe9cf iov_iter_init +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x8313051a ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x83286e7e netlink_set_err +EXPORT_SYMBOL vmlinux 0x834c3b7f param_ops_bint +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x836a94d7 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x8370bf8f set_security_override +EXPORT_SYMBOL vmlinux 0x837a5dcb param_set_ushort +EXPORT_SYMBOL vmlinux 0x837ddbb4 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83954d6c phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x83ab4ce6 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x83ccd2c2 seq_path +EXPORT_SYMBOL vmlinux 0x83d0b3f7 netlink_capable +EXPORT_SYMBOL vmlinux 0x83e38772 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x84152d0f tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x84194a37 skb_store_bits +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x8443daba of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x84441572 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x8455a81f rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x845cead2 tcp_close +EXPORT_SYMBOL vmlinux 0x8474a503 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x84819ce6 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x849a8b79 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84a991b2 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x84abd5f2 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x84b6a99f of_n_size_cells +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4be5e dcache_dir_close +EXPORT_SYMBOL vmlinux 0x84d983b7 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x84e3440b km_new_mapping +EXPORT_SYMBOL vmlinux 0x84e96813 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x850aed1f mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base +EXPORT_SYMBOL vmlinux 0x8525c8d3 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x852bf0a1 bio_chain +EXPORT_SYMBOL vmlinux 0x85379c96 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x853e6137 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x854855f4 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x8550f45e phy_connect_direct +EXPORT_SYMBOL vmlinux 0x855b2aff inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856ec38e __scm_destroy +EXPORT_SYMBOL vmlinux 0x8574febb kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8595b937 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x859d6483 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x85a3ed35 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x85b26788 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d32ad0 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fe32c2 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x8600a547 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x860e06c2 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x86136335 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x861de0f8 nf_log_register +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863cc1eb page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x866173b6 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x8674b618 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x867cc53b bio_split +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86b692d2 security_sock_graft +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86de2722 param_set_uint +EXPORT_SYMBOL vmlinux 0x86de43b0 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x86e1b259 __put_cred +EXPORT_SYMBOL vmlinux 0x86ef3cc8 ata_print_version +EXPORT_SYMBOL vmlinux 0x86f3aa55 fqdir_init +EXPORT_SYMBOL vmlinux 0x86f79176 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870bf08f blk_sync_queue +EXPORT_SYMBOL vmlinux 0x87100b83 fqdir_exit +EXPORT_SYMBOL vmlinux 0x871d2960 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x87387784 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x873bd558 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x8758f75f pnp_get_resource +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq +EXPORT_SYMBOL vmlinux 0x8780de3f tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x8789a9cc put_disk +EXPORT_SYMBOL vmlinux 0x8791bfd0 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x8791f541 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x8793c414 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87b5ca71 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x87bf9285 tty_vhangup +EXPORT_SYMBOL vmlinux 0x87d40a7d folio_account_redirty +EXPORT_SYMBOL vmlinux 0x87d476a5 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x87de5222 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x87e484a5 nla_put +EXPORT_SYMBOL vmlinux 0x87f090be tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x880b1d3e migrate_folio +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x88111738 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x8818c65c devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x881afd56 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x88483cf7 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x884afaf7 xattr_full_name +EXPORT_SYMBOL vmlinux 0x884da357 elv_rb_add +EXPORT_SYMBOL vmlinux 0x88573b29 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x885aebb8 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x88622c0a xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x88642923 of_get_parent +EXPORT_SYMBOL vmlinux 0x886b15e2 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x887804ce vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x888fcf78 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x88926970 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88abced2 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x88ca520c bioset_exit +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e3959e flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x88f87145 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x8911134f gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x89138f97 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order +EXPORT_SYMBOL vmlinux 0x89285746 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x89446bf9 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x8948cdcc cpu_hwcaps +EXPORT_SYMBOL vmlinux 0x8950eceb tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x895211ec qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x8952e48b scsi_device_put +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x89a09c02 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x89bd9e18 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x89c067fd dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x89cbad1a tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x89ccbfd7 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x89d67eca mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x89e0ef20 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x89f003a4 cdrom_release +EXPORT_SYMBOL vmlinux 0x89fb842b tcp_release_cb +EXPORT_SYMBOL vmlinux 0x8a06bb35 would_dump +EXPORT_SYMBOL vmlinux 0x8a0b3994 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x8a145419 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x8a38ba8b ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x8a4523ab nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4b24a8 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x8a5ba4f5 pci_disable_device +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a848505 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x8a980f5e sock_register +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9d7d6a _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x8aad2bd1 dget_parent +EXPORT_SYMBOL vmlinux 0x8ab25318 sock_rfree +EXPORT_SYMBOL vmlinux 0x8ab5ebc4 bio_free_pages +EXPORT_SYMBOL vmlinux 0x8abb5919 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8acfafe6 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x8ad1ced4 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x8adb13b6 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x8ade84cf tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x8af1fd4c mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b2e33b0 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b3041ca phy_start +EXPORT_SYMBOL vmlinux 0x8b3be6cb of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x8b4dcb24 neigh_xmit +EXPORT_SYMBOL vmlinux 0x8b4ea049 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b81eaa9 security_path_mknod +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8ba6f4cc padata_do_serial +EXPORT_SYMBOL vmlinux 0x8baf1f68 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x8bb03132 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x8bb05944 genlmsg_put +EXPORT_SYMBOL vmlinux 0x8bb68ce7 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x8bc5a84a tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x8bd5ba2e seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8bec029c of_device_unregister +EXPORT_SYMBOL vmlinux 0x8c0734bc phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c2b27a6 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x8c2fd0fe ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c42dff7 devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0x8c6bd80d devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8cb049 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x8c8cb39b blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca1325a fman_get_revision +EXPORT_SYMBOL vmlinux 0x8ca2cd9a dev_change_flags +EXPORT_SYMBOL vmlinux 0x8ca6af02 __fput_sync +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cc9ad40 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x8cceb240 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x8cd1b9de mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ce31f03 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x8ce4b58b tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x8cf65d61 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x8d16f3ae devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x8d222279 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x8d306f18 sock_wfree +EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit +EXPORT_SYMBOL vmlinux 0x8d3c466d trace_event_printf +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d440769 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x8d781a32 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x8d87ea61 eth_type_trans +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8d9d386c sock_kmalloc +EXPORT_SYMBOL vmlinux 0x8da61372 par_io_of_config +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df7fed7 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x8df8a7a6 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e028005 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x8e0904de inc_node_page_state +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e28a914 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x8e38fb7d find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e5ae65b inet_release +EXPORT_SYMBOL vmlinux 0x8e5b6cba fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x8e6fa9b6 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x8e8c2770 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8ea8b5db scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x8ebf7536 phy_attach +EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x8ed36fb8 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x8ee6c8a3 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x8ee83670 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x8ee9c4d8 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x8ef0ee05 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f127143 thread_group_exited +EXPORT_SYMBOL vmlinux 0x8f203755 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x8f2156f7 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x8f2b3d87 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x8f35f1b1 xp_alloc +EXPORT_SYMBOL vmlinux 0x8f4dc028 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x8f595be0 sk_dst_check +EXPORT_SYMBOL vmlinux 0x8f5a577d logfc +EXPORT_SYMBOL vmlinux 0x8f6c2074 generic_file_open +EXPORT_SYMBOL vmlinux 0x8f7d2304 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x8f8317dc phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x8f98f571 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd3aa4f revert_creds +EXPORT_SYMBOL vmlinux 0x8fd429f9 touch_buffer +EXPORT_SYMBOL vmlinux 0x8fe30d81 d_move +EXPORT_SYMBOL vmlinux 0x8fe3aed9 __lock_buffer +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ff9258d devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x900da8d1 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x90638817 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x906a076e xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x90867dbc mii_nway_restart +EXPORT_SYMBOL vmlinux 0x908a4d9d ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x9098c1c1 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons +EXPORT_SYMBOL vmlinux 0x90b38109 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x90b6f0a0 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x90ba262d of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x90c4694f clocksource_unregister +EXPORT_SYMBOL vmlinux 0x90c7a544 bpf_map_get +EXPORT_SYMBOL vmlinux 0x90c8c84a fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x90f0ad10 param_set_bint +EXPORT_SYMBOL vmlinux 0x910339bf pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x91094445 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x910e519f scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x911331be dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x91210f5c blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x9135a6fa scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x913d6956 param_ops_byte +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x91883a9b fget +EXPORT_SYMBOL vmlinux 0x918ba9dc iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x9191f475 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a02d22 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91b39e16 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x91b8ed48 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91df96fb copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f62be4 _dev_notice +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91f905e4 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x91fc655b lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x92015cb2 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x92034ab7 dev_addr_del +EXPORT_SYMBOL vmlinux 0x9209c564 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x920d1248 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x92216b48 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b07f4 tcp_check_req +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9257116d __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x92647788 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x926ca7b7 vm_event_states +EXPORT_SYMBOL vmlinux 0x927677d2 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x9282af15 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x928b0735 generic_fillattr +EXPORT_SYMBOL vmlinux 0x928b58fe __module_get +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9293f320 read_cache_folio +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929e9072 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x92a1db26 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c847eb pci_request_irq +EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e1fd7f netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x92e26a33 tegra_ivc_write_get_next_frame +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 0x93372988 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x9348f162 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x934d498b mntput +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9384edf8 udp_seq_next +EXPORT_SYMBOL vmlinux 0x93995ceb hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x93a44107 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93ba41d4 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x93c4ee5e ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93de651b md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x93e51b92 fb_show_logo +EXPORT_SYMBOL vmlinux 0x93fc1f07 simple_lookup +EXPORT_SYMBOL vmlinux 0x9419d400 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x9421d02f phy_start_aneg +EXPORT_SYMBOL vmlinux 0x9421d4f7 block_write_full_page +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942a768c page_pool_release_page +EXPORT_SYMBOL vmlinux 0x943a9c96 key_task_permission +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x94532b8a blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x945a8197 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x94811adf tty_write_room +EXPORT_SYMBOL vmlinux 0x948826cc skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x94909163 inode_permission +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a4c3d0 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x94adddfd iptun_encaps +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94be1df3 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x94bef65e xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94e0fa9a __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x94efd88b devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x9530b7b2 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x9532d53d inode_add_bytes +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954159b4 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x95459969 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x954c11c7 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9555ab75 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x955b076c xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x955f9aef netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x956c1ccd netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x957712e9 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x95814427 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x9598ad41 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95b37331 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x95bfb0dd security_path_unlink +EXPORT_SYMBOL vmlinux 0x95c2a913 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x95c967e1 amba_device_register +EXPORT_SYMBOL vmlinux 0x95cfa27b pci_dev_get +EXPORT_SYMBOL vmlinux 0x960271a5 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x96225e8e inet_sendpage +EXPORT_SYMBOL vmlinux 0x9629f50a __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x962cff22 tty_register_driver +EXPORT_SYMBOL vmlinux 0x9638ccd6 locks_delete_block +EXPORT_SYMBOL vmlinux 0x963d9702 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x964597d8 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x964b6e63 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x96668a33 key_move +EXPORT_SYMBOL vmlinux 0x9667bee7 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x96782d32 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9684ee79 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b916d6 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d58140 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96fa1ed6 dquot_file_open +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x97034896 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x9718243d mmc_detect_change +EXPORT_SYMBOL vmlinux 0x971e3f27 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x972d1230 request_key_tag +EXPORT_SYMBOL vmlinux 0x973d428d dquot_commit +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97412e28 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x974164b2 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9754ec5d iunique +EXPORT_SYMBOL vmlinux 0x976011a0 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x97893c58 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x97893f3f mmc_erase +EXPORT_SYMBOL vmlinux 0x97a547b6 input_set_abs_params +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 0x97bf9c38 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x98021c62 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x98118913 pcim_iomap +EXPORT_SYMBOL vmlinux 0x981ac15e tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x981fd890 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x983a3b91 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 +EXPORT_SYMBOL vmlinux 0x98ad4e76 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x98ba19d6 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x98bcf7f3 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c2ac5c simple_link +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cc0e70 inet_protos +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d6f28a tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x990ee412 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x991c14f2 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x99214a64 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993ce469 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9953bb31 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x9959106c jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x996ee840 dm_register_target +EXPORT_SYMBOL vmlinux 0x997404da devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x997799a8 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99c18b5b inet6_release +EXPORT_SYMBOL vmlinux 0x99c3c258 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x99cabb39 audit_log +EXPORT_SYMBOL vmlinux 0x99cb41f9 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x99ced126 page_symlink +EXPORT_SYMBOL vmlinux 0x99d09d33 set_bh_page +EXPORT_SYMBOL vmlinux 0x99d197a3 freeze_bdev +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e64e93 misc_register +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 0x9a0ec2f4 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x9a187cea mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a3e5ac4 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x9a4412e4 __scm_send +EXPORT_SYMBOL vmlinux 0x9a4c2788 pci_match_id +EXPORT_SYMBOL vmlinux 0x9a4d745e ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0x9a75bf5b pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x9a9c7944 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab45479 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x9ab57082 cdrom_open +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9aec142f retire_super +EXPORT_SYMBOL vmlinux 0x9af41031 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x9af7155f _dev_alert +EXPORT_SYMBOL vmlinux 0x9afeaf13 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x9b10f90a mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b3355ed udplite_prot +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b406167 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x9b40dd81 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b4a76bc tcf_register_action +EXPORT_SYMBOL vmlinux 0x9b547761 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x9b6becb1 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9ba5afee md_handle_request +EXPORT_SYMBOL vmlinux 0x9bacd63b page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x9bb85f71 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x9bbb59de devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x9bc83485 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x9beebb39 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x9bf5219c filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x9c068914 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x9c075e6c cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x9c0e5529 __sock_create +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1b0df8 put_watch_queue +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c2475a6 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x9c314bc1 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c63fe36 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x9c65ed8c mmc_can_trim +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb1b128 complete_request_key +EXPORT_SYMBOL vmlinux 0x9cb342e5 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x9cc27e18 folio_write_one +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 0x9ce31051 file_remove_privs +EXPORT_SYMBOL vmlinux 0x9ce68e92 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x9cf134e9 page_pool_create +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d1e59a6 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d28ee00 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d35b0f6 console_start +EXPORT_SYMBOL vmlinux 0x9d3bf421 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d76e1ce of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x9d88643b xfrm_input +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d99ec5a pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x9d9f39eb sock_kfree_s +EXPORT_SYMBOL vmlinux 0x9dbcf533 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0x9dd6e271 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x9de0c720 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9df29145 rproc_alloc +EXPORT_SYMBOL vmlinux 0x9df677e5 is_free_buddy_page +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 0x9e3743de netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x9e3929d0 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x9e3a89ed sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e519ffa set_page_dirty +EXPORT_SYMBOL vmlinux 0x9e58f4d5 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6d24f8 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x9e7692ef to_nd_btt +EXPORT_SYMBOL vmlinux 0x9e7aa72b mmc_free_host +EXPORT_SYMBOL vmlinux 0x9e7cd86a phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e926b15 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eb0133c i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x9eb136a3 param_ops_int +EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq +EXPORT_SYMBOL vmlinux 0x9eb1a086 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ecd3188 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large +EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee1187b rfkill_alloc +EXPORT_SYMBOL vmlinux 0x9ee69405 dquot_alloc +EXPORT_SYMBOL vmlinux 0x9ee6bc06 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x9efc5597 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x9efcc07f mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x9f2e1a8a filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x9f3dfb51 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x9f3fdbe8 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x9f4315d2 skb_get_hash_perturb +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 0x9f6e3911 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x9f7a3247 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f7f01d3 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x9f82045b security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x9f92e22d from_kgid +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fd852e8 end_page_writeback +EXPORT_SYMBOL vmlinux 0x9fddcc73 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff86747 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa000ab65 km_state_notify +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa0145c44 vga_put +EXPORT_SYMBOL vmlinux 0xa018d21d is_nd_dax +EXPORT_SYMBOL vmlinux 0xa018e169 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa01f747c inc_nlink +EXPORT_SYMBOL vmlinux 0xa0234779 unix_get_socket +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa056e796 lock_rename +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05dda2a sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xa0642780 thaw_super +EXPORT_SYMBOL vmlinux 0xa0752e39 __skb_checksum +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08d7631 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa09fbd5f dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xa0a6b240 iterate_fd +EXPORT_SYMBOL vmlinux 0xa0ad9d66 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0aede5f pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c308bb pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xa0c883a5 generic_listxattr +EXPORT_SYMBOL vmlinux 0xa0c97acd inet_bind +EXPORT_SYMBOL vmlinux 0xa0d45361 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xa0d47462 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e8ffd9 uart_update_timeout +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 0xa0f10085 __sg_free_table +EXPORT_SYMBOL vmlinux 0xa0f194b0 ihold +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1169825 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xa1205b15 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xa13d6228 pci_find_resource +EXPORT_SYMBOL vmlinux 0xa1436859 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xa1a86b6d ppp_input +EXPORT_SYMBOL vmlinux 0xa1be9f56 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xa1dd530f set_binfmt +EXPORT_SYMBOL vmlinux 0xa1e0690f mmc_get_card +EXPORT_SYMBOL vmlinux 0xa1f39be1 seq_release +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa21cc7fb blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xa2231b58 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24e59c6 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa253956a pci_request_regions +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa268c696 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xa28a5b12 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa298e3df of_find_property +EXPORT_SYMBOL vmlinux 0xa299e2a4 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xa29bd831 dev_trans_start +EXPORT_SYMBOL vmlinux 0xa2c20a09 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xa2d1aab9 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2ec5d89 skb_condense +EXPORT_SYMBOL vmlinux 0xa3085170 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xa308d373 address_space_init_once +EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa342df2c rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xa34a48d7 security_path_rename +EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa37e8c1c _dev_crit +EXPORT_SYMBOL vmlinux 0xa380eaad crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xa389ccdf kobject_del +EXPORT_SYMBOL vmlinux 0xa38fcbc5 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xa39020f8 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xa3acc9e5 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xa3ad0672 tty_port_close +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c2f73e of_get_property +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa401ba31 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0xa40d05fa tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa42711c9 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xa43c58b8 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xa443be3b security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xa4458b97 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa44b74cc dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xa44f8891 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xa45035a8 skb_checksum +EXPORT_SYMBOL vmlinux 0xa453fe69 filemap_fault +EXPORT_SYMBOL vmlinux 0xa454eb3a kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xa477f007 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xa482a723 of_phy_connect +EXPORT_SYMBOL vmlinux 0xa4887451 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0xa48bddfc unlock_new_inode +EXPORT_SYMBOL vmlinux 0xa49803b2 vlan_for_each +EXPORT_SYMBOL vmlinux 0xa4ac970e starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa4b039f5 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xa4eec6c1 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0xa4f55ca2 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa5005b5c register_shrinker +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa568ec85 kill_block_super +EXPORT_SYMBOL vmlinux 0xa56d1fab flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa5929dcc vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5b15695 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xa5c333fe mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0xa5c4cbc9 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xa5d57038 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xa5e1efcf jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xa5ebe03c tcf_block_get +EXPORT_SYMBOL vmlinux 0xa5f58ba2 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa638e6d2 component_match_add_release +EXPORT_SYMBOL vmlinux 0xa641667e inode_update_time +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa6561d05 xsk_tx_release +EXPORT_SYMBOL vmlinux 0xa65e5d43 redraw_screen +EXPORT_SYMBOL vmlinux 0xa6777353 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6882674 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xa68a13ac dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xa68dd3ef devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xa68e4f0c skb_append +EXPORT_SYMBOL vmlinux 0xa698356b security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xa6b5ef69 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xa6c1dfd0 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xa6d01008 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xa6d1ab5f devm_of_iomap +EXPORT_SYMBOL vmlinux 0xa6dfb1f6 seq_open +EXPORT_SYMBOL vmlinux 0xa6ec21c9 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xa7133fcf acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xa7162f21 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xa7179cca tso_start +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa722962d dquot_get_state +EXPORT_SYMBOL vmlinux 0xa74252f7 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa74cee47 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xa7514b3f fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xa7566caf unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xa760a683 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xa7610519 module_put +EXPORT_SYMBOL vmlinux 0xa762f6b7 vme_register_driver +EXPORT_SYMBOL vmlinux 0xa7772dc5 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7a03233 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xa7a17c74 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa80647c4 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xa80771bf seq_hex_dump +EXPORT_SYMBOL vmlinux 0xa81326a9 serio_reconnect +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa81de0c3 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xa81fff1c pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xa8240f47 free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84569a1 single_release +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 0xa8776d46 kmalloc_trace +EXPORT_SYMBOL vmlinux 0xa8854361 dcache_dir_open +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 0xa8b30a30 input_event +EXPORT_SYMBOL vmlinux 0xa8b6262b inet6_offloads +EXPORT_SYMBOL vmlinux 0xa8b7a4b6 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xa8c9e10f vfs_mknod +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e3f893 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f5458a i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa9035d7c scsi_device_get +EXPORT_SYMBOL vmlinux 0xa904692a tty_check_change +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91dfaf1 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xa9350f3e jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa96eafd3 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa973c920 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa984201f mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xa987a8a1 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xa98e853f end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xa9b3a2fe acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xa9bba765 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xa9c102a0 clkdev_drop +EXPORT_SYMBOL vmlinux 0xa9dbf738 blk_start_plug +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f0ec3f bio_init_clone +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa24d27c bio_uninit +EXPORT_SYMBOL vmlinux 0xaa26d0da gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xaa327a1b eth_mac_addr +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa374260 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xaa5773f9 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa77eef9 param_set_short +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa819aa7 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa4de53 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaaa77e49 seq_pad +EXPORT_SYMBOL vmlinux 0xaab0f2de padata_alloc +EXPORT_SYMBOL vmlinux 0xaac5c71f rproc_add_subdev +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 0xaadddd88 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xaae14670 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaeac917 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xaaf44470 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab059666 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xab0ea936 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xab21d437 skb_put +EXPORT_SYMBOL vmlinux 0xab2584ed tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3ea10f genphy_check_and_restart_aneg +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 0xab8f6faf sk_ns_capable +EXPORT_SYMBOL vmlinux 0xab97434f netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xab9f736b locks_remove_posix +EXPORT_SYMBOL vmlinux 0xaba29a09 sock_bind_add +EXPORT_SYMBOL vmlinux 0xabb42425 set_groups +EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0xabce1986 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xabcf285a fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xabd29174 uart_match_port +EXPORT_SYMBOL vmlinux 0xabe38db8 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xabe91606 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf4e0bf flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xabfd7fbb vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xac095488 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2bc759 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac35ec44 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xac3ba19e generic_permission +EXPORT_SYMBOL vmlinux 0xac4ad534 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac7a7ee8 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xac937d3e alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xaca64dba jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xaca9c022 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb14109 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace8ff78 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xacec441e tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xacec64aa vfs_unlink +EXPORT_SYMBOL vmlinux 0xacf15221 set_disk_ro +EXPORT_SYMBOL vmlinux 0xacf1765d md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacfaddb5 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xad017ce2 pipe_lock +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0b5365 phy_init_eee +EXPORT_SYMBOL vmlinux 0xad0ef4f7 dev_set_alias +EXPORT_SYMBOL vmlinux 0xad11658e mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad140b46 sock_no_getname +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad47287f mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xad51dfd4 neigh_carrier_down +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 0xad73b191 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada736ae phy_get_pause +EXPORT_SYMBOL vmlinux 0xada78e9d fb_set_suspend +EXPORT_SYMBOL vmlinux 0xadaaa2fe acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb49e90 rw_verify_area +EXPORT_SYMBOL vmlinux 0xadb5ea1d __serio_register_driver +EXPORT_SYMBOL vmlinux 0xadbc07c3 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc3b1cb inet_stream_ops +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd2f055 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xadd66b54 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xaddfa533 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xadff65df d_alloc_name +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae3352c3 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae482ee3 inode_insert5 +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae5de40f ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xae67ca30 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xaeab64b3 of_xudma_dev_get +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 0xaed0bed7 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xaef31c6c get_phy_device +EXPORT_SYMBOL vmlinux 0xaef7d3f0 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xaf39d905 kernel_accept +EXPORT_SYMBOL vmlinux 0xaf3a4fde register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf414241 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xaf4152a2 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xaf4b8648 kernel_connect +EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf6789f4 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xaf70ee01 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xaf71ad86 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xaf735add invalidate_bdev +EXPORT_SYMBOL vmlinux 0xaf81e7e7 dev_mc_add +EXPORT_SYMBOL vmlinux 0xaf870644 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xaf88084b cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xaf8d328e mdiobus_write +EXPORT_SYMBOL vmlinux 0xaf926a09 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xaf9d6ce4 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xafa3fdaf setattr_prepare +EXPORT_SYMBOL vmlinux 0xafa509b5 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafbe4111 generic_write_checks +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc11cde mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xafc29326 pci_iomap +EXPORT_SYMBOL vmlinux 0xafc3cf20 thaw_bdev +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb01dd9c2 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xb0383123 phy_find_first +EXPORT_SYMBOL vmlinux 0xb0484533 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb04e7a9d pcibus_to_node +EXPORT_SYMBOL vmlinux 0xb04fa048 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xb0510ea9 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xb0542e7b tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xb0550964 wireless_send_event +EXPORT_SYMBOL vmlinux 0xb0588a27 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state +EXPORT_SYMBOL vmlinux 0xb0965fc1 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a103e7 key_revoke +EXPORT_SYMBOL vmlinux 0xb0a4dfbc inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb0b6532e dquot_destroy +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0ca8e05 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xb0cbcadf dev_set_threaded +EXPORT_SYMBOL vmlinux 0xb0d7c73e input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e45c10 bpf_link_put +EXPORT_SYMBOL vmlinux 0xb1076552 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb121902d d_rehash +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 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb15213bf flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xb1753f2a from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xb1bb6155 devm_pci_remap_cfgspace +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 0xb20223ae padata_free_shell +EXPORT_SYMBOL vmlinux 0xb2078d58 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xb2206941 ip6_output +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb2353b46 free_buffer_head +EXPORT_SYMBOL vmlinux 0xb23ec10b mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xb25dc4a3 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xb271508f mdio_driver_register +EXPORT_SYMBOL vmlinux 0xb277631f scsi_scan_host +EXPORT_SYMBOL vmlinux 0xb27d3ef7 con_is_bound +EXPORT_SYMBOL vmlinux 0xb2a0adb6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2bd4468 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xb2d352b2 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2ed4075 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fe71bc mdio_device_free +EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb324ead8 softnet_data +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb3311205 simple_empty +EXPORT_SYMBOL vmlinux 0xb33da9ef fb_set_cmap +EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb36e8293 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert +EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3ad3657 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f14b43 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f985a8 sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb40e2791 bio_add_page +EXPORT_SYMBOL vmlinux 0xb41f4d12 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42c692d sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb45e65c5 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xb481978b rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xb48c266e netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0xb4979f1a has_capability +EXPORT_SYMBOL vmlinux 0xb49ed815 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xb4ac052c phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xb4d301f6 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xb4d8f5ad put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xb4e8215b filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xb4eb0e43 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f2a3f7 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xb4fd8c84 tty_port_open +EXPORT_SYMBOL vmlinux 0xb5105dc6 may_umount_tree +EXPORT_SYMBOL vmlinux 0xb5176e16 config_group_init +EXPORT_SYMBOL vmlinux 0xb52c8b5d serio_rescan +EXPORT_SYMBOL vmlinux 0xb52d4a36 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xb53bf7f5 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb542ef7c dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xb567e64e bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0xb59f1a37 fman_register_intr +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 0xb5bd53a6 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xb5c50164 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xb5cc1828 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xb5d7d3e2 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5f00aea tcf_block_put +EXPORT_SYMBOL vmlinux 0xb5f43216 md_update_sb +EXPORT_SYMBOL vmlinux 0xb5fc6939 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xb600bf0e scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xb60a0ee7 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb627eef2 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xb6286de6 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xb62c2a5d seq_putc +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb65366ad dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xb6539fc4 __neigh_create +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb66eaf51 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb69290cd mmc_command_done +EXPORT_SYMBOL vmlinux 0xb692e53c pps_unregister_source +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb698d759 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xb69e95d4 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xb6a5f1da touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xb6ab5362 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6bdda7c vlan_vid_del +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6d44f9a seq_write +EXPORT_SYMBOL vmlinux 0xb6d5ecc1 release_pages +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6e83bb6 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xb6eaf2d1 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xb6f449d3 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb6fd7bc1 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb700b965 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb72cea4b pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xb7337329 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb74b1415 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xb752eb7e abort_creds +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb7786597 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xb77ebe07 module_refcount +EXPORT_SYMBOL vmlinux 0xb77f78b4 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xb784e5b7 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb799fac7 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xb7a0dc12 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xb7ac69c5 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xb7b51578 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d12091 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xb7d6fa05 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xb7d95ae7 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xb8053658 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb828c7b1 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0xb839f00f rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb850b4ec __scsi_add_device +EXPORT_SYMBOL vmlinux 0xb8536a73 tty_hangup +EXPORT_SYMBOL vmlinux 0xb85f63f8 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb866aca0 devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb872da40 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xb877a67b neigh_direct_output +EXPORT_SYMBOL vmlinux 0xb87d1694 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xb87d48a3 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89e37e6 posix_lock_file +EXPORT_SYMBOL vmlinux 0xb8a320ef inet_sendmsg +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b1461c blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xb8cd8d5d ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xb8dc47c3 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xb8dec179 locks_free_lock +EXPORT_SYMBOL vmlinux 0xb8f961de sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xb9057f63 __kfree_skb +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 0xb93940f9 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xb9397d94 phy_get_c45_ids +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 0xb9797abe dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xb9967a8f __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9d165f1 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xb9d1ab9f dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ebefa8 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb9ff43a1 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xba01ae1e nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba2af095 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xba470ca1 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4a273c new_inode +EXPORT_SYMBOL vmlinux 0xba4b3004 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xba513f31 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xba5b8d7f pci_fixup_device +EXPORT_SYMBOL vmlinux 0xba6b0f9a scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xbabecbd5 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xbac3207e from_kprojid +EXPORT_SYMBOL vmlinux 0xbac55a27 key_validate +EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len +EXPORT_SYMBOL vmlinux 0xbace597b netdev_err +EXPORT_SYMBOL vmlinux 0xbadac2bc skb_find_text +EXPORT_SYMBOL vmlinux 0xbadefc72 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xbae0f382 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xbae38fcf phy_read_paged +EXPORT_SYMBOL vmlinux 0xbae52f16 __bh_read_batch +EXPORT_SYMBOL vmlinux 0xbae64006 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xbae8c373 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0c1a79 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xbb12dbf5 input_copy_abs +EXPORT_SYMBOL vmlinux 0xbb1d0608 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2d5abb qdisc_put +EXPORT_SYMBOL vmlinux 0xbb2d9b5a __block_write_begin +EXPORT_SYMBOL vmlinux 0xbb49c4c1 blk_get_queue +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb51716c inode_init_owner +EXPORT_SYMBOL vmlinux 0xbb52f1d6 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb808dd9 vfs_rename +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbbfd8ba4 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xbc1a9e28 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc315e20 brioctl_set +EXPORT_SYMBOL vmlinux 0xbc3c9ac9 d_set_d_op +EXPORT_SYMBOL vmlinux 0xbc55d83d devm_register_netdev +EXPORT_SYMBOL vmlinux 0xbc571b5f alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xbc81c4ab jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xbc82ea1c __skb_get_hash +EXPORT_SYMBOL vmlinux 0xbca612d4 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xbcab1966 cdev_add +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb2555f vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xbcd32f74 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xbce3ab79 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xbd13bd05 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0xbd1f4804 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xbd1f74e3 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xbd203f43 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xbd24ad5e tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xbd3a3106 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xbd41ec5f proto_unregister +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd51d2f6 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xbd530d28 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xbd585245 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd669dc1 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd792d69 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xbd8df87b __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xbd956599 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xbdd7093c devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xbddd4af8 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xbddfbf8d xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xbdeed9a9 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe186dec phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xbe263f36 cred_fscmp +EXPORT_SYMBOL vmlinux 0xbe3b4efa reuseport_alloc +EXPORT_SYMBOL vmlinux 0xbe3e0b48 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe57f2e6 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xbe5994da param_ops_short +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 0xbe7bbf5b netif_tx_lock +EXPORT_SYMBOL vmlinux 0xbe7bd2f0 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0xbe89be8b devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xbe955190 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xbe9eaa55 sock_create_lite +EXPORT_SYMBOL vmlinux 0xbea8fcef napi_consume_skb +EXPORT_SYMBOL vmlinux 0xbec86f45 udp_poll +EXPORT_SYMBOL vmlinux 0xbef1a61f mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xbef2d8bd wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbefa64a3 dev_mc_init +EXPORT_SYMBOL vmlinux 0xbf07de52 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xbf16c490 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf606c6a devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xbf6499b6 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xbf74a3c6 iput +EXPORT_SYMBOL vmlinux 0xbf760de6 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xbf8f3768 copy_highpage +EXPORT_SYMBOL vmlinux 0xbf9b0d0c i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa3f0d9 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfcba18d skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfce187a qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xbfcedfda configfs_register_group +EXPORT_SYMBOL vmlinux 0xbff8cdb0 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc0009434 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc0454fff genphy_suspend +EXPORT_SYMBOL vmlinux 0xc0495948 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xc04a3280 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xc04dfc39 vme_master_request +EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc08e7a05 nla_reserve +EXPORT_SYMBOL vmlinux 0xc09798e3 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xc09f07d3 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xc0aca751 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xc0c9b53f dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xc0d444b0 submit_bio_wait +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 0xc1188aeb seq_file_path +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc150888b ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15491a7 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc16be5d7 mpage_read_folio +EXPORT_SYMBOL vmlinux 0xc1b51cbe __phy_resume +EXPORT_SYMBOL vmlinux 0xc1bfe28f of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xc1cecb87 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1de915a blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc211e7fe fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xc21d812b consume_skb +EXPORT_SYMBOL vmlinux 0xc21f9ead rpmh_write_async +EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc28c404b twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xc2953aa6 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2b797b6 devm_release_resource +EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou +EXPORT_SYMBOL vmlinux 0xc2e43c49 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc301f9fb eth_get_headlen +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 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38f5143 devm_memremap +EXPORT_SYMBOL vmlinux 0xc38fe403 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xc396af90 dquot_operations +EXPORT_SYMBOL vmlinux 0xc3991e1e udp6_set_csum +EXPORT_SYMBOL vmlinux 0xc3accb8b tcp_sendpage +EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3d3661f mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0xc3e0706d get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xc3eeb697 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xc3efe974 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc4141aab tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc4223f8c __udp_disconnect +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc434a702 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc4679077 nf_log_trace +EXPORT_SYMBOL vmlinux 0xc46e4cbc tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc471f02e gro_cells_receive +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc478ccc0 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xc47bdbee dm_kobject_release +EXPORT_SYMBOL vmlinux 0xc4932f23 of_clk_get +EXPORT_SYMBOL vmlinux 0xc494b351 __folio_lock +EXPORT_SYMBOL vmlinux 0xc498a1b6 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4d8680b kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xc4d909b4 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xc4e49b9d try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xc4ed15df dma_resv_fini +EXPORT_SYMBOL vmlinux 0xc51fbe5d devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc52a13f2 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0xc533e4ea vm_insert_page +EXPORT_SYMBOL vmlinux 0xc53ba6f9 folio_unlock +EXPORT_SYMBOL vmlinux 0xc56b167f scsi_host_busy +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc57df791 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc59020e5 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59b2616 rproc_free +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5a34334 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5b84c32 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xc5c90f7c __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xc5d01ee8 regset_get +EXPORT_SYMBOL vmlinux 0xc5e60df7 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5fd8658 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc60cd4b0 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc60e446a ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xc6161b7c ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6326c14 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc63407f8 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xc63ae922 proc_create +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc65ef927 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc66b147e pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xc689c7d3 filp_close +EXPORT_SYMBOL vmlinux 0xc68c92ad dec_node_page_state +EXPORT_SYMBOL vmlinux 0xc699e7b4 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6a505d5 pnp_is_active +EXPORT_SYMBOL vmlinux 0xc6b37d3c __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xc6b6c462 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6e069ad skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xc6ebf138 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f70a7c ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xc6fabac4 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xc6fe555a xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0xc7046421 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc7113af7 __inet_hash +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc73c3fe1 ilookup +EXPORT_SYMBOL vmlinux 0xc743ec51 simple_rmdir +EXPORT_SYMBOL vmlinux 0xc74ef75a pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0xc76f3ab1 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xc7700e18 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xc77436de i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7902c47 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xc79da6bc xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a5eb65 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xc7a95ec6 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc7b36a0c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xc7b62b57 finish_no_open +EXPORT_SYMBOL vmlinux 0xc7ba8099 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xc7bd53d7 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d1205e dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xc7e0c479 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xc7e8d29f tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xc7ff7206 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc81d6a3c dquot_acquire +EXPORT_SYMBOL vmlinux 0xc82a1032 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xc83f465a uart_suspend_port +EXPORT_SYMBOL vmlinux 0xc8428e62 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84b60c2 eth_header +EXPORT_SYMBOL vmlinux 0xc84d18c9 netdev_change_features +EXPORT_SYMBOL vmlinux 0xc84dc39e xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87e3d2d sock_set_mark +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc883f048 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xc88c4dc6 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b39a81 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8dedabb pci_free_irq +EXPORT_SYMBOL vmlinux 0xc8ee8ac9 dma_find_channel +EXPORT_SYMBOL vmlinux 0xc90fbaca xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xc91113ce flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc921257e dmam_pool_create +EXPORT_SYMBOL vmlinux 0xc934185b udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc94386b7 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xc94e09bb netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc994e887 follow_pfn +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a2deff ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xc9a4be24 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xc9ab5fcf dquot_quota_on +EXPORT_SYMBOL vmlinux 0xc9aeec6f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc9bb89f6 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xc9d95e1d tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xc9d9d2cf ethtool_notify +EXPORT_SYMBOL vmlinux 0xc9de7cf3 netdev_state_change +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e6d168 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca31814a pci_release_resource +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca4a53f0 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xca52d33c __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca7bad11 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0xca8243bc inet_del_offload +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9404ba tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xca949ecb nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcadb3cc3 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xcae3495d _dev_emerg +EXPORT_SYMBOL vmlinux 0xcae36a4e ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xcaf443a9 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb058a59 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xcb1a92b3 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb5ef564 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb8865fd xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xcb8e0d4b qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xcb932ee6 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xcb981b56 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xcbbb4be3 bioset_init +EXPORT_SYMBOL vmlinux 0xcbbcb162 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc69c7d bdi_put +EXPORT_SYMBOL vmlinux 0xcbc810ea crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xcbc8b4fc config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd59ab0 folio_end_writeback +EXPORT_SYMBOL vmlinux 0xcbd74fde nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xcbe41e96 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xcbf0d6d3 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcbfbc1d4 module_layout +EXPORT_SYMBOL vmlinux 0xcbfbd2d2 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xcc076df7 validate_slab_cache +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 0xcc2b25eb call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xcc2d530b param_ops_hexint +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc64c43c sock_setsockopt +EXPORT_SYMBOL vmlinux 0xcc7514e7 skb_push +EXPORT_SYMBOL vmlinux 0xcc7ea2e8 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xcc87045f put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xcc9a413d call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xcc9aba26 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccc22c18 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xccc6e001 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xcccdcc11 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xccf722ef flow_rule_match_l2tpv3 +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 0xcd07ce5c get_inode_acl +EXPORT_SYMBOL vmlinux 0xcd0e4552 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xcd0ff995 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xcd10550e param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xcd1682c7 input_close_device +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd517d22 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xcd5bae60 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xcd8589a7 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd8d49b5 tcp_read_skb +EXPORT_SYMBOL vmlinux 0xcd90f09e pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xcd9d92b5 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xcdaef9cf default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xcdbd3329 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcfb489 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xce22d494 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce28c3da key_put +EXPORT_SYMBOL vmlinux 0xce2a15c9 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xce4adc13 md_error +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 0xce720f28 mtree_destroy +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 0xce80c9d5 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xce8bfb7e generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xce99b6e9 devm_request_resource +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcebef80f sunxi_sram_release +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf20f49b netpoll_setup +EXPORT_SYMBOL vmlinux 0xcf21c765 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf3a7a8f fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf450ce4 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf57e4a8 __napi_schedule +EXPORT_SYMBOL vmlinux 0xcf631885 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfae0129 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xcfb7f0d3 km_policy_expired +EXPORT_SYMBOL vmlinux 0xcfbd2ca4 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xcfc331c4 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfca6ca7 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xcfd22503 file_modified +EXPORT_SYMBOL vmlinux 0xcfd4978f __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xcfedf3dd mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xcfef8a62 fwnode_iomap +EXPORT_SYMBOL vmlinux 0xd011619c blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xd0147294 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xd02acc48 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xd032abcf neigh_update +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd0866747 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0b7b484 registered_fb +EXPORT_SYMBOL vmlinux 0xd0cf234d pneigh_lookup +EXPORT_SYMBOL vmlinux 0xd0e75b21 mii_check_media +EXPORT_SYMBOL vmlinux 0xd0f64e55 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xd10c6893 dev_close +EXPORT_SYMBOL vmlinux 0xd11f476e noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xd12af673 dev_mc_del +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd14e74a7 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xd163a25d file_open_root +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd19e5003 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xd1a729f8 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xd1accbcc mmc_release_host +EXPORT_SYMBOL vmlinux 0xd1add16a seq_dentry +EXPORT_SYMBOL vmlinux 0xd1d547c0 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f4fdaa nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd21c39c9 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd230e7f7 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xd2335ec1 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd23f8c69 dump_page +EXPORT_SYMBOL vmlinux 0xd23fde4b ip_frag_init +EXPORT_SYMBOL vmlinux 0xd240e906 kill_fasync +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd24725ee fuse_mount_destroy +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 0xd262b976 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xd272d127 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xd27633a6 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd2a1b0aa pci_write_config_word +EXPORT_SYMBOL vmlinux 0xd2a4af66 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xd2a6e373 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xd2b824ae pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xd2bc0d5e mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xd2c54399 configfs_remove_default_groups +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 0xd2fa840c unregister_cdrom +EXPORT_SYMBOL vmlinux 0xd302b355 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd322b329 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xd341dca7 make_kuid +EXPORT_SYMBOL vmlinux 0xd350743d input_set_capability +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 0xd35de71e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd378fae9 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd37b425e param_set_charp +EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd38fcdf3 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0xd3a66b7a jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xd3a91ad4 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xd3adbf2b fb_validate_mode +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4484350 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xd4539cca vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4677b15 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xd4697c10 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xd46d69c7 noop_llseek +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4850911 dump_skip_to +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4ad84bd pci_iomap_range +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4de6e97 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xd4f27746 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xd4f8511b blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xd5064be8 register_console +EXPORT_SYMBOL vmlinux 0xd5129630 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xd512eb3a sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xd5139e70 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xd5252403 build_skb_around +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd529c1e2 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xd533b444 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd55a54da page_get_link +EXPORT_SYMBOL vmlinux 0xd55adbb4 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xd5609cb4 inet_frag_find +EXPORT_SYMBOL vmlinux 0xd56fb787 sk_capable +EXPORT_SYMBOL vmlinux 0xd5918734 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0xd592d2ad jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xd59d8e70 phy_loopback +EXPORT_SYMBOL vmlinux 0xd5a5bba4 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5cb34ed dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xd5d7f3f7 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd605cc55 security_skb_classify_flow +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 0xd62f4899 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd645fb49 finalize_exec +EXPORT_SYMBOL vmlinux 0xd653558a prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xd6592f98 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xd6596e23 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xd6667ad0 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0xd66bad0d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd68f0633 register_framebuffer +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6b56952 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xd6dd235b devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xd6dd2805 __bread_gfp +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f97286 tcf_qevent_destroy +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 0xd71104b3 vm_node_stat +EXPORT_SYMBOL vmlinux 0xd7215f6a mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xd7273e00 nd_dax_probe +EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase +EXPORT_SYMBOL vmlinux 0xd73c0888 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd753fa84 sock_no_connect +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7adb5e5 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e00753 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f3fc4a phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd80f7f36 param_get_uint +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd826fb4d tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd82dc718 dev_deactivate +EXPORT_SYMBOL vmlinux 0xd82f3ccc ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xd82f549e free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xd8345f9a pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xd83eb775 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xd84c3b84 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xd863732b __mdiobus_read +EXPORT_SYMBOL vmlinux 0xd8691d5e genphy_update_link +EXPORT_SYMBOL vmlinux 0xd875b9b3 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit +EXPORT_SYMBOL vmlinux 0xd8ba41ed param_get_ullong +EXPORT_SYMBOL vmlinux 0xd8c0c02a acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xd8c0f5c9 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xd8c523c8 __fs_parse +EXPORT_SYMBOL vmlinux 0xd8cca730 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xd8deb68d xfrm_state_free +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8e1d7f0 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xd8e894b7 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xd916843a xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xd91bf9a0 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xd91ec3a7 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9490c05 __alloc_skb +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd94f602a of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xd950e514 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xd95865b4 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xd95f2d11 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xd970b523 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9911016 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xd9987cd8 make_kprojid +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9cdd4dc sock_recvmsg +EXPORT_SYMBOL vmlinux 0xd9d66fd3 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9dde4a0 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id +EXPORT_SYMBOL vmlinux 0xda1e3dab fb_get_mode +EXPORT_SYMBOL vmlinux 0xda38a91b netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda48df55 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xda4b93ea dst_release +EXPORT_SYMBOL vmlinux 0xda539282 cdev_del +EXPORT_SYMBOL vmlinux 0xda83fd5f param_get_short +EXPORT_SYMBOL vmlinux 0xda8b45dd pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xda8c2c59 devm_iounmap +EXPORT_SYMBOL vmlinux 0xda95f65b sg_miter_next +EXPORT_SYMBOL vmlinux 0xda9f7dc0 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xda9fb88d fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xdaa123eb ppp_input_error +EXPORT_SYMBOL vmlinux 0xdaabc324 nf_log_packet +EXPORT_SYMBOL vmlinux 0xdaabc5a7 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xdabca9b7 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdaca820e dynamic_preempt_schedule +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdaddb7c7 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xdae409a8 sock_from_file +EXPORT_SYMBOL vmlinux 0xdae42fe1 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xdafbb488 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xdb13086a tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xdb1faf2c rproc_add +EXPORT_SYMBOL vmlinux 0xdb307cc8 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xdb4f9097 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8cad6d add_to_pipe +EXPORT_SYMBOL vmlinux 0xdba4d06b i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbedd378 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc58b567 pci_map_rom +EXPORT_SYMBOL vmlinux 0xdc8ded4c skb_vlan_push +EXPORT_SYMBOL vmlinux 0xdc9496c4 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xdc9a8012 get_watch_queue +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbd9889 find_vma +EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xdccd11e5 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xdcd9b68a path_get +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd08c946 phy_write_paged +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd2b611a netif_rx +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xdd62004d devm_clk_get +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd65e2a1 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd876ec6 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xdd93c544 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddad88f2 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xddb67b98 fsync_bdev +EXPORT_SYMBOL vmlinux 0xddcf4d69 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xdddd85dd __icmp_send +EXPORT_SYMBOL vmlinux 0xdde810cc dns_query +EXPORT_SYMBOL vmlinux 0xdde8dd52 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xde0c78a2 param_set_ulong +EXPORT_SYMBOL vmlinux 0xde1589f5 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xde26259f __quota_error +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde32af48 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xde393eba cdev_set_parent +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde5452ca set_cached_acl +EXPORT_SYMBOL vmlinux 0xde547d0b __mdiobus_register +EXPORT_SYMBOL vmlinux 0xde5d8bfc pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xde67419e sg_split +EXPORT_SYMBOL vmlinux 0xde6de813 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xde770e4e dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xde7e9917 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xde93b1c0 dst_dev_put +EXPORT_SYMBOL vmlinux 0xdea9297d inode_get_bytes +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdee70189 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xdef0ccf0 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xdef227e2 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf26844a of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf354766 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf42542a inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf606aaa kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf7ac9ea qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xdf8048ae vm_insert_pages +EXPORT_SYMBOL vmlinux 0xdf8720ce pci_scan_bus +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf900256 bio_init +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents +EXPORT_SYMBOL vmlinux 0xdfbac76a __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd0c990 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xdfdbb918 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe007f72b serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xe00feb85 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xe0127ca7 pci_choose_state +EXPORT_SYMBOL vmlinux 0xe01f0cf5 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe05ed92c proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe0819614 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c08550 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xe0c85bea md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xe0db6ddc __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe15255b7 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0xe154b4ec unload_nls +EXPORT_SYMBOL vmlinux 0xe15795b6 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xe15da8c6 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xe1721881 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xe196dcb0 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xe19826b3 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xe1b916bd sg_miter_skip +EXPORT_SYMBOL vmlinux 0xe1cb9b9c of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1fd7b87 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xe1ff2338 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xe2096574 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe2246428 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xe2256f8f param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xe2314ff5 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xe2517ca2 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xe2559b13 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xe26045cd vme_slot_num +EXPORT_SYMBOL vmlinux 0xe260ae21 fb_set_var +EXPORT_SYMBOL vmlinux 0xe266af69 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe29050f0 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up +EXPORT_SYMBOL vmlinux 0xe2ad6818 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xe2c87779 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe3046bf1 skb_pull_data +EXPORT_SYMBOL vmlinux 0xe3071ffe fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xe31ea86d writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xe320d4c9 nd_device_notify +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe3315dd1 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe36a1506 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xe36f44cc __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xe373193a page_readlink +EXPORT_SYMBOL vmlinux 0xe38e3f09 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe39e03c8 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xe3bac595 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xe3dcbb6f __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xe3e11a40 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ec993d qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe4007f74 tty_do_resize +EXPORT_SYMBOL vmlinux 0xe406897a flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xe406f135 deactivate_super +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe40de763 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xe429ee32 iget_locked +EXPORT_SYMBOL vmlinux 0xe42c4c26 mmc_add_host +EXPORT_SYMBOL vmlinux 0xe42d6fb9 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe4417ab2 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe4657608 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xe466e426 dma_pool_create +EXPORT_SYMBOL vmlinux 0xe46b42af remove_arg_zero +EXPORT_SYMBOL vmlinux 0xe4791171 block_write_end +EXPORT_SYMBOL vmlinux 0xe479293f pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe4a749df __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4bfa3cd scsi_remove_device +EXPORT_SYMBOL vmlinux 0xe4c5e60b generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xe4cd11bd icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xe4d07f75 generic_writepages +EXPORT_SYMBOL vmlinux 0xe4e16c3c fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xe4f93404 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe53278f6 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe5588f80 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xe5644233 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xe56d7b75 neigh_table_init +EXPORT_SYMBOL vmlinux 0xe5765bcb do_splice_direct +EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe582eaa4 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xe583ef50 kobject_get +EXPORT_SYMBOL vmlinux 0xe5865c72 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5ad44c7 dst_destroy +EXPORT_SYMBOL vmlinux 0xe5bb43f8 dev_lstats_read +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5e1af3a bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xe5f0a07d shmem_aops +EXPORT_SYMBOL vmlinux 0xe5f1c570 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xe60a597f folio_mapping +EXPORT_SYMBOL vmlinux 0xe6219129 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xe637fe67 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe686bb5d kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xe68d20b5 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe6acd20a of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xe6b35620 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6e21dfb init_net +EXPORT_SYMBOL vmlinux 0xe6e73b31 lease_modify +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe6fa1fa8 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xe7225487 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xe72504e5 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe72e29f4 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xe7591f0b dev_add_offload +EXPORT_SYMBOL vmlinux 0xe76474cf dst_release_immediate +EXPORT_SYMBOL vmlinux 0xe7692967 can_nice +EXPORT_SYMBOL vmlinux 0xe76cb68b __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xe76d5977 dentry_open +EXPORT_SYMBOL vmlinux 0xe7712c1a __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xe7735d1d kern_path_create +EXPORT_SYMBOL vmlinux 0xe78146ad security_unix_may_send +EXPORT_SYMBOL vmlinux 0xe7993993 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a9d415 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe7b7458b xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xe7bc4088 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xe7c3f43c vm_map_ram +EXPORT_SYMBOL vmlinux 0xe7cef2ce capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7df879f truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xe7dfe0fc truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xe7e40c83 tcp_filter +EXPORT_SYMBOL vmlinux 0xe7fac7e3 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xe801bf79 prepare_creds +EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xe8186f6e sync_file_create +EXPORT_SYMBOL vmlinux 0xe81ec108 arp_tbl +EXPORT_SYMBOL vmlinux 0xe82a3c12 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xe82f839a inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xe856cf39 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xe85c5f99 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe86c1692 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xe884a046 skb_trim +EXPORT_SYMBOL vmlinux 0xe886f943 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xe88d0f5a pci_find_capability +EXPORT_SYMBOL vmlinux 0xe890d70d pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xe8964c78 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xe8a4d439 __register_binfmt +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8bb9341 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0xe8be2056 is_bad_inode +EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len +EXPORT_SYMBOL vmlinux 0xe8e00361 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xe8e691aa ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xe8f4e996 tcp_poll +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe8ff7125 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90ce659 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xe910cdfc input_unregister_device +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe92f4fee update_region +EXPORT_SYMBOL vmlinux 0xe94484aa tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xe94e117c filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe953ca81 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe97525f1 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xe978bbe9 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xe9805d9c nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xe98a2710 pci_get_class +EXPORT_SYMBOL vmlinux 0xe9914ad0 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xe997cb7f pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xe9ad6b38 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9ba56ef vfs_fadvise +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9e630fc skb_expand_head +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 0xea095208 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea288d87 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea3f670d nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xea4de6d4 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xea5592f6 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0xea6661e9 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xea68d8a7 input_reset_device +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea72f9bc configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xea82d56e __brelse +EXPORT_SYMBOL vmlinux 0xea8e4bdf dup_iter +EXPORT_SYMBOL vmlinux 0xea90e22a block_truncate_page +EXPORT_SYMBOL vmlinux 0xeaaafd29 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xeaab1605 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xeab2837e eth_validate_addr +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeabe89ac mipi_dsi_driver_register_full +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 0xeb1aaa20 udp_set_csum +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb26b23f rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3b0577 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4a98fd dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xeb79def6 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb8e5ddf eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xeb99dcd3 vfs_readlink +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeb9fe164 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xeba44f8b nlmsg_notify +EXPORT_SYMBOL vmlinux 0xebb00b3c fman_set_port_params +EXPORT_SYMBOL vmlinux 0xebc94358 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xebdcb4cd dev_open +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2cbccf dma_fence_describe +EXPORT_SYMBOL vmlinux 0xec2d8121 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec5a0116 tcp_read_done +EXPORT_SYMBOL vmlinux 0xec770440 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xec890b93 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xec896015 dev_addr_mod +EXPORT_SYMBOL vmlinux 0xec976866 bio_copy_data +EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and +EXPORT_SYMBOL vmlinux 0xecabeef0 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xecaea67c fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0xecb2343f scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xecccb14d __d_drop +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed020cc0 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xed06ae75 vm_map_pages +EXPORT_SYMBOL vmlinux 0xed08e459 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xed1379de generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xed1c14da release_sock +EXPORT_SYMBOL vmlinux 0xed1e79d1 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xed35055d pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xed4ac377 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xed55b3a4 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xed935eb6 sock_i_uid +EXPORT_SYMBOL vmlinux 0xed9a033d rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xed9afa9f blk_integrity_register +EXPORT_SYMBOL vmlinux 0xed9ec461 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbd7ec9 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd01ac7 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xedf0caba ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xee149d5e vlan_vid_add +EXPORT_SYMBOL vmlinux 0xee1525ff iov_iter_advance +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee391a4d blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xee456b13 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xee47a4fb input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xee53645c __ip_options_compile +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee5b8ec6 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xee6ebcd4 phy_disconnect +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee80af9f gnet_stats_copy_basic +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 0xee91cd12 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0xee9ee466 scsi_print_result +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec440b6 phy_device_remove +EXPORT_SYMBOL vmlinux 0xeec604ca dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xeed7b83c PageMovable +EXPORT_SYMBOL vmlinux 0xeedda7d0 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeefce880 iterate_dir +EXPORT_SYMBOL vmlinux 0xef1452ef folio_wait_bit +EXPORT_SYMBOL vmlinux 0xef19e4b1 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xef2a8d5a dst_discard_out +EXPORT_SYMBOL vmlinux 0xef3a196d dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xef4345dc dma_async_device_register +EXPORT_SYMBOL vmlinux 0xef764109 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xef7b665f __folio_put +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb54709 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xefb96fa4 finish_open +EXPORT_SYMBOL vmlinux 0xefbcd30e kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefcebafd security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff35951 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xeff6df44 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xeffb7642 pci_enable_device +EXPORT_SYMBOL vmlinux 0xf0008cfd seq_vprintf +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0026f5e dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xf01147a9 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf0362fd8 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xf043f833 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xf04c353b of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table +EXPORT_SYMBOL vmlinux 0xf07f1690 dquot_drop +EXPORT_SYMBOL vmlinux 0xf08bd428 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0d653eb qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xf10a063b setup_new_exec +EXPORT_SYMBOL vmlinux 0xf1141094 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf114d55e fiemap_prep +EXPORT_SYMBOL vmlinux 0xf1165e79 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf12165c6 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xf123fa37 of_translate_address +EXPORT_SYMBOL vmlinux 0xf136c3c0 skb_eth_push +EXPORT_SYMBOL vmlinux 0xf141aa65 of_device_is_available +EXPORT_SYMBOL vmlinux 0xf1485235 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xf14de3bb peernet2id +EXPORT_SYMBOL vmlinux 0xf1578d0b mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xf1619167 follow_up +EXPORT_SYMBOL vmlinux 0xf1689dcc filemap_map_pages +EXPORT_SYMBOL vmlinux 0xf16abd75 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xf16db4a6 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xf17d27d4 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xf17e3b91 sock_no_accept +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf1843fac sock_release +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf195f0f5 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1b6ff59 __netif_napi_del +EXPORT_SYMBOL vmlinux 0xf1bb0b0e tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xf1bc2c67 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xf1c169da devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xf1c19d38 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xf1c9b04f param_set_byte +EXPORT_SYMBOL vmlinux 0xf1cddefe d_obtain_root +EXPORT_SYMBOL vmlinux 0xf1d35207 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dd960b init_pseudo +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ec5495 request_firmware +EXPORT_SYMBOL vmlinux 0xf20f8b6a configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25901d8 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf270f0f6 to_nd_dax +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf299c4ee task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0xf29afb93 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xf29d1609 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xf29d8d96 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xf2a5ed05 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0xf2ae2730 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2ce5657 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xf2d66e81 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xf2d6d1e7 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xf2dfd86f copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xf2e4832e dqget +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2ef85ab flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2f7f0a5 fc_mount +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf31a65bb napi_disable +EXPORT_SYMBOL vmlinux 0xf321de0d pci_save_state +EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xf3337cac inet_register_protosw +EXPORT_SYMBOL vmlinux 0xf335e512 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xf33f08bd genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35da8e3 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xf35e0205 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf380ac7c pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xf389b373 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xf38b2cab __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot +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 0xf3a72c12 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xf3aaac81 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xf3bac891 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xf3c72afe request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xf3c94ca1 of_node_put +EXPORT_SYMBOL vmlinux 0xf3d022fe param_get_byte +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e1b1ea rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xf3f8c80e pid_task +EXPORT_SYMBOL vmlinux 0xf437392d ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf4493b79 alloc_pages +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf45db4f7 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xf46d4fde mdio_find_bus +EXPORT_SYMBOL vmlinux 0xf4725ece scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf496101a ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf499abf9 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xf49b887d load_nls_default +EXPORT_SYMBOL vmlinux 0xf49d0877 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xf4a9c85c flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0xf4ad5f52 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xf4b0e435 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bce96b request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4dc6ebd dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f5dff7 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xf4f72fca noop_qdisc +EXPORT_SYMBOL vmlinux 0xf4ffd52e netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xf5000d4b vfs_fsync +EXPORT_SYMBOL vmlinux 0xf5021f93 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf55c25c3 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xf587b422 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xf590ace4 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xf592184c netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xf59cb8f1 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5bc2111 setattr_copy +EXPORT_SYMBOL vmlinux 0xf5c24538 fman_reset_mac +EXPORT_SYMBOL vmlinux 0xf5def888 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xf5e7b874 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5eb6253 mii_check_link +EXPORT_SYMBOL vmlinux 0xf6197b41 seq_printf +EXPORT_SYMBOL vmlinux 0xf6253e3f __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf649b28d dm_table_event +EXPORT_SYMBOL vmlinux 0xf64fae10 block_write_begin +EXPORT_SYMBOL vmlinux 0xf65810c4 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf66ebe1b cad_pid +EXPORT_SYMBOL vmlinux 0xf67416b1 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf683bbfa qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xf69fc66b dcache_readdir +EXPORT_SYMBOL vmlinux 0xf6cee001 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f8c217 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6fe00cd i2c_del_driver +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf76eefdd do_clone_file_range +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf775b2e9 sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0xf77c9cb0 make_bad_inode +EXPORT_SYMBOL vmlinux 0xf79a216f crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xf79f1e0c pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xf7a06ed3 __put_user_ns +EXPORT_SYMBOL vmlinux 0xf7ae1c8d netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xf7b7a06e cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e88c97 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf809b5e4 tcp_connect +EXPORT_SYMBOL vmlinux 0xf80f5c56 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf8145954 param_set_copystring +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf857bd76 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xf86f672b ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xf8721793 ns_capable +EXPORT_SYMBOL vmlinux 0xf88f052c nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xf89147cb scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xf8ae8fa9 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8d3ff77 mdiobb_write +EXPORT_SYMBOL vmlinux 0xf8f4500b sock_set_priority +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf901dd90 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xf9128c82 aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xf919dbcf mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xf937f935 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xf938810f iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9413d64 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xf9424802 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xf95410f7 mount_subtree +EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf95c82e0 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xf95f8e0f register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf96df65b netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf973764e d_tmpfile +EXPORT_SYMBOL vmlinux 0xf98e9073 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xf9a364a1 __f_setown +EXPORT_SYMBOL vmlinux 0xf9a4489c rtnl_notify +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9be1eda fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9cd2014 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa1ad334 con_is_visible +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa315e1e nonseekable_open +EXPORT_SYMBOL vmlinux 0xfa44188e nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xfa44301a pci_read_vpd +EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse +EXPORT_SYMBOL vmlinux 0xfa4fcb34 blkdev_put +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6555cd phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xfa70c24a vme_register_bridge +EXPORT_SYMBOL vmlinux 0xfa87ae6a ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xfa9ebd25 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xfaa9c680 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfab13d08 nd_device_register +EXPORT_SYMBOL vmlinux 0xfac299b4 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfae92924 ether_setup +EXPORT_SYMBOL vmlinux 0xfaf8c347 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xfb0e7bc4 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xfb13f267 __devm_release_region +EXPORT_SYMBOL vmlinux 0xfb23c62d tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb41ca90 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xfb5985f9 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xfb5d0cf2 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xfb66c67d add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb8a8739 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below +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 0xfbd1886e posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbf05c28 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xfbf2705f dump_emit +EXPORT_SYMBOL vmlinux 0xfbf715fc acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xfbfd3d57 set_blocksize +EXPORT_SYMBOL vmlinux 0xfc042809 napi_get_frags +EXPORT_SYMBOL vmlinux 0xfc0f0ece md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xfc192a3b folio_add_lru +EXPORT_SYMBOL vmlinux 0xfc1a41e0 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xfc1cbd27 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xfc299d45 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc62e95d blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices +EXPORT_SYMBOL vmlinux 0xfc71a434 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xfc72f552 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xfc7343bb finish_swait +EXPORT_SYMBOL vmlinux 0xfc76e788 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc8a243c mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xfc8d0aa6 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfce23052 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xfce9859b touch_atime +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf302f3 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xfcff9b5c in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xfd002190 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xfd11aa03 param_get_bool +EXPORT_SYMBOL vmlinux 0xfd21427d netlink_broadcast +EXPORT_SYMBOL vmlinux 0xfd577991 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xfd5a2986 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0xfd754004 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xfd8a2d88 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xfd8cae75 register_filesystem +EXPORT_SYMBOL vmlinux 0xfdc5ccaf phy_aneg_done +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdee6067 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xfdf5850f uart_resume_port +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0609e1 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xfe0a3a69 discard_new_inode +EXPORT_SYMBOL vmlinux 0xfe1809fa sock_no_mmap +EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe20a4c5 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xfe2f5dd5 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9a2178 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xfe9d192d get_unmapped_area +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfea5c3ac dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xfebb5f8d flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xfebf95de scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xfec5e2d3 set_create_files_as +EXPORT_SYMBOL vmlinux 0xfed34374 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xfed88387 vme_irq_generate +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 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff12f93d dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff41f7d7 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xff4e77fb register_key_type +EXPORT_SYMBOL vmlinux 0xff57cbb6 get_vm_area +EXPORT_SYMBOL vmlinux 0xff5b61b8 sk_free +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6cc351 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff82b183 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff8a48a9 set_user_nice +EXPORT_SYMBOL vmlinux 0xff926bc2 sock_create +EXPORT_SYMBOL vmlinux 0xffb1ff67 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffce2f33 sync_blockdev +EXPORT_SYMBOL vmlinux 0xffdd66ed vme_irq_free +EXPORT_SYMBOL vmlinux 0xffe13c37 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xffe30c42 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xffea5b32 may_umount +EXPORT_SYMBOL vmlinux 0xffeaa72b __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xffeec18f amba_driver_register +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL crypto/af_alg 0x031d4fb5 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x31c68adf af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x3ad28d0c af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x497732cb af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x6c19d9e9 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x81fcda03 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x87157802 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x9498fdb6 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x97cfb96c af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x9d9c5687 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xaff87296 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xb1e0ef07 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb5136e3e af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xc00762fc af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc4111b60 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xc8f912c7 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xec69bcb0 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xf73c8f79 af_alg_poll +EXPORT_SYMBOL_GPL crypto/aria_generic 0x09e64a82 aria_set_key +EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x00919b65 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8c2a4d22 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xf6dc809d async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9dcd1a31 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb69b8fee async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x01d09f87 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7bb9fd7f async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7bbc48fe async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb3d9c9db __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x754d861c async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb332e39f async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd2424d3d async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd5f9768f async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x745d26b6 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x52dd4e0f cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x39369b1c 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 0x292a6ced cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x29559715 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x55ef4979 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x7aa51b0d cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7cbc6d76 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xbfb4675a cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc5736c74 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc67fd6f9 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd5ab39f0 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe2494381 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xe283d93d cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xe9036042 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xefadc789 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x00b1c437 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x16f4fe74 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1c2fdd45 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x34788d45 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3c216832 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4598df50 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x75adb0e7 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x96142db1 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9b346944 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaee1f9f4 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb35133a6 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc2a5031f crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd565d349 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd6473171 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe1ef19a4 crypto_transfer_hash_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/polyval-generic 0x1936413e polyval_mul_non4k +EXPORT_SYMBOL_GPL crypto/polyval-generic 0x49dece42 polyval_update_non4k +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 0xe661a328 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 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xf366a793 twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x106a264b spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2c019986 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2c2b2ee1 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x39a49e19 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 0x45eda959 spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x48e4625f spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x58562741 spk_ttyio_synth_probe +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 0x8f7ea66f spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x97c1920b spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa5197f06 spk_do_catch_up_unicode +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 0xc58f6e50 spk_get_var_header +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd102d9e1 spk_ttyio_ops +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 0xe31cd010 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe9f90cf4 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf1ba07af synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf9c66660 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfe56b6b5 synth_add +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x04612b17 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x41c3f568 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 0x520130d0 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5520754b __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa0ff7d93 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 0xc364b68c __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x5439c704 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 0x55d7e05c linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xb616a363 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x4a5cb333 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x91913b39 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xe695a0b8 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xf98a83cd __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x6e3cfc6e __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xc001e13e __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x29b54984 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xfb2555e7 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x19d1187a __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x3ce22361 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x442a9d12 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x5b04c4a6 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x975cce02 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xa811a257 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x115856a8 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4dca2a54 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9af19948 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xed4b61e3 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x8770d28c __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xde5580b1 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x170f9146 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x196998b2 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x20137f25 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x21f72bcd bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2991d14d bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x520305e7 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6fb3bb42 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7074d845 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x75fed4c4 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x858602b8 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8867d85d bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x88ac034b bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8ec1b9be bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x943325f3 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa00b7ee4 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaf38474a bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf63d69f bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9dd3486 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc3351f1 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd5ae3d7f bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe5d4557f bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8570186 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee007cf1 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf6eea6bc bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x15046afa btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x340574da btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3482b6fc btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x55142ea5 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5858cf0a btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5d7a1aca btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x813a62f2 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd1b05d2a btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x16170ef1 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x22920e4a btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x27dc2193 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2eb84301 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3fd0a288 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4eb17233 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5bc8b1cd btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6bfce687 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6f31e847 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7922979c btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x86d4324e btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9b6dea7c btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa0a2a465 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xabac49ea btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb9bd5c2d btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc70c16d9 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xea306e7e btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x01ed0596 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x254337ee btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x26cc4829 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x287ab9d3 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x31963bd4 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x91b9dec3 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9ebfde93 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaec797d3 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb1601fa0 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdc620b62 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfd72809d btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x4e4eb723 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xc7d7840c btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xcc9a5404 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x503e48e3 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x98399f1e qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcc6b74d2 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd421a3b2 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf5c16b8a qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0202670e btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x17bd1919 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x68168f4e btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc4939830 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd64bb149 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf323467e btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5aa89712 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x9c72eac3 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xd3d9f62b h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe305c711 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x28b7a172 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x419e3612 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5aca8013 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6c895a28 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7dadef77 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x83f297cb mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb65c59cb mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xdbcc81cc mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x10e6a70e mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1a79ef22 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1c50a24c mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x22e85eba mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x37f75acd mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x48be64fc mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4d03abfc mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5c96f868 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x66b9e506 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x70551289 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x713bc328 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x79017e21 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x795a95e6 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7b14c576 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x827abb13 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x990a7473 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa4a7f1fe mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaea193fc mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb1915d77 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb1da3fdc mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbae5886e mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc53d10b1 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd1be7058 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd8fea2f8 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdc6475e7 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdd560e14 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe12d8e5b mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe39c8777 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe63fe066 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf2e61fd8 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf3f3a0fd mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x296e2187 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x83f783a0 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xb41e1fd4 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xeefbf0ad moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x8cf01c5b sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xfdcf420e __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4ed2f627 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa1bc62fe meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xb8a9a1b8 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xebe56521 meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03351dae clk_rcg_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07935d8b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07e2aa8b qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ae351c4 clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ed823f3 clk_alpha_pll_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x10130b21 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1d0f06af clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1de81c63 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ea782c8 clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f83275f clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f88365f clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x233e5373 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x247e1ab3 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x28ec912b clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d293905 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x38229fba clk_alpha_pll_reset_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3e946df0 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x407cd4e2 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45180f77 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45226263 clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x468b22ce clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46eb964b clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x48f25103 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4a930432 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5217eb68 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5524687f clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5919d5f8 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x59eabda5 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c035f38 clk_alpha_pll_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c3e75ee clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64b8755d clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66580ca3 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6b8e2aa0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6d308251 clk_alpha_pll_fixed_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x70156ec0 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x708a435d clk_alpha_pll_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7319e51c clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7af758c8 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7b87fe3e clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dfa4f12 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e69e953 clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x82afa55e clk_regmap_phy_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x88c0add9 clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8e4c395e clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x93bc2a64 clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x94c464a3 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x953b97b7 clk_alpha_pll_postdiv_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9821a599 clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9b699a6b clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c1fb4be clk_rivian_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c401604 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa0755dc3 clk_alpha_pll_fixed_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa72d720f clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa94f252e clk_lucid_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa95ed447 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaba920e4 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaea28295 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaf105ec4 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb3d93f1b clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb424085e qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8694bf5 clk_rcg2_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0126fe0 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0d2ecb0 clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc9cb9fbf clk_alpha_pll_zonda_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb2d25f8 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2ec30a3 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd98fe91b clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdf871d64 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe04400b3 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe40a1db3 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe4d191e1 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe8c0478b clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xeec69605 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf2522383 clk_alpha_pll_rivian_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf3bf69c3 clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf439f21a clk_alpha_pll_agera_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf845ea56 gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf84b8d59 clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfafc1469 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfbd6578d clk_alpha_pll_hwfsm_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0268c5d1 sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x11a0d7f4 sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x2daff1b3 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x32f41831 sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x7e4dcc87 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x87534930 sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8fd778bb sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x92ddf949 sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x944a9aa7 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x96559702 sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb7e0ba80 sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc494f8b8 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc6f9400f sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xeb2e28e9 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x03118d59 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0418fb72 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0555fd76 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x09a1a86f comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd50790 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0e749e7f comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x11d841d2 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1800c962 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1d580f78 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x25f42e8b comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x270516c9 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2fb35bde comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3ecefaf6 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x45063a0d comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4a119f7b comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x56b79a21 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6efae348 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6f60d177 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x791f2873 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7e7b5825 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x853dcf3a comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8d24975b comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x903dc58c comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa07421f1 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xacb5916c comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaebbcda7 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb5cabbd0 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9c6de0c comedi_alloc_subdev_readback +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 0xd5424ba8 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd9eaf5e3 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe0168ef2 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe58e5c60 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe66088b8 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf28319c4 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf6bf73ce comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf91e508e comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x52843585 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x6a1cc394 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7c761b75 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7c7dfc97 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x825cd94c comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9e7d09d0 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd52f575e comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfd2f8607 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x42de3869 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x87240d39 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa5af8870 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb50ee100 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb62a1d78 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xee4df8e4 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x3e31ce2d addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x643cdc10 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xab3da4b2 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x66318513 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0f786d43 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x26e52259 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2c27254c comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5be765bf comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5cc6aec3 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5d0dc5c6 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6a3c19bc comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x803817ca comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x89fbb42d comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8f63857d comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdf884620 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xecd7b436 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf6afacc4 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x24e16664 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x396501e9 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xdd33358d subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xa9297f88 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0333a149 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0505f624 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0b01181f mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1590c096 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2bef5ea7 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x441e15be mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x552615fc mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x69d603d6 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c31ed05 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6f0df9d0 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x724432af mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8b029435 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9ff010db mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xaf0fb5da mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcaa03d50 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdd369916 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x0a2956a9 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xf2e6f50b 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 0x0447c71f ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0d5639e9 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1327ffe4 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x15253d7f ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x19a5677e ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3c4ef3e8 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4a50d92a ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x61f70c7b ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x757efb90 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8d4d3143 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9392cc47 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9e4ab24a ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb9f3e9a5 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc81d111c ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe19aaec2 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe33a13d7 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x45245e55 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x687cdfc5 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x8181b6d7 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa6323e51 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb8bd3937 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe0f8d916 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x19502ddc comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x76e6dc77 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7d3089b3 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa57db680 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xbefb92f1 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe4308032 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf471f8fe comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x326c2090 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0161b8e1 hisi_qm_regs_debugfs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x09707fb8 hisi_qm_regs_debugfs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1450d0e1 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x16b3f286 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1dd5869b hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1f44154b hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2813cc18 hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x39e32b98 hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3a830528 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3e7e7f05 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4bacd0d0 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x50286eb1 hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x514c532c hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x59930218 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6215ee28 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x67dcb8ca hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x72e90fa2 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x73d9baab hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7c32a94a hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x82fd972e hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x844ba284 hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x925adfe6 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x92e2a8dd hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9e483bf6 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9ea0c770 hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa1dbcb58 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa4e73e4f hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xac689ff5 hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xac8899b7 hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xadbc0bcf hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb5e96e98 hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb9c83ecf hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbc67aea3 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc7b0a246 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc7bd9e17 hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcb66a995 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcf8088f6 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd462f005 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdc83f67d hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xde8d0a28 hisi_qm_get_hw_info +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfbdcb95d hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x7d60c739 hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x2daa1971 hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0xbdd0438b 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 0x549b447b otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x01fbfa34 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0260a068 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x065dcb4e adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0db63d28 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1912c82c adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b3c99f9 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b98f982 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x20d4bbd1 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x24070e59 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2601bc09 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x284918cc adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2a7252c8 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2aba0542 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2ba119a8 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2e91e1c1 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3059c284 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x37c738e4 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3c8a3733 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 0x425764d2 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x45380838 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x553fd743 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x57b959e0 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5974f08f adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5bca9040 adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5d2226d9 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x63fe1cf7 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6c5e8538 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x73815377 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x76fb923e adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x776f4a9a adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7b37f24c adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7e55ac0d adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7f9d144b adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x90f08a89 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9129c470 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9aba3ef1 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c45e074 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c631d46 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9cc77ff4 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9da37f78 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e30f9af adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa0015717 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa6bede0c adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa9efc5d5 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaa2561ee adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad1eab2b adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb18ab503 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb32f60e4 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbd285077 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf47685a adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc2716ed3 adf_gen4_init_pf_pfvf_ops +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 0xc5a6ecdc adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc73842b0 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd690190c adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd9b74ce7 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe3d7a3b0 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea80809f adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf628a6ce adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf696b326 adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf7ec294e adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x17e5509e dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x5990a285 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x89757c6d dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0dc178fc dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9546e8f1 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa58e93fb idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbc7a371d dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc28005f4 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd6c77411 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xda5c4d67 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdb9e6398 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe2f5496b dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x194b9247 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x321c755d dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x357b25f8 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x78fff08b dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa0b20f90 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa0ce351c dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xce42b1ab dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd6643380 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd9b8d797 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf804def3 dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x064e6b6b fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1fc3e644 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3f169c9b fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x48052ae7 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x51780f22 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x65673b18 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6cfdabec fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7493b5be fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7bd4f8c1 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x862d52d1 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8ccffd83 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa2427a43 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbe5e60b1 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbe9ac801 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc2122f45 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf67ab19a fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfe775d53 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x55b22c1e hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xaba87e28 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x4f9a0e3b 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 0x6cf67562 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8d67c0b7 ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xb3b13e47 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xe8d4728b ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xfea98962 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x0df0e9de get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x0318a129 mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0a7d1d2d stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xb7205b57 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x086da6ae __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1aa10440 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x20e7e8c9 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2bc813dc dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x32ed5388 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3a567392 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x61f5e232 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x842693c3 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8afab55e dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90864c8e dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90d04d4c dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9cb7835d dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9ccc69c6 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa8096143 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaa9cbdee dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xba386e44 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcc2c0ff1 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xddefe6f2 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdfd6df47 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe0f5059d dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe6c6c330 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe9901ac0 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfc309f48 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x264b2329 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2e97d101 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4b9e0e04 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5d995832 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x95f608b8 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc0fd92c9 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdcb86acf of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xec4bdfaa fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf679dc5c fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x17b3a158 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x51e72e0a of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5add8dcb fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x64b7093a fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x65d651b3 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7ecda0fc devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x81205c84 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x88948c5f fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9d917ec9 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd3932bae fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe1b60239 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe5c94131 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf14eabf4 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x31faf1df fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3c2da195 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x899d0ea2 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe08aa2b0 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xed4018af fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0733d3dd fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3b1b43f3 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3d2ee2e9 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x495b9d04 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5d334645 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5e6b2a6b fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x77bdc3f7 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb9f1d605 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd3be019b fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd4c7b43d fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x95d33802 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xd3495af5 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xf77c25aa sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x510805e7 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x66f6cf2b gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7fd03751 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc67b2d57 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe09569ed gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3e522388 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3e6fd563 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xcc33354c gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xcc3afa41 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf30c3819 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x5d0e4276 idio_16_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x6495f119 idio_16_get_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x68830314 idio_16_state_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x70e2b625 idio_16_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xae1139f5 idio_16_set_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x5a2e3787 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd1d1a286 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x1d70ff38 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x9b33fe08 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x01006f60 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1b8039c2 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 0x69402896 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7dc35186 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x8e17a4d5 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xae8aea60 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xafe74623 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd615ce16 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 0x0b343c69 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 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 0x6ce0ee71 dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9a91da81 dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 0xefbd894c dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 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 0xbadc4dc4 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xfefd2f43 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xa2ee5239 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x31e34b3d of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x374f8233 devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x68642273 of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x86895a6e __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x8a973210 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2a9eaf2a drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x475361da drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6737864a drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x712eba3e drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7ed207cf drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x84b70160 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87581bb9 drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9083d099 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x91d02ce1 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9a3f64d7 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa19d0877 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc3b6e5d drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbd6069a7 accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbf29719c drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc3195e83 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7c90a82 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcef6a431 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde392215 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe3081f68 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xecacf110 drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf326e7ce of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf8d0d761 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x06317d8d drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x12e388d9 drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x1d1d7339 drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4865fd41 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4d4220e3 drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x52a57c78 drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x70cd9207 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x8cefeefb drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xac16b6b2 drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb5ff1e42 drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xe68d45ef drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfbc43bcc drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0dfaf03f drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1fbe4471 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3153593e drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x35031a51 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x500bbe77 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5028604c drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x50d70b7c drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8f164742 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb9b5319a drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfd6ba75d drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x056b6332 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x08f4ca52 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x1ba869fd drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x299cb52e drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x8144232c drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x96ec2a5c drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd357ae74 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe57a7f1e drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1ed5ea20 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x3798c71d meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x53d43355 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xc5ecedf5 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x1bfe5e25 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xc44d8edd s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xc3e0426f pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x28e15146 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x5b1393d9 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xde927d83 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xf2a19b75 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x1ce41ccc rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xa37e9e63 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xd1e55fb6 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xe07055ef rcar_lvds_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0x69660f53 rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0xd3a329d6 rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x563922e5 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xad104785 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xc1a04f43 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x40083795 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x8020e12c ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x9193761f ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x3e9f58c3 host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x93b38966 host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xfd64ba6d host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0643cc0b greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b020210 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x11534d22 gb_operation_cancel +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 0x1a5642d5 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1db439d9 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x207a3a11 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x21648c55 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x27c3d9a0 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2918598d gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3786fdca __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b729f30 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x45430e58 gb_hd_cport_reserve +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 0x5d727f8a __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x65fa57c8 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68fac0a1 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x69ee565e gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6becb1c7 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6f09c67f gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x773438c3 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7939349a gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b2e279d gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7e5b62b1 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7f03a0ab gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x80d35185 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 0x8e7592bb __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x921f1005 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x93f143e0 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x97183f87 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f251cde gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa085549 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae6ff015 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb568cfb6 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb6bf21e9 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca9b3e90 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd1a0355b gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd2327310 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd6144d80 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd75fdef5 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdc60f0cf gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdf2df153 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe296d328 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe975083b gb_connection_create +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 0xfa17e328 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0dd1a8da hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f188589 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11ccdf61 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x135bd837 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x185a660d hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cc00d70 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24f21c3d hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x28411a95 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x28ea2a35 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2e4bd00d hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3cd65220 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x464d4b3c hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x485bc073 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x50e8d151 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x51e55369 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c9dff2b hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60339300 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6481cf32 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x66030af9 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7219c640 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72c3789a hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x759d9033 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c01fff3 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d8f8844 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7da9d357 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7e59da89 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fbb16b6 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8563f700 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x85ab14a6 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x871a41eb hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a3cbef9 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x98b1f9ac hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99b8f320 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa058ae1f hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1f4f635 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa680f93e hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xae521fa2 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xafeea905 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3d4dc95 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5d059b8 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb8502835 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe67bf13 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc716369b __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xca7ec21c hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcbd337da hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd25b176 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe78e133a hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8ad98ba hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5534dc4 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf7e4d3a6 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x001df1cc 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 0x30deef96 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4ecc5f3d roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x601992db roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9444cb65 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbdf24ec8 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd0e6b1c1 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2ad042ce sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x46d2f7b9 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6b8fe5e8 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6d6aa924 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x95984226 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9c7088ca sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa6fb3dbc sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xae1dff1a sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xaeeb2efc hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x4167a137 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xa076f497 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1030490f i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x17ca6cfb i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1b1f83ce i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x22735e41 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x25a89c0e i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x2e8ea9ce surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xb666e048 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xb7b11181 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x03fc1cdc uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xbdcfe388 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf79ed021 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x42a793f4 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5f0f02c1 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6f06d8ff hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x80f3fab2 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8322da48 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8c03583a hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9c490038 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa2052054 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xac28cd62 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb2678c97 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb911cda0 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbcc12d94 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbe92db31 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbeae2bfe hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd5f5974f hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd979136a hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdc0b195d hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe4c596be hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x09c7dfbb vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x23213abb vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2d09e174 hv_pkt_iter_first +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 0x32599dda vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x38413e1a __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3980909e vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4215dac2 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x42c646e4 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x43710637 vmbus_hvsock_device_unregister +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 0x4ce530b0 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4d0ebdf2 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x548521b1 hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x62bbd4db vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6c33706b vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6de6ab9d vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7a3a2587 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7ca68349 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7e1157fd vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8686469d vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x97b3b2e0 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa7e910b3 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xab5997e6 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb89e723e hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb8e88f4c vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xca5272df vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcd75b2e0 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcfcc33f0 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd6ca021e vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdd743623 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf8dde005 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x29177162 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/nct6775-core 0x179bc254 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x203bac79 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x27f7d005 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x3a27a4e7 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x583bee8f nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7c4c2c68 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x029bc803 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2d7c25a3 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3244b97a intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6423ae63 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x673b9672 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x86ff3f4e intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd2e26462 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe2e740b1 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf6dbbc00 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x316eaf5e intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x43fbeaeb intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x46d317cb intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x11a81d8e stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1b2abf51 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1ba49b0f stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2363db96 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5fb62f3c stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x64aaf1cc stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x66eb43b7 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcb210802 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xed2c8d31 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xbc844f8a i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0c31214a i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6aff68c1 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9412cfa0 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb5aad3b6 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x35791798 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x5032e250 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7ca32a8e i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x99f35fe8 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0392fdd8 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x06890db4 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0af3074b i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x16965e3a i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x25789b2f i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x26acff94 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x279d2463 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b78e262 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3109df10 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x31fe7d45 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3447be44 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3cbd1877 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5b52e883 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6f7eea79 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x77ed0f60 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x79ceb165 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x80247b5b i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa9cbf472 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xabcba64c i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb0062766 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbabf42d9 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd26fd076 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdacdd1ff i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf1e99746 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfc79acec i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfda3ff10 i3c_master_entdaa_locked +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 0x38d1028c iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x50a9316d iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb101c165 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0afb21aa iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x13a96208 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x48c79d16 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x624ee44b iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6e10cbf3 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7d589e73 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7eca2ca9 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7f76436a iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x896567ba iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x89ac3674 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa55456bc iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xfb2c1901 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x4c635fc5 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x2b13e554 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 0x89aa9274 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 0x30e5c815 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xa9eb782f devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0b8bd594 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x23197574 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x46846818 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6ee8e011 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7ca718a6 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7f58ebf6 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa4a398c7 cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xdbd12dd9 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe5ce4253 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf83c8343 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfab40214 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x03335442 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0a06f493 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc466ea29 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x4b84c7b5 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00c605a2 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x054c07cb iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0769054a iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0bc6b030 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x115d19ee iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x12c227d5 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x163ec0c0 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c010c07 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20410a65 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3196d0dc iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36df3740 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b9d7886 devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3bc1911f devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x489c9be9 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dcbfb60 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ee772c0 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f8fc013 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50137310 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58609cf4 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ea8125e iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63755575 devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64ce88da iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66634537 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73562fca iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85658160 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e764900 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9814d778 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b63171b iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1e87309 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3eeb39f iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5ad63eb devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa759ed69 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0d75cf7 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4695fe1 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb771e4b0 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8385381 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc02ba7b3 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc23056bb __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5e54e2a iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc81d9399 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8429c0b iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8a24648 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8c047bf iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca2189fd iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca4dc62f iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb0de67c iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce13d828 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce54d132 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde8874ac iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1a25650 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe378dac5 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3f8c9ec iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8328156 fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef90ff66 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4156f667 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x46f99844 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x74b1d893 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x769c3796 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8e544926 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x92d9d0c2 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9705fdf3 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd3a856f0 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd5a4e177 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdebaa1dd rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe06c8fc4 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfb9720a0 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x1b40f4fa input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x8f1deab7 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x56917679 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x19a91162 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2afdce7d rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2b7410bc rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2f13bd0f rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x54fc612b rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x71921dcf __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x89e23307 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8e46c79c rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb6274f5d rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbf637e3c rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcac012bd rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd8325e4f rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf7e8e58b rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb67338a8 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbfbd7541 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd23aa0a9 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5578f53c cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9f1f8b21 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x50e7c8ee cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7c61acf0 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3bc7581a tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8208f4e0 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc1594f8f tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcde3b675 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x35c83c34 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x430ff644 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4b4b0534 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5005cfec wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x58c88b78 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x60013a11 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6a77bb65 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6ed6f63a wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x76b51715 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8111d228 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9cafcf72 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaef3481a wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x1c9c3333 imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x244552f5 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 0xfb2a74bd of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x31cd3b04 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x40b2b95f qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x68ef223d qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x82fd2f04 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc555a691 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd3c43288 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x02ebc532 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x334509b9 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42ea5e4c ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5fae8c73 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x70357c37 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x76ec62c3 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8639c8e7 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe50af1f5 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe84c8f80 ipack_device_add +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2f6eea7b led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x30422826 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x46599cf8 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x52d29e44 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x73913097 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8ebf350e led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4b58b5e led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcbdf8210 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x141d6267 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x314eca76 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7d9a0596 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x81ec7bb5 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xdc2c08ee devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x014711f1 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x076bc4ee lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2153724c lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x391cd86b lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xac1132e4 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbec7f4c2 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc31ce8ae lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc7581653 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xefe1f1e8 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf369ee71 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x022d9960 __traceiter_bcache_bypass_congested +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 0x0fbd03ce __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10351da1 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10634ed7 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x11570477 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x148cf5f8 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1657ada0 __traceiter_bcache_journal_write +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 0x26fe045b __traceiter_bcache_btree_node_alloc_fail +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 0x32d675bc __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33479940 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x377846ba __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4638e696 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4cd44160 __traceiter_bcache_btree_node_split +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 0x5b19d829 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d4ab070 __traceiter_bcache_gc_start +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 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 0x87ded29f __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x87e2e16e __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cfeda3a __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa14fdbcf __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa3969d10 __traceiter_bcache_btree_node_compact +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 0xaf5f40ec __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22385ba __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3324be9 __traceiter_bcache_bypass_sequential +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 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 0xe42d6ba9 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec602ee7 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x047594c0 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x09f536ce dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x120360a6 dm_cell_error +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 0x4263aa5f dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4c674564 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 0x75faa5a1 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x82c4978c dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab65950b dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6977367 dm_cell_lock_promote_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 0xbc70907f dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbff1b229 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc19394ac dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc384227b dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe9b6e1e7 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xec2c3344 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf4e573a2 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfef1faa0 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x8c5d87ae dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe60fd137 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf21dc2e4 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x66225954 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xde803169 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 0x35b8a3f7 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 0x3b02c780 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x506993b2 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc491b4d2 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd54ffb31 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xef0d81f6 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 0x8dfa9458 dm_block_manager_create +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 0x10243a3d cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1ab86707 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x31608ec4 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4b029e20 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5121ca54 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x52f80a3f cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x534aff28 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5baa9fce cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x713b7ace cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x71894bb3 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x83dfdce2 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8c156708 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8d501d3e 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 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaeedcfcf cec_s_phys_addr_from_edid +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 0xd72c5305 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd9b5d294 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xda6932ef cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe79d7abe cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xee29a4bc cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xefb4fa9f cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfb317144 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xff674964 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0948c3af smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2deb5003 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x31f0f0eb smscore_get_device_mode +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 0x3b40b3e1 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x40eaf472 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4c3325e2 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d21a2ae 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 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x86656a88 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x88867336 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8b985a09 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa37ac1c9 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3c14341 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb108957c smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb598de2a sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcaa54f0d sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdb65c5e4 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff1edc90 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4a738cc1 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7e83543f tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x80aaf962 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xa8a3f406 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb052969d tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbc315dd tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xcaede3e2 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe2169014 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe6f04b89 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe7ee5819 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x020b24af vb2_read +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 0x1c60d457 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23823551 vb2_plane_cookie +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 0x349874b6 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x371468a7 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x409ffb80 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x40f78c7f vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4627be9f __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x46897ef4 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4f00d1ff vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4f0a17a9 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x54ce189a vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x623a6cbd vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x69598d99 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6a64f716 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8c7d8cd1 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d37735c vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x91c3625e vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x98eb2514 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9ea08f31 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f7c5876 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa0e11c05 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa965f95c vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xab7a6129 vb2_core_queue_release +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 0xca73cc35 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd5088ba7 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd61c6361 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe5e1482f vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf91f66c5 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x402b62ee vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x836be379 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x04334b8e vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x271a5bf2 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01456eed vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01c3a845 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x02be2b43 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0d81a74f vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1025e6a6 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d399f70 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1ea4d180 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x208695a1 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x20dcd6d2 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x26a942e7 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a89d0ef vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x35151e04 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x35e4fe0a vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43276942 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x46af887d vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x55d53738 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5b6a1890 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5d9d89c8 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6ba832df vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7b577ae0 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x85cf48ea vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8bdae26f vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb3878e8f vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb3f082e6 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb6eff10c _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb9d9ddc7 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbb78c897 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbea71be4 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe1a1e7cb vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf22d40c0 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf4ba2e35 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf7bb4d84 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf7da1229 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xff42a833 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x73d9e751 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x3971eac3 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xc6b8d186 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xd88d9718 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x682cddea as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x51fd0d51 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x6284da6d gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x4d990d70 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x632a32ef stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xb5e3fc77 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb2f7856c tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xc75fdae6 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xfe35738e ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x05afe989 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0c599fd3 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1f1f5863 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x37944f87 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x79840ab7 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x925ac17d max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9a1e18a8 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa36cf504 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xac599c33 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbd8e1622 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xda78bb93 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdf0977e8 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfe334de0 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07566d0c media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0bdbc570 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x145627c6 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1539944a __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18c5a61d media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18ce1fd1 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1a54602f media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1fa05b48 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x339331a1 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3575b9ca media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x366b3d8a media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3eabcd69 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3f8ffd41 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41a3d1a9 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x42dc17e1 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4619bf6a media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47d1c6b6 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x494a0654 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a7a57fb media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4cec1dcb media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52858254 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52a7f6b1 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x555d2bef media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55d2b978 __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5631ee57 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5739ef53 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d881459 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d95af36 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x615c72d5 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x653c4975 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x68359252 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7303ce5b __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73998010 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b5e7506 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9948c8e0 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a8ad820 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b492d3b media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1813f29 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa4620f33 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa6b86f76 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa80891cd media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac76f826 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb1639aa0 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb4a16b2d media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc9511065 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcbdb8de4 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcd765616 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf7391fe media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd25575d5 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd3076bfa media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb1b4336 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe0505d86 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe811698d media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf154cc46 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xf6217f84 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x05546f54 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x10b77e74 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x11c9e96f mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x345a8276 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3584b5f2 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x433337fc mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x59f2bc07 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x672cfb84 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x80f09403 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x83f583a3 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x91e61411 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x95157943 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9b3c0356 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xae7354a2 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb0204ea5 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd001375 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc697ccab mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc8722674 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcf1de1a0 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0c9c15ce saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0d612e44 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0df8cc28 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x26736827 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x331daa3a saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x44263364 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ea62e71 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x64a725ab saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x66bca435 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x74682f74 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x79757d61 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7e437f25 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83f8a783 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9b976021 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa4a33b28 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xacc4be0e saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb7348a70 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc6aab377 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfddc6eaf saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1ae8cfab nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x228d0a4b nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x3b2cf645 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x3cc3c277 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x425bbfd2 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x46de626c nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x47928f41 nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x5c0fcb79 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x974c48c0 nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9fa62a6e nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa8168c51 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc1896a18 nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xce7a6820 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xedc89cc9 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x0e658f0e mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x12c19904 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x449efe17 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x8e203c97 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xd4356c31 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x14c3c472 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x2d0fd4ae vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x4d3de708 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x8bad7a8a vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xa58ca134 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xc45de1ba vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xce50a451 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xfc4fcf39 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x006c8a1e venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x08f482b2 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1b11f412 venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1e4e4eca hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1fd65726 venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x256ee640 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3aa11cb6 hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3cdd242e venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3f618b7b venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3f8734bc venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3f98eeb8 venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x407bf2e6 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x45054d47 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4ace7862 hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4d0698cd venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5773079d venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x58bd611c venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x614e32d2 venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6d3f467a venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x71f6dded venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x73292dfb venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x77a3d309 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7d5d15a9 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7da9d5ee venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8290ad0a venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x88e3fb00 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8a33517e venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8abaec7a venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8d88dd91 venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x92ca71a6 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x985b6a91 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9cff1255 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9de261d1 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9fde01bb venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb1ae10eb venus_helper_set_raw_format +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 0xba863c41 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc49d6441 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc9168d50 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd07494b7 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd19a23e4 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd21da2e4 venus_helper_get_framesz +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd42ed056 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd5e4f895 venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd6d7ca2d venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd8abd57a hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd9c93db3 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe2961e2f venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe9f0f91a venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xecae726f venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeece003c venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf13e8a24 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf1b74bd9 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf53f7b5b venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf6d2a512 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfb0d863b venus_helper_set_profile_level +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 0x7bfb9552 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x23634957 vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x2743e67a vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x31f4487d vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x46d86a4c vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x54046bab vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9aca801c vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xe40d9d15 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1c372183 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x474182cf xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5f9f3666 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6c91eb28 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9f4e6652 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xce0f80e0 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xdfa9155d 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 0x2c4ad831 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 0x858770fc radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb55c5ebd radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x0bf49b4e si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3e268d3b si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3f5d7241 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x6a4be35e si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8663aab2 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x01fb36b7 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0d1a7092 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x200849a9 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 0x40e75bde rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x491b9691 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a77afad devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7260e0b4 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x74227de9 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8012c47c ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x89820163 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x89f70639 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x98248680 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaeba705a devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbecaf26f rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd820f2a ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd2464e45 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xda3661b8 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf7571079 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xbb030d8f mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xd2725a6e microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x704d37d4 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x3b0a9d1e r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xc3397901 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xaed15df5 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x87578307 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xce16ba69 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x67716290 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc2b7e7ee tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xce2c720d tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x77b749a7 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xb921076c tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x9638cb1d simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0086743b cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x023acc35 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x076c6a16 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x37b2fb3c cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x40bf9c57 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4dd1ea5f cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x53c1c0c6 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57a25496 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5ffcfdb8 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6d1f9869 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7f5151f0 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x871c887b cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d5ca69a cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa325ec21 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb689077e cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xddc415c1 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8293ec0 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf85dfd13 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe7d29c7 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xffa6456b cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xbecab0fa mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xc11d31e2 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0b1fcf0d em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d1ed289 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d54e241 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x373ee2b8 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x49b3f03e em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x668aba88 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6a50fd33 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7b051e6a em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8cf8e829 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9cc7c220 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa2f6e389 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb25e585c em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb855ff54 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbb601038 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf137c4e4 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf4174487 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfc1e08e8 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfca3fb57 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0b7e1261 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5144c652 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xcb7f19bd __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xe29c4852 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xffcdd265 __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 0x1b4af4a6 v4l2_hdmi_rx_colorimetry +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 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 0xa3a0b92d v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd6ba00bb v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xe04441e0 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3dda18c4 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x45ac4d9a 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 0x627e261c v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6d9667de v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7ad8c51a v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x98512fee v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xad836c4e v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb27a6553 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc6b7a370 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd6d63962 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 0x0039aec3 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01d6aa0e v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11dcd2dc v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15a61572 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1bc571b2 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e4c04b5 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x26684133 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28af1524 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x410fe84e v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x433a4fc4 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4cfbbe2e v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f9337f6 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x51520799 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x593c9cb9 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6852fbf9 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69158089 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6cb4abe5 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f24313e v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x793a4283 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7941b2d9 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c468ff5 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84a73bee v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84e5f89f v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b3a31d9 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8eb87e9d v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90225838 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9dc1fac3 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ecc408c v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0400a12 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa47c26b8 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa5707c04 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba1042ca v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3b62b46 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc69cf0e8 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 0xc9b93419 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2a185f0 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd50d0bc0 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5ca826e v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd75d1da0 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd99d12b6 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb3dd4de v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd1b992c v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe99ca40 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xffe654ca v4l2_m2m_ioctl_streamoff +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 0x16b8440b videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26793df0 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2d82d337 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2fab4a34 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x30598c6f videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x316a57ce videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4421bf91 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x52baa78e videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57f01416 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x63178cdc videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77de4c60 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x938008d9 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x93d32ac5 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95eb14bb videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb39ddbdc videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6866111 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6c37395 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbf11f956 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc1db1fce videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc3a907e5 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc68e0aec videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xda75ae8f videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe9b56156 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf59ce3be videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1aa123b8 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2c1d7a9d 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 0x8805abf5 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd86a7a78 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x50e45a36 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x690a27fb videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf277c160 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01df475d __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0522397b video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06909fc4 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c5f5767 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0cf12716 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0eb53cb8 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f1cd3e8 v4l2_pipeline_link_notify +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 0x1a4d83a8 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f28b686 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a016f09 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f4c7cb7 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f99e72f v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x315f85e9 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31741d72 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32906150 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3685497b v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x410f9ec0 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4220a219 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x426140bb video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4323e56b v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x433869a6 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4436cad3 v4l2_device_unregister_subdev +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 0x47cfedca v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x48cd19d2 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x538c57a8 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x552ec51c v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65806730 video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67af3eea v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f28e2ba v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70c2fc18 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x722cbef5 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7451578b v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74e1f213 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x762ef9d9 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ad90c3a v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81c02de4 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82ec881d v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x842143e1 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x857ad0a6 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87329483 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c3a0152 video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f86d973 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x95cedc03 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ce6cec0 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac8e43fa v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb022e44e v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5831a99 __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb83648ce v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb997d6fa __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba5f2acd __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbcd7ce7d v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0003e01 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc011a8b2 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2ff65fc v4l2_fh_open +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 0xd02a88a5 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0d96693 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1e1d817 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb3855d9 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc9ef7bb v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf3ddbf5 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3e05d3b v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4376627 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4d31c60 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe758121c v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe780e99e __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefa49938 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfaced2c0 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x956d441d pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa53603f0 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe7425b2d pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x03db67f2 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0ae36df9 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x31ce9bf3 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x42595046 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4474597e wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4827e64e arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x489c5591 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5ffb7bc5 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x63048c4b wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x67c1badc arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x72f65abf wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b6aa3e cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8de76183 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8fa50e82 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa1b7c133 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb263fbbd wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe237980 wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcc9dcfce wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xce7a97a0 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf33c02ce arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf5d422f0 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1bfb1824 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x2807c96b atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6ea0c7d0 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x948f9092 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xab4288f1 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc74eada8 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdd915da8 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xde522bf8 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf13168ed da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0ef6eb77 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x33e2e346 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x626a644e kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x699381d8 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x717c79c4 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x76a30c6e kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7a53f5d8 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa03101b3 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x04a00db0 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x6d63855d lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc4a2e2e6 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x411a694c lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x514cfd7e lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x53bb03f3 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5c56eead lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x93627c80 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc1a1099f lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf2a8808a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x612bf847 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9f4ef6dc lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb3d4c35d lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x03dd6af5 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0472b42e cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x047f686e cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x133caf68 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1ca7c39e cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1caa1fde cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ed558e6 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ed884a6 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x33f3afd3 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x33fe7393 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e611ab3 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4747a922 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x474a7562 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5502644f cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f92de92 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f9f02d2 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6de045ea cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6ded99aa cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6def7236 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x70c6b2df cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x70cb6e9f cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8796384b madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa723ef26 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa72e3366 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb53377d5 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe416f22a cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe41b2e6a cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe727eeff cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x536ff62e mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5c2eb8d3 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7897b44b mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x87b644bb mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x95b9b1d3 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc70c0f9b mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0ebad778 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x280252c1 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x36ba139a pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3e02eb96 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5b8a4419 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7c2d628a pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x90fec2c2 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xad1eca39 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc3121334 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd0ee0c70 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdf125eea pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xedf260b4 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1ccbb619 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xeb892f33 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x00d5036d pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x955b7f3e pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa4084e5f pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdd8dc218 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe2cd7a82 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x8a3e216d 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 0x0a8a6c36 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f1112fd si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b082685 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20c8bb0a si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x290964e7 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2aa3d261 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33a87da1 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b3df0d3 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x572cb5e0 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58a5efd1 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59a05082 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59bfa4be si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f886dcd si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x617ac073 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x62b4719b si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67e6da04 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6dc78933 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6eac567d si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f6b41e9 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79cf0709 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7cd8b966 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8add3868 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c53380d si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99eaf794 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa34de2d9 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbbc57e4c si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc68b0c5f devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4ae5f50 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd5b6eb10 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6d5d677 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9542a4b si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3a3bcfa si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf8672c52 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfce8477e si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1560abce sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x45393151 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6f84061e sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf7b2ea56 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xff74ffcf sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x4d2811b9 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x08ff5be0 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x684001e0 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x37276294 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8f1fc4c9 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x97db0362 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc92179ae am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x2ed977c4 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x9dd04fa0 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xf03fd421 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xffc8c365 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x18699bbb tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x893ef4e4 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xeaa084b5 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x7dcafa14 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x19f7b53b alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1b143cf9 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x648a2544 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x69adc13a alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6e0ee627 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa2e0beea alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfe7eae92 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0980a878 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1271933b rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1e4e9f4e rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x215d6720 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x22f41e6f rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2c74cfe6 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3d65af2f rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3fe87168 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4f4281e5 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5af1b1e5 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5d5ea023 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5e38f09b rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x621d5c21 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x66901fd9 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x70d10ec4 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x80264fdc rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8d73d3c2 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa9c45d61 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb00c4086 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc0c24203 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc9dc0599 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcd86ae53 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe8cafff6 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xed79f4ab rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x227192c4 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2e1f3bb4 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2eb06968 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4e305ab7 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x52156d8c rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x58f8e43b rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x608b4c95 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6577fccd rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x764f516d rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9a3c0038 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcc976324 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd58c9a5b rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf18849d8 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x099a6e77 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x88f4d6fd cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8f2e8330 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc1810245 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 0x2a8647a9 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x575296a8 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5eb15943 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcbe2aac8 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd0139866 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd4720463 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd6b59f51 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfec74470 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0f042aed lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1e056a15 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3d5136db lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5a3468c2 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6761fbab lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6d32277d lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc5bdfa8d lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xebbac55a lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x8f405ad3 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x27b492c3 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x80049dca st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xb98ea18f uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xd451ac5e uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xdd5eec70 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 0x5cf423fe vmci_qpair_peekv +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 0xc955e37f 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 0xf642bcfe vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x21e34ca9 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x44349071 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x79f3855b dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x1d523673 mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xc857038c mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xd9b17062 mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xdb9fd5f2 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x2d6bdd1a renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x50b799e3 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x07171785 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b1754c4 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0c588b2e sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c64bbdc sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x282366ee sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x29970452 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36d6d46b __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x43a68e81 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x54ad0e6c sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6076d25e sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x67291b1f sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x676fa82f sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6d5f6ded sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e1b6293 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81113ad4 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81a77ca8 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x890130ac sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89afa44f sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8f6fe72a sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8f9ec9a7 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fac2caf sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa027b928 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0325c35 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0c70385 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa21738b9 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa7f7c3dd sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xab744d5d sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb4307adc sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb914a1da sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb929957f sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xba5621b7 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbbf255d2 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc279201e sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc36ca4da sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd20004f5 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd23e48fe sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdfde49a8 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe01dc476 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe8b812f7 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeda08318 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf34d3090 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf914ba16 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0fff1d10 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x101dfc31 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1576c2c6 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x578b3fe5 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x76414a2e sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8f4c6e03 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xacbe008e sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb94cc32e sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdf047ba1 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2697e209 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x308da17a 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 0x4584ad81 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8eea4576 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x915328ee tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb7107d1c tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc9e62d5f tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xede11fd6 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf8a1c1cf tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2c96a796 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3ee96e6a most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x477865d7 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5c91dbdc most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7a49c172 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x897e13d5 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa20a6dc8 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xaa7ece01 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb00dbb57 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb28c7389 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb913b0b1 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb9320639 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xda95ea58 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe0aec08c most_put_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x00d9cd90 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3ff0e878 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc2eecdee cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x20647a8c cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5e36315c cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd39db50a cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb1a31c0b cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x28ddf3f8 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3679a62c cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x49db7ba6 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x286fb225 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x496e8970 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x008e0b70 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x008f77aa of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00ce2660 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09ed5e8e __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e4a8049 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x113104d1 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x134aff4e mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x160f2659 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18a46a7a mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a951569 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b131c12 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d05aae6 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20082454 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26847983 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x29ac7afe mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e03bcff mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2fd46a3a kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f22e39b mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fe4f6a2 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x522d055c mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60393bfd mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66e28a63 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66f12745 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6763263c mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ea12134 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x728f1a22 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x76d8d2a8 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e64e450 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81ae31b5 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81af5fc6 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8547bad8 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89666233 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8dde8185 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90f67833 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1b994cf __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5bdc5a5 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6d4365a mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa94dab0c mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa6b4dbd mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae7b2a90 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0ad544c mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1aa7d58 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2354672 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb94a38a4 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5137edd mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8a4dfac deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdbc2d70d mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe86a9dff mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xecb9c4cb mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xede0f79b get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee7103b1 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee9df7d3 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1f568b1 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfc7f36cf mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x11896495 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x825ec07a add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9fc5bb80 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xacc054e8 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf8a8e968 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x164ade5a nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1aff7a8d nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x27f8cf1b nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2ac22dfa nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x443139fa nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x454e4d41 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5b30a924 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x78d6c61b nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8134320d nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8271df81 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84ff7292 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x89a9e4a6 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x91f93cf3 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9f0703e9 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa087390c nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa81cc770 mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc2bc948b nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc4404da6 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xebc006f4 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xec893921 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf4cdc7e1 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf81ea242 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf95145c6 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfd552854 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfed6c2fa mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xdc1cb9ee onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xe22567a5 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x1faf4085 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x7ff65c3f brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xff956864 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x2d7d0c6f denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0ed5eac5 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x19a496cc nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x308dd462 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x35a5c2b1 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3df60786 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3fe404c9 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x48294ca5 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x53fe2ea9 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5b54949a nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6058544e nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7e46e837 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8232e46f nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x886f42a9 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8ccf69de nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8ed6b6ff nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x98a90479 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa1ea602b nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa922d21b nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xaf241eaf nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb0f412c1 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcdf33e2a nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe364ccc4 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf88dcc15 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf8ab3696 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xfc11a858 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x67706474 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xbe1c3bee spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x29014a65 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x33a4cf77 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 0x47b90d50 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ae4956b ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6161034a ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fb60b01 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9414f3a6 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc09db0e1 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc88ff400 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xca402308 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd35f9be8 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe7f23614 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf1497602 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb4e8f5e ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x116f0e2a mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x166a5baa mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x16eea538 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x480b4ae2 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6048d728 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x656e35dc devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6daac12a mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x919222ac mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa138ccb0 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa95460f5 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc5313aac mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xca549e50 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd4f4d4de mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd8111a9e mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x93a6d0ef arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xa13a335e devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0c907336 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4788d0fb alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6458cb20 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6d116e66 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc3b3bdb1 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfb77b14c c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x770bb610 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x88e2db1c register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9de935ce free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa499f7b9 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x02174822 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0cf590eb unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0f5715fc can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x155ee353 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x15b307ef alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1ad23a0e can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1c941fdb register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23d20c77 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x253b70e7 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f751f96 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x487f34c8 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x53a569b5 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x55b685a0 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b4ccdd4 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5bb5ceaa can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5d91092a close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x62078af0 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6687bae1 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6a483c85 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8bf9d34b can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96d0c743 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9a5d6cc2 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa4aa821d safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaa22c317 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb09148d5 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xba50f3c4 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc8f15a7e open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcdc6065b can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe248f374 can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe587c911 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe67a9675 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf9fc475a can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x160de132 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6402e2a2 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7ff8ee3a m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x80c3bb0a m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcceb9df5 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xceaafac4 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf7261e5d m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfd99f6f6 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x27d0261d alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x397280ff register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa6c42dff unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcdcefd16 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xbec6b3de lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xc194a427 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x9e3ca1f9 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0641c53c rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x233beba5 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3f0bdbde rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x42bdc1c9 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x433665e9 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x51e16e92 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5bad50c7 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5fccfc6b rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x69d45a58 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x84c358be rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd4ac4304 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd7029d56 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x792fe5b9 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xc44a3383 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x859639a3 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xaeb4d9ae 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 0xe8ecfcf9 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x12236c07 fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x15a4fd9d fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x35b9b59c fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x3aa3f493 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4afe6bde fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7679b5f1 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x82c8c5f8 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb478c307 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb7d5eab7 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc12147ec fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe3faaba4 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x02091442 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xe2ca4120 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x28a71c2a ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x37d33730 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4387b2ed ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe15d29e8 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe812e973 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x3817a4b6 otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xe55462d4 otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xf101935c otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xf6116466 otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x054e043c __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x055493a6 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x066e42dc mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07cd9545 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0859a563 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0add3501 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0aeef81d __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dc82afb mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14853dbe mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1676b745 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a417715 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c091392 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e2a6b5a mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e855274 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2095ed4e mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2476d0e8 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24b39f77 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x251d8a9f mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2594d36f mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x265467bd mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26d6c35f mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b8db4fe mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2df43bb5 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3025ff32 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32efb3e1 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3987fb5d mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a9b039b mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40d453e8 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4118fa91 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x414e9c80 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42a08ffb mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4327788a mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45230fdf mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4579cff1 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48417948 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dcd0d62 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f11cb72 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52b66bf8 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54d031d4 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57ab7f4f mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58820d61 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x592b8805 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b1da7dd mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62c16c17 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x641f9168 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65e75a82 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66b3b07e mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6708b23b mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6756117a mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b1d311c mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72f33680 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x735bf990 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aa15e42 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bedde00 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8123b278 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x847184de mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8526f681 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87c24eb2 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87dc9d3c mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8911a932 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8928b787 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a0ad7d6 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f4fc096 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x924be321 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9352c34a mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93c9c887 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93e153e1 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95c38b93 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95db440f mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ebc7b2 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ebda6e mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9827b00e mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9839a514 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9955eff1 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aa10353 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d003c02 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ee3ba07 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa24e020d mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa37a1f84 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa385f709 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4e87b89 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9b5de12 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab30025e mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb030025b mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1a40366 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2a8da42 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb46f2569 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4c2f808 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6a64b92 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb73a6a4e mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7a4a9cf mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb85c145c mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb90f3f3f mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd31f08b mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdd84e8b mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc102daf2 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1ea0ff8 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5849153 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5cbe9a7 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc817020d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcae6bdf6 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbcf5640 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc3524b8 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd4a31de mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe02486a8 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe267d96a mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3216ebf mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb4d877b mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeba8076c mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebfd50b7 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec6ce2de mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecbc1406 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef3341c0 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf27d9225 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf728513e mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf75343d8 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbe7f8d5 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfca4efc3 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcc0773f mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdf05c43 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffaca555 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0321ffda mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0664a38d mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06b64071 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06d79ba0 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 0x0a2a6f43 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c440b9a mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f482dc9 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11c0fb5d mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13092edf mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x139db902 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x189c1738 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19f8da71 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21b52558 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e813f36 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30761ffe mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33a1bb33 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33fb1bce mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37a56e5d mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d35a71f mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42528f2e mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42c837b5 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4603bef3 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b341855 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d1a3d9b mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e28441f mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e343dfa mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x565b8dab mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5721a5c6 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6d4c3d mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d7ccf0d mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ec33fba mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x641a1fdd mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6faf8b61 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x715f1641 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x733ae01b mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bd9da56 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c40274a mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cd92b5e mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7eb928a9 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 0x82560125 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x863992d5 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x894113c8 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e985df8 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9195bbf3 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a78f985 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bcba7b9 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d7d45fc mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d842ed8 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fb54eec mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7023b10 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8347fa0 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1a01216 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2b95feb mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb627235c mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf6b818f mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc26011cc mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4373654 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcca58be0 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2ec5951 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2f47709 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe043347c mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe53cf1be mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea1f56e3 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeda3f958 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0794900 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf21741e2 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfefc1dac mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x2bb66d2b ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x2c816613 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf13f86dd ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xfde6210d ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4ec1adaa 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 0x018d7fbd ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02a2658b ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x036e9880 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b330734 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0dbe8439 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d0b950c ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27af0f0f __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33e5bad8 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41b3a558 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e3125c9 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ec9888f ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5694cf02 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a325859 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x614192ea ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6210e73d ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x62d3f1af ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7370ad28 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bdb0ef6 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8136cef7 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8662913b ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8674dd8a ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87569192 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ca8b059 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0609415 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4dd6128 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa97464b6 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacebbc86 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4b3d2ca ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc72b997 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbdbc22c4 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbdc00062 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc458e4f2 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd05dddb2 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc90dc1e ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe217223e __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed3983e7 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf83cc745 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff4de307 ocelot_bridge_num_find +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 0x22b9ebb9 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6c196118 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x768a4a66 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8076a3b0 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x85f9f827 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfc536f3e stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4ecf6406 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xac5cbe27 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xac7ad31b stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcd039ede stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdaf23cb8 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x070980c5 am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x38e92f12 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 0x6ab9a4a1 am65_cpts_release +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x828c824a am65_cpts_suspend +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 0xe0cbdf78 am65_cpts_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xf8666bd5 am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4111d032 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x66b7b163 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xaf561040 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe0cf1583 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x8573991a geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x113f9391 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x70b31009 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x740bfe19 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xbda93ee9 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfadb60f3 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x680ccf38 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3a253702 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3f3a66e3 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9f204f13 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe4b5b958 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xe280563c mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x828db9b8 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x3e76eedd net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x415fc154 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0xe7d00af1 alt_tse_pcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1437c7c1 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1ae620db xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3bccb3e3 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8fa5cb1b xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa2f3c14 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xcf2e9002 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd4b93016 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x03bf6eb4 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0711fd28 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x097c2f10 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d322fc3 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x15006090 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x164d4bc8 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1cdfb09c bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1f23b27b bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1f57f630 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x235037ec bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2438a65c bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x26eb09b6 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x28ad4594 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x33192cca __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x345fbcea bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x35453ad6 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3802271c bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ef003f0 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x43389715 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x43af744d bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x553e63b0 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x570f2e21 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x593bf81b bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6a35fe07 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7233a1f7 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f4bc53b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x977546e8 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a11235d bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb4a93f2 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc8b5cfd bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda426574 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde068775 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe20c93a bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xffd52db9 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x52ad5aa5 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xee37fe6f bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/tap 0x14100338 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x4413b946 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x46bbad06 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x73b0ba16 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x7efc1ba4 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xaf1e1f2a tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xb47bf095 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xd6a360a8 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xe6360418 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1150bb2a usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2cc8662e usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6b2baeda usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x99dc3c3e usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa289caaa usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd8502f20 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xff12bca4 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0520f976 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x074c8d1b cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2910cfae cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x61e418c6 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6856284a cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8bc889e7 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x97aff00e cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xad496987 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc32ea9c8 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd3644124 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfc8d51c6 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x0c899130 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0e512873 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1392f8f5 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x417c47fc generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6c4d6bfa rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x74273640 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe8289180 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x126284e7 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14d2e854 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e60d1f3 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x226e50b7 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2a3224bb usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x42a1d8af usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44fed946 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4949ffda usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54219562 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x58302b3e usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7cea3d36 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e8c4d83 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82bb99b7 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83e417f8 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x85c9673d usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x878796d8 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8bb80031 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x983c7782 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9be43e8f usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d437ccb usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9f159322 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaba36f0b usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc068ef74 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2c1d37a usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd74109d5 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd99cb863 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdca8b69d usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe66efdca usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xedbe7b8f usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa934e20 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfbd0559a usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff5b72e0 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff795133 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffdd9df3 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4e5bc090 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7a0277b0 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe1327221 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe594b4ed vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x54850750 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58edde13 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d7c31da il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6af9a219 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ff1cc4e _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93ebc358 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 0x1374025f p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x22232d0b p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2523a320 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x28e173bb p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3167a11c p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x47c295e9 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x629ad9b6 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd4c55ed8 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf260636b p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0fd78a84 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x206d15c1 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x21d31ef9 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4400fb5d lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x75a4df7b lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x94fa3e71 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x96141fe0 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa26ebe15 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa4d1a947 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaf7a100f lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbc9929a1 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xca53ca6f lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xccc250c5 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd401037d lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd5782651 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xead2c935 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3e12a492 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x572ab0fa lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6afa1149 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7e28620d __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc8bd0f71 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xcd95d883 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd2a9d179 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe73e67bc lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x03e84c09 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x07fb4342 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1172db56 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x14bb04e1 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x167ddcf9 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x428f2923 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x450b4f41 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4838ce47 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x488075d0 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4c2b4ad4 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x51a5aaf3 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x57fb7eff mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x781d979a mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x82569a05 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9026eb14 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9735ce1f mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb133a700 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb5c540d6 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc183b9ca mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc214d64b mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd381fdbe mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe22ef13e mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf7946fea mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xff57eb37 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0292f5b7 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03e6e8a8 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05bc6930 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d16ddfb mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0df0666f mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0effc506 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x100aa5a3 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1151b91a mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x173cb616 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1bec9caf mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c6d6a5e __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d3b9737 mt76_get_rate +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 0x226a0ce7 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22872fd3 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25599e1f mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2709464f mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2bf6ac3c mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d75a908 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d9fb37e mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x330bdb20 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x379c03be mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x390c6b90 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d694797 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x404a520a mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4136a60f mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x457388b5 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49152208 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56bb28fe mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c51b30e __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x64356fc1 mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x663131f6 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66f0fd7b mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6bead1c6 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c06f76f mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f5246a2 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7427a67e mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76a54ebb mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x773e1a4d mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77ff4aec __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x788c2bd4 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7896e4a2 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7eeaf362 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81464d95 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8355e87e __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x85d458d4 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86bbaf18 mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x877e5403 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87de7508 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b0ce355 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8bf8b89c mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x910f9d7e mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x91e4efa6 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9280c5b6 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96068c0f mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99858054 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ae21b96 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e5e3351 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa277a828 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa461094b mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5390a42 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa936f06a mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa969d5a2 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9bb914a mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad4edd48 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe055634 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe0b29b8 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3dac4c0 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc436a699 mt76_get_txpower +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 0xc79daf86 mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc819a6db mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8c8ad1d mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd4be71f5 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd519aae2 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd71914b1 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7425bdb mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde493021 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6bfb343 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8bb451a mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf00e8007 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf06d9c04 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1dcc6d3 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4a963eb mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa9b8ee1 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfee8e320 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x019d0e66 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04a6e30d mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0be1bff3 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x105205b1 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1af0222a mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ce80745 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1cee3caa mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2069ade2 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x23937754 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x326f1094 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x35060623 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x36afe44a mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3acb9e3a mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3de4c379 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x486e58ae mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d5e5a25 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4eac2d94 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x513f9229 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5603fe8f mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x57d43135 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d25cb7f mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x608315f2 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60f1b15b mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x64e29ae0 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x68b15598 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6a5081f3 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ad60448 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c6295d6 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72eee344 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x772ef6d1 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78ca3a6e __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ba4ea75 mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e516aa3 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f23ec85 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8d6cb2d9 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8dac69f3 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x960dbc69 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x96424fa7 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x98baa19e mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9cbbd3e0 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2207c68 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2343b88 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa51ba364 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa6d1ab3f mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa8f17364 mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa91b1c94 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xacfbf6e3 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf839e2e mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb0b11948 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb132f2d6 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3a0a91d mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb51724e6 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb815bacc mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb88c59f8 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbef09c1f mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbfadf527 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc377be32 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc4636239 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca53b580 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcd718624 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2e8707f mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd3228d95 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd4af8965 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe26c2960 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2e0e198 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe35824d2 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe49f4a80 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe4d570d6 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe749c3ac mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe78c5f18 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8a9d206 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xefb2fcd6 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf31b81e4 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff705eb7 mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0cb27580 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1acdee67 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3537a478 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x61fd6751 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x75577152 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x77185dd1 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9f91e562 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xab503256 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xcf0aff5f mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd5ef958b mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd9d5f9a2 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdc2d911c mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdd9953a2 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xde321f2f mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xeb5533ad mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf3fb4432 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x072dc533 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x16dc8580 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4a0ce712 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4d96de58 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x53a5f732 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5e3d5ef9 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x735ddddc mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8903f496 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x94f8d050 mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9efcd537 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa2288db8 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb8145ee1 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc6ad7b0b mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdfa63dc1 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x129d54c7 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1d4f94c6 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1eff81d6 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x36a5a95f mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b4f1990 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4ca6792e mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4cb4f91a mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64bcaa11 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x68363c18 mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6fd3c784 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7636335d mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x84ca3c85 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ec991f0 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x920c909e mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x92425bea mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x95833530 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9bc517de mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa477c523 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa6131ff1 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb004d920 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb2b16b50 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcc902de4 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd339bd9b mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe9d3c58a mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeef167e6 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf01ed278 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfb123f10 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfe67a948 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x1e46cde2 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x0a5a9b7e mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x523cf349 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7a16ca3b mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7f8406d7 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x435efdb8 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x54b8342e mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6ce408c4 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8f27b335 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xac428863 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb9269c26 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xec69d406 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x046891f6 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0845e8bc mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x08e7c6c5 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0dc6192c mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0f5079a7 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18ce22c9 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1bca7597 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2474d81c mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24eeebc2 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x275b5cb6 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x299d7094 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2bee0037 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c8899c2 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d0d59dd mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2da7a8fc mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x319f4352 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x32c7c9fd mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3bca554c mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4300a98e mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45325a6d mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46d58386 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4a35c317 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52426047 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5289ae9d mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5860d6ba mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61dab558 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x68dc58f9 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x68f8dd4a mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a188a58 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b72d217 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c613e1a mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x700716f5 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72b9b84f mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x733f0c7f mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78f4e801 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79e0348b mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b953c41 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f904ae6 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84a96520 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x856c548e mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e726b57 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b6deb3f mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9bb6c6d2 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa32b556f mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4674dac mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4d1fd03 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa52030f mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb2f99ed8 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8fb4c2c mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb956f59e mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba2a6cd4 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba4de012 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb373cdb mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbcdea846 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1bd5546 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4d846e1 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd900484b mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda50fe94 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc1c689e mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd30a9b5 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xddc8932a mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde3e5115 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe1c4f0ac mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec7b7d4d mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf83f409a mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff096ed0 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2a51b1d0 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x56ff5b02 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5ba5af89 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x83be38c2 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x875af500 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbf31c9c5 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xebf134c8 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xfa12c329 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0f192c99 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x12c3d3ef mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x250629b7 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x285f263e mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x342c5473 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3cc4bc40 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4f6aa9b2 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5900b8df mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x63cadba4 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x74a8c61d mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x836e5ec3 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x909f7a41 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb5808d76 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc659af9e mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcf851a76 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd911c3f0 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe31d7aa4 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf9bcd3d5 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfa423853 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfbd8498f mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x074fc1ba mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x091105af mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0d97a101 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1618c4da mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1d648779 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x530a0952 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x59a2d1e3 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x68e37380 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x738aac72 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x87d5c994 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8fd98e1b mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa9461fb0 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xaa6f014e mt7921_check_offload_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc2fec4a6 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc6799383 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcd7311d1 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd1f7c7cc mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe11d858a mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xea35bfd7 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xeff1a4dd mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf3dca3eb __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf8918cd0 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf968f8c9 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfe7a0d5f mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3285642e wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5096ee7a host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x745fe0e0 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x80b34cbb wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb704b0a8 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc637716a chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc6a59161 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x084dec31 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0fbd6512 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2da3d658 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x42e56890 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x785e6b1d qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x96b3f2e6 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0150f2fd rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c86e6bb rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0deb5a26 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10e68627 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a23140b rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a89c3db rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x32c19db6 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x34fa6d95 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x367db3fe rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3972ec0c rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x443e6afe rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c341b12 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4d085aa4 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4d2320ca rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5242e062 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54685bc6 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c5b9f16 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f20af0a rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66f46f97 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6738ade7 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6cbf9064 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74c38074 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7eb88a22 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8234a011 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83614b97 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83f81abf rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8f3275f0 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x900746c1 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92840a1c rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9e10799d rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa054b5b8 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa22b113b rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa569c1ff rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xafaa18d0 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3031e6f rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb95d6300 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf2dd9ff rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc6d55bb9 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc7c114a9 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd4eeb2ad rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc4a9a12 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe488c064 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea0b4d5b rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfaf818a4 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e383ab5 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x19ffb366 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1a13ab0c rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2f2f33f6 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 0x3bbcaa70 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 0x40b861ee rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4b8e269a 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 0x54de29f1 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x851c3d80 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8bae88d9 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97c86ef0 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 0x9fc4e557 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa1afcdc6 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcb6cf655 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf8978297 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf9ee6a79 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x079e6731 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x090ad183 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10898372 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12b83c38 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x152fd920 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b6ecf51 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1cd902f6 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x225c5f95 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x27103b35 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2bfc1bf4 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30c8388d rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x32390adf rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38064647 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3896a2e1 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38caf23c rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3beda7d6 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x429faa4a rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x44a03688 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x46a8499e rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x476b94c9 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ae9a1ea rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ef6d42c rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c0dfa4b rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5ef5a88c rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64bd1bc5 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x663e6a3d rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x667fb404 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x67783d32 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c83d469 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6db7d7f4 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73a02f29 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x794f3afc rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8132b271 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81b72ab9 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87962c1f rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8f45791e rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaaf843b2 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb6b79889 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc77ebf34 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc86d9ae4 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5d2d055 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xee7f30b3 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf28187b5 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf354de89 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf80412b8 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa081ed4 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe5c33e1 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x01185bae rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x285e8311 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x41dcc2b0 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6a2d2529 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x717f2036 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x19b23428 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe5f3ba51 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf4855807 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1fdb4877 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x37eba97b rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3e16e2c6 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x487320dd rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5e866568 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x60fe4e54 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x729daeea rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x78c62d07 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x85e2db30 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x85ee6c7a rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9636f9b7 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa9c2d300 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb2ed3f52 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdca495b5 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf6eb72e8 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf8101027 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92200601 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4703642 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb720c5e rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7c205ba dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0156695c rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x028965d7 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a119d46 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a4db1bc rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x11b197df rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2cfda8f4 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b8d1207 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x76155042 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77ee06ea rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7cee8d58 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8344473f rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x86f7e32c rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x95049de9 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a67787e rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9b076030 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d59a8ee rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa9cff812 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa5b5cfb rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb370ec54 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb779a383 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd4af8ef rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc2e15e8a rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda2e5513 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5b321e7 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf2079e81 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x054bd7ac rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b0f82d2 rtl_tx_report_handler +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 0x31e11d28 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33491a29 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b3ace34 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4bf6dbe8 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54f5e7e5 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5af72343 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fb3a1e2 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x677bd806 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b663622 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6dd57c4e rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e0a7948 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82ae9d5a rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3d31136 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7231c79 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xacaf896d rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe4ca265 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe52094b rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3671c51 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc63c992b rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0df0dd0 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb772c09 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe09d1899 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb88e92f rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x69201efe rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x73c849b6 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x89d89806 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf568172c rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfe61d927 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2986af60 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x780f8ea0 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9a93a320 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xae37b3c4 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x399f287d wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x735e3488 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xba3cf595 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01ad868d wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02c6df8f wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x037b9fc5 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ddeb95b wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ef678fc wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b306e98 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ba8ed66 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23ff5f47 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x25f6bcb8 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x292b7f46 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x30679897 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x30caeeba wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3940064c wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x39a7c8b7 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41c4d2bc wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x429f7427 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x449125b7 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4961580c wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4bdbf79d wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54fef232 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57b23dfc wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5adc21c8 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x636f3e51 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65342017 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74ce4a58 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75313fa0 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78f91f9d wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8de99dd3 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91d3cfae wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92905b3c wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4e36c98 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9a4dbc5 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2dc8599 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9250950 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc0a32cb9 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc542db5a wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd12c1053 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd63caaec wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdae71e7e wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdfff25b1 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe083394e wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe950ad47 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6d9ddc3 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0b5b0ca3 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x896d84de nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xaab94434 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfb9353dc nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4ac8e854 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x50a943a1 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x547928ee pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6029a79b pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbf1f2c34 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcbfb32b7 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe884bb48 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x528e55a4 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8df5a0c6 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9cb4475e st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb08a8c44 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb8077f26 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc9a417e4 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcab6bb89 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf5ef9c26 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x647a6150 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xca48a151 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe4eec33a st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5325df50 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7bac87e3 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 0xbeb11580 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 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 0x42c187a3 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xb4710a49 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x399d9ac8 nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x55c3288d nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6adadbb4 nvme_auth_free_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x78715f89 nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9070925e nvme_auth_extract_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xdc7351c3 nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00d4065c nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x059bb3bd nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06d19472 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x107d6333 nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1144c3f5 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 0x193046d7 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1fe6462d nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x26521655 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27684b82 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2930b318 nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b4db7a7 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x304529fb nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e7c5c85 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4c786689 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56997c48 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58b57aea nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6963fcfe nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69b8f594 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b1b09e7 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d79f71f nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6dd870d3 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x72985a3e nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x763f0989 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ecaa138 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x84d05a08 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x997a9294 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c814f2a nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa00fa40a nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0443680 nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb2da9c33 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb50e726d nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb68fe10a nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb869bbe6 nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc2df5eb6 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc5581ad8 nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcaca903b nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xccc16a0e nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4eb464c nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6c6d86c nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6f73137 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd94cbe53 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdb33c0b7 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd9ea770 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf36660e nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8585993 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9d4fa5f nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xebabdb8c nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec635fd4 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed0d6546 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef4f690f __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf13ecb10 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3dc2f06 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6c0e20f nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfdaeb19a nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0d3be0f1 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x53705f30 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x57ea8bdd nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5e78de27 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6d64fa0f nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7498de97 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7d7c9aef nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8a48ab4a nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa078e1ab nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa29744d0 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa320bd0e nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x21e609f7 nvme_fc_io_getuuid +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 0x547c82da 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 0x2499a281 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x42914b8a nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x47ba5c0e nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x55304ad6 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x73f17fd3 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x77cec5bc nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x917e7c44 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x91c707c6 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9bf4ac87 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe604f74e nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe625dec4 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 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xd927f222 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 0x1e68a642 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x365b26c1 arm_cspmu_sysfs_format_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x595dcafb nv_cspmu_init_ops +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xec29df65 arm_cspmu_sysfs_event_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x050f4c64 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x16a4b2e1 hisi_pmu_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1c89cb6f hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x42107bd5 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x49f351bd hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4acdb25f hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6cd1406d hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7c33fa54 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa3952328 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xae9af5ef hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xafec0e0a hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb3797688 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbe4a3f9f hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbf00cdeb hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc11a10cc hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd02d0ca9 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf7edd288 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x5600a5a5 sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x03707140 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x09ab7710 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x13b2ad8e tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x14c5ba7c tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x16d57976 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4ed2305c tegra_phy_xusb_utmi_pad_power_down +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5c9c0e1d tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6adab2c9 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x81fdb500 tegra_phy_xusb_utmi_pad_power_on +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8e8e4860 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x96d0df6b tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa35cec3c tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa40bf059 tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa99ad272 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb2498726 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb72c0f4d tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc0b798a9 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xdb9d9ccb tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xde6652e3 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x804327a2 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9ee30db8 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb038834d mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x3adbfcd7 lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x839b0bbf lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xc70379c0 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xd7beae2e cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0109acb2 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x014a49e5 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0dd2568d ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1504bd30 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x15810735 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x21a4e872 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x31fe6119 __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x36eea387 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3d77ed8f ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x41353e1e ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x42d19602 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x462449ee ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x538ca02f ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x55916b03 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6a6a0dd8 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x75b08dd7 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x781c2be7 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x90e61812 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa6b7cb47 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xae8e59cb ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaf031ece ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb0cd4391 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbdb6e389 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc0c0b14d ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc210b2f5 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc26c302c ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc92895ff ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcf234def ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe5134f95 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xed7172ff __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xef36dffd ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf0f3af43 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x62211cc9 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 0x7366626f devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7a636ddc reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb2e0f92a reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xfef4e7bd devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x112455a6 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x32005ffb bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xad3d5cbe bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x75c26d3f pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xaedb2ac9 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xc7588fc9 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x314276ff ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3c1c69b2 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7510eb8d ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x995fa140 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa7b6ffaf extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xbba0d2c3 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd5f92a62 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xee32ce14 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3490cdc9 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x37b0c800 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x43c8adca mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb5f5d564 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf32a4389 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xbb663a87 rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3fbc74a2 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x78315870 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x81824e69 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x92018a87 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaab4e948 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc64854d1 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa7d9632d wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x1d116e2f scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2727396a scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x4be51cb8 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x8539d6ce scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xaeb47fa6 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xec7998d6 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xf3972e11 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x5ab8c728 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xa8b9f9b9 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xbe90d321 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xd5eba91b scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xe4967f8e scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x09006314 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x18acef81 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x25829185 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3f4602e3 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6483658e qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6c8b513b qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc9f3f5ed qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xdd4b21f4 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7f82f2e2 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x81cf84ac qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xa8a0b791 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb142637e qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc1c45a5c qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc7eae51a qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc814dc16 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x48f56a40 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 0xc2a3a42a mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x77177ba5 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 0x6b37b253 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x067e0118 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0fbe1877 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17df05e9 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a56b571 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x279d648c cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2814ae0f cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ea23cfb cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30aa4bf9 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31c10650 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34b3ce86 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39786b91 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39eba85c cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40ba216c cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c1a93e5 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e1b7c44 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6cc43a36 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70fe32fb cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7202272d cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73ab17a9 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76ca55b9 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77e6dec7 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a738608 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x845e68a6 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85e62522 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8773002f cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a2e9620 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d5d5298 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95b3a424 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4966ce0 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3bbc4db cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb61dd173 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbdb8df1f cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9ab26f3 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc907250 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce1a87a6 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2270e60 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3656a16 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd49b95b8 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6d5f876 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd948701f cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xefcd07a8 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf20c2075 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf506656d cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfbc652c6 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0022026d fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1cc11382 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x297dd4de fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5849d954 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x623f6a0c fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x73a182fd fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7f077a9e fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa7a67060 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb5b4aa8a fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce9b52ba fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcf1e4b8a fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd0382ead fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd1d8c48d fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd86aea03 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe514aa7f fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf9d0cfbf fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x103b101c fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x7d6a327d fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1c22e9f3 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1c6465e0 hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x28255780 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x28da58fe hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2ea55601 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3202cfd2 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x32a7b746 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3498b7b1 hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3b089b35 hisi_sas_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 0x48042c7d hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4955c876 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5ac7d9c5 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5ec0120d hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x68496c35 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x69fbd296 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6a07a34b hisi_sas_phy_bcast +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7161a70d hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7338c478 hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7cfa5c68 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x88145976 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 0xb3a305d4 hisi_sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbe29aae7 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 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 0xee15e537 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf1c0fd3b hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfd20de94 hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x146ce98c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x330c907b iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x469efaa1 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x630d66eb iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9634ab25 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xaae7c004 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd21f6774 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x662c6b8b fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0444ba28 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09e301ad iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e450a30 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x122d2f09 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1302fcb7 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1373ed8d iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x144ce69b iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a5921b2 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1db2a932 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29a43577 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d059d2f iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34d51b6c iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ddd17e7 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41f434c0 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x422b55e7 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47321de6 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a9780f8 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4eef5397 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5228d739 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x541a6c6f iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x566d4b18 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b74c387 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d16f72c iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6df1fda5 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73b0c9d6 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78ef5635 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91d35897 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9326385c iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7652dea iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9d9cff3 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb69ea2f iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc25ce897 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc820b280 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcac6afa4 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbb9f3b4 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc8637b7 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf105568 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd19cb91b iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9478019 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfb82853 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8dcd05d iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedf92bb6 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf141a35d iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3c87191 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4a1a4e9 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfad4551e iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe0b00f5 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff2ac457 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0fd80a59 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1b33e784 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x28f0e3c5 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x382ae00c iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4356a28a iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5a0af8d9 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65417d99 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6c9ecb03 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7d81239c iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x89a991f3 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8c008b35 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x92181732 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x961936d9 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdb01e7fc iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe441a486 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf8961998 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf9cf05ee iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01988a56 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03afed1b sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11852568 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1d6fa555 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28224790 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x29afcdec sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35aac771 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x397d4110 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48b8824e sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x51acb0b6 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x57465f56 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b838ed8 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x672c5b76 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78903b2b sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90b63c1e sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f763928 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2431bcf sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa78ddfd7 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9965d7e sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaa7fafba sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae60b0e1 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae77d7cc sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb039fca8 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbd69de0d dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe5f863c sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd39ee36 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd3160ef8 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdac3b54a sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb633d48 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed25229b sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed33ae52 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf39ab562 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf411641a smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf493dfe0 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf67e2cbf sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfab11787 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x74333fb4 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x004b6de3 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x016c5982 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x075c4c05 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a37d93c iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d4fdccc iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d97447e __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11681382 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1315ad98 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b979452 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28eae6ea iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e60b7a7 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x300f74a1 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4189de15 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x528c4dd9 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 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6534f90f iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a3fe5b5 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b7baf5b iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cd1ae24 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73a106fa iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78105561 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b2605aa iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x841bd9c0 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a890c12 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b8d6333 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d572d82 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e8507eb __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9792d84e iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x998f3cd6 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fd0155b iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa51fc6b9 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8e5403c iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac0d581c iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf296e36 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4122742 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbbefea01 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc2cb1e4 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe4577fe iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2cb79f0 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xccc2e91f iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd22e7a2a iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc4ab1a9 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddd42390 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe24e06b2 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb5b4eae iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed1bc47c iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeddf7069 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef7fa436 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2176ba5 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2f21a9bc sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x70145bd1 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7f5681ce sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd271d0e9 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x68ed97f0 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 0x3562ce4e srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7468b7a5 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x87cc6b0f srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa551fd34 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xac2148ee srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf2a3be45 srp_rport_add +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x056cac3f siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x265533d8 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5d31d7a0 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x67fd36e9 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x973c6e47 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xab83c650 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0b5ed007 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b3152ce slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3d9f3f28 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4f59de54 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5960801a slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5a15ffe2 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6c2a4b87 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x78520186 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x79dba5d7 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7b65e166 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9453d2b8 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa1c04069 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa40e385a slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa6e24127 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaa1c1d48 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad58890a slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc089f4a0 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc52d80bc slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc5aead3c slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xccabf2be of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcdddd6d2 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdb4193ac slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdfb03d53 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe1b22bc0 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf27229f4 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfbe5525c slim_stream_enable +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 0xe5da128d meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0e74e1bb apple_rtkit_poll +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x33d7f477 apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x38211409 apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x3bf19c40 apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x581bedeb apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x5c576eab apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x790b4414 apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x79b954c7 apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x79e76f47 devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x80b97967 apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x98d2aa9c apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xc5161e3a apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x88d7ff24 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 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 0x4442e2b5 dpaa2_io_service_deregister +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 0x77130c08 dpaa2_io_service_register +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 0xbc5cae86 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2a294fa1 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x41293f2a aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x5dd4d7f2 gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7664a44d apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8239b240 gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8a2e0c5f __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x921ffb4e gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe6677478 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 0x7b4d6b32 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x8413268d qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x96a4d4ea qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa00c3b9d qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x44065353 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x99415fa1 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb2d80dd7 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x3160aae1 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x417f8c41 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x449a2922 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x45a9fd16 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa2b3d3b1 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbcf3ac90 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc28539f1 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xca919e70 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x12bd5555 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x36e4649f spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xcaa612e2 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0110f275 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x07db2468 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0a7aac49 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x39d1a740 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3ae8dbf0 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3ef96e79 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x548b5917 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x655f9d92 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6c67816b spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6fb0679f spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x798c6caa spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82cfb66a spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8334eec8 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x99fd80a0 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f38a2b4 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaf0f3799 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0447950 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc1e39922 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf035e3ad __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x1f3d1d7c ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0159df9e anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0ef3de11 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1febbc92 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2d092e35 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x32d54072 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3a51c250 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4ea842ed anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x60ca0b96 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8ea9f353 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8f26f1f2 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcf497a20 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd70bfe62 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdd17ae17 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x043f9d1e fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x47a14a02 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9fdd6e6b fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd40f728f fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0e7247b0 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x182411f9 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x381fb5c6 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4ad06010 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x593f0757 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6636aeea gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x86aea38f gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9f6ab3bf gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb48a4da0 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc6459876 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd5aaff31 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe167f93e gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfb0990cd gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x00f4e644 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0fb3f6f5 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x45df232d gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x47443483 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9272d954 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa3c2c04b gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaa6f132c gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb537df8f gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbdf1fa71 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc0159f06 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe298d15a gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xeedb8168 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf3ec3faa 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 0x1bd8ea19 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x4e271527 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x57428e87 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xd7e3a5a7 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x0a72b688 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x645d7e3e gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xe28865d2 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x000ca7d8 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0f36ba33 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x167e5877 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1f93f887 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2107fa8b imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x24ec75f5 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x335206e6 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x34b77bd2 imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x381ce61d imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3a2d90a2 imx_media_capture_device_unregister +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 0x49a034a1 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x563dc23d imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x746cb468 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8ed0a4ae imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x913c142a imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x93f86ada imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x95216e3e imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa631199b imx_media_grp_id_to_sd_name +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9e2459f imx_media_enum_mbus_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0b10d23 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc4a5496e imx_media_pipeline_subdev +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 0xd6753a43 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd81da748 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 0xf913c949 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0305dfd7 amvdec_write_dos_bits +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 0x19cae822 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1fe29857 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2300f829 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x27bfd58e codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x32616a07 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x32aeb8fd amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3b238564 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x43da2c3c codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4b8ff782 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5de0d94e amvdec_src_change +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 0x6bc464c4 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x71edab91 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa408ef28 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb533ecb6 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb70424ab amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbe470936 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc5686aa3 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe07caf93 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe0c28160 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xedb9b7ca amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8aa5e9be nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x9973f101 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xd3d24d4d nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9fc450a5 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa6ab3f65 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xbd4c6390 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xf85a8b45 target_submit +EXPORT_SYMBOL_GPL drivers/tee/tee 0x234bf885 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x28d1785d tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3bbbcdac tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3f7be5ce tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x52cc85a2 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x56445777 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x72ac6a25 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x787b84b9 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8c4a1431 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa4297c1d tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa865d698 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xaad4cdbc tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb36a05e5 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbc922e39 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xca77cab5 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xccfc5f55 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd103b665 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd50dac9a tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd5b63804 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe34c40f6 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe8bf3b34 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xeb2db6e0 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0133fee5 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0b456978 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0ea05b92 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x10ed3f77 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x181cbbe5 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x26b53dea tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x324776b1 tb_xdomain_type +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 0x50b5670b tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x605431af tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6a987748 tb_xdomain_lane_bonding_enable +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 0x955969d2 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9f70a61c tb_ring_start +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 0xb97cbea4 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbe7b2a3f tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc0c59841 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd3f6ede4 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdb371baf tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdc189c84 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdf9156fe tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe1b83bb6 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe693f675 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe7f30c8f tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeb1c7783 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf403c257 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x15d77c21 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1b68bad6 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x26170219 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2c5626f3 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3ba37ef2 ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3bbe9cfa ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4c2b0955 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x58acc8a4 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5cf1fd0d ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6f69ae4c ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x78c2f097 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x78ca6e0f ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7aa1eaaf ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x85a564e1 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x89177822 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8a3d1d7c ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa118ab54 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa9bb7008 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb2e05387 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc35d5b17 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe6b1adf1 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe7cc3d53 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xedd7b152 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf48eb685 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf94f13f4 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x24d47b7a 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 0x664dde4d ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7709b476 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0b3dde9d uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6db5ee1c uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9f49e7fc __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf8b46a13 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa2c0413a usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xaa0d3034 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x10ff7431 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x12a7d733 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x64abd15e cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6a4dab26 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7dceaaa0 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa82a2fab cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xcc46494a cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd5d7b011 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf33fe4c0 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2218b41c ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x240a3ea3 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2ae4004a ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc023a96b ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2a6428ef imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3fe518be imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4e1767f5 imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5010f676 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xceab751d imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf7ef8ab9 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x31c57d6a ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x355ca713 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x37b89064 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6c84f26a ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x89e8ef31 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbc324626 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0a763482 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x136f22ab g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x192ba1f0 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x27060747 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x27da2c8c u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x29c33574 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4bd52ade u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6a82363d u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6d97c1fc u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7f4c1172 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x89a4e0af u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x89edc543 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8d699517 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8ff6e3c8 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb76cd466 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x19512d7d gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2065574b gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3a2dc1a1 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x448ac252 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x479d5d42 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7687e102 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7bef8cc4 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7c6df1fb gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7d12384e gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x91a18e05 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e98508e gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb7a7df92 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd418d845 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd78edfe5 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdfd5d754 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfb5ceafd gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0b1e9dc6 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4f70d810 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc23d2305 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc788baab gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe9c12df0 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xea0de819 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x020b50db 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 0x1fad2e68 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2e745562 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x33a0b195 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 0x409b1060 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4b569630 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x50ec2198 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x53f9b6ec fsg_show_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 0x67c0748c 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 0x7dbc6650 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 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x85cdbee9 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9dc02fb3 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa10ac332 fsg_store_forced_eject +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 0xc6c2a27f fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc9c1f575 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd4c1c5cb fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd886ca13 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeadea9e9 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x00ed9a87 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x137981c5 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x13c52274 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x16a6ff18 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1a1e428c rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x218aa111 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3805b371 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fa58be8 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x80d00296 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaf5fa51c rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb12ccd48 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd146b4fd rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xddb6a801 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe8e1c9d1 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xefb19c75 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x059e2953 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x11056402 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d0ad6c1 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2666bf4f usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x321375ae usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x32984edd usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3bcfbe98 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40144431 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x425bd4d2 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x521abed0 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5536921e usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d2182f7 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bbd61d2 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dec0511 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83b08535 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8bd8834e usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8de97c52 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8e0e8ced usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x93881ed4 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa260bd02 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa81a68a9 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb97181fc usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe5561ae config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcddd38c3 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd09298cf usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe1a80549 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe5a47dda usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2be4078 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf479d6cc config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa8f92c9 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xffae99c9 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x07f33052 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x32ae88d6 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4476114a empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6050dd55 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x666166ec udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7c87bb3b free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x901c0f77 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdffe4a68 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfdf9b50d udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b708ac usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x037c7fb7 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x059dad0d usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x075cfc77 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x167fa044 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x29dce26d usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x37ba162a usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3dce0b5d usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x467b327d usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a3f0be4 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50345c85 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x612a6e00 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6ccc5548 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x77400900 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x78146a41 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x84fc7b94 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x868d9e66 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x90f25a90 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93c82bd0 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x97cce261 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9b91b467 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9fbe04fc usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa055b7a usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xab809803 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc1786ab3 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc89c720d usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdd0d26ed usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe94b522f usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf7c396c2 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xd278e602 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x59c9844f ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6ee8adc0 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x18481432 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4504904d usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x520084ba usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa11866c5 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbccd1ff4 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdd228ac8 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe5a44dc6 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe5bd06a3 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf5928c01 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x05e5037c musb_root_disconnect +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 0x41559677 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x61cd4927 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 0x96084f20 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe6e62394 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xee0460af musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x25513185 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4b0ecc1e usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4fb28321 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa56e1aec usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xdc586d39 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x285d0324 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x4843545c tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x556e0860 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x5c81f26d tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9037dc30 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x5065cf7e usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x018a7842 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0b265df9 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x12c12bdb usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2ce7f28c usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x36651019 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4929fc37 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4d3cbae5 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6fe61964 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x71c44c90 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7236fb75 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b5eec57 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9fdaacfe usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaa47e577 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xac861846 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad901584 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb757e239 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb8c86175 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdf1473b1 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf4d94b2e usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff3599b0 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xc4718f81 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xd77c3a86 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x783f0401 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x8d8e165d 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 0x044c45e8 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x046b61f2 typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08373844 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0fa2ee1b typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11b44a08 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1217f73f typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13c6d0c0 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15685721 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x17c10391 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x186b5030 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2bd19837 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3645e8bb typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36aaf962 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3c794cec typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3cad724b typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x465946bd usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x494b735e typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ada5266 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4b9e62eb usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5369a4b4 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5581f159 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57a3a3a6 typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58788563 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b834f6d typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x641227cb usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66790457 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x704c4da7 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x71e11fea typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x745c968b typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7816c567 typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7c90854b typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80bcb63f typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81e76753 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8652857d typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86d64c2c typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x87e3408c typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x88ab98ad usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a9e38c7 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ab50c41 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ec60585 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9155de3f typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91be13ff typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x924c1319 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96879abd typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9955fd78 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b4813ef typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cdfa105 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa37c37fc typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5ba4926 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa71f132a typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1d7f650 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb8ca3d2 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc200cd0b typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb329793 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb46bfcb typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcd27fa46 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcdaf3435 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xceece553 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5d74454 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5dd4756 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd70c650c typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc12bc2e typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde2ef71e typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1025839 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe44b1b9d typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe8a8ae07 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0f88f83 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf8a8f5af typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf9e0bc2d __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfb1f6e08 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3d2327a6 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x44ea419f ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x452d119f ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6d7f3064 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x93901d8e ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb32ef172 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbfec9170 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdb67376e ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe5e616fe ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1d558441 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1d9fe09b usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3463d1d1 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3d650867 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x43fa369a usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7662969b usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d72bf3f usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x84d0afff usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x89939820 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa7763a86 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa9ce0db9 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc2b2b2f0 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf546ff4e usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0dd017f9 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0e7d41c0 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x273d7767 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x40fc40ac __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x44a35119 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb9c57db4 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc7ed4a9a vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xddd35da5 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe7680b8e _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf652f4e4 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfc56fc15 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xce50e415 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0765ea67 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x120af5f9 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x22a9fa85 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x22fcc0d3 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x31054947 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x52a47a29 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x535c3e47 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x551557bf vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5c6e4a39 vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x705fc5ef vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7a45a429 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x81a4eddf vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x86070f64 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x94368dea vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb6eaaecd vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb9579185 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xecd495fb vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xee9f5bac vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf45eb171 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x12f1ec22 vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x24292b9f vfio_platform_write +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x27687cb3 vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x6ee58c00 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x747b17f2 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7b125f3a vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xad5f223e vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb36688ed vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xcc6b7e6d vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe9e4fa27 vfio_platform_close_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x07bedf59 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0b0b1a90 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x11f92a3c vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x263c6903 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x37485059 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3c6c5ce4 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3fcfd105 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4a9c3e74 vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4b65982b vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7155b62a vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x717a8551 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x768f1301 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7b503b13 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x804e567d vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8280bfe4 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xba241eb4 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xce3322f8 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd2c0d468 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd4700a89 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe691c325 vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf9b2510c vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x00e30222 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02d57dba vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b87f18a vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x272deab4 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c7e073f vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32b477df vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40134941 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f7815de vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54bcafd1 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5756f93d vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x607d0e6e vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x642f1c61 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6508b1b1 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b26d1c3 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d8d893f vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fd8e190 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73bda61c vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x756158a4 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7893a331 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7afbc2a3 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c5f3280 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d90e453 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e07c1c0 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x92186c72 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93d34822 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9cfedf85 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xadd5976f vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4fdc44c vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc29c1fb2 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcaa1bdb9 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbc3b1a9 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd424a7c vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2902541 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3719cc7 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1b21f5e vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe238ad5a vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe99acedc vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea9eb53b vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf464ea90 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9efbc6a vhost_dev_has_owner +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 0x21e19489 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x49e672a7 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x49e99877 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x99de0232 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9f187c0e ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc301a339 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe2fdd783 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xecc93eaa fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x6b702cae fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x8f0a7694 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x5d27fb6e sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x841df144 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1a094f4c w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x36508cf5 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x66be7e66 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7bf0c773 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x80d37274 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x93a27470 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9ceb5423 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb27e547a w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc90c3e3d w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd8556143 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe354cbd4 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1a93aad8 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x47d5e47b xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x6b7e937b xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xbb43c89a xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe8f12f4c xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x5ea44447 xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xcf15e2e6 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x07ce0bb1 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3197d71f dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x601ca23d dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b 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/lockd/lockd 0x147b89c0 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4c179dc2 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x51493be8 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x64552e6c lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f8a9c2e nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8ecefc68 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf7113cd2 nlmsvc_ops +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 0x042c22e2 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x058848ad nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07cca1c3 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x080203ee nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ac9ca68 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ae46a7b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cd9d23e nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10931de1 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1133a58a nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11924874 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19214aa8 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19f86105 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aaca865 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b50949d nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b7f1ce0 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c06b520 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20d3d1c0 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20f6bb80 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2461870a nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27ac0f7e nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27f8bece nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2972953b nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29a1c3e1 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b1f7180 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x316e77d6 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3196a178 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32dfec91 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x336e1059 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34ef5714 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3615b043 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3873fecf nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38a69fbc nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a09ef53 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a4cb7f1 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c426fd9 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eb688c5 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f58c6fe nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f8c5fa1 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40b5ee60 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x427c79de nfs_mkdir +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 0x48afe1d3 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b438777 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b811812 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cc98641 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fb36e70 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5041b623 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x507bc7c6 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51ee3701 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55f27166 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57cb7886 nfs_show_devname +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 0x599c2606 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b71d53e nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bab97d0 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5baddf59 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c210d24 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e60e835 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e7836dc nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e95835d nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6060cafc nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x615de727 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63178e10 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6622101a nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68dddf20 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a757c0e nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bbae51f nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c488dd2 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e9186bd nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f39510b nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x757d4530 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75f1f2d6 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a82c8cf nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80033a2a unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8292c2df nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85e1b69b nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85e61c95 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x860d4039 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87309cee nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x880e18ff nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8974e52c nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ac37ffa nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c3789f3 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c7c4a07 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d547428 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d78bcf7 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e61aa68 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d680ca nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92f55a9e __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93d3045c nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9692bf6d nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x979d63da nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b1072e nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99096b9e nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c0d34d2 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fa7d2cd nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa58f203f nfs_kill_super +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 0xad0bb2fe nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeca2cea nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1545ca1 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4941166 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb87860e6 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb03ec74 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf2b88bf nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfea0ffc __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0e9a77c nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15fef0b nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc34b7b49 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a504d6 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ef629f nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc678da21 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcabc8332 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf12dd5e nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf1bd37f nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd461eca7 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4623bcc nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4a510b9 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5b91977 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda1eb2b7 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda866d77 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb7bb8b8 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde11d160 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde392f77 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde65a661 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2e0319c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe39462b4 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe66d96b9 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe862da3e nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecc817af nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedcdb661 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee1ca2d3 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee6b76b5 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeecfc585 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf037c2ef nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2d5f326 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf81aa3fb nfs_post_op_update_inode +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 0xfd7b1563 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdbfaed0 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa5b760e2 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x000da6a6 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0058e6de nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x028861ff __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06a1e029 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c08882a __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f32980e nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1003e723 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x112294bf pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13d451b4 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c2bf943 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20ece87f nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x243de133 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2adc3e62 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b9c4317 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e702a68 nfs4_test_deviceid_unavailable +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 0x351e7819 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3685cec8 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36e6d6b6 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a8fe819 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7a4778 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4090954c pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4367efa2 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49fa37cd pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fea3bcc pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5190dcbc nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x553efc21 pnfs_free_commit_array +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 0x5a4e2447 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b3ffb64 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x615c3ff8 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62f31df5 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c9044fc pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f9c7903 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fc8eb18 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72a3dd92 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73a0d4a1 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75f80c69 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76798540 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76f95f89 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7767b359 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x790bc4ec pnfs_destroy_layout +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 0x7cafe67a pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ea1fef8 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8372006a pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8673df3c nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87cb1e8e pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89fc9afb pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dc18e60 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90e7b22a nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92078ecf pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9532d9df pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97595c9c nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c9961e8 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d06be62 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8f729ab nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9b9b3d8 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3de239e pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb833644c __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9875f67 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba09df88 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaba14b4 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0f2c75d nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2716097 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc34e2201 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8b75523 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc29d516 nfs4_schedule_session_recovery +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 0xd246e076 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7e8e4cb nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdad2be63 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc05f1ea 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 0xe0a96cf3 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3000fd0 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe50a2d86 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe70d2c7b nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe75388f6 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe75ff681 __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 0xed649062 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee01b79a nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4baca65 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5aa76d4 nfs4_delete_deviceid +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 0x0db6b02d opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd43e296e locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe315cad8 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x14197a35 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8480351c nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdff2ca6e nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe253be3f nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x9233986e nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0dbd3f14 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3cffaf58 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x70047d7b o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xaac1d37b o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0xdf1c2987 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe63662d8 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf16f148c o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x151a2ece dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x577a59af dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa1aa770a 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 0xeff33f7d dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf6bea3e7 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfa8e3fe8 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x02f8b6fe 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 0x346acd80 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0xc815823d ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf31eb75f ocfs2_plock +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x21c60ffc register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x61f69989 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x1651f1c4 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xae9f9843 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 0x33fb8d0c notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6c7ab162 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc +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 0x045bb6f6 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7ce0af05 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x09e8096b garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x16f88eb1 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x54215edb garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x68e0d735 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x8c2d7fd7 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xa8030b53 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x86e88992 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x89b668c2 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xa9b7bf70 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xbd0a4ca1 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc8ec8dc6 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xcc27a035 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x212491a5 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x7f7fe864 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x82b957f3 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbc8fa448 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 0xa1daca97 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 0x04355def l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0d443587 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1a46bff2 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1e37cc3c l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x64a6d18a l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8f93c676 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa292b40b l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xab0e7041 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xca01743b l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x27ca8c1b hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x023e6c6a br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x137fec69 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x14313d0f br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1fdfd7d0 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x21fe7a43 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x23b33f47 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2a2ccf16 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x33aaa783 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4ae3a619 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5b44aff9 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5fbbbbcd br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x61569146 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x73a95a01 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7a0a07ee br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8ac3fe76 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8c29e2a4 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x92c1bf2a br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x95c6f731 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9cffbdba br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaa0d1641 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd2531c38 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd41e7fde nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf3a3a17e br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf936753a br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa2882cf br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/core/failover 0xad0a928c failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xbb84bc2d failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xc259d233 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0133c844 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0360c048 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0367ff99 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x08e094d9 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e59b066 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1347a406 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1abe6253 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x376e0881 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ea9f515 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x40b0e41e dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x464656b7 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a44bc75 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4bba8a12 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4dbdf963 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e96f747 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x69f83edc dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71c0dff5 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x766bdfb8 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x787226a9 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x89b94f1c dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a069c94 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8dfd14e8 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f488b27 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x96c6ba4a dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x983ece61 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xab3b7aa9 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb793caa8 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd9735eb dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xec7d8fc3 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xed67c1f7 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf425c063 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9cf6784 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1aa71ba2 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5d5b00bb dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6b1bbd05 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x73a8a4ac dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9f614742 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa9f6fb00 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x079a09c0 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x221a4775 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3189ece8 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x33bbb2b2 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45923ae4 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 0x46e6518c dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5d305756 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x627060f3 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x62899875 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x66b4014c dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6b6ce2f9 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x71978052 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7218bd37 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7eabfbb3 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x82908df5 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x835213eb dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8ed6fa50 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x94b7b99c dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x99b9992a dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa04fab0b dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa0763b7a dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa399646b dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb0eb413a dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb337c2a1 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6f1ec22 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xca00f752 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd01fa534 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd0cb01d4 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf2b2b96a dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf80c5621 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1f50bdf3 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x216c3804 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x57359908 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x67a946ad ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf2584e5c nl802154_scan_event +EXPORT_SYMBOL_GPL net/ife/ife 0x1915e013 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 0xb7a065b9 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x57dad7a9 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd915ffec esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe161d4cb esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x2907595c gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x453fb676 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2509f173 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x460d373f inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x565d1379 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x735b250b inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x75c990a3 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbdb866db inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd4c35177 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf0c86d76 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfa0c2cf4 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xa02d3c37 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x08757cfc ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0f7ca185 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5f930df2 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x65f0cadd ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x73b62ef7 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x79c59b42 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8b14588e ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8e314937 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9e5b2493 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f63913e __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa7d47aea ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xabf46270 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb4314229 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc7d27c6a ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd20bf685 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfc5e1feb ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfec30098 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x56e15ba5 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x2fbcc1e1 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x03a1256d nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xa91f39ad nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xdaaa575f nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x10b9c889 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x41cb7e93 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4ac7f869 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6fcef4ea nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9ed8204f nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xcacdefac nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdede0db6 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xdf085359 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x18234e5d nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x955ca3f5 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9d153945 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7bef4776 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xeb7ad284 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x04ff3e6e tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x37adc2db tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3e725f6b tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8046eb7b tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc739f5a9 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x04b661f0 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0d662ed3 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0fe3b37c udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x57e606df udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x67c87866 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x864836b0 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd4cc9c95 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd68beff5 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x23aefa73 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2b395e44 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x364d6874 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x920270ca ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf30920d0 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfa355c62 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x212da502 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4921a167 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x2bd015f7 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x829c14ac nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa7f9c03e nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb9b87778 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xdd410e51 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x01c5e0b6 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2fd48d06 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x30af34b8 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4a3f9f28 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb04beafa nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb99bd736 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc6cd92d3 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x586ff230 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0575815d nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x27ab824f nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xff9a43ab nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xa22a2cd2 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xb3c18080 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1d90bfdb l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x223154db l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x26c63ff2 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2eaa7800 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x49302194 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5f70101a l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6547e70b l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69538028 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7b960968 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7bd76538 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84370d44 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x86d60c16 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8cfa6092 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9913fc21 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa2b5e6ba l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xad4ed716 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd0ae765 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca51e781 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd7b3593 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfbc841a0 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfd007f6a l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xaec584d2 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x47b9170a l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0690ee2c ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x07a559b4 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x15be028e ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x177cecf4 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1fd91a92 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x27ac4e66 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29ea5e76 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2ef05a40 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2f01dfce ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b5e0881 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x42c562b1 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4fff1c66 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x558b4826 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x62e61a40 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x68653981 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7409bc59 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7c6863a8 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x811c26bb ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb458766f ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbf5d8589 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcc62bd8f ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcd5b6340 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd563917c ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xedc00cad ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf29277bc ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0ff4d9e1 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4666cbaa mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x660b1a65 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8b2eaf9f mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe789b16e mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x000830e3 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0e897543 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1063c1c5 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x159729b4 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x229e913f 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 0x2360cb0c ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2518e77e ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x32074b81 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x50867605 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 0x7dfa4c38 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c16ca8d ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x97013852 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 0xc0c8fb2c ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc183a85b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xde90182d ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe1164765 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe30568e5 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf172b914 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf7d7713b ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x15eed37e register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x674750fe ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x90f69f97 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9b9f2bc0 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x02101e0f nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x312044c7 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5edeb481 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x656eba34 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x885be9b3 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 0x04dddcf4 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x050a6aff nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0be81245 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dd0d564 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dd4ac78 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f4da2a4 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x101fc0ac nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x132ca9b5 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15bc2c80 __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x181014f4 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19db9357 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c869285 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ce3b9d0 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2185f3c1 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23afbd8c nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x242e0073 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x262bcedd nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26b1facc nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27283052 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27b37300 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d5767ff __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3009fd4d nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34b4b8d8 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37d7e094 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b8764f2 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fffa59a nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42a0c26a nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44427907 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45447657 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45c639d7 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x486212d9 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4879384d nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bc09ad7 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c90acff nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x557ca9a4 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ac58fc0 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ba338b5 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f55751a nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60c85782 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6146ebfb nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b4048e2 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cd0fddd __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7475b47b nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x765811de nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77ab6392 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b8dd7de nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b921a62 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f34a100 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86aa203a nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b43bae5 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93983e93 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9567b3ad nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x963366f2 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x994366e0 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b4d3c1b nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d4738e3 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9db05de5 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f09805e nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fc93533 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa24dd5e6 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2cecc3f nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3158618 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6a50f2a nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa92b0583 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9d6c16d nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab98e213 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabdde3dc __nf_ct_try_assign_helper +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 0xb39356f5 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb525c5c2 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7d91b67 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8312956 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8cebcf0 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc395591c nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb097bc6 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf4fd14a nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfae52cf nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3f5fc30 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5ecd126 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdca2deb3 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfcda7ed nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6925548 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeea9c23f __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf67f52c4 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbb85d38 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x6e6fa98e nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xf02a9cfb nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xeafbbe96 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7496a247 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcc9fb71b nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x4548e3f1 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc6e2e6a4 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0215d89c ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1809128c ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x58e4a9ba nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7d773170 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9ac73eb8 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb4f700b0 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xea264168 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc9e8d542 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x62c8abcd nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x017f9fe1 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x404a3005 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x8f270539 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0eceed61 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x10c4b002 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x161011ac nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1fa78c0f nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x30e8be46 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4409bd9b nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x53687558 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x59b53b6f nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6e2041a8 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x726ff7d0 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9cb6b3ff flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa29a8a14 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa69603e5 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa9ac38d4 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaabd80d9 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdb203d52 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf00c9adf flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x12939d69 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x13261db1 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2fb36516 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x37b270ac nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x432a2dbb nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x467e6bce nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x59d1833d nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5c990fe8 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6f1feea7 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x82faa569 nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8cb9be67 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa04fda70 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc052ab25 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc4ef4dbf nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc5c56116 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc6ff483d nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf4e45878 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfed32275 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2de8abea synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4939e0c7 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4aaec1bf ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5dbe4d62 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x62eabd5d nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x67461a09 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9059d0f2 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9a23c7e3 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc797b563 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc9e5149b nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf6b1e4a4 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00aba34f nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03048dbd nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04b5b827 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x052e0f19 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d7c9671 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x195d0804 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e81c822 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x234262f5 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x285a2010 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2945802b nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3f5907e8 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46147f39 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4678b45d nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4840c19c nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48c84ca5 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x543c1f8b nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f546b3a nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63337e13 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6bd7367f nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8de7ca60 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a42772c nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaace6b61 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad9a8cb0 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaeafc829 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb0721e28 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7ee4d4a nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb864a4b nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbfdea3d0 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc2cb58b7 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf74b988 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0fd1bed nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9376a5c nft_do_chain +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 0xe591ab86 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe93dfa37 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef020be0 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf23636c1 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf49e0fa3 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4c7c252 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf688a2b3 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa337c3b nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc00f93f nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x057dd515 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x28699b52 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x30669513 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x33bdb414 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6d039966 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7f39dfbf nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcd33b80c nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x29a94aae nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x652c648d nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9f8a62e3 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x3c9516a2 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xe8c33f90 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x83e2f1c6 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8f3edd41 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa8477475 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe1642a55 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xea6f0da5 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x19eb3393 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x67b6b83a nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xea9b5280 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x03f1d572 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04774d2e xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0865e169 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0e4cf12d xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x158e5176 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x16c3d044 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x37a47d6e xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6933ccd2 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6ac70a23 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6bd3deb2 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x77885921 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x78454b66 xt_request_find_table_lock +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 0x816c6ed2 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8519310c xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8818c414 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8cfee79d xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9334ef4f xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a57177e xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa6a0a294 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaf56cd8a xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb0685f0d xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf1cb41a8 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfadae5bb xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x85871958 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xdf7a5500 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4e406f34 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xabecb4ad nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc763a155 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7114e84b nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x82cbf494 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xaf242e5c nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x287c8c79 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x5f75635a nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0aa31f81 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x179f27a3 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6fc7fb56 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x84c65a69 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xca57bb58 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf9b9b18a ovs_netdev_link +EXPORT_SYMBOL_GPL net/psample/psample 0x7e69fd4f psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xb034dca7 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xb8b823bb psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xd332e912 psample_group_get +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6334005f qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x74305509 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 0xe1ceb1a5 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x099098d5 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x0995f635 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x104c17af rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x1f633f63 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2f232857 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3aef9917 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x493cc5b3 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5946c0b6 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x5ef7748e rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x69e2f583 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x6cef1c9f rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x764c015c rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7ca88beb rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x81aedaaf rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x88833a33 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x9500a1c6 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x9f74b3ee rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xa71e090b rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xa7ab604a rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xbd55da52 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbeb714bd rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc7acb669 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xd3c73956 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xda95147f rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xf05a0957 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xf4930de3 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xf707caf8 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xfdf859d3 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xfe8f4803 rds_trans_register +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xb70f40ec pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xe0e2de09 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x09907039 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7c867aa9 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xd5cd5e99 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xe19342dd sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x0f47a935 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x6cf964d3 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x6dbd3b79 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x798430c1 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7a61438f smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x80e28dda smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xb476d214 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xbceec41e smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xbf3e3792 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xd36812c5 smc_hash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x465a53d8 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5f67e881 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcda316eb gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd24aa49e svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00eefb89 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0184f8bc rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02ca5495 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x031ccf34 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03fb2010 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04d703ae svc_drop +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 0x07475274 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08465ad0 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x089bb1e6 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c00569 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c3bcaf rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0af71ca3 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b0ac4f4 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b9eca8a xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ecde77d xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1043f933 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10f6edc7 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13a8742f sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x168575c8 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1763b1fe svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17c4ff8c svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x183dd515 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x195c3ec7 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a958daa rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b48ff1e rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b903095 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c4370cd xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c48879f cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d43b2e4 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d43f912 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d5dcf04 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e4975ff rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eaf8aa0 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f39bf77 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f5ea680 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x203c6879 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x204e5fa8 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21361aa6 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2192a8e3 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x245b1505 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x258ba5f9 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2625ecb2 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27cd359b rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28c1d576 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x299891a4 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac55e04 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bf7ec9f xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c67b53c csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca78d7d svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e8ebc3f xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f5e791c rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30f27d6d svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3159dd5c xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32beb14e svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x336033ae svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34972147 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35938a0d rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x366c91a1 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x367eb5b7 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36e1da4b rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x374d3824 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37dd27b4 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38acb357 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39d285c6 xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39ee0ea8 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c219392 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c8da4e4 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41bf976d xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x433670e4 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x436df815 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43fb55ac svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x443a7cb5 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4782fdb9 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47919d26 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47baa40f xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47db8850 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x492babd1 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x496f52da rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cd1cba0 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e7e0ee5 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eb475ec svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50a23eb5 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5220920a xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x527dad9d rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5306027a svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54746055 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55063cd2 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x551c5a28 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56dd11e7 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56e84149 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56f1165a rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57d8541a xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5804a09e xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59754c3f rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b22bdd4 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b70752a xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c24aff8 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cc228be rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d528de4 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61d267e8 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x634b90f8 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x648f1378 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6521fd4a rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x681fb1d9 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e5803f svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a490fbf rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b604375 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb08eb0 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7044d657 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70bcfc2f xprt_disconnect_done +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 0x72efef3f rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7351810c xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7527310c rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x777b71d3 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78139184 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x782cf0e4 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d720da6 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7989eb rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7da312b4 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e85a52d svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f7c3ef1 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fad5c42 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x803cf893 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8091f821 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x812cb747 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8148618d svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81bd663c svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82814e60 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8393a4a3 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85e2a5d8 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88cb5b44 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8953dc6f xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b2735ed rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c616a06 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c6b4020 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d9161a9 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dec04f4 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x924ba261 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92fd35cb rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ae6687 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93defa2e xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ba4114 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95156774 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x967707d5 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c9fa07 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96fa44f4 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98c39fb1 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a6af90 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a39b121 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a5adbd8 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cbe31aa xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fa10571 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff09e53 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0043740 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa01355c0 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1d46139 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa30b5cb9 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa38141c9 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4239b78 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5574c7f xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8725c14 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9a99168 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab339427 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad94be50 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xada19927 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae1d79c2 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf42b87a rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb116354d rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb174b7ee xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2d4d0e5 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb352e88b xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3831e8b xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3b7fa43 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4d71ebd xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4e29397 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb624382a auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8aeb21e sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8ced97b rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba425b6e rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb5978ab sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd654f1e rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd6eecec xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbed4e660 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfc596a5 __xdr_commit_encode +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 0xc269e216 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc28713cb xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2a76921 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc56f2c18 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5bc74af rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5e74188 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8a5b77c xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b50f29 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9ef48d4 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca35ad12 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbc6bdec rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc53e727 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce470d77 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf03144d sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf181470 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0665fae svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd18a8ac6 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd33be292 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c69a2b rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5ce0cfd xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd736bc8e rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd824a593 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd864c2a9 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9737ce9 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b1084f rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf1d2b31 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe05507dd rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0c08b51 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0f10834 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1126994 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2870a41 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4fc584b rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe521393b xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5f546c5 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf346c9 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xece99966 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed4c9025 cache_seq_next_rcu +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 0xeed3b2f8 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0dcabb4 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf14de322 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf21df167 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf346e3b9 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3735813 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf47c2d98 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf501171a xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d94004 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf885a7a0 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa70f2c rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb4b8280 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe14e474 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/tls/tls 0x8d37acb1 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xac5fb1e7 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xe7672938 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xffcda86f 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 0x14687808 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x155b55e1 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2064f4b3 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b440e73 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3c3466d3 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3cfce1c1 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4031e068 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x452ebacd virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45a856a6 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f6a94a6 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a285605 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5d2f0ac6 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62a868b8 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x668bfe27 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74550b67 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78f51946 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x948a3b95 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9cf89812 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4154233 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa50a4b6f virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa0e025f virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1abae70 virtio_transport_shutdown +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 0xc31c7bc2 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc74ef4b4 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc6aff8f virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd417dcb1 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4eb4737 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7d57d8a virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe05a40c7 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0bcab5c virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2601e6e virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4f3746e virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe78e52e5 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf04f912d virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x032552a3 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x082e42e4 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x095de5de vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0dbb99ea vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x169ef0b3 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x299e924d vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c7dc287 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2cc96d7f vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2db25983 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x525d8546 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x640b4716 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6785acfd vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x697212a5 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6fc4f411 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77e190fa vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x87e0c917 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 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc4b23e5f vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd32f3786 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd9dc48c0 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xddba9f8d vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf081a336 vsock_insert_connected +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1939d7ba cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1c32a5fb cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2648e3cb cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2d928030 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5b29f5db cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5b5f0b94 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66d5348c cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x678f141e cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6b97019a cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x82aeed24 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb6705a37 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb93a3bdb cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc6d6d8ed cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd1586193 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xddc77897 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xefe54e6b cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x84d51336 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9f1269e5 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xac3dd387 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xde1a0712 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy +EXPORT_SYMBOL_GPL sound/ac97_bus 0xeac5931b 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 0x0783c5e5 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x11c3a8ec snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x1243bcc8 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x1c3d5f24 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x20d1b2e4 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x2c2883e3 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x4f7a9ebe snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x68b64134 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x74321d8e snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x89a67bc2 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0xab0a350b snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xabf0d3f8 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xacaaa074 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xdad137dc snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xe64eb3b1 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xe7a2c32c snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd 0xfaacb7a8 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xfe2b2782 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x13d0a8e9 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x97fa1274 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 0x1af114b6 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x505a340d snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x540279f9 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x54b3ba8d snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x55c900b1 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 0x62391735 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6970eb9c snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7fd81163 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 0x92d85ac2 snd_pcm_hw_constraint_eld +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 0xb6ddd3c3 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb8a66b75 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe3aa8fd2 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfa09602c snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfdb1295a snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0ba982a2 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1224258f snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x198a5aba snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2019e27a snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3ab7363e snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3f6854a7 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6c959dd8 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x83586ae6 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8f40b226 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9d875f6a snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xad91b7a9 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xadd1b3d1 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x7bc07033 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xcb486e1c snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x164b1ad2 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x20047377 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2876cff0 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2fb7cf1f amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x534e9d69 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x794bf02f amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7ab20ef1 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa9d04edb amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbd661ea8 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc98ccc8a amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdb218945 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe753de58 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe9733dff amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x15468b00 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1654145e snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1a29a5a8 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x25f377c9 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x39e7d369 snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3eb552ff snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3f74f537 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43e6a064 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5b65c038 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5ebeec61 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x60aa3301 snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6837bcfe snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x79681d18 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7c479e71 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7df2ff4a snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8d14d391 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x94ac5424 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa20bd7ac snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa27d1f69 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa59ef2f2 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaabf8460 snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaca29da3 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xae782d6a snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb9eaa86a snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc52c57c9 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc5c93c01 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xca1a0af2 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd2b371a3 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdbd8cf93 snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe63cbbd2 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfbee7031 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x039312af snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08b1f0ac snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09a5a910 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b31d4e9 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e165d4f snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f6e7f61 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10b13433 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x111babc3 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x175bf055 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1865322c snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a0cb49e snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a9fd6fa snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1be6da53 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21882d50 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x225a790e snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22982234 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25d8e0b8 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c83e9f0 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2de57ca0 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e512f7e snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34f397ae snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35b18109 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37610967 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x384ccfc4 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a8e22d7 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 0x3fab58c2 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x402d898f snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x415010ff _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46081833 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49d84349 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c0e1dc3 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f04815d snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f6b187b snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x522a3c1d snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59a92290 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5dd9c9a2 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e4a119e snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f6892d0 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69b604e9 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70c2c802 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71591e9e snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7254125d snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72bd1a5e snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73445bbc snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75352283 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8657d13f snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92c9f295 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97cad93d snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99563590 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a6fd669 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6f554d1 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaaf4dfc3 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae28dc2e snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaffb7b81 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb403dc5a snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb514c498 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb96a3d96 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb1aea54 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe75fe75 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf6e5fc3 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1a5ec5a snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2f9fec8 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3e23a06 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc461c11b snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5bce323 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc71f3f65 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc83e6166 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9796d6c snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9fc3c37 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbcca6c1 snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcee78803 snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3197324 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3db117c snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3dbe91f snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7983154 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb929beb snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcc824e1 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcce898f snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd8c6987 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdda8ba1a snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf94ef90 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6aeed95 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe70b5b38 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe769cafc snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea71f96c snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf462ba85 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf527f0d9 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5de104a snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6e9f5c1 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6fad583 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9402a60 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa0b37f4 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1b1e8021 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 0x75ae5155 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x847e6cc0 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc34d2f80 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x02c69030 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0c8c769e snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x32de7a36 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x498e36d2 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4d6ef495 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcd494668 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x033d202b snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0524d341 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x065b9abb snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x068a2248 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x077684e3 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08318735 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08a060da snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x090619b8 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b1eb3c3 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ca400c9 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ce76ee1 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e569c4b snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f8b692a snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12add979 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19303601 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b0d5afa snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2086355d snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x249bcbec snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2574aed4 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x260cafcc azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29ef652b is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2efb2461 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x308b8da1 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31a2306f hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x329d6198 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x359d87cd snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bae5d4b snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c4dd2e0 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cca621a snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3deeca4d snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40350b54 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40357d5b snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x416dca1a snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43cfcc32 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44d55daa query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46684110 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46e3d34f snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4719edc5 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4959d3f9 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c24e603 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4de2139b snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x509946d0 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52f4c8d2 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a77fb71 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f00ebfc snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fce6132 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61be1e17 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x628418be snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64078e4f snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64173e6f snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x670c864e snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69d687c4 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c950fe2 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dace9b4 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f36c598 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7096cbb5 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x750c2606 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75f3e295 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x761bf0b5 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7877be94 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7954b4cb snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ad2bc3b snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c1d77de __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c92d0c1 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cec48ea __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f629986 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x808c1cb8 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80e2dbf8 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85e794e1 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x872fe656 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8763a46d snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x884981a2 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88550c05 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8be67c2f snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92682632 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96f4a984 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d6091cc snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9daebafd snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2f59426 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3369d94 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4244956 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xada57d29 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0c5641a snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb149dbfc snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4c13e7d snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb71126d7 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb82a6e56 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8d81887 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb98e781f snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9d65af4 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb6b9097 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1e956d4 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc36a6a16 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc490dc56 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7898a73 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8be1c8a snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb64593d snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccab5d34 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd6b598d snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0381033 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0cb5f83 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2cc8d15 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd828f590 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd82da4b6 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd90087c5 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9a2d8e0 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda0dbd25 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb1cca9d snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdef01840 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfe37439 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe18bd326 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe43ff327 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4d803b8 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe57503e5 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6afcd76 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9259c5c snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb71b774 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed543136 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed5661ca snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed6f8994 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef5381db snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef7a6b43 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0326bd4 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0ea2fe4 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf42e0778 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6fc2a2b snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf79fed24 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8d802f8 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9ad0871 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0dce2aac snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1e8b5de7 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x26dbe842 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2d75523d snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e438dbf snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x30caa880 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x393c15d4 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x55b2fa4c snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x68e6f1dc snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x717c46b9 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x748f01f1 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 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ddd9d32 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9a6f0c97 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9c30775d snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9e6dcc80 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb9f15326 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd34a9749 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd7fbadae snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf138d289 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf498d23b snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf8eac8ff snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xa4ea655d 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 0x7ea24f4c adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x461cb50a adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x6dabcb0a adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x23d1daa3 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4932630e adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4a9c97ac adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x688047bb adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x72962950 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9305dc4b adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xabbe1197 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc802b706 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd95b32cc adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf5c29e6c adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xca669651 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x0fcafcb0 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x9a56dd25 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xb1a16f65 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 0x258f99bf cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x25b6cfdb cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x54de6e44 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x56716eab cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6b9c4518 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x74e03a0e cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8c4bf06d cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x93e3c904 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xac002e9f cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb630989f cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd318b668 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe21306b4 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe45d56fa cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4de3fcca cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x99932e94 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2925c870 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x36b2d7ec cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x78144b93 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd3f30d44 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xeebecd09 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x455cc629 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x93b7a68c cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf63be97a cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x4c60911b es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x9aa153d2 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x3657944a soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x4088cde8 snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xf3e4bfe8 hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x5d388f71 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xdab432e5 lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x73fd987b max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0f2d9350 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x49d7f376 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7e677a26 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xea5f8889 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x9397f778 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb7dfc1a1 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xef4bc0ba mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf4100d01 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x4f501840 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x82ad7598 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa6e54341 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xfb7c124f mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x0eb0845a nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x39f51235 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 0x386e84f6 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x76485a71 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xfc823b93 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x3fde28de pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x8518c76e pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x48be8b8e pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xee9595d1 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x23b08cfd pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2658f0f0 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x44c702d1 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xea6e5895 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x391e2e0e pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xabf69074 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbc4c06fc pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf7396a7b 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 0x097ce4dc rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x30220485 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4e5f1b73 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9821e554 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xde6d6976 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xfdd1827a rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x3749d80c rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xdbb5d520 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x75bc3848 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xc0f51152 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xbcc41f09 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 0x0d18594a rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1e2bc48a rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x72e0eacf rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x73251d31 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7bdd5588 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7d3b33ec rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7d9c8a74 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8951bcaa rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x99d751cc rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9ae8e35f rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc1ef8812 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc966b78a rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0xb6391095 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x65e1cdfc sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7951bc01 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x97c1441f devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa8293435 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc17f917e sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xea3ddabc devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x41736415 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x63f8a88e src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xfcc0ea2a src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xba3d6f31 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xd1d68ed3 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf0b6b574 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x68d31848 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x73688fce 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 0x1046eec8 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x346687c0 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4b52db57 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x52b2d15e wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb3fac84f wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x08ae4220 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x17006a20 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2c28c667 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x314fbc6c wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x515ab104 wm_adsp_read_ctl +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 0x64c38bea wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6d1c4ff4 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x783d5da0 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7ce72f02 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x816e6499 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x848b8a91 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x84f7f56f wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x98fef5a8 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x990324b8 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9c392772 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa4f540e4 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb6f74389 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xba0546a7 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc5179f0d wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd34093f6 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe591ee6c wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xecb7988a wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xeea0bbd9 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xef6d533e wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfaff3aaf wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0cee0a60 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x62e54144 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7387b0be wm_hubs_add_analogue_routes +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 0x9232fce7 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9ef0e426 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc663e402 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd68762bf wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xffbf87e9 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x2bcf5b04 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xf7c606ce wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x28d401bc wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x94b752a9 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb1904363 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf1c45891 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xa13770df wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x7f9195c1 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x09a6e3b9 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x25cfc3fe wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xbda25c1f imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x6d72b800 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 0x27075c05 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x001ecdc0 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x2aab46f4 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x61a64b1c audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xc3940cf2 audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x04efab10 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0555906d asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0817dca1 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0b70e4bf asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0b7b11e4 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x14834497 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x156a94ff asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5074626e asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5792efc7 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x62f3eb6e asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7cecf2a2 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x863dabef asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9955bb0d asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9bdbb36d asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa54b9821 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc0fa7fd3 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc52f1da5 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd80ad3e1 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xec7806b2 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xecc6a58a asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xee858118 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfe3340ab asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0a0e3f87 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x137af6a3 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x17c47e03 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3210001f mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3a2a5a34 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x42f8579a mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x531126a5 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x60f4f4f9 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x611969b4 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7b37cf9e mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fd8dca3 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8fc5797d mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x932eaf13 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9c02db5a mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9ccd2740 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa2033e93 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaa6a3e7a mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb391952e mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb4c6c36c mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb4faf928 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc3e143a6 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdb792279 mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe401e95e mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf05dde59 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf7f15f76 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8124457 mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8c3d931 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf9531f70 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0x5aa70d12 mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x1f6c37b3 mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x3ada58fa mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x3beff6a1 mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xeeedfad1 mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xd0e14fb6 mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x781077fa mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xe77d427b mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x0010e925 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x12b8c536 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x1a6ad201 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2b85ea3d axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2d02a6eb axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5bb4d015 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x791c9d08 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa87b598f axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd17855ba axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4ec416c8 axg_tdm_formatter_probe +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 0xb10729b9 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 0xbb6c1553 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x08b5168c meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x144f2158 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7f26a382 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8bcfd5ef meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8de29a9f meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xca9466c2 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe8eff17e meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf833bf64 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x00790135 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x30b918a8 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5a06363b meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7b2683c7 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xaade1c1a meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xe4da6e82 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x30f7650c q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x64693069 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xcfebffcc 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 0x5f15b812 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 0x80870a4d q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/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 0x62e7466b q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 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 0x2c798306 q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x555e6e84 q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x800a4986 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 0x18ed259b q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x27c79e99 audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2a9ff7b9 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2b19d104 q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2ef68f8b audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x395551f8 q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3a98176d audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3c920b15 audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3da3f1e0 q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x58b02198 audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x670fad0a audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x80a6f911 q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8c562190 q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9818561d q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa2ff39c0 q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb1258354 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb926aa47 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbca4f340 q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xca45b6df audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xdf9374ad q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfc2b4202 audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfe0cddbe q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x1d009787 q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xe4376c28 q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xe855f32e q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0xcc2c17be asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x434682a8 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x57576166 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x6ddb3161 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc79f0fd5 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe7e75de3 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xfde5977b lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xb9de7dfd asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xb52fa927 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xd0a210d5 qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xdab557b7 qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x2139693b qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x76c4b330 qcom_snd_sdw_hw_free +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xf7481b92 qcom_snd_sdw_prepare +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 0x01547582 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01c4457b devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02fdb5d7 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x044db18f snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x053e0237 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0683576d snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06e62956 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07c5492b snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07e03a0e snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0989f4e6 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bec43f8 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cd27527 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dbdb6f3 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ea36327 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0eedfc64 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f6828b5 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1036ef7d snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13cfda73 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14af8a34 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x160f8a07 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17a10ed6 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a14b176 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a51cd5e snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bc32541 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d7768a0 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1daeb241 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ecb3260 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f535550 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x201a2f96 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20506d74 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2187b18a dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x223a3918 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x223aacd0 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22cd7573 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2565aa68 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x272ba244 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a7eaeaa snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a7ef2fa snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b75d4da snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bd8e80f snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f7c5e77 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2faf34e4 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30c715ee snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x316a5d04 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32554e13 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x330f0669 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34807118 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36743600 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36f1e083 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x379d9154 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x394a2396 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a20043a snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a39d154 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a624eb7 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b2441a6 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d170aa2 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e7c44c0 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ed6b076 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x408d73b3 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40d55738 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4179315e snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4219a7b7 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x424f69bc snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42c7cc6e snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43ba6af9 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43e86f75 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4442aef2 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45b38305 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45ba9632 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4661c1f3 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46e9d17d snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49746d63 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49cd6232 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ca10757 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ea75701 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x521e972d snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x527ccfe7 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57c9140c snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58028c30 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x585c800d snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58d387b7 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b11bf56 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c67539c snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dd043fc snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ecc133e snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fb4ff7b snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x602e3c29 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6079b958 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60b577d3 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61af6366 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6240f4af snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6257a2a2 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63259750 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63a908bd snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65d9f8a6 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66276e8c snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66c1f3f3 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68f0a38d snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ae243b0 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e45794d snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e9d2fb0 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f9f6d9a snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fabb5d4 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x723c5be4 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73024a25 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74a3e1bb snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7693f955 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77023800 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77d1f7cd snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x798ef547 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d2b94d0 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f36cade snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80bc4293 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x815595f7 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8267c7fd snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82f60097 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83ea19dd snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84f1231f snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85930d26 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85e9f449 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85f8d597 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x864d8a37 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87c4c1aa snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8920c721 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89585343 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a019e98 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b9fbbb2 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c81c36e dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e93834b snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f4454e8 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fa2d2ee snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90b44505 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90e81220 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92c1dca8 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x943a0f34 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x953d4227 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x984af8dd snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98e3716a snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98f485ee snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a69cab1 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9aba0408 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ba5e7a0 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f7d3db6 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0295405 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1eaa4cd snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4c44e7d snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5107854 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9d55159 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa0e88e7 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac00df1e snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf2bf9a7 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafb85529 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb14da579 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb35d987d snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb462da3f snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5518b50 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5798260 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb86acfdc snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8eb0088 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb924fb32 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbad1b2c9 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc0981c7 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcc2c353 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd0094da snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe0a2588 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfce221c snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc144d504 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc14b6399 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4b0155a snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4c4150b snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc503bae0 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc66bd379 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc701a352 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7371f0a snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7ccfde1 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8051caf snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8386bea snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9408ddf snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd526104 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdc84d0b snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdf15a4e snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcee19873 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd154759b dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd296acaf snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3ef24c7 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd462d2a2 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd51cca0d snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd54eacd7 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd61dd25d snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9d3331e snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda3ba57b snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbea1f73 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdec63859 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf01bff3 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf707cd3 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1c2a3c3 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe441dbda snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5754886 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe83446f5 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe84cbc7c snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9831932 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee6dec8e snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf08166a6 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf123e5f0 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1dafa5a snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2ac8937 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2dd0e2d snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf375c517 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3dee9da snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7c13d97 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd260e58 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe59b3d3 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff4e4717 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x13a78f05 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x33620ad3 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6d7a4199 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb35465b3 snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd672730f snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x2c64d423 sprd_mcdt_request_chan +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x5061832c sprd_mcdt_chan_int_disable +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x609193c3 sprd_mcdt_chan_write +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 0x7a833177 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xf6df09f1 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x53a8c620 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x56b1d250 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x57690750 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x597b3b8d tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x5f10583a tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x68ce0f0a tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6fe41964 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb91d07da devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe9b0fafb tegra_pcm_platform_register +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 0x8331aece edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x084ba3e7 sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xf4b9ad30 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0325d844 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x10a87ee3 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x10d49884 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x326c6b25 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x460d5959 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x52eafea9 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x53659f14 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x60b52bac line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x63e19d35 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6ced6ddb line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6d970b8f line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8c0bc732 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9178bd38 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xab0b6fda line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd358843f line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe2aac16 line6_pcm_release +EXPORT_SYMBOL_GPL vmlinux 0x000a3ec5 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x001f748a of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x003a0ada crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x003a3f50 devm_pwm_get +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 0x006431f8 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x007e0576 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x0081a853 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x009063cb tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x00979025 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x009db8e5 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x00be229f crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d4fb88 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x00d64764 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e0c23c destroy_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x00e1b5d8 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x00ebed09 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x00ed0b4a pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x0109917c devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x010f9f4b dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x01215bf1 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x01227663 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x012c4cd0 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x012ddf1c blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x01309d2a __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x01345c53 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x013af19b devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x014c3b37 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0169be83 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x0173c7d2 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x017dca08 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x019f4f12 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01a3efbe regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02039157 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x020e8083 blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x02132dbb perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x02267205 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0238180b spi_bus_unlock +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 0x024ebf5d serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x02525d2f xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x02629a47 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x028344a6 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x028e4eca strp_process +EXPORT_SYMBOL_GPL vmlinux 0x029bf2f8 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x02a679c1 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x02acf28e unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02bd8778 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02cbad27 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x02da5c22 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x02ec691c device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x02ef5b84 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03177659 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032aad03 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0349de91 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x034afadc virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x035017a3 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x035811aa serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x035f63e3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x036459ea xhci_gen_setup +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 0x0370e86c rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x0381cee4 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x038471c1 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x038fb01e wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x0390210b sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03980b86 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0398a5f9 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x039b2f3f pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x03a5ff7c usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c6933b subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03cbe804 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03cfc346 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x03d3c9f9 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x03e173a3 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x03ef4760 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x03f654f3 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr +EXPORT_SYMBOL_GPL vmlinux 0x04149bd3 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x0417c55a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x04268151 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x042cacac _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x04300359 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x0431a32b lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x043bcb96 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x04404e2a devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x044c0418 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x045ab6f5 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046dc76b blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x04788bb3 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x0485838e __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x0485e7b2 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04917d37 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x049722af thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x0499ee58 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +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 0x04c84322 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04ccfdb6 zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0x04d1a9d2 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x04d3b83f devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x04d9a71c vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x04da80a0 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04edc6a2 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x04f321d0 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x05186ea4 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x0521d3b6 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053a15ac __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x0547b5d7 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05589cb6 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x056a25b6 fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x056dfd16 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x057a85fe of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x0581575e regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x058589ff phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0586d38f ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05987453 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05af72e0 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x05b35b90 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x05ca52cc rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x05cd9352 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x05d844a2 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x05dd4107 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x05e8cbe0 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x05ebf84e usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x05f1c239 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x05fb717d __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x06087fbb ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x06105fcc decrypt_blob +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 0x062b89c4 ghes_unregister_report_chain +EXPORT_SYMBOL_GPL vmlinux 0x062d9f23 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x0646fbed metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x064f9057 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x0652b533 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x06606ddb gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x06607991 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x06669421 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x067aea05 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x067e84ff dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x06801ff2 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x06b6f9e7 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x06b87512 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select +EXPORT_SYMBOL_GPL vmlinux 0x06c09d97 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06cd6d74 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x06d33036 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x06dd44ac meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x06fcb879 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0705931e devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x07136c96 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x07301dc6 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x0734f42b gpiod_get_raw_array_value_cansleep +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 0x0760abe1 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07844918 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x0790a77f kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0x079ca79f tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x07a7db5a bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x07adab23 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07bb7b2f led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c1edd2 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x07c85c38 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x07d959a7 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x07e90c71 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x07e9fbaf pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x07ec7d52 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x07f57bb2 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x0810a3c7 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x0810a528 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08189d16 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x08195e1c query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL vmlinux 0x08255cd0 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x08378b47 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0842946c gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x084e270d dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x085549e0 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x085bffd1 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x08634383 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x0866cab2 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x086fc3a3 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08d91ed1 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x08dd1421 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x08e4d717 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x08f3d0d2 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0909c767 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x09144a40 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x091dd0cc sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09321f68 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x09679728 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x09679d66 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x09768248 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x0992b059 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x099629da kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x0997f6f3 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x09a5fabe bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x09ab618e phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09ba0272 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x09bed121 thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09c7a843 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x09c8c3ce pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x09eae37b set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x09fc1588 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x0a03a6c9 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x0a056ded pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x0a20d0fd call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x0a39d42c i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a606ef0 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a6f80ea ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0a7a4993 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a9b6c75 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x0ab29f9b iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full +EXPORT_SYMBOL_GPL vmlinux 0x0ac2654f __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x0ac7e574 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x0ac8a42d xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x0ad2b172 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x0adcefc5 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x0aec6014 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x0af4f735 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0b9551 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x0b18914e led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b37d37f hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b469ca8 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b544672 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b5ab9d1 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x0b5e234f unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x0b5f221f sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x0b64bf62 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b6e11d3 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x0b885ce6 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled +EXPORT_SYMBOL_GPL vmlinux 0x0b92c4f6 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x0b969b6f wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x0b9f2f9a i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x0ba338b1 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x0bab942d mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc4635e gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x0be2690a devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf56995 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x0c00bd3a devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x0c01ba53 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x0c01e06d __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x0c07beb1 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x0c08f7de ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x0c1a5ee3 log_post_read_mmio +EXPORT_SYMBOL_GPL vmlinux 0x0c1f12ec iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x0c28d806 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c2d77b1 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x0c2e14d2 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x0c30212f subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3a89b6 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0c4e6733 scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x0c59bfa0 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x0c5f7c0e dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x0c75cfb7 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c85baf4 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x0c86e0d0 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8fb2a8 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0cbdb576 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc53992 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0d1c668d rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4a57b8 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0d4caa0a fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d58d600 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d64ca12 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d729c19 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0d744758 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x0d74b4f8 cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0x0d7c49a1 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x0d94e8ad __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x0da173dc vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x0dd2cf6d rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0decd521 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0dfe8cae gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e03d7d4 phy_restore_page +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 0x0e15da36 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x0e2e3f7c sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x0e3e8e5f iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x0e4d861e usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x0e522330 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x0e549e64 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x0e56cc5d crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6a5d7a watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e78efec evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x0e7bfa4a devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x0e8f55cc i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0x0e9a458a devm_ti_sci_get_resource +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 0x0eca0b59 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x0ece5600 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0ef35c84 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0efacc2f devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f00a681 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x0f0b30ae clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x0f1519c5 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f253e9c icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0f319600 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x0f4d703d platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x0f587a57 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x0f70f39e wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8282f5 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x0f998a92 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x0f99a5d2 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x0f9fa825 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0facfb1a mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x0fb8b7e7 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x0fb8bb37 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fca8d75 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x0fd1537e genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fe11958 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x0fecdf0e dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x0fedb06d pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x0ff58480 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x0ff80e7e gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x1012fd0e __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102ac62d spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x1032c41d iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x1057cb8a fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x105b3cd0 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1068772c of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x106d2a7d mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x106d7c79 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x1078cdae fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x1085cdf5 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x109bfccc ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10bb89cd fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x10c53b9c platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x10d1ea98 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x10d64124 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10dff069 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10ef1203 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x10fd1cde ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x110bad4a __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x110c30fa register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x111a6912 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x112e4919 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x1143ec04 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x1148c5d4 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x11732659 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x11787982 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x117938e3 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x117e4f4b pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x1184b58d sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x1196f1bc gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x1198ad93 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x11af7493 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x11c19786 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x11c377d5 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x11ce5d90 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x11ce71ad devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x11d1e5d5 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x11d21156 devm_thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x11d21212 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x11d9be3e sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x11ddac26 thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e01f05 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x11f189e7 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x12004a39 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp +EXPORT_SYMBOL_GPL vmlinux 0x120b0cc7 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x120e8ae4 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL vmlinux 0x121a8016 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x121c13ae of_led_get +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 0x124a1af6 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x124cbe3b edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x127aae48 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x1299311f scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x129e754e i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x12a3339c ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x12a49c8f strp_done +EXPORT_SYMBOL_GPL vmlinux 0x12a5d8b5 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x12a6902a rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x12adfa4b blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x12bb6b13 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x12bbf289 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x12bcd047 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x12cd44bb mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x12d16b0e pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x12d9231d pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12fbde69 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x12fd0bce iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x1315b4ad devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131c9910 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x131d3f2a dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1322e8fa perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x13313416 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1339d21d fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x133c0977 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x1347e6f4 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x135999b9 sdev_evt_send_simple +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 0x136f377c verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x13719548 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x13741487 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x1377b959 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x13783710 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1386bdd1 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x1388c64b of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0691 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy +EXPORT_SYMBOL_GPL vmlinux 0x139c4dc9 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x13a2cfc6 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x13a6d926 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x13c6754a skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13edacd1 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x13f0d440 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14065849 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x1408061e platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x140da34e wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x1418d3ce devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x14204d44 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x144e5b67 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x145a72e8 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x14639725 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146d01f8 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x14727061 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x1478e815 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x148003a4 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0x148e9529 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x1492ffbd gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x149d6e61 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x14b7bdbc sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x14c8a02d class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x14cb4162 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x14cc0358 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x14cd8271 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x14ea63b0 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14f1c8c2 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x150a4ef1 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x1516d64d mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x151c3d55 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x151dd7a7 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x153ba7fc __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x15403323 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x154b6ec0 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155c91f7 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x158fc4e0 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave +EXPORT_SYMBOL_GPL vmlinux 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15ddcb9e usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15ff2fed tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x160b94e8 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1624c88a of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x163666f1 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x1644bd3f vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x164871e7 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x1653c897 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x1657bdac pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x1674dd60 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1682b4ca hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x16ba88d7 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL vmlinux 0x16ce41c0 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x16d51e44 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x16d5774f dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x16d9bb07 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16f9a56b key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x16fbe83f devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x16fbfc42 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x16ffeb30 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x1705cbda pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x17087e94 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x171b0a70 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x1721ea35 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x17260e89 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174d03df class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs +EXPORT_SYMBOL_GPL vmlinux 0x1759c92a devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178b9f13 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x1792c20a fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x17938efe meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x1797e0aa regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x17c34b58 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x17c9ef41 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x17d4abf3 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x17d82bbf devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17f257cc pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18018a29 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x180b08a1 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x181d88fb elv_register +EXPORT_SYMBOL_GPL vmlinux 0x182231ef regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x18240975 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x18254292 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x18272520 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x182e7471 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x1832e0cd usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x183c3a6e altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1845f858 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x18548b7b da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x1884e42b otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x18a29654 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x18b3b2c7 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x18b49041 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x18b7581b mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x18b92be0 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x18be41c1 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x18beb6d5 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x18d1be52 __traceiter_rwmmio_post_write +EXPORT_SYMBOL_GPL vmlinux 0x18d7578b bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e7dffd blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18f0638c __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fd2848 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x19032d6d trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x1904b595 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x190517b0 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x194658ea blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x19679b84 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x198be1d9 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x198eac6d ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x19956a9c __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x19d148c1 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x19d19c77 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x19d62067 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x19d783cd cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x19dbb32a find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ebf04e __tracepoint_rwmmio_post_read +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x19feca4f ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x1a00a9e7 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x1a0e4f2b devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a141b3e xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a25b6f1 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x1a3bff95 of_device_compatible_match +EXPORT_SYMBOL_GPL vmlinux 0x1a3f1d9d to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x1a45ab04 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x1a4f8c58 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x1a5f2445 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a7783db __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x1a8074e7 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc +EXPORT_SYMBOL_GPL vmlinux 0x1a85ac30 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a9f9543 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x1aa6ccea irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x1abbec29 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x1ac2399d tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1aeb6113 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x1aee3144 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x1af1cacc acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af88ce0 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x1b11d325 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x1b1fcf9c nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x1b23deb8 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x1b334df9 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x1b4caa2c devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b59ec78 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x1b65e351 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x1b73a03a fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b845ea2 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x1b84cae3 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b885ab4 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x1b89138d regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x1b8d39a2 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x1b8d91a7 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba5cca7 acpi_dev_gpio_irq_wake_get_by +EXPORT_SYMBOL_GPL vmlinux 0x1bb20359 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x1bb84a25 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x1bb8bcb7 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x1bc05ebd shash_register_instance +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 0x1bc6d2bd platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x1bc7d2d4 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1bc97dd5 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1bd5d6a6 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x1be265bd rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x1c084224 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x1c1c78ab regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x1c1d487a edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1c1d6368 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c262a31 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x1c31abda device_create +EXPORT_SYMBOL_GPL vmlinux 0x1c3b1902 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c57fa21 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6fdd6b lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c7c1d35 switchdev_handle_port_obj_del_foreign +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 0x1c8bb8bd copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x1cb5e50c debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x1cb7a26c tcp_enter_memory_pressure +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 0x1cc95705 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral +EXPORT_SYMBOL_GPL vmlinux 0x1cf33fe8 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d110a62 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x1d1276bf crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1d2075c7 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d314322 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x1d32313c usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x1d33a353 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1d40aa8b fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x1d466bbe devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x1d536bf2 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1d5f48eb regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d76bcbc xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x1d7940ec __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1d90d3a7 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1daa2e6c acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x1daf3bc3 acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0x1dcc42ed clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x1dd19ac4 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x1de022ac __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write +EXPORT_SYMBOL_GPL vmlinux 0x1deb4daf gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x1def33f6 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x1df0537a of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x1df2db7b pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x1df7d1aa device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e065dee fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0998d1 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id +EXPORT_SYMBOL_GPL vmlinux 0x1e1e51e1 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x1e2054ec fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x1e288c83 zynqmp_pm_force_pwrdwn +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 0x1e574c63 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x1e5a1b9c ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x1e5f31a7 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0x1e639a7e device_add +EXPORT_SYMBOL_GPL vmlinux 0x1e695c42 gnttab_unmap_refs_sync +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 0x1e99983b vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1ea46e28 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1ea7ef63 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x1eaae6dc relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x1eb0e136 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1ef2a356 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x1ef48f61 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x1ef57d85 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1ef84bf8 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1f0eb992 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x1f152877 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f1d1d35 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f28750e md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4feb8b vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f7b2e53 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x1f7d5e94 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x1f7d654b tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x1f7f2121 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x1f7fbb85 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f930161 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x1f94d8c9 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1faa47eb device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x1fc297e8 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x1fe5fede icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x1fe683cb dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fee7136 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1ff42b67 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200b5c41 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x20161637 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x201d3777 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x2033de5d crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x204be645 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x2059f853 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x205d0803 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x205d2b40 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x20668bf4 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x206bdac1 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x206fa032 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x207170d5 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x2089f033 __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x208e96fb dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x208ef530 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x20911c0d wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x209ba777 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x209bd126 acpi_device_fix_up_power_extended +EXPORT_SYMBOL_GPL vmlinux 0x209ea247 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp +EXPORT_SYMBOL_GPL vmlinux 0x20a9cca4 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x20b53dc4 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x20ba7f0e fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x20d14850 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x20d4c6db genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x20f3a132 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x20fb580f uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x211e42d2 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x211f6e5e split_page +EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy +EXPORT_SYMBOL_GPL vmlinux 0x2136b58d sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x21394bdc mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0x213b16ab mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x214b2829 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x214cbd87 xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0x21531a90 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x215d66fc pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2160265e crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x21852537 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x218f0858 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x219c7717 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac2d83 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d31d8a devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x21db8bdb acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x21e6bca5 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x21fc5724 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x21fda1eb trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x21ff0a5d serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x22030e3b mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x220e3f35 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x22252daf exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2229ec41 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x222c6403 k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x22387748 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x223ff8fd bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2260346f kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x228a00c3 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x22943f88 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x229fa0a3 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x22a3c724 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22bee0a3 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x22cf2125 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x22d425d1 dm_hold +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 0x22ed6ec6 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x22f3daf7 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x22f7b07e ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x22fd2275 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x23084c69 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x231aa55f usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x2322fd04 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x233cb260 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x23410f1b ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x235256ff ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x235e6918 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x23649717 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x2373aa36 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238c6ba4 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2390c9cd usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239cdc8a serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x23b6b08d blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x23bdce19 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x23d032f0 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x23d0c42c of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x23d17254 mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x23f08c42 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x23f86780 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x240582d7 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x240598b2 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x24144614 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x241d85c5 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x2446e897 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x24567eb7 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2466ee12 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x247305e3 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x2475a2d3 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x248228d8 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248cda78 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24906139 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24ad9f40 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x24b2dc1d crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x24d59399 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x24d64df2 usb_clear_halt +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 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25025898 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x250e0220 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x251ae1f9 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253c66e3 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2545c2e9 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x2547b0a5 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x254d70a7 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x256ecd81 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x257049cc switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs +EXPORT_SYMBOL_GPL vmlinux 0x2583dffb put_pid +EXPORT_SYMBOL_GPL vmlinux 0x258ea182 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25aecfc8 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x25b188e8 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x25cac7c8 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x25d69101 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25e309e1 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x25e6d7d9 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25ea7951 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x25ff453f dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x2600fe04 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x2616adb2 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x26291a7d ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x26303834 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x263943ba input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x263cc75f pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x264063e7 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26602972 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x26703cf9 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x267f5e1d ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x2697f221 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x26a0857c virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26aa29b9 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x26aad13d usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b3ba46 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26ba3f79 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x26c5307d pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x26c72a21 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26dfeff4 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2714dca1 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x273b7225 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x273f66ed vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x27400030 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x2761dd3f of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x27649d75 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x276a5673 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x276c5611 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x278ee660 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x2793b0d1 mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0x2795b14d regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x2797c8fe ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x27a643b3 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27dea83d cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x27ed9d52 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28031b82 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x281a78ec blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x281e2d78 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x28316d51 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2838947c pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x28478bbf mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x2858706c fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286a9a45 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x286f47aa __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x289bd55b pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x28a23f80 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x28a4e697 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28aa9937 rtc_read_alarm +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 0x28b0cb1c of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x28b26ace transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x28ba7f47 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x28d0fa6a sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x29076a3b inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x290b0752 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x290fb122 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x291d6ad7 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x291f6f1e usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x292d5459 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x295b9b70 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x296682b0 zynqmp_pm_get_rpu_mode +EXPORT_SYMBOL_GPL vmlinux 0x296b80f2 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x296b82a3 pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0x2973f6bd mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2979ed0b xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x297ece69 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x29984028 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x29c15f76 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x29c3532e elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x29c9a918 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x29cb42f9 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fed896 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2a084103 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x2a241a35 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x2a2a56aa inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms +EXPORT_SYMBOL_GPL vmlinux 0x2a35570f pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x2a3d272d usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x2a43f348 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x2a4454a8 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x2a59d7a8 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a722238 shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a8342dd extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x2a8828ff pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x2a883539 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x2a8a4e6e crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2a940f79 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2abdd64c kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2acfeafc pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2aeed66f dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x2af1a9d0 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x2af5d610 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x2b0c13e4 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b2b1df2 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x2b3a4c3f kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x2b3f41f1 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x2b3fa4d7 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x2b413d1b crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4d99c1 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x2b4f01a3 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x2b585929 of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x2b5f951f gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b724d27 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2b741ac1 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b7abaeb usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x2b7b9ac6 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x2b815fdd bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x2b8285a6 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read +EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2ba75295 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2baa81b0 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x2bad70a1 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x2bb0c262 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x2bb21486 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x2bce2ddc register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2bceabfb modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2bced8cb pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x2bcfee07 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2bd382de crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bdeb4ce devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2be8103c rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x2be8effe kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x2bfb22f5 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c25f6f4 component_del +EXPORT_SYMBOL_GPL vmlinux 0x2c2fcffc dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c33669f dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c43200c gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2c4571d6 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c63c4c9 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6d06dc uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7ce7cd irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7ebfa7 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x2c870ce1 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL vmlinux 0x2c93c4af inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9e75a2 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x2c9f7d24 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x2cbf7ad2 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x2cd2bc2b regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2cd5f555 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2ce2a7e4 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2ceed485 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x2cefba9b tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x2cf21561 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d25dd22 dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d267231 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x2d28d4d6 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d310868 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x2d3e754e fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d5f6704 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d76a3ce fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2d7da5db of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x2d9c01a9 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x2da3051b crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x2dabf214 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2db4f405 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2db6a72f ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x2dbf4f88 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2dd01e3b __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x2dd0dfe7 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x2dd57d95 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x2dd8f098 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2de96c3a dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x2df3c9bf acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x2df62f82 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2dfd0393 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e07e292 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e286755 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x2e2c00b3 of_regulator_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x2e2d65b4 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x2e329d44 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x2e32ddc1 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x2e449d73 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x2e50d70f led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x2e5e9b7a devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e7db326 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x2e8746db crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x2e9ab7c3 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x2e9e1b94 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2eb4c7c4 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ecd684b pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2eefec26 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x2efa7302 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x2f033cd5 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x2f04a16a i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x2f09344d aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0df1eb regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x2f0fdd57 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2f10fcc6 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f25aeeb fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f429271 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f583cc1 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f6a09aa led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f6e2e21 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x2f738565 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x2f8de317 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x2f9b4d9f __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x2fa3c51b mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0x2faaf9e6 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2fb31c7e fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc95412 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x2fd22fb0 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x2fd873a8 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2fe4dc39 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2ff7973f dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x2ffada06 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x2ffafade blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x3021b5ff skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x302421a6 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x30261684 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x3029658f mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x3029ce49 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x302e380a unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x303b6dab crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x304a7364 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x306c72ef sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x308a7d79 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x30901ad1 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x30bbdff7 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x30bfd01c pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x30c6177b sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x30c73c04 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x30c828c2 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30ef99c6 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x30f9ec94 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x30ff1f0b crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x30ffe7d7 mctrl_gpio_init_noauto +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 0x31231f59 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31352428 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x313d44da __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x314a64ae blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0x3150608f nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x31670b3b fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x31780fd6 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x3179c937 vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0x317cbbf5 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x317fd2ba devm_mbox_controller_register +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 0x318af138 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x318db7ae device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319d0d38 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x31a0a01a devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b2127e dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31d55a24 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x3205bcc3 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3215f54d public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config +EXPORT_SYMBOL_GPL vmlinux 0x32332100 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x32333241 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x32375b09 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x32385c09 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x325cc02a irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x326103b2 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x32715af6 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x3275943a of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x327bb20f clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x327c73e6 __SCK__tp_func_rwmmio_read +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x328cb44b trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x3291506c gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3294dc13 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x329ae60a usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x32a2ed08 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x32a4dfa6 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bf2821 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x32c2f494 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d0217e mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x32d7ae08 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x32db7357 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32e3cedd __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x32eb9c5c dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3306ff30 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x330cd206 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x333d71d0 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x33412487 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x334babc6 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x337e0db4 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x33899a69 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x339bcf50 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x33a60538 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x33b2e3e6 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x33b957ea serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x33bfd8a2 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x33c90507 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x33cabd1c housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x33e22fff rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x33ea5753 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x33f9f1c5 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x33fd8517 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x34161e1d usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x341a1bb5 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x341fc1ff crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x343f7531 pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x34453854 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x34486495 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x345850f0 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x345e8b42 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x346752f7 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x3477386a regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x348369f4 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x34936253 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x34969cf8 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x349d4af0 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34b32e62 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x34b54746 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x34c83318 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x34ca1e1b ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x34d5658e iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0x34d9b62e serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34f4a5ef platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x350ca621 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x350ceed8 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x350eb061 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x350fea04 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x35273e20 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3528f212 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x352afe03 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3545e348 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x354796f3 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x355af9fa pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x355f4420 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x356e83a0 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x3589f72c ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35932435 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider +EXPORT_SYMBOL_GPL vmlinux 0x35b3818a devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35ca7ff9 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d66744 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x35dfea79 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x35e02054 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x35e51beb of_css +EXPORT_SYMBOL_GPL vmlinux 0x35eb47f8 mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x35f24c64 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x35f66056 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x3622978f fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3630c325 tegra_mc_get_carveout_info +EXPORT_SYMBOL_GPL vmlinux 0x3635c7a2 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x36367d01 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x365ff733 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x36636aec iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x367e5bc8 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x36942ea7 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a841c4 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36b1b9ed perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash +EXPORT_SYMBOL_GPL vmlinux 0x36e01d7c skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x36f06933 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x36f1c175 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x36f66470 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x37107bda perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x3711bc7a of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x371c6250 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x372d969e phy_create +EXPORT_SYMBOL_GPL vmlinux 0x372e19ac vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x374e3fe0 mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x37502e7a bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x37637e8a regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield +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 0x377c0b1d device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x379695c3 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3798420e acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x37a84887 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x37b78381 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37b870b2 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x37bee430 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37cc1e37 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x37fbcb9e mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x380dcbc5 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x38212288 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382fbb69 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3836aae0 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x3836d2da bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383b988a devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x386f85a8 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x3870882c mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x387d0f17 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x389a5842 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x389e2552 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38aad7d1 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x38aff0ac crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x38ba72b8 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c815ad da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x38db6665 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x38df3c9c kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f30d56 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x38f8f94d fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x3902f1c8 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3906be86 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x390a845f gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x390de0ce aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x391637bb sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x39419f69 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x394540b8 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x39491efe kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x394a38c2 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x394aabfa rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x394adafc crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x394cf21b acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x3952f802 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x39536d7c spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x3968b2c5 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x398b5a31 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x39948a3f __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0x399895ba battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39cf92a1 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x39d7baed __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x39d8bc33 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x39d8c87c max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x39da3978 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x39dd4f78 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e17755 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x39e1c8eb pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a01df9f __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x3a06711e fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x3a084943 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x3a0ef4df clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x3a17ac56 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a263bc9 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x3a36b187 clk_regmap_divider_ops +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 0x3a573bd3 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x3a5ec137 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x3a62b5c6 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3a72d227 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3a74aff1 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a777cae devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x3a780031 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x3a7c0cc6 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x3a7e7b36 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x3a93c878 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9cccd7 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x3aae3171 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x3ab394a3 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x3abbb7b4 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x3abbe829 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3af31805 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b08cb58 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x3b0904b9 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3b28c267 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3b3202de pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b3a7fde netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x3b3d387a pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b53c87e acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b71e09a set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b7fd32a devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x3b84136c gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x3b948e1e input_class +EXPORT_SYMBOL_GPL vmlinux 0x3b9e6151 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba77f0b ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x3bbaf38c acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x3bbc10f1 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x3bc20450 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x3bcaec31 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3bced1dc usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x3bcf6954 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3bf0a626 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c084805 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x3c09936c devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3c0ad5bf gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x3c0d0deb pci_doe_submit_task +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c0f97f2 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c136aa9 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c31d140 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c3e73f3 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x3c42b2de mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3c430ecf put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c503ccc __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c6574f3 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x3c66b842 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x3c66ec19 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c6f1c95 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x3c77672f regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x3c8c4046 iov_iter_get_pages_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3ca6e54f devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3cb0a1e5 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x3cbd0e78 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cbfe6b6 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x3cc86b4b power_supply_class +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 0x3cf08240 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x3cfc824e iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x3cfe854b devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x3d1c0e17 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d7b1c39 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8ad026 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3d9fb239 led_put +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3daeebe5 psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x3dc32080 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x3dc4299e ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x3dcc0c48 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x3dd7412a find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x3de18544 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df09dfd blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x3dfab231 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x3e02c0d6 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x3e22d3bb powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x3e23e9af sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x3e299139 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x3e2c0f03 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e323f06 device_del +EXPORT_SYMBOL_GPL vmlinux 0x3e34ba6c nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x3e43881f gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x3e64c451 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3e6982ee pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule +EXPORT_SYMBOL_GPL vmlinux 0x3e7b4481 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3e9e7ccf pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ec782df mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put +EXPORT_SYMBOL_GPL vmlinux 0x3edce7ef dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef06b4b bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3f049829 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x3f0aec3e phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x3f1b44da mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f1d0668 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x3f38002a inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x3f3a174a phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL vmlinux 0x3f3b576d tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x3f3d3018 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4f2bde pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3f63dd92 imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3f6f1944 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x3f712847 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x3f73d1f8 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x3f794666 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ea54e mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb3c4a6 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x3fb7ee7a icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x3fc7a051 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x3fc8cf80 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x3fdef1e5 __fscrypt_prepare_readdir +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 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x40111e22 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x401c6bd1 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x4022c079 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x40289b0c ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x4028fe1e pci_msi_mask_irq +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 0x4043c5c9 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x405411a9 blk_mq_unquiesce_queue +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 0x408f3cc2 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409ba13d __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x40a554ec rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x40b7ee70 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x40e75076 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x40ee13a7 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x40f028b3 zynqmp_pm_set_rpu_mode +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f6b862 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40ffa44d usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x410c3c83 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4117a5cf ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x411d9afa ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x41339a60 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x413aa623 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x413b2aca platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x4140b07f crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414dc41b task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x41740bc6 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x418de9a6 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x4197f9ee nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a6ec0f virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41ba8721 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41c35c6c gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x41c8711b device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x41cb5280 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x41cd71bf folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x41cfd711 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x41da8b27 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x41df3118 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41fef1b0 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420a1630 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x420a6486 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4223b577 mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x422cfdb8 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x423bb60e power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x425057a9 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x425270ce cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x4257b59d sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x425fb8f0 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x4260ae60 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4262ed01 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4293827c invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x429a9250 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42a43fcd hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x42b0cfb7 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42d90efb security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x42e07351 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x42e28d19 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x42f68d23 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x42f69565 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42f7af7d of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x430bcfdc nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x4322ea07 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x4338823f iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x433f9a41 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x434d12e3 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x43578968 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x43685e67 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4388a6d3 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x439ab78c vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0x43a7cc0c badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43b1c24b __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x43b5ced9 mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x43bccadc kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0x43c081a3 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear +EXPORT_SYMBOL_GPL vmlinux 0x43ea9d0a fsverity_ioctl_read_metadata +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 0x44065eb7 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44075f2d gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x440f0dcd mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4413f461 zynqmp_pm_request_wake +EXPORT_SYMBOL_GPL vmlinux 0x441b696f dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x441ead68 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x4422ac24 zynqmp_pm_set_tapdelay_bypass +EXPORT_SYMBOL_GPL vmlinux 0x442575b5 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x4428880e rtc_class_close +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 0x4443103f blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x44487212 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x444ee493 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445bef2e mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x446534f1 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x446b8340 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x44717ff1 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x447a516d wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c52932 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x44c59f20 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d41133 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e84674 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x45031f98 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4509547e wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x4520939f usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x45320b03 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x454f8df6 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x45505a7e mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455e2647 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x456b5384 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4574f8b2 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x458f5e09 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x45990a15 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45a398e6 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x45cd9ede class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x45ddddf2 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x45ddde38 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x460510c6 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x4611ddc8 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries +EXPORT_SYMBOL_GPL vmlinux 0x46415f21 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x464a4fa3 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x4651eeb1 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x465e5c11 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4661525b crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x46647632 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x46704959 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x467bfb2c devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x468399f9 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x4683d404 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46868844 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46965adc l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46addbc7 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x46b315b4 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x46bf5b4f vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x46cf2607 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x46dac34f l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x46e090a7 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap +EXPORT_SYMBOL_GPL vmlinux 0x46ef4b74 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x46fc2462 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x470abd80 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x47112d89 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x471bb1aa dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4727b3e8 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x4759d3f1 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x475cd8b7 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x47609558 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4775f47c regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x477b0025 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x477f6bc2 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x47912ebf __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a310d2 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x47aa0162 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47bd31d7 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47db75fa pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47ed8d38 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x4811d107 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x481984dc pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x481efbc7 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x48252283 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x484863d4 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4863e874 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4871bc42 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x48766de1 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x489436bc watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x489e25f3 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48b70a69 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48ca9385 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x48f70004 acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x48f76756 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x4924016e acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4938929b fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x4939b7cd xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x493acfc8 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x49644d73 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x49791622 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x498e9b54 fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0x498f6663 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49999d89 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x49b39458 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x49b9e171 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49daa036 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49eb633e of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x49f7c8f3 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x4a05e7b1 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x4a07c691 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x4a09ed7e class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x4a111b5e scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4a163510 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a194166 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x4a1ea929 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x4a200a61 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x4a2577a9 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x4a28a966 vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x4a3c345a inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4a3f5835 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x4a3f7485 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4d1ed3 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x4a4d5be8 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x4a51d514 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x4a57afbb usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x4a67f727 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x4a6c0e9b regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x4a9441ed ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x4a9ed289 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x4aa76b7e pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x4aac07fd crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4abf3bdd tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x4ac0be8b irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x4ac76374 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x4acb2cbc uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x4afb3a6d blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x4b1d0846 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x4b2259ab ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x4b45e99e power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x4b4ce860 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x4b51d077 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b5b3ad7 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4b97931d bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x4ba8ecdf devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x4badfa45 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x4bb58844 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bd703ee dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be64845 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x4bec28b5 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c0dc948 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c35a6c8 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x4c411dc2 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x4c462a2a regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x4c463dc4 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x4c48a5df wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x4c4d021c ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x4c4fb373 k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x4c519b5b apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x4c540a02 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c622f47 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4c6dfa40 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x4c72db70 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x4c752302 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x4c797313 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c9b0b55 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x4c9f38ce ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4cad5e99 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4cb0c221 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb558ed regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cc9e938 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x4cd837b1 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x4ceab956 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4cfa870e __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x4cfbeadf clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d03e677 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x4d080177 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x4d0904b1 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x4d10f718 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0x4d1ad218 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x4d1b5158 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x4d353342 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d433fda crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x4d599d0c of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x4d5d4460 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x4d611e57 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x4d6a36df receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d74bfe4 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x4d7ffe5a devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x4d8d6ff9 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x4d920fc7 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x4d9419c6 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4d9dfa59 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x4da4aceb power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dd35fde iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de8c87e usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x4df4c27c dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e073927 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x4e114d3d mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x4e15d00e fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e1c1602 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x4e1f5676 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x4e2f3c90 mtk_mutex_enable_by_cmdq +EXPORT_SYMBOL_GPL vmlinux 0x4e3464a5 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x4e3e3f71 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e400ab5 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e5c9ca4 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x4e5fc9c4 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e70c6d7 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e7f103c devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x4e886371 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x4e8c2c1f device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x4e905bb2 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x4ea27b59 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4eb3d459 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x4eba4cf1 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x4ecbfb18 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ede85da mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0x4edee942 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4ee03f81 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef71873 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f193837 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f2dc428 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x4f380771 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x4f3c7b9d trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x4f5941c2 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7c45e7 mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f956c0c devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x4f95c716 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fa7fd13 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4fb0b480 vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax +EXPORT_SYMBOL_GPL vmlinux 0x4fb79eea rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x4fb7fb28 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x4fcb7a9b virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x4fd31916 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe144eb phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ffacc8b kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x500077f4 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5010f2bd bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x5019a30d cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5023463b tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x502524cb wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x502fd5c8 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x50511e86 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x50576cfd vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5057d2b0 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5063c533 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x50651554 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x50810db4 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x50875d3d phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50aa5f84 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x50b3b028 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x50b621cb crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x50beed89 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x50c94ce1 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x50d2eadc __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x50dc8135 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f11e06 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5111c228 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x5119a222 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x5120b0fd dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x512aa814 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x512b0083 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x513080f7 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x5137e319 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x51511419 do_take_over_console +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 0x517bdedb tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518a4899 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x518d7435 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x51963b60 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a7d84d k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x51c9211d fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x51cba197 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x51cd8b7c pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51d22200 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x51d2b4cc rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x51d5c320 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x51ef981d genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x51f16d52 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x51f3c276 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x5200796a acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x5202d7b2 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x521df04b dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x5220e6e3 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x52221bb8 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x52441a34 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x52448504 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x525ffa35 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x5263ee9d clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x528052fc attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x52824884 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x52828563 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x52931a59 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x5295ffce of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x5297eec0 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x52a70ef2 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52cc089a device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d0bd98 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52d63b78 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x52dbeb01 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x52e4bdc2 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x52e96188 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x52ecd061 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x5300e1f5 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x53219eb2 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x53296453 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x532b4423 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x532b788c srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x536f3a94 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x53836d85 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x5384c087 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5391797a pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x539d915e ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x53a6e77f handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c9b975 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x53d344e0 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53e17219 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x53e643dc blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x53edda28 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x53f4ee48 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x53f860b4 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x54130b19 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5423c1d1 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x542f7d17 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x543ad29f usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x5443ff03 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x544aeff7 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x545db595 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x545e135b mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x545f15e1 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x5486d70a pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549bb1f6 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54ab2016 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x54d4c2cf gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x54e59f09 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x54efbf21 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x54f6f681 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x54f859e3 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x54f88877 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x54f8a881 md_start +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x552cfd5f fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x552e39c2 component_add_typed +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 0x5541797f xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x55417f6d crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x5563cf04 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x556b1f25 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557b9fea device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x558e31ff device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x5595c121 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x559a2ff5 device_register +EXPORT_SYMBOL_GPL vmlinux 0x559d03ce dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x55a41fe0 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x55b1bf67 netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0x55b26a92 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x55c1964c virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c86512 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55d06fd7 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x55d606b8 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x55d91921 alloc_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x55da5717 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x55dba3c1 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x55ebf81a devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55fd76b4 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56277c1e __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x562b017f samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x562f57dc sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56327597 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x56329e44 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x565716e8 dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0x5657c478 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x56593cec ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x5664604c rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x56750213 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x569146b3 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x56963330 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x56a01cf1 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x56a73db3 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x56afa993 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x56b26a0a __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x56dda59d md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f6d2a3 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5706718d nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5711320e pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x57128644 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x57269f8f pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x572ee4ac devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x573a479c ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x574082cd of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x5740a630 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x57410545 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x574138dd device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x574703e1 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x575984a8 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x576a3eb4 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL vmlinux 0x577798fe k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x577b7d22 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5791eedc gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x5797ef8d crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b6b03e md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x57c2b2b3 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x57c8a21e dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x57c941de icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x57cdcb60 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x57d2b441 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase +EXPORT_SYMBOL_GPL vmlinux 0x57e68b93 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x57f3e278 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57fa37a4 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5808ecd2 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x5823dc42 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x5824d5e7 devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause +EXPORT_SYMBOL_GPL vmlinux 0x582f82a9 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583f5824 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x583f97a6 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x58434069 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x5845f5fa ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x5851312c xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x58559e6f extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x58628669 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x58697791 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x586a4bab dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5872077a phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587d5713 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x588b563f raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x589992d7 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x58a06c9f da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x58a24dc4 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x58a78e97 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x58aa8cb9 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x58af5998 vp_modern_get_status +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 0x58e352de pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x58eee723 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x58fa50c0 __traceiter_rwmmio_write +EXPORT_SYMBOL_GPL vmlinux 0x58fd31b3 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x5905564c regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x590eed7a crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x59205c9a rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5927a46b usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x592c5577 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x59506a5d dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x59563e1c blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index +EXPORT_SYMBOL_GPL vmlinux 0x5959909e blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x595b8884 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x5961a131 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x59632aee pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x597cd356 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598f4fa5 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x59ad2af3 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x59ad875c md_stop +EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c6f15b xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x59db9622 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59e7b5fb devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x59e8b77d akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str +EXPORT_SYMBOL_GPL vmlinux 0x59eef7a0 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x59f16162 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a2101b3 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x5a22eb2c i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0x5a3bd277 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5a447be0 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x5a49da9e xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a5378e8 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a5a02dd vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x5a6616a8 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a6d16e1 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5a6de829 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5a70881e pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8d1e73 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x5a8fedb2 vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0x5a9a8777 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5aa09066 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab41317 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x5ae03df4 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5aec98f0 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x5af898f7 regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x5b00292e pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5b0c5826 mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x5b0f6769 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x5b1aa8c0 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2967a2 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x5b5aa624 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x5b635064 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b6d4e87 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x5b7381d4 tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x5b8688df ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x5b8b402b tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x5b9a189d ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5b9d1dfb dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x5ba53a3e driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ba99739 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bad3f2d cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x5bafce74 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x5bb76755 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bc96f91 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd0c4fe skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be78883 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5c0238fe of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str +EXPORT_SYMBOL_GPL vmlinux 0x5c0d5774 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c1c1f88 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0x5c24aa11 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x5c275c80 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x5c2d9eaa tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x5c2e0eb3 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c3b39fc nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x5c3b5ef1 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c3d936d sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x5c47020f of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5c47aefa of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x5c533980 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x5c541a7b of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5c5949c7 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c626a86 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5c6800ed regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x5c6adf05 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c8a917a regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x5ca59713 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x5ca76ba9 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb45150 mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x5cb465c6 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x5cba0b14 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x5cbb10bb ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x5cc57fd2 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5d022b85 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x5d08ef67 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x5d0e84c3 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x5d0f590b pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d191fec ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x5d1b7214 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2b0d55 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d2c2797 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x5d41cfa1 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x5d5814ff switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x5d5e0dae ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x5d67d25b generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5d69a8d1 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d86ed72 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x5d9c7c8e ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL vmlinux 0x5dc39d07 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x5dc82b0d gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5dcb8588 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x5dd40bfa mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5de06d63 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5de5f275 ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5df39568 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x5e004da1 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e282008 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e6718a7 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x5e6d731a genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x5e73e3ec crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e79f4f6 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e9c0475 tty_kopen_shared +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 0x5ecf0ade usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5ee8153e ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x5eed0f55 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x5eeda8f1 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x5f022184 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x5f1ff8b8 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f318c80 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5f4ca985 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x5f54f693 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x5f55c64c thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x5f5ab22f clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f85660e usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5f8cdeae fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f8d67c2 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x5f932416 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fcce390 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fe6d4b1 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5fe97cb7 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x5fe9e823 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5ffda8a2 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x60005e83 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600c55e1 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x6016e4b6 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x601f4613 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x60259126 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x602aeebb blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x603c097d spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x60415246 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x60474c2e crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x604ec99b bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x6053e307 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x606d430c pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x607100e1 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x60827c18 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60947ae2 dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x6095d5d8 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x60a03392 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60bf7801 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x60ca810b mmput_async +EXPORT_SYMBOL_GPL vmlinux 0x60cc7f02 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x60cf10e7 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f56e9a serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x60f736f5 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x6109545e fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612a2b4b gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x612b84da dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612dbfef gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x6132f335 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x613f15c4 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x6156e76e task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x616616c1 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x6169fa04 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x616acd16 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618873e9 do_xdp_generic +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 0x619d99e6 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x619e6247 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x61a2907b gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x61b2346a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x61bcfd76 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0x61c65257 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x61c92a45 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x61c9cc4a phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x61d0dff1 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x61d8d120 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x61ea9c2d ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x61ebf7e1 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61fbaa08 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x6203ffdd dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x6204bbf0 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0x620a076c edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL vmlinux 0x6211523f gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x621491c7 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x62395a6f usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x62402093 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624821e2 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x62508257 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x62aa5ff2 mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x62b5f982 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bf54e5 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x62c07cb4 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x62cd29ca dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x62fcfeef sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x632d5054 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x634b8fdc iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6355d931 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x635c7f86 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x635f88b8 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0x63641c31 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x6364ef34 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x63831076 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x6389d87b fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x63a1f3ac regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x63a2131a ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x63a270b1 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x63a839bf serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c2753c fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x63c9489a trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x63d550ab skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f7cd08 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x64005703 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x64123a1d clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x6414c31c extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x641cffe8 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate +EXPORT_SYMBOL_GPL vmlinux 0x643f5840 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x6442c34b iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x645e8105 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x646209a3 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x6462feda ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x647608d0 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x6481c38e pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x6485cd35 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x64866a44 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x648c7d31 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x6499911c rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x649f5cc3 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x64a1a5ce phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL vmlinux 0x64a29cf8 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a9d888 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x64cae109 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e8f4ab ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x64ec7947 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x64edfd16 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f562b2 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x6514c11a tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x652317c7 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x6525bb03 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x652a7fa4 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x65413958 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x654f1dfe of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain +EXPORT_SYMBOL_GPL vmlinux 0x65527634 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x6565251c pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x65664082 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x65898aeb __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65bd0676 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x65c66b8f unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x65edbcd3 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x6612da84 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x66158cdc dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6620579d platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x662a19fa __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x6631f54b unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6644bcd1 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x6648db98 __SCK__tp_func_rwmmio_post_read +EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x66514f32 fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666a3f98 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x66715e0f set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x66797619 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669153d0 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x6698163b hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x66990840 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bc8516 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x66c2a511 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x66cdb3f1 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x66d23404 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x66d7e5d8 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e8b5b0 phylink_caps_to_linkmodes +EXPORT_SYMBOL_GPL vmlinux 0x6701eca6 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x6708cf04 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673e9c35 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x67687c65 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x676fb38c gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x6771e921 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x677d8cce inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add +EXPORT_SYMBOL_GPL vmlinux 0x67813fa1 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x67861f71 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x67952bca cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6795bf4d edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x679b528e devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x67b827b5 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x67b9b5bd pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x67c17263 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x67c50c6a pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67d647cc ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67de4d64 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x68012e92 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x681ea93f xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x68267dbc gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x682bf892 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68362963 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x683da9b9 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x6845a7e6 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x684ea889 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x685d316b gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x685f6f33 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x6861ec54 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x687b0c10 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x6880d115 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x688d95a2 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6890848a regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689e935f acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x68ac5208 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x68b299dc tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x68b9a30e clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x68bdd53f sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x68bde11e __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x68c24a7b devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x68c4a976 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x68cb8e5e crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x68e51dbc mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x68e98060 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x68eb9498 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x68f3d7b2 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x690556c7 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6915a08d pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x691dc0eb wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6920aca6 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x6932af07 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x69380f65 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x693ecfd6 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6959fc02 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x6968c27f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697b9b05 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698edfc3 zynqmp_pm_set_gem_config +EXPORT_SYMBOL_GPL vmlinux 0x69b12abb iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x69bd17ae pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x69c93748 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x69cbedf2 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69fd694b kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a0784fb hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a38206e hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6a3cc07a icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x6a3e6b17 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x6a40bf95 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a469b6d gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a57b5b7 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a5cf881 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x6a6d777a thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6a78f83c transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6a79d955 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6a7a822a usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x6a7e7928 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a870e0a balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x6a8b54d1 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x6a92a9a7 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function +EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aaa5974 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab983cd regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x6add779f rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x6ae50e32 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x6aff7594 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x6b02ccb0 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b1161f6 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x6b16c0e7 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x6b1cdf92 reset_controller_register +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 0x6b47c54f ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b489b99 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x6b52ddf1 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x6b554986 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x6b5ebc16 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6b697e5c __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x6b722180 log_read_mmio +EXPORT_SYMBOL_GPL vmlinux 0x6b77c993 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b7f576a crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x6b88f414 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x6ba329ec pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba61381 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x6ba691f2 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x6bb6649e rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bcbf363 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x6bcd23b7 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bcdf419 serdev_device_write_room +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 0x6be9a8bf metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x6bf70157 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x6c000b4b usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5396c5 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x6c574a02 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c6148d0 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c69c1a7 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca4a52a ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cae8d44 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x6cbe96d1 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x6cdd457a balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d06816a crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d15358d power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x6d16b294 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x6d1a470a generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x6d1f1e82 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x6d20a0b5 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d32ed57 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x6d4370b2 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d4a171a tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d841a44 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x6d914892 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x6d9a97f5 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x6da1941b of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x6da29c4f debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6da6d641 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x6db9b7d6 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc59baf of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x6dd40f6b blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd7c550 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x6de37a2f pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x6de6d4de scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x6e00774e tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x6e085162 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e0fd0ef fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x6e12bc01 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x6e16e3e7 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x6e235fe8 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x6e25d462 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x6e2ed83a __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e3c8ca5 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e603813 usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x6e6b3708 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x6e94eba4 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x6ea890f1 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6eb9d7f9 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ecc57c4 dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x6ecf7e35 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6ed20c8e devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ef91656 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x6f072486 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f16a264 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x6f16e59e encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x6f1b60c5 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f3911ae vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x6f45077c da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6f4ac336 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x6f516bda serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6f59c93d uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x6f5d54c0 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x6f606827 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x6f64524f blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x6f668d0a watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f6d6e37 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x6f77851a sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f8bd86e devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fb6d0ce __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6fc8741c dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x6fcad498 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fcefd7c clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x6feb8981 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff840ed adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7016a1d0 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x701a9c96 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x7028989f device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x702d09a5 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x702d13c2 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x704159c0 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x70423efb zynqmp_pm_set_sd_config +EXPORT_SYMBOL_GPL vmlinux 0x704b7aba dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x704cb2a0 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x7056a340 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x706036a5 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x70650430 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7092c846 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x70a9701a regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x70c1e2b8 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c820e6 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d6c958 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x70f5b3ac ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x710298e2 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x71073933 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x710b568e fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711355dd skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7113aeb2 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x711d7bce clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7120c3f8 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7168e1ee nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x71692592 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x717aa660 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7180dd53 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7182ec45 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7199782f umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a5b465 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71f1be0b power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x71f45b4a xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x71f4b5bc acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x71fd3a1f mtk_clk_simple_remove +EXPORT_SYMBOL_GPL vmlinux 0x721a04c9 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x721a0da0 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x721dac67 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x721e8128 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x7226b799 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x7262ffea proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7275cdd9 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x72aa9c9e mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72b57216 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x72cb345e irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x72d07d89 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x730a8f5c pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x731a74f4 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x73220f75 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x732f7a80 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7339958e inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x733f713a kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x734405e5 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x7344fe0d fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x73515c29 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x73516e9a vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7354ff28 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x735a6839 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7365ab1d xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x7366a6d0 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x7367014c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x738500b1 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x738de763 imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0x738e51ff ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x7397bc7a synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x73a3798b netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ac2b41 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x73c0b428 of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c2f5f1 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x73c57816 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d7227f wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x73de24ea crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x73decd33 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x73e98bdf pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x7402d6f5 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x7408ec14 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x743779ca bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x745429e7 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x74685d13 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x74867098 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x749cad90 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74b07106 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b62191 inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bc7a54 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x74bce563 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area +EXPORT_SYMBOL_GPL vmlinux 0x74e31238 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74f25789 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x74ff2b1b bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74ff5d36 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x75016f75 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752f3124 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x7534596b mtk_mutex_write_sof +EXPORT_SYMBOL_GPL vmlinux 0x754208e4 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x754a85af skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x756ea1e3 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x75712eb7 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x7575606a usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x757d6909 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x7586fb25 ulpi_viewport_access_ops +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 0x7596a3fe mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x759cfaf8 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x75a3a41d acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0x75af39ea dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x75bc724a tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x75d15af1 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75df824f usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75f32a09 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x75fdd5bc dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x761d7e4f bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x761dadc9 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x761eaf86 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x7636d8bf __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76378dab l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x763af8fd wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub +EXPORT_SYMBOL_GPL vmlinux 0x765e4b98 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x766efe9f folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7685da82 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x768bb29d regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x76969248 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a61e85 __SCK__tp_func_rwmmio_write +EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d8a61f clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e32c44 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f5208e ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x76f93b57 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x77001bb3 ahci_platform_find_clk +EXPORT_SYMBOL_GPL vmlinux 0x7709852e irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x770a48c4 gpiod_direction_input +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 0x773552b4 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x7741f574 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x774f68b5 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x776465ee cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x777aa3dc crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x77a2c5d0 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x77a8800c regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x77a8a734 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77da4173 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x77dbc136 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x77e46470 vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ec29c8 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f08b59 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x77fb973a irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x7809ac30 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x78216fb1 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x782e658b platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7838239d devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x7839e012 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x78480b1d regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7856c3da sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786f250b sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x787ecc26 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x788a1d52 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x789b3f2e efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78af0370 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x78af120b scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x78b61fa9 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x78ca8b4c icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x78d9924b class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78dfd470 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x78ed8ca2 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x78fa1c11 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x78fc0b43 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x79087314 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x791016ce pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x7914d7c8 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x79257161 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x793f98bc __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x7948071e __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794f2f27 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0x79548ef2 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x7955bcea regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x795b7015 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x796391d8 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL vmlinux 0x79684b9f of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x797002a4 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x797043fa rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7977d0a8 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x79860ba5 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x79904ade crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x7997f744 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x799c91d2 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x79a231d9 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c6fd78 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x79c78c4b start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x79cdecc0 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x79d034eb extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x79d4a1a7 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x79d54424 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x79d6b4ae __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x79d84e6e xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79fa7a80 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a55df27 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7a5c7d follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x7a7b7163 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a82ad14 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x7a84c5a9 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x7a8d6147 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9a2287 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7ab50ad2 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x7ac08946 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x7ad81ecf devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7adb0648 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7ae8ad62 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b0e9112 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7b12b9f8 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x7b27cb23 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x7b2d9ce9 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7b315ed5 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b34c053 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x7b489b2d smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7b4a9fff of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7b4cb0e5 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b601bae ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b7fd284 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x7b8140d7 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x7b88ecb3 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b961919 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bae44b1 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x7bb00848 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bc8a4ac blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x7be05c3a devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x7be65e18 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x7be7c216 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x7be9c3dc gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x7bea3d51 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7bf46b76 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x7c1038e8 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7c1dc142 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x7c204167 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c36629a irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c41650c iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x7c427147 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x7c5db379 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c7031af evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x7c763f08 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x7c7af95d device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7c8c1dc9 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7c979ab5 pinctrl_generic_get_group +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 0x7cb7acf0 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cb94005 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x7cc551ef __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x7cc7dd8d of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x7cc8911a serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x7ccb5b6a crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7ce31e9e fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d10bb03 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7d152128 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d1cf57b usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x7d374758 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d49f317 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7d558968 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5e2876 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x7d69d7a6 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7d735ec8 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x7d7481f4 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x7d8440dd cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x7d87dfeb rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7d8ee6ea tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7d9baf10 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7da9fe8e clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x7daca4dd clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x7dacc828 xfrm_audit_state_notfound +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 0x7de7cb28 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x7e10a1f4 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x7e13c385 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x7e2aa899 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7e2d29cb blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x7e31f37e bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e3f4201 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x7e49dff6 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x7e5302cd usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e5e4081 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x7e6317b9 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7640a4 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x7e76425a gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7b2749 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e88d000 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e9bf897 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7ea530d2 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb62360 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec27ddb virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x7ec7c8da nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x7eca6455 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7ece8833 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7ef5a3b0 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f18663b ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7f1b7458 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x7f2315fb fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x7f261138 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x7f310294 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7f363ddc iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7f3b3ed6 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x7f3e15bb meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7f4b6414 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7f4e2c0c regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7f606d9a ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x7f63f7c6 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x7f6c8319 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84b824 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f8bbe0d __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x7f94acc1 dw_pcie_setup_rc +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 0x7fd4be10 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fe71d92 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fe791cd tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x800b1967 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail +EXPORT_SYMBOL_GPL vmlinux 0x801bdb5b usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x8023e081 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x802f59a3 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x803c68a3 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x80506acf regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8054171e rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x8058fb0a thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x805cabb1 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x805cd689 irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x80743f0c devfreq_cooling_unregister +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 0x80a095d8 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x80a18b7d badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x80a34b0d of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c88514 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e3e2b3 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0x80f3257d hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80f479ed rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x810d0f27 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x810d116a sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x810de270 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81378f51 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x813b2d90 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x814193df pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x814b04fd ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815aa341 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x815c2736 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816171ee meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81816cf1 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x81836825 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x81888b58 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x819068b9 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a70cd7 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine +EXPORT_SYMBOL_GPL vmlinux 0x81b721bc devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x81bb237a fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x81cb32ab da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x81cf5282 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81dbb639 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x81ddc372 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81e301ad serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x81ee23df clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x82031ded of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x820666a1 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820a3b36 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x820f949e kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x82276e40 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x8239906d tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x823a7179 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8245cca0 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x824b4c70 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x82509138 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x8252ff4c mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x82532609 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x82597284 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL vmlinux 0x825cd2c2 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x826d8d18 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x8272ae14 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x82737ff7 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x82857b09 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x8286a2c3 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x82921048 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x8295e9c9 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x829953f8 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x829f4352 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x82a17eae blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x82a6fc49 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82c3b81c platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e001c0 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x82e11176 dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x82eb4a72 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x82ebbe79 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x82ee4cb9 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x82f3d4e5 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x82f4bfdf __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x830b28d8 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x83102556 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x83249953 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x8327f4f1 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833ca17a thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x833fa097 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x834026cf irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x83516a22 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x836603b1 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x8367fff5 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x8373bff4 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x83965960 mtk_devm_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x83975853 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x83c34b09 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x83c7f688 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x83d79b47 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x83e625ca fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x83efae39 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x83f88e79 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x83ff5d78 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x8400e12a synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x84089932 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8416da6e tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x8422a5ca ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x8429e03e get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8434f58d iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8444f56c dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845affb2 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84750510 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x84785c47 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x8481e3b5 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x84870e81 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84a06793 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84b2d561 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x84d7daa8 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x84dc473d nvmem_cell_read_variable_le_u32 +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 0x850c8220 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x85680ad3 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x85726b25 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x857fa476 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x85891a5b fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x859b1ff6 phylink_validate_mask_caps +EXPORT_SYMBOL_GPL vmlinux 0x85aaa205 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x85bcafa9 rockchip_register_softrst_lut +EXPORT_SYMBOL_GPL vmlinux 0x85c5aa4b nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85e08fa4 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x85e112f2 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x85e24f6a nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x86083d3c balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x8610843c tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8611df0b fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x861fa4be devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x86413971 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x864e1bd0 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x866467e0 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86685ba2 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x866ec7ce ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8692b143 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x869a4925 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x869bcb01 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x869cc8cd usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x869f49ea tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x86a4a8bb pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x86b0aa86 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c431fa __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86ca80c3 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x86d55d24 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x86dd7280 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x86df4715 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x86e69fcc nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x87098e04 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store +EXPORT_SYMBOL_GPL vmlinux 0x8740a6c7 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8750553b ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x875a5983 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x8769abed ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x877fa0a4 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x87877fec alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x879e35eb devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x87a0bd4b rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x87a0d75f device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x87a69e85 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x87a7e459 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x87b6739b devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x87d9935b component_add +EXPORT_SYMBOL_GPL vmlinux 0x87dfa8ff pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x87fbe8b0 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x8865652e platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x88754e41 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888ec3f4 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b88e48 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x88bb27f5 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x88c08c41 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x88c5f514 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x88cc75eb pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88d375e0 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x88d445c1 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x88d8aa2f simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x88d93260 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x88ddc7ce of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x88e92732 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x88edcdbd of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x88ff7aa4 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0x890590e5 ata_sff_port_intr +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 0x891c3a13 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89310508 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x8939afc9 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x893f2d9e blkcg_root_css +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 0x89597463 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x896a3a5a of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x897ea45f rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x8984c2bb dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x898a4ed0 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x89a50848 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +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 0x89c47416 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x89c72ba6 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89cbe92a rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x89db3bae page_endio +EXPORT_SYMBOL_GPL vmlinux 0x89dcd4a8 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id +EXPORT_SYMBOL_GPL vmlinux 0x89e29883 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89f65955 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x8a1510be extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x8a227265 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x8a2cd841 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a4a4b4e rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x8a4b8227 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x8a4e568e acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56180b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8a5dafe0 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x8a612125 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a668c13 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x8a68fbb3 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x8a760fb1 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a79c9e6 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x8a7c8b1c ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a87d7ea of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x8a8969d9 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot +EXPORT_SYMBOL_GPL vmlinux 0x8ab1a54c pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8ab1b17a trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abffd9b cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x8ad210ba dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x8ad5a734 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x8adec309 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x8ae71e1e pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x8aecabbc devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8aef8ee2 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x8b14142e phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b2a400b regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8b408941 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8b40b202 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc +EXPORT_SYMBOL_GPL vmlinux 0x8b4f1ecc dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8b53e467 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x8b5a3dae usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b8e1905 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x8b918f47 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x8b9208a8 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x8b969d44 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8badf8f6 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x8bb1d2fe linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x8bb85910 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x8bbc3fce validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x8bd1bdad fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x8be40b6d __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x8bf01408 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x8bf2325f nf_checksum +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 0x8c0a6d70 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x8c0b9c59 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c25fbff spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x8c262de6 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x8c31d804 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x8c3d9293 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4bd6d6 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev +EXPORT_SYMBOL_GPL vmlinux 0x8c542761 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x8c5e1d7d phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x8c620739 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x8c68957c devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x8c6c640c ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8c719db7 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7f3614 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x8c82839e usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9cfad3 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x8caf9983 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable +EXPORT_SYMBOL_GPL vmlinux 0x8cb98471 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x8cc2c7db spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x8cc331df nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8ccdc82e fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x8cd52d0d ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8ce7189b fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8ce75a01 of_msi_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x8cee4583 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x8cf16b9d irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x8d03ab0c dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d1ece9d crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d276418 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x8d2b9100 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3aaef1 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x8d44f5db pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x8d4817f6 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d73ef62 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d86fa95 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x8d8a226b mtk_clk_register_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x8d8faff4 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d90ba1c usb_string +EXPORT_SYMBOL_GPL vmlinux 0x8d9b0283 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8db654dc ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dc7a0e3 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dda3a79 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8ded7c8d transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x8e19a227 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x8e1dd909 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x8e31a43a kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x8e379794 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x8e3cd58b kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8e404807 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e64d0f4 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x8e67d3fb rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e71a169 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x8e7d8ffc __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e809527 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x8e86be12 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x8e8f4dfa clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ea08f8f securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x8ea55200 clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8ebc94a3 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x8ec7d90c __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x8ed45541 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x8ed560a9 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x8edbf81a cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8eef9bc4 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x8ef41d19 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x8ef49a3f usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x8ef8d72b regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x8eff8761 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f172321 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x8f2d1aa7 debugfs_create_x8 +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 0x8f4b9a8e bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x8f4f5560 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x8f5f6e10 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x8f687b86 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x8f6ad10c devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6decc2 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f725a4b ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fab64c1 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fcdc7d3 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x8fcf9a57 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8fd9048f __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x8fe85faf pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8ff16e07 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x8ff25b79 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff78515 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ff83db9 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x900d37b0 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x900fe318 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x901cfab9 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x902006b9 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x902c9499 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904ebf3d dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x9083916c acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x908bad59 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x90a19ef8 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90ae9510 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc +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 0x90e056ca device_rename +EXPORT_SYMBOL_GPL vmlinux 0x90e5e8e2 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x90ec4643 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x90ecc5a8 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x90f33dde param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL vmlinux 0x9120d281 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x9124d278 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x9131ec75 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x91346157 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x91465049 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x91499767 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9173b7e7 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x917614cc vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91a204fd usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91b7f927 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91c99b7f gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x91d303fc devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x920ebc94 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x921024f8 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x92182766 get_device +EXPORT_SYMBOL_GPL vmlinux 0x921f92cc init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x922abfc5 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924c7fc2 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x92618446 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x9273ecbe sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x927a76f9 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x92895612 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x929a1f28 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x929b294e devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter +EXPORT_SYMBOL_GPL vmlinux 0x92a08348 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x92abdb7f dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92c98957 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x92cb82fb phylink_create +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 0x92ea040d xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x92ea3737 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x92ecf8e3 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x92f541ed aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x92f7b06d regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x930447fc __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x93058759 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x9308f04a raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x930e0643 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x9311e863 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x933c92b0 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x933c9c09 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9348580c sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x93530516 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x936147a7 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x937fd36e bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x93991602 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x93a29f61 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x93aafe14 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x93b33972 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x93b4267f acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x93c692fa sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93c9b826 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9420b394 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x9424d09d devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94452ebe tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x94464e63 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x9446592c regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x944b829a tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x94548d9d of_usb_update_otg_caps +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 0x94770d8b iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x94819bc5 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x9488bbdb pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x94890404 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x948ca833 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x948f7565 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x9495c397 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x949867bc ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a1af1c nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x94bd35ac devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x94db65aa da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x94e332e1 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94eb18e8 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94f6a3e3 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x94fbf273 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x9502cd36 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x95045fee device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x951888c9 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951b8c0c spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x951cce8a blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x951e3a4b __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x95348644 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954b3af8 mtk_register_reset_controller_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x95575c33 __tracepoint_rwmmio_write +EXPORT_SYMBOL_GPL vmlinux 0x9557bc9b fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956a7caa acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x95833cb9 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958850e3 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x959a5e67 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95a4cf1d trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x95ac8012 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x95b12914 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95be40b2 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x95cbce3c tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x95cf0d34 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95e76d64 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x95e99d75 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x95ea06a1 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL vmlinux 0x95ed82f8 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x9603d76d tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x960cef75 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9613e788 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962c233f register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9643b929 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x965426a6 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9658ad6b usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x966b3164 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x9677f16b regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9698e55f cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96ac184a rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x96aefaff serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset +EXPORT_SYMBOL_GPL vmlinux 0x96b8cd70 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x96b90747 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x96c0db86 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x96ce8b07 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x96d0f548 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x96d5a224 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x96dab4fb dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x96e735b8 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x96f90774 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971545a5 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x972d994c mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x976474ca rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x977dd8fa wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x9782820f pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x978d4c85 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x978da8b3 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x979a8a3a regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x979b6913 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x97a2e456 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x97bb2b4b gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x97cf0190 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x97dbc516 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0x97e990a3 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x97f6c75c ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x97fbdffc __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x98090a72 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x9821fca4 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x982db90b sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x984053cd nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x984bf277 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x984f4a4d phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98780c83 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987efeab fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0x988051a7 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x98838817 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x989bfc01 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x98afacba usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x98b5ca05 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x98b657d2 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x98bdb44d nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98c5e434 ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x98e2245e usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f826e5 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x98fc4ff8 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x99021381 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x9941ecfa irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x9943635e xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x994f1297 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x995bb497 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995f107d dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x9967825f led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x997e7346 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998fcbf2 clear_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x9996b99c __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x999b8fa2 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure +EXPORT_SYMBOL_GPL vmlinux 0x99aff8fa pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x99c8cbef kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x99d4f326 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x99e21e35 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x99ec5d19 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x99ed56c3 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99fba55b report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x99fd90da fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x9a00adad devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a19a7ba spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x9a1bee75 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a3b37cb vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x9a412d48 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9a5a03de vcap_chain_id_to_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a70f669 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9a737284 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9a76551e pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x9a868d86 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x9a933f1e phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x9a9a0c65 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x9a9a895e net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x9aa57240 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x9aa5e204 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x9ab44ed1 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x9ab52b6f fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x9ab715dd fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x9abe1442 user_read +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac1b9aa __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x9ac3e0a4 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x9ac71ba6 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find +EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule +EXPORT_SYMBOL_GPL vmlinux 0x9ad36959 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x9ad4779e pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9ae71f23 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af0e5bc iort_get_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0x9af3b406 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9afe4fd6 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0x9aff2066 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x9b052456 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x9b083a4f pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b10f508 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b583ccc sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring +EXPORT_SYMBOL_GPL vmlinux 0x9b654ce6 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b6f6bc4 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x9b6fa8e6 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b744824 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x9b7736ca crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9b8b3651 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92ba05 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9ba0b128 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9baa5b1c of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x9bac6a5c kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x9bad85cf md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x9bb3c887 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x9bc62fb6 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x9bcedf26 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9bdaa63d acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc +EXPORT_SYMBOL_GPL vmlinux 0x9be2218e led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be54c59 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x9bec05b8 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bee2a42 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x9bf981a1 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9c297047 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x9c2e042e l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c4afda1 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x9c6a653d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x9c6a9b79 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid +EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location +EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cbc452a imx8ulp_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x9cbea00f mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc8dc7a ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x9cd4be29 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9ce05629 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf3bcb2 acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x9cf738dd kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x9d02c642 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d0b0a97 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x9d1ac231 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x9d2047bd bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x9d234f7a bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d33475d transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x9d449759 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9d4edf6a rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x9d6c1794 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9d9ef177 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9db20ce4 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x9dbf5bc3 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x9dbfbd31 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x9dc057de gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x9dd69bfa get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9dfa5b0b meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e07e93a tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9ed4a1e7 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edaf5b3 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9ee30483 fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9eed7958 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x9ef643b3 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x9f04574d devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x9f082fd6 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x9f08b8ea tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x9f0b95dd irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x9f0c3e90 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x9f1302c0 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x9f13cc85 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x9f20cb25 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x9f348526 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9f3c50d3 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x9f4fd903 rockchip_register_restart_notifier +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 0x9f72ebd1 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x9f74df5a ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x9f7d59f4 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x9f8b9030 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x9f9b2eac vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fa54fe8 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x9faaeee2 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x9fab0b93 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x9fb62abe vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc01621 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe362e1 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa00ead72 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xa013dbed sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01d6383 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa03374bd udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa035d76e __tracepoint_rwmmio_read +EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0521533 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xa053b30b scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xa056914c regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xa05bddc9 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xa064e965 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa0720466 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa087a0aa devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa0930efe set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xa0981877 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0xa0aae706 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xa0b23f62 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa0cd4723 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d84a78 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa0df431b irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xa0e4ae05 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xa102c000 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa10d3c96 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1134118 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1142b9c tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xa11b03fd regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xa12d632a vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xa13ebf78 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa14303e6 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa154d702 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15ebb6c __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1718698 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xa17f9123 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xa1960c4f anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xa1a4581e eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xa1c2da01 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1c8ac85 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa1ca33e9 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1ea3a1c __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa1eaa66e acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xa2061812 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xa209dc4f cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa21bdfe5 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xa21d5d8e devres_add +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa2235167 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xa225bb8a crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xa22d9548 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa237469b crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xa23ff1b1 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xa2437955 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xa24a756b tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa26fa520 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa2720c98 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xa27fb7a6 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa28f40bd __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa28f80ce fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xa2971266 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xa2987177 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xa2a1a3c8 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xa2ad99d0 acomp_request_alloc +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 0xa2bba73c blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xa2bfe4e8 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0xa2c43fb3 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xa2d5b4fe __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2f2ea4e sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa305f00a __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xa323d183 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xa324cfa2 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xa334f165 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa3455b75 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xa35298a0 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa35807c9 icc_put +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa36f8636 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xa37564a0 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xa37e7501 mmc_crypto_prepare_req +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 0xa38e808a devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xa3903a84 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xa39c71a6 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xa39dc4c1 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2f34d of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xa3b275a6 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bc9577 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0xa3bdc69e irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xa3c5453e spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0xa3d7e513 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3e4a8ab crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa3e9706d dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xa3ea0b09 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3ef1419 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3fb7f87 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa42b5352 mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xa442021a screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xa444d47a thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xa44681d7 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44e6ae3 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xa44fc169 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa454bdd2 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xa46caab4 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xa4721251 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4947e31 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xa4951dfe genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b41c21 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4c1ad27 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xa4ccda14 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xa4d1074d nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xa4e2efdf tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xa4e3d3c1 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa4fa5452 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xa4fc7571 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa51d267e of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xa5208652 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xa5282139 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xa52f0272 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa563027f __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xa565f4df kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev +EXPORT_SYMBOL_GPL vmlinux 0xa57c7aa8 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa585233c device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa59aa9a5 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa59d637a acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5be3c4b init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xa5beea78 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xa5c452b1 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xa5c6d1b1 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xa5ccca4c sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d9115e rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xa5dd359c udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa616ac85 fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0xa632a609 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xa638605f show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xa63f5671 vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0xa63f96e1 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xa6453b02 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0xa650c312 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xa6567e68 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa6701166 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xa6771306 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa67b278f do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xa67f8f49 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xa6846349 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a56b7e xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa6a6427b pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk +EXPORT_SYMBOL_GPL vmlinux 0xa6a9af64 devm_irq_alloc_generic_chip +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 0xa6c14182 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xa6ccd3eb securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ebe1b2 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6fae9cf disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xa708577c of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa7267f35 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa72dd105 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa739d66c usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xa73c3b08 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0xa73e0901 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xa74fe8b0 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xa755dd49 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xa75dc038 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xa7650278 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xa77cc273 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa7960ad0 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xa7a12a34 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xa7a5b369 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa7b0faa2 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xa7bcebaa usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7be51cb cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xa7e6ab6f crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa7f71fe4 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa8188c53 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xa82d4ab6 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xa8345f33 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xa83d9c80 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa850745e pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8527a5b udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xa855e751 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xa859d0db ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xa87038ca dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xa878c345 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xa878f7b6 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next +EXPORT_SYMBOL_GPL vmlinux 0xa88a64ae tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xa88cd51b dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8a7ea4e elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8a92336 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xa8ac9583 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xa8bc631e i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8c42092 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xa8d4be17 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xa8dad51f dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xa8e75b40 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xa8e7a7c1 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xa8ee572f devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xa8f569c9 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa9041aff gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa90c9aaf pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa90d04c1 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa912bd9d of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa918ab9d iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xa924ffee crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xa92cb95f devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93ade59 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xa93ea9fd __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa9474fd1 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xa94c687f mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa962a1a7 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa974d45f pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xa98c1473 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xa98e622b of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xa990e476 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a65eff get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xa9ab51eb usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xa9b7e43e usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa9f25aea sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xaa12fd5e clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xaa1670ad fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xaa356813 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xaa4b8498 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa76a140 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0xaac578b3 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xaac85536 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xaad18539 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xaad1d3d2 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xaad6e46b dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xaadb649b __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xaaf9f4f7 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0xaafb60ca unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xaafbd431 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xab032b7e pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab0ff87e ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xab1ce557 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab1fc5ba devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xab2155a4 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0xab284884 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xab31970a xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xab3a5b46 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xab3f2c4d divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xab535c7c md_run +EXPORT_SYMBOL_GPL vmlinux 0xab5a0a06 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xab5ce2be rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xab5e52d4 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xab631c5e device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab8736a8 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xab904a1b inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xab96cbbb ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xab9a9fea clk_register +EXPORT_SYMBOL_GPL vmlinux 0xaba0b47e sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xabba8209 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xabff7c22 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xac074044 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xac10eab0 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xac133140 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xac13a228 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xac1640bd dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xac17c0b6 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xac19a3ae devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0xac2716b4 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xac2efee8 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xac34a77c of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0xac3cecc9 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xac3ea84f tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xac468a09 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xac4e84d7 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xac602dc4 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xac7f1915 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xac80c75b xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xac82d01d msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0xac8f54ad __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xac9cc557 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacbe7ec0 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xacbfc317 devm_thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacf586c2 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xad20a2d1 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad27d5f0 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad3cfa95 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xad3d2e1e filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad482019 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xad4ce45c thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad51197e devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xad5cccfe mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad73bf33 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad7ca99f debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad9823e6 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadb22de7 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xadbd838d rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xadd5b6a5 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadf9c1b3 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xae05b72f simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xae0be13e clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae0f974b mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae186f47 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xae2f6eb1 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3c8aca sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xae3e97ad tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xae460f63 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xae4a6160 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xae4ebc26 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xae5cec1f ping_get_port +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 0xae6ee668 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xae7ba797 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae803951 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xae80a2dc __tracepoint_rwmmio_post_write +EXPORT_SYMBOL_GPL vmlinux 0xae814db6 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xae8d0307 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xaea5f4b8 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeaacadf kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xaeb7faa1 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xaebe68f4 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xaec1b1bc __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xaecc5fa6 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xaecec297 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xaed97aab __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xaee816f7 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xaeea3429 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xaeed9586 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xaeeec79a serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xaefa5f69 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf093398 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf1bfc92 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf3a7520 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xaf3ed93e srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf4e77a0 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xaf637e17 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf92a22f pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xafaf50d7 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafb5cde2 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xafc6e1d4 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xafc934ed of_map_id +EXPORT_SYMBOL_GPL vmlinux 0xafcde6e5 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xafd8a96d devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafdf8a99 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xafe32b47 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xafe8b786 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xafe9b6c5 phylink_generic_validate +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xafec6927 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xaff8aed1 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xaff937aa devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xafffdc5d fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0xb008cc57 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb0096b3d input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xb00edbf1 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xb0261775 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xb02a474c fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02ddb15 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xb02fead4 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb0318473 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb04e1fb2 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xb06f0481 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb078970e spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xb084fef7 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb08c618d tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xb08fba2a devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb09467ba buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0xb098bc84 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xb09fa4f4 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xb0a19f22 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xb0a3ebc0 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xb0ad04e6 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bc67ee of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb0c82b46 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e6ed9a dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0eada61 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb0f03ab8 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xb0fc31cb usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xb10cd6a9 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb120bb4a rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xb12601de to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xb1290a60 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xb1620e1a dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb16341bc ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb16469ff wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16ab1fa spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xb16bb0e5 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xb1750042 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xb17657d5 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xb178f635 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xb1801f9c usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb1973f57 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0xb1977350 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb19e8f96 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xb1a84a44 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xb1a9e46b virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xb1b82726 tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1d07991 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb1dfe918 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb1fe2323 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb2015328 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb20d8dfd irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb211a0b6 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2216843 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb22aa699 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb23b5a85 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24ea6af fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2a8dbbd pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xb2ac821e pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c79986 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xb2c961c5 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xb2c99901 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xb2da56f8 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xb2e17132 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb2e48931 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb306aa99 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full +EXPORT_SYMBOL_GPL vmlinux 0xb30c9e52 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0xb30d3ce3 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xb3144ce0 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xb325c9b2 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xb3290b6b irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xb32cc687 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xb33afd80 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb342de7a debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xb34c2cfa fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb37c7dc5 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xb3857856 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb3911f11 dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0xb396a4d4 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb399aeb0 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb3ac9d96 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xb3b4bb36 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xb3b571d0 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xb3c800e3 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb3cb5661 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xb3e3445b regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb3e95de9 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0xb3edd1fd usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb3f9d19a fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb401cc8c serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb41db86a spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0xb41fc919 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xb43b60cf trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb43fee12 dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb44be8b5 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb486a37d phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event +EXPORT_SYMBOL_GPL vmlinux 0xb493b26f pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xb494a814 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xb498f7b8 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xb4a3561d wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xb4a46ea7 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xb4b52515 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd04cf ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xb4d67642 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xb4e6f538 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb500d062 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb500ec12 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list +EXPORT_SYMBOL_GPL vmlinux 0xb50b0b5c fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xb50f4d4a ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb514daec clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xb51af9bf usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb547f77d switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xb54d7753 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb54efc22 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul +EXPORT_SYMBOL_GPL vmlinux 0xb5743ba8 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb575f567 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xb58089ee md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb58367a0 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xb5893fef meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xb59c2926 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb59d6cf9 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb5a674e7 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5afb426 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5bdf319 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xb5dd5a6a set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb5de04a8 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xb5e88660 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xb609568e usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0xb60a1c52 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xb610795f devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xb61ecd37 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb65332a6 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xb6539915 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xb6548bc0 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb6552dc8 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xb655c38b __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb6736365 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6838829 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xb687c702 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb6a9a7d3 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb6aba2a8 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xb6ba3b3c irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xb6ba98ac regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb6bf690f nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6fb279f pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb6fd9a3d platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7019376 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xb701d437 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb7095331 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xb727a886 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xb72dddf3 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xb7308f53 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb74f8f57 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xb7542d41 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb75d3a60 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7665247 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xb77b38eb bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xb7815451 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb78c424f kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xb798e9cf phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7a495da tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb7a613ee clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0xb7a6b7dd cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xb7afcd1a clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xb7b17711 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xb7b3ad47 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7cf5625 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xb7e2c073 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xb7e5b020 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xb7efe5e9 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb807b8be wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb80f1fbb ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xb8130e62 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xb813e5f8 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xb81d8c05 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb8328fdd blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xb83a869f fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb859cc3e thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8ba94f6 ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xb8c65309 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d93120 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8db17fe ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xb8e8498a regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f92be0 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xb8f9832c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xb908da03 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb90b5478 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb921774d max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xb9241846 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xb92d431b mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xb94032e1 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb940fc08 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb9455305 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb9614e35 strp_init +EXPORT_SYMBOL_GPL vmlinux 0xb961c05e gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb99419dd irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0xb99f1055 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xb9a11c50 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xb9ab1902 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9ab4257 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xb9b12d30 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d065a9 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xb9f8e530 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xba053b10 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xba0574ee fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xba14b970 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0xba1655a2 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xba169627 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xba1c9e82 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba30911f i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xba3f4172 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xba61f482 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xba742b8b clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xba8786bb devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xba9f56ca iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xbab93693 pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac3c5ce fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xbada417a max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf9fcc8 ata_wait_after_reset +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 0xbb155c24 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xbb1ffc83 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb2abb16 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xbb340755 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbb4a6bad sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xbb540247 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0xbb54e3ed strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xbb585d08 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xbb5f0cae serdev_device_close +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 0xbb6f6476 sfp_bus_find_fwnode +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 0xbb980e82 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xbb9eb2a6 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbc6d013 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xbbdca86f acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xbbe0b429 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbeb48f4 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xbbf82b6f zynqmp_pm_set_tcm_config +EXPORT_SYMBOL_GPL vmlinux 0xbbff173f regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbc012719 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbc08f39e xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xbc232862 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap +EXPORT_SYMBOL_GPL vmlinux 0xbc3791a5 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc50f888 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xbc5bc181 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xbc5ceb29 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc752782 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xbc7d80a9 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xbc9b6984 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbca83415 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xbcaea173 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccaaf32 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce0f934 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xbce68c63 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf39468 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd0bf827 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xbd1f9435 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd526a2d debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xbd538066 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd5b674c dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd5f45cf devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbd63abab thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd701d96 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd86cd60 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xbd879bde fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xbd89538a regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xbd8e2422 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xbd93027e scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdb9d920 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xbdc65582 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xbdcdc8f6 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xbdd779de ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xbdd9815b imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbddc33d3 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0xbe0ebf5a devm_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0xbe1711d0 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbe1fd8b0 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xbe202cb3 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xbe209019 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xbe2a326d __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xbe2d65fd of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xbe360216 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xbe441e98 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xbe61e9da ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe70d62c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xbe713245 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xbe7d46f3 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xbe89358d fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9f2f17 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xbea3407d hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb4533a cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xbeb6cd57 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbeb7b7d3 __traceiter_rwmmio_read +EXPORT_SYMBOL_GPL vmlinux 0xbec5852b blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbee5c23a splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xbeef9b85 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1d7a2c irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf35ab10 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xbf38bb85 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf732756 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xbf7624a2 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xbf974cb0 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xbfa2d5be devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc56453 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xbfd116a8 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xbfe1a3a7 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe6b332 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbfedf07e spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbff3143b led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xbfffd2d8 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xc01cc3a2 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc04184b0 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xc04496d8 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate +EXPORT_SYMBOL_GPL vmlinux 0xc047ec21 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xc04853bf devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xc056a35d mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc05e2546 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc0634c65 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xc0709110 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xc071b3c5 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xc081438d scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc091f5c7 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xc092d1e3 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0xc09e14b1 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xc0a2d768 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base +EXPORT_SYMBOL_GPL vmlinux 0xc0a66447 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0b62be0 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xc0cfe62e fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e0bb38 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xc0ebd82d crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f26e90 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xc0f8b6e5 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xc0feed47 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0xc10301ae usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xc1086c09 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10a9163 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc12afad5 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xc13ef6ce devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xc13fc468 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xc143329d irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xc14f7616 __SCK__tp_func_rwmmio_post_write +EXPORT_SYMBOL_GPL vmlinux 0xc1506e9b pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xc1587b63 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xc17141f4 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1775049 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc180c5c4 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xc1812123 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xc18d2820 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xc18dd453 iort_put_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0xc1998f47 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xc1aba64e sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xc1bfab4e ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL vmlinux 0xc1db342b PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0xc1dbb6a7 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc203c93e perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xc208edec crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xc20c6374 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xc2283fcb ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2351ea2 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0xc24187ca power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xc245e25d virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc24e3446 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xc2536b36 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26088f7 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc2662d39 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a48590 dev_pm_opp_find_freq_exact +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 0xc2cb1cf5 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e00070 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xc2e2d088 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xc2e3b191 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xc2f02a4c phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0xc31211a1 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xc3252a61 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xc33142a6 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xc333ddac crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xc3388b6d fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3394cbc devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xc33fb768 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34a59c8 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xc34c8468 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xc3563daf pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0xc3651b5d qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xc36aa0c0 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3781ede divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xc37e827f serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3816cb6 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc38cba0a da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xc38fed8a fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xc39792fe shake_page +EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xc3b30773 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xc3b4165c devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cd6929 dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc42e6d64 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xc433bab2 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config +EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45af518 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc46644fb pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xc46b7ddf devres_release +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc475561d inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xc476d1af iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xc477afcc fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc4886a50 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xc48f4150 iov_iter_get_pages +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 0xc4bdc5d1 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xc4c95aa8 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc4ca2c26 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xc4d42a97 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc4dcd6e9 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xc4e03f06 mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xc4e3fab8 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc50c2ac8 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xc50f6ffb usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc517bd6d regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc54131cf fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xc545874e dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xc54eb5ee fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xc54efe5f sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc551b722 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc560f5ca irq_gc_mask_clr_bit +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 0xc583a800 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc584e621 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5ba7766 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xc5cd91ed gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xc5d3dcc6 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0xc5dd6ada clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xc5e5e187 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xc5ec10e2 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError +EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xc62918c8 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc62f4ab0 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xc63330e1 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xc644eb36 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc64a5d83 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xc64f2445 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc6575f8a iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xc65c3a29 edac_device_handle_ce_count +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 0xc670d98e pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc690df06 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xc692fce4 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69ad5c0 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ad0400 devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xc6b0a75c mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xc6c35d65 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6e84b52 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xc6efc8b8 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xc6f89a56 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc707f058 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xc7105b26 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc727031b blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xc73bc837 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc73e8d29 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xc7421d5d inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xc75294c0 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0xc75b49a4 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xc764a4dc pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xc77a7af0 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc7869086 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7881779 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7965f47 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xc7a12d4c rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a3e02c __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7b0a590 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xc7c00224 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7eaa1a1 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xc7f6d1ff debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc81838e8 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc82f8015 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xc837f54a nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xc83ba331 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xc83d236e mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xc84f3ab0 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc869c871 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc8778e8d ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xc87dd040 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc87e8bca pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc87ef193 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xc88601d8 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc889872d stmpe_dev_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc892bc0d icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets +EXPORT_SYMBOL_GPL vmlinux 0xc89cd9e4 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xc89edc22 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xc8b786f0 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc8d95ff1 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e73f31 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xc905402b log_write_mmio +EXPORT_SYMBOL_GPL vmlinux 0xc9146b40 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc93a2f2e max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc953c90b subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9576ce5 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xc9599865 ipv6_proxy_select_ident +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 0xc9857d10 fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xc9ad274d find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xc9b891d1 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xc9c6355f __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc9c952f2 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc9cd5a3a crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9d00d9f regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc9dfb399 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fa5e90 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca2fb92b cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xca390e15 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName +EXPORT_SYMBOL_GPL vmlinux 0xca77e306 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xca7c16a2 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7dec82 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xca80f431 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0xca8df1d0 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xca9ad14a pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xcaa43c0b mmput +EXPORT_SYMBOL_GPL vmlinux 0xcaaad9a8 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xcab15baf tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xcab59f12 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac989d7 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaf02df9 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcb01e9e6 mtk_mmsys_ddp_dpi_fmt_config +EXPORT_SYMBOL_GPL vmlinux 0xcb0f5d97 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xcb0faf9a qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xcb17ab05 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb198d11 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb36e505 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xcb401ee4 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xcb4a8895 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0xcb5179d8 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb5c6795 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xcb5e66f5 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xcb6a53dd cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xcb6efe47 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb7552c0 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xcb7997af iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xcbba7687 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xcbcae635 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xcbd701df xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe6d8cf fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xcbec34ae udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xcbff069f __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xcc03cbc4 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xcc07244f generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc1b1aae tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc3324fa xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xcc399efc auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc3d3e3a crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xcc41369d xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xcc4cde65 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xcc59c526 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xcc688719 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xcc755f34 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xcc75607f bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc7a32dc io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0xcc7d65b5 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xcc87576e dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc93d903 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccac9aca sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xccc6b875 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0xccc93995 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd36316 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xccd3731c device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xccd82b5b sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xccd8575a tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccd99af6 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xcce1242d dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcce49f45 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xcce6cead bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xccebc3e0 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccfc51f9 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xccfed34f of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xcd0754d7 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xcd1b12a9 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xcd1c1a53 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule +EXPORT_SYMBOL_GPL vmlinux 0xcd5151c9 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xcd5e146a rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xcd6a6921 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd707401 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd7b14b6 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xcd902206 tps65912_regmap_config +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 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbed177 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd3c7dd pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xcdd8bbdb wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xcddffced dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde41e95 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xce0472e8 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce0ffe31 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay +EXPORT_SYMBOL_GPL vmlinux 0xce40a36d blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xce44e50f key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xce4d91d8 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xce4e6dbd smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xce514b4e devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xce54bcd7 pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce7d26a3 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xce83704d vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xce8b2ab9 pci_p2pmem_find_many +EXPORT_SYMBOL_GPL vmlinux 0xce8fda99 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xcea5ba11 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb2f110 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xcec6e242 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xcec7ef09 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xcecfbed1 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xcee13bfc __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xcef67fc1 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xcef6be02 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0xcefdbb9e led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xceffb167 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcf005539 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xcf0e664c __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xcf12370f pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcf1cea97 fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xcf310fe8 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xcf428153 dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0xcf4b047f usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xcf4ef4fe rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xcf6006f1 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xcf6ecd2b blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xcf909c2b percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0xcf9a022c devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xcf9fffe1 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc5a54f debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfded8a4 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcfe1060f fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xcfe1a4ec fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xcfe97a47 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xcff5290e add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xcff811b6 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd02ec601 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xd03c5d35 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04528f8 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd04e40f6 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xd0598aa0 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0xd05f76a1 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xd0630f49 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd06546e0 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07f9da3 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xd080001d of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xd0857d28 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xd0872d2b vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xd08e2c1d crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd09b0b28 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xd09f2635 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xd0bc3d85 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c65598 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xd0c81f0e clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd0cb2f66 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd0cf62ee fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3d384 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0d8200c pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0e7d7be ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xd0ee756d bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd108dbc3 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xd10995bf acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xd11305cd of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd1245a92 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xd135f4f6 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd13aafe3 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xd13e4af8 dma_fence_unwrap_next +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1549e86 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xd157dc46 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15b3e74 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd179030f relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xd17ab074 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xd1868a80 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xd192f83f iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xd1991972 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xd1a46e29 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1ae4f6c phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xd1c40e8a devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1e41580 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd207423c sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xd21769be rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21a09c4 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd2444c93 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd25395e5 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd258452f pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd25e77c1 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd276b4a5 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd281cea5 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2af0756 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2cdbc62 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2e9a113 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xd2ec789f __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xd2ef6a40 phylink_mii_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd30c2459 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xd30cb379 get_net_ns_by_fd +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 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd341529d phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL vmlinux 0xd34371bc tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd3600c28 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd36a5595 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd37b7cd0 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 +EXPORT_SYMBOL_GPL vmlinux 0xd3882d33 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0xd39172b6 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xd39c3a8a dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3acd9c9 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0xd3c35a52 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd3c9ae64 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd3cc37eb of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd3d20c1a scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd3d3c579 __regmap_init +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 0xd4211dee security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd447faf3 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd455ddd0 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xd45e0bbe crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd46c69b6 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd46eb645 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd487065a of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd488cc8e platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd49694b9 meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd4974257 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xd4a4bf83 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xd4a4c948 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd4a57234 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xd4b2e8d9 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c10f1b pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4d38fd9 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xd4d7e84a ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xd4d8e381 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xd4db8a67 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4e92690 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xd4ed14a4 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd50952c0 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd50e8389 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xd51301bc thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xd51702fc pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xd5197543 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xd51d646b dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd532c53f clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd54385d5 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55f7b04 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd57b62cd usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd57e6bc5 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop +EXPORT_SYMBOL_GPL vmlinux 0xd586d2df extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xd58a48fd dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xd592ead5 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59b8783 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xd5b73de2 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xd5bc3070 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd5bde74e irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd5bfda78 __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0xd5cafa16 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xd5ced6cb crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xd5d0a758 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xd5db6f12 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xd5e4d2a5 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xd5fa8d09 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xd5fffe6b dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xd6011106 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xd60dfd35 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0xd61feca9 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xd64df121 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd65d2a63 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xd6668c58 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xd66d339b pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6969151 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xd69b1e63 __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd69b716a usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd69f7819 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd6a6f4d4 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6ac0379 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6b9415d da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd6c2529b irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd6cd6622 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xd6dd27e0 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xd6f644cb device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72cfd24 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xd72f16c1 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd749e3dd usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd75436c8 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xd75890c3 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xd758da7a udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd768ce0b pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77be5f9 generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xd77c8a24 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xd781d5e0 dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0xd789455b page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xd7981ec3 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xd7b1b785 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xd7c73f86 bpf_prog_destroy +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 0xd7da646d firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd7f2d701 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd7ff32f2 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xd80f5fac device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd81c4863 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xd8206348 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd83e09d9 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xd849083e __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd858479f component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xd85d8b15 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd86ca3d6 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd8716ce0 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xd8789522 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8814f9b __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xd88d0b8b acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd88defca __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0xd88f57d2 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xd8a8852b pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0xd8a9f3bb phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0xd8aa0a52 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd8c75092 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8dc1ee7 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd8fbfe0f of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xd903f419 phylink_get_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd90aba88 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xd915be5a tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xd918a65d srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xd91d99dc hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92c5898 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd94f2830 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xd94fe857 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9598435 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xd95b9614 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xd9617e26 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd977775e scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xd97b9b89 acpi_cpu_get_madt_gicc +EXPORT_SYMBOL_GPL vmlinux 0xd981956c hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xd98ae4db ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9a067f5 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xd9a7fefc devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xd9b7d314 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0xd9c9cd36 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd9cb2d2e pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9d11a06 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xd9d7ba10 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9eb68f7 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda054e05 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0d1713 vcap_rule_get_counter +EXPORT_SYMBOL_GPL vmlinux 0xda0e0e5b virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0xda113e7c crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xda15ed4d cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xda2fce65 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda325b16 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xda656984 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xda66b494 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xda678775 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xda6f4165 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda8870a9 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xda8b6b94 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda8fc0f7 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xda9c0749 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xda9eb5c7 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdac1c842 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xdacaca50 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xdad334b3 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xdad6cb3c cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xdadaa00f rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf4e0be pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xdafdc86f mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0xdb073801 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xdb27ba33 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb649957 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset +EXPORT_SYMBOL_GPL vmlinux 0xdb78d70e serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8da0bc tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xdb96266a sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xdb9b5dc1 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0xdba2949b rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0xdbb45a16 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xdbbb0b36 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xdbcae912 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xdbd6dd62 nfs_ssc_client_tbl +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 0xdbfa2500 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc0f6fbd clk_hw_unregister_divider +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 0xdc14d753 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xdc1dd5c0 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc1fae7e gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc3a67d6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc5c086a __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6f4d5c usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xdc71eab3 mtk_clk_unregister_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0xdc757796 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xdc75f16c devm_regulator_get_exclusive +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 0xdc85c9a7 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc995c2b ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcaecf6a gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL vmlinux 0xdcc5244f devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0xdccec047 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xdce0ea4c mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err +EXPORT_SYMBOL_GPL vmlinux 0xdcf89964 platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xdcfe0144 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd0d39ce rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xdd393801 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd473c6c gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xdd4a56bc get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xdd5af679 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xdd6166df of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd757255 mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0xdd78fcd7 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd96fc3e fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xddb75fd6 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcef16f ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xddd91b77 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xdddba9a3 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xdddd91db dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0xdde7ea34 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddf3682d ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0xddf91a33 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xddfb1a78 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xddfcd800 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xddfdb295 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xde04806d usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xde0a0aa5 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde2a9a3d usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xde2d313f sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde37c0bd dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xde46c331 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xde6d4384 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde760fc8 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xde761bfc __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xde83e548 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xde8b46f0 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xde8ea5aa put_device +EXPORT_SYMBOL_GPL vmlinux 0xde96b2b8 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xde976193 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdea676ba divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xdea6acbb regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdeb3ffa0 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xdede3c34 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdeea26e5 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xdefd5696 devm_nvdimm_memremap +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 0xdf0f5f7a screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf11e745 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2fabbd xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack +EXPORT_SYMBOL_GPL vmlinux 0xdf403a59 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf4c16e7 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL vmlinux 0xdf532b93 fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0xdf64cf4c kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xdf6f1203 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xdf7e6751 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf7ebdfc dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xdf893097 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xdf8ebef2 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xdf913065 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xdf91af4d make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xdfa0cab9 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xdfa629fe ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xdfb86777 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xdfc68af0 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfeaac71 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xdfecf8d1 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe0003d61 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xe00c44e1 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0xe00cbc35 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe01a39e9 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe028fc86 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe03b3691 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xe04a931b gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe050de03 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe056c9dd __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0662932 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe06ba268 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xe06ee2dd percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe072ae2a mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xe07c7a4e aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe082d251 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xe0a0048a fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xe0aaf518 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c3f90c virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c550a6 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xe0ce815d fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xe0d1c0c1 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xe0da94fe mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0ed854b pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe119c1ac led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xe120f89f usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe1282b7c inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xe1291cc6 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1387043 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xe1396639 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xe14d39fb __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe153b336 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17d818b pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe18718ec tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xe18a35dd perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xe19a1371 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0xe19a9e12 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xe19f145b governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1ae3783 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xe1b37411 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1db5635 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xe1deb957 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1e4da8c scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2069d27 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xe21268a0 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xe2204dbd ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe2502ccb ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xe2532eef dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0xe2550e4b rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe257fde7 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe264bce1 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xe28cb6d7 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe2909c81 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe2923f4c simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0xe2948165 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xe2955901 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xe2aa2e3c ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xe2ac2ab7 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe2aecd18 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xe2b09edc pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b57144 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature +EXPORT_SYMBOL_GPL vmlinux 0xe2dfeb40 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xe2e0985c rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xe2fe21f7 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xe304dc6e d_same_name +EXPORT_SYMBOL_GPL vmlinux 0xe30f9eb2 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe31e372c rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xe33ca9be nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe343ac48 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe3532b47 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xe3641de4 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe367b11c __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xe36fb549 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe394796c irq_chip_disable_parent +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 0xe3bb3ae7 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xe3c8b911 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3db067f umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xe3dc4d53 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e5ff34 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xe3eb7d8e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xe3efc9aa clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xe4073f15 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0xe40747d3 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe413aa42 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43cb09e devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe443944d __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe45f1c34 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe4663cb2 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe4729c9a bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0xe47cb1fb hisi_clk_init +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 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c2a060 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4d56ab3 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e84161 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4ef8922 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0xe50b554d kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xe516321f ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xe51aa921 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0xe5260a3f __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0xe546f83b device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe55656e1 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xe55928c3 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xe55bdcb4 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe55d99e1 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xe57adf74 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xe57bc6bc devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xe57bf9d6 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xe57e1e9a pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xe58007a6 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58cadae ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0xe59239bb of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xe596c376 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xe598c609 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5b8f4c7 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xe5d21279 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xe5d4afef spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xe5df5104 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xe5e3b5b7 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xe5e790e4 __traceiter_rwmmio_post_read +EXPORT_SYMBOL_GPL vmlinux 0xe5f1c970 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe6012563 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe607e072 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe61fbfc4 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe64506ad usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe64789b3 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xe6663d3e fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xe67766e6 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xe686cd95 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xe691e7f5 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0xe696ca9b skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xe6a41e1e phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xe6b33ca9 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log +EXPORT_SYMBOL_GPL vmlinux 0xe6bd7004 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0xe6be45c5 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xe6d4374f hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e40796 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6e64faa irq_domain_remove_sim +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 0xe6f558a0 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6fd0d3d rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe70ca0b6 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe724a91b phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe7451a28 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe756ca7d pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe75be7f8 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xe76026ff __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe774ff4c vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7908311 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate +EXPORT_SYMBOL_GPL vmlinux 0xe7a1152e usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xe7aeefc5 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xe7c0bf37 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xe7d0c209 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7f9bda2 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xe8045746 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe82ca9ab fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe82ddb29 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xe832a0cb memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xe839bbfd devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe84745c6 debugfs_print_regs32 +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 0xe882c7d0 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xe88c60d4 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xe8b5840e bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c33f76 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xe8cb0978 devm_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0xe8d6c42f blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe8e7f0ab devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xe90a23e0 xhci_suspend +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 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe941dde5 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xe9423890 pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0xe9482184 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0xe94c5a87 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xe952f722 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe96759aa of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xe96f0012 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xe98d947e irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe9b5f0f5 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xe9b72fa6 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xe9c31265 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xe9c676ae regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xe9ca89d9 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9df3644 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea093f64 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea324230 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3c0331 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xea49fe93 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0xea4ff9aa devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea608313 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xea6ccd75 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xea70362c usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xea762a9d acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xea817618 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xea8229f7 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0xea8aaa4c acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xea9cd712 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xeaa267ca pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xeaa6127d sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xeab259b7 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xeac19ef1 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeac9b05d genphy_c45_config_aneg +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 0xead5a378 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xead76560 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaec35a6 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xeaedd27a gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xeaef2872 lp8788_read_byte +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 0xeb037e37 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xeb072030 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xeb0f4d9d regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xeb10f079 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeb3c26d7 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xeb461de6 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xeb4b1af6 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xeb654e64 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xeb6d56c8 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb7b12fe usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xeb89c1b4 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xeb93a351 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xeb995e10 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xebae4b56 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xebbe4885 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xebbebceb regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xebd2a210 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xebd30fe5 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebdc1615 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xebe05ebb vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xebf3b321 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xebf60281 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL vmlinux 0xec0ada2d bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xec0e4b2c icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xec125d27 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xec279bf5 mtk_clk_register_gates_with_dev +EXPORT_SYMBOL_GPL vmlinux 0xec299541 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xec30f7bb pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xec32897a acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xec39b742 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xec3f1fd9 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xec491fe2 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec63b6dc usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xec6eaaf7 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec836d02 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xecaa69c2 phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecc47d5f sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xeccc3dad bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xece074f8 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xecea2594 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xecfaee4d pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xecfc0553 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xed1480a7 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xed281793 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed30206c lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed3baeed serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xed402e7d usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xed5321ed acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xed6e33aa simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xed83d27d fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed9a6eae debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee09fad5 disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xee0f7ab6 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee265105 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xee2c928a unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xee36c32d tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee486a3e pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xee4d4c68 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee587a62 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xee68cf13 irq_chip_get_parent_state +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 0xee77cf12 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xee7fb01b crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xee9548b4 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xee9a81c5 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xee9f1528 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xee9fff5d bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xeea0c0c5 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xeea4b4f9 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xeebc1b96 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xeec0d352 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xeec5716a platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xeedb533b ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported +EXPORT_SYMBOL_GPL vmlinux 0xeeecfe17 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xef17d553 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xef1e9c1c device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef264bf6 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef3f143f virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef5ca92e iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef655675 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xef6b1dd7 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef83a100 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef93e9ee platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xef9dca68 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefadad05 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xefb7420c usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xefbf0ce7 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xefbf915b sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xefc352ae spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xefd147eb l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xefe2f170 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xefea2eef ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff2f081 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xf00c04b1 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xf03396cd transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf05109b2 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0xf059f248 mtk_mutex_write_mod +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 0xf06e146a wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xf06e64f9 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0997932 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xf09fe388 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xf0c383f5 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf0c4641e fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0xf0da1f14 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xf0e8580c iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted +EXPORT_SYMBOL_GPL vmlinux 0xf1066a4f pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xf1095cde devres_get +EXPORT_SYMBOL_GPL vmlinux 0xf11800f3 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf1239782 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf12c57bf rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xf139fe25 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0xf14314fa da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf144766e iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xf14e5a3f generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xf152222f usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xf1579363 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xf16bdaea debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf16c67bb ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf1c4c6bc iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xf1ce3258 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xf1d026d0 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xf1dd945e debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xf1edae4d ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xf200dfc0 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf225e53b crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xf22d8c05 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf22f4194 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0xf25a7f4e iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf2661835 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf27dbc6e inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf29698d0 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xf297f3a1 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xf29cd5ef dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0xf29debb4 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xf2aeae20 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2bbfa03 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf2bfbd99 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xf2e49869 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf2f2050b user_update +EXPORT_SYMBOL_GPL vmlinux 0xf2f949db dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf2fbc21b regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported +EXPORT_SYMBOL_GPL vmlinux 0xf306798b devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30bbdec bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf316c918 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xf317cc9b tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3253ca4 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf337686e gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xf3394abb devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf346a375 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xf34c22af debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf353f40d acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xf3702750 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf379e858 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xf37a2d24 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf381bd95 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf3919308 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xf3a00f3c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b5ea80 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3d743e3 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xf3daf475 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3e766c3 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xf3eb44e0 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xf3f87e26 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf3fc4559 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf409eecc component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xf40b7059 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xf448d36d acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xf45c2c88 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf462d83f pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4841e36 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xf496be3a device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4a25067 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xf4a6a6ee tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b19158 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xf4b1bfe5 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xf4c37dfd iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d504bd mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xf4db3d84 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf4e052c7 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xf4e95381 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xf4f58d24 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xf4f81dfe perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xf4f9857e mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0xf4fa2ad3 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xf5053dbb scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xf50acfb9 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf50b9180 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xf511230b __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xf51d2725 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xf52a0ba4 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54e32c6 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55886c6 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xf58449f1 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf5899f12 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xf5980611 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xf59922e3 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a2e43f pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a4e3c9 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b3fa81 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf5b54614 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf5c80d09 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf5d15ef5 pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf5db1fd1 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xf5e1a77c trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xf5e204a0 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xf5e466b0 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf60663dc md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xf613f8e5 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf61c8b92 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xf61fdf03 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xf62d72cb of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xf63109bd imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0xf632c077 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf652c512 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xf6588a42 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xf658c03a ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0xf65d778d securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf66fb4b7 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xf6838ba7 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6af21cb of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xf6af2d23 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6bef7f2 gpiochip_remove_pin_ranges +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 0xf6ebdf95 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6fa9d2f ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf7077e0d regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf73f5a1d kgdb_register_io_module +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 0xf768bc59 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xf7731c73 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf77e1455 key_type_encrypted +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 0xf786955e pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0xf78a9ac2 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xf795f965 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf7a1b834 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xf7a7d309 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xf7a85a3f devm_regulator_register_supply_alias +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 0xf7cd5a0e devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d95241 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0xf7e5bfac pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xf80b4464 mtk_clk_unregister_dividers +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 0xf8201863 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83ccc83 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xf842e314 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf85c273e tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xf87497a9 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xf879a102 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xf8836663 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf8aff3e6 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0xf8bdc3e5 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xf8d3851c tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xf8eb8984 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xf8ef63e6 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f89038 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9010d60 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xf9065bde dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf913f29a devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xf91fa634 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xf926a606 phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL vmlinux 0xf92c1abc __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf94552ab meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0xf947b0e3 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xf947cdb1 meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf94ac01b devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95731d8 devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0xf957e2f1 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version +EXPORT_SYMBOL_GPL vmlinux 0xf96f4d0b phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xf973fb0f ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xf9740a1b amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0xf97f38db xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf9891b9a spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a1bd8e of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi +EXPORT_SYMBOL_GPL vmlinux 0xf9ad041c fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9bcce52 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xf9d48e9f of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0xf9e6ee79 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xf9f46f5b devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf9f5f34b xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xf9f65aa6 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule +EXPORT_SYMBOL_GPL vmlinux 0xfa3fc30c usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa4d3c24 log_post_write_mmio +EXPORT_SYMBOL_GPL vmlinux 0xfa521e94 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa623bee kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa7723dc iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xfa79a518 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xfa84ce05 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xfa8fba50 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xfa94dc2f of_regulator_match +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 0xfab8525c pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0xfac6d832 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xfacd426b devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfadd70a3 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xfae5bcf3 mtk_clk_register_dividers +EXPORT_SYMBOL_GPL vmlinux 0xfae6916f cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfae9b4b4 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xfaeaa611 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xfaebf5af acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xfafacec0 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xfb17b816 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xfb1ca042 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xfb2e8f9e debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb337c75 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xfb3771cd of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xfb46687a __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xfb4b1708 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xfb4d6ed7 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone +EXPORT_SYMBOL_GPL vmlinux 0xfb6bb518 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xfb6e6e02 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb8f16c9 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xfb9b5db7 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfb9c5b86 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0xfb9ce8a9 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xfbb23525 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xfbb8a8ef dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc022cc init_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0xfbc5dd0a of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0xfbcbf99d rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xfbd558bc kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfbde939e folio_mkclean +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 0xfc0bc2f2 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xfc0d11d2 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc2b45e7 dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc414e6c scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xfc4ac7c7 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xfc4e6756 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0xfc7048e8 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc7c22a9 ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0xfc926499 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfc9a226c usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xfcbcbde2 mnt_idmap_owner +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc34c71 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xfcc6168d crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xfcce2234 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xfcdfc8d3 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xfce52473 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xfcec134c xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfcf88ef7 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd00f790 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfd01aa62 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfd0bb477 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xfd0c52ff devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd11a6fa __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfd153367 devm_fwnode_pwm_get +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 0xfd2f0767 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0xfd309343 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfd3ca599 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xfd3e724d devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfd429df1 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xfd51142a msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xfd562217 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfd61beee mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xfd63d356 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event +EXPORT_SYMBOL_GPL vmlinux 0xfd6f8c5c sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xfd71e751 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd93f959 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xfd97fcab perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xfd9f862a mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0xfda90e03 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xfdadca90 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfdb5dda7 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc64442 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xfde3da1c bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xfde8c0b3 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdf68616 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0xfdf7f091 onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0xfdf82bc1 hisi_clk_register_phase +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 0xfe1b2f45 ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xfe31ab1c wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3fce93 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe622992 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xfe6f0923 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xfe76dff0 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe9818df bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfe9e6d30 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xfea26ddb is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xfea96e18 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xfeb3f532 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xfebc51a2 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xfebddb82 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfecaa054 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed8422c mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfeec5d86 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff005e77 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xff019245 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xff050a5b ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0f9161 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff364030 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff4e2e16 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xff5391df pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xff6b27a6 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xff72312a regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xff746571 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff753b49 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xff7a74ba scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff7eccf4 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order +EXPORT_SYMBOL_GPL vmlinux 0xff98f3b2 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xff99dc94 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa2d2f2 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xffa8a1d7 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb3b16d genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xffb7a6ab pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0xffbd2014 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xffc2a907 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffce7cb4 device_move +EXPORT_SYMBOL_GPL vmlinux 0xffd5dd7e file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xffdcca9f of_usb_get_dr_mode_by_phy +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 +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0a31c7b9 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1ee736cd cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x20124e12 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x222aa1a1 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x2d037ddb cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3d3a50ea cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4d0bf8b7 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x576cb67f cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x661297f5 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x73a0faaf cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7b8da676 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7d995602 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x83fde764 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x928296e6 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x939e90c6 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x945fcfe6 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x97983a89 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xad35787d cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb4eaa145 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xbf82a361 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xcd74fd60 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xda760b0a cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xdc828d71 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xdec2a323 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0xf00f0c74 hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x1d7d35fd ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x5c8cccc9 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x174bd91f ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x83e3acbe ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x4373403a ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xe495554a ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0xd89a5b0a ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xfa5677af ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x7233b3c4 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x78c81e88 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2c27b92b __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2de2dfa3 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x39fea184 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x4481030d adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5310fe48 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6810bf7a adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x962677db devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xabc8e4fb devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb374532e adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe09edf07 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xdd9e8459 __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x8a7bb354 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x9eb17fcc devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x3e859445 adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x5bf881d9 adxl31x_chip_info 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 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1d8d09c adxl314_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_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 0x4d2f5e0f adxl35x_chip_info 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 0x91e0f032 adxl355_core_probe 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 0xdd0ddd4c adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x02c7c695 adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x75183b3a adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x666a9a1c ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6f024082 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x88082d6d ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9b6c2ff3 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9fb3bf25 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xada7b7a6 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb2e2c61c devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xba2be318 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xba86399b ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xec6cf581 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0xc56414aa bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xe21a2596 bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xc450c04b bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xc9ca26d9 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xd0e27c9d bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xe9f381d3 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x2196f4ce bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xa939a814 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xcae22b6c bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xefddc7c5 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xad9fc0a7 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0xd15062ed bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xaebd763b bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xdafcadf3 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xe491730c bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xee953e4c bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x027e383d bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0x7fee9e4e bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x6962221a bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x6cb64999 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x863094fb bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xb0335003 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x07cfaed1 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x43101a7a bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x8a7ad264 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x945dc15a fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xa391e6b2 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x62a413a0 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x7a26bacc fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x889df274 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xc07a8765 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x13ce939a hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x38df0b01 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x5fba5dd0 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x631723ed hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x773c1786 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7e366fc7 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9be82862 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x9c307066 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xab843c53 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xcf6b1e01 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd81dfb84 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xdfcc2ea9 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x20ba7339 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xab79eeb7 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe74883c6 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe7584982 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x3343b3e9 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x6aaecae6 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7f761911 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x3af314c3 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xfb235809 hts221_probe drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x04ab4b46 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xac6b3937 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xfde2caa6 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x15a2e6c2 kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0x542de951 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x0d25c2e9 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x24a6cf00 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x58245e64 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x237a4b29 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0x9d889b95 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +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 0x0495b533 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0fad5fd9 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x220c0739 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2a92c0e7 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 0x2e12160a ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x339d8abd ms_sensors_write_resolution 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 0x56fc833b ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa5964eba ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xdfca817d ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x6c29465c mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xadc0ef68 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xae1ac409 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x07f6b3f8 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0d9e975a mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x28d85200 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x43e8b315 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x44cfd9bc mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4703b3b2 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4a43aae4 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x657dd379 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x6d8fa8c8 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7b86b804 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7e3b5889 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x90fbd102 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa22a5a74 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xaadaa334 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xcaf54554 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf495c84d mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0x2c738d51 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x952ac2ac mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xc7670ced inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xe8bc3633 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x0402507a ms5611_probe drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0xde8944c3 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x86aef05a rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0x90cf900c rescale_process_offset drivers/iio/afe/iio-rescale +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x35c0402f 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 0x82bbbca3 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xeefa6af2 scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0x7bcd298d sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x668d27be ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x8f3634e4 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xa01d0ecd ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xa9d46a29 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xabd5093d ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xbeee06e9 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xca2a5c75 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xe84ecc85 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_ST_SENSORS EXPORT_SYMBOL 0x002d7c9f st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x01ed432e st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x0e23d5e2 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x15f5c964 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2c9f3ad6 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x30df59ed st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x511bf8c4 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x52e9a707 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x551f1d28 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x577fd28a st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x5a5f1930 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6bbce532 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6d023e6f st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x86b5412b st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x91d9b73e st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xa511092d st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xadff18fc st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xaeb9ba1b st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb7c491d7 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xbb185575 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0xbb7ceaff st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xbdf90865 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc89f73ac st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd2d81bda st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xec386bb2 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf033b6d0 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x96f53bd2 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x3a920074 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x59809b29 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x01ab673f zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x1d80bb29 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x45372ae0 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x4c1ae938 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7705dafa zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x98948aaf zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x53fb9ef4 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x5c4123a0 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x6337b782 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xa245f6d2 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xaa58a1fa iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xb5029255 iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xc70f67ca iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xd3128282 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xde6b8209 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xdfaadb85 iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x095f5def iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0caf281f iwl_fw_dbg_stop_restart_recording 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 0x14342a4c iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x17b32e2c iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1e816583 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1e991230 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x20f8c0a0 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x210a69a3 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2455cb31 iwl_write32 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 0x290f18a0 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2c4ce150 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x31aba96a iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x34faaeea iwl_read_ppag_table 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 0x378bba40 __iwl_info 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 0x39cf6a44 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3a90d5c4 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3c90c8d6 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3fa382a1 iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x40c71557 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x42315b50 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45c6c29c iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4603a8d4 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x48c4f455 iwl_parse_eeprom_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 0x4bf34a5e iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4cf6255a iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4f26f0dc iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x526419e6 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x582bf1a2 iwl_sar_geo_support 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 0x5a4672bb iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5a97d962 iwl_write_prph64_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 0x5f190fcb iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5f61e4f0 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x66a9256b __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6c913ffc iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6d78267d iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7230d65e iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7372d30c iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x759081b1 iwl_poll_bit 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 0x78681caf iwl_opmode_register 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 0x7939fe83 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x798a3e20 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7ac44672 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7bf8c524 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7ee83f9a iwl_sar_get_wrds_table 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 0x85122cd0 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x85bb4193 iwl_acpi_get_eckv 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 0x87776b02 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x88f44a3c iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9238d533 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x93188319 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x94a297f1 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9624fd30 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x99251f07 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9df309b6 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9fd21c81 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa5693359 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa6cd0ccd iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb2dc694e iwl_cmd_groups_verify_sorted 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 0xb3a277e0 iwl_fw_runtime_suspend 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 0xbb667de4 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbed05a1e iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc004a1cf iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc05c6693 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc6a82cb5 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xca4707c0 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcaa70e91 iwl_fw_start_dbg_conf 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 0xd1180e9c iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd75063e9 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd970261c iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdc11198f __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdc7cffba __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdf2b9eb0 iwl_acpi_get_lari_config_bitmap 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 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 0xefdadc78 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf60bcfda iwl_fw_dbg_read_d3_debug_data 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 0xfce18beb __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x03bcf5b4 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x56f91261 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x10d14186 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x25460f66 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x262ec832 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x363ec741 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3b514f42 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4d5132f3 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x568fd5f1 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x715d5751 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x725823ee mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x85b5b0b9 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9bc9cd33 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa9371f9e mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xcf19a5e9 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdf42f94b mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x458f8dd9 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x785d0df0 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0x056261f6 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0d983a3a nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1310bfe5 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x66871ef7 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8d6803f5 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9559fd33 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xcd9b807d nvme_ctrl_from_file drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x06e98170 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x07d10b3b peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0b3ed924 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1c0015b2 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x29c7a267 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x45e8c22d peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x47076021 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x483f9a79 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4b5ebbdb devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4ea38e32 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x51a9d385 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5ad7f4a6 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5f02cfc7 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6521de41 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7db718d6 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8434e74c peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x85edebdc peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8df1f159 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa1c3f339 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa9450c4e peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa95c1184 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd5bab334 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd86deb60 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdb4f0178 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdd8a86c4 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe18dfecf peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe6671818 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf115cc45 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf790bbce peci_request_data_readq drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x2ccc2c32 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x312a9635 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x3cf600a6 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x6b54a1e3 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xddf935c5 peci_ep_pci_local_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x02712aaf pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0dc50be3 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1174a757 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1f8e143b pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x23c2ca15 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3427848b pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x405b4ccf pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4065166e pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4c7d2c3b pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x617f6014 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x68e269ef pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x75145020 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8dd93fdb pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa2ba8d4d pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa62a7e14 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xba25a059 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcec3ee5d pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xdc537780 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe4a54a40 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x48ef290b sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa699c1e4 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd377ff12 sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd72df1b1 sx_common_read_proximity drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x03c2b7d4 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 0x9a45d191 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xc01197d4 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xd5a643fc hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x0e4a718f cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x17801b6d cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xfb0a10e3 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x11ee1c0b cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xdda6d4cf cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xfade66db cs35l45_pm_ops 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 0x873700ac cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xbb60776f cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xc40fc1e0 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0128eb97 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3b613370 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x5a2f80da cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x62c5440a cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x8ad74eef cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x9b9abc34 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd01fc099 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd48976ea cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd4f5ff40 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe15f390f cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf572fc04 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xbd06bae4 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x766d5987 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x1e28c568 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x6adec997 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x84043b0e 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 0xbf4883fe sdw_intel_exit drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2167deb9 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x4f0d5fc8 dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x567f1757 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb3cfc7cd dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xcd61601f dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd23f3107 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xdc234525 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xde5d60db dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xe58baddf dw_spi_dma_setup_generic drivers/spi/spi-dw +SUNXI_CCU EXPORT_SYMBOL_GPL 0x079708d7 ccu_gate_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x0a9707d3 ccu_mux_helper_get_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x0c64ee0e ccu_sdm_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x14438263 ccu_frac_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x1f23b840 ccu_nkmp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x3e362444 ccu_frac_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x45837646 ccu_sdm_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x50165be0 ccu_mux_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x517768aa ccu_sdm_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x5cddbcc6 ccu_nm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x61abda39 ccu_mux_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x6668446b ccu_phase_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x7279ee3e ccu_mult_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x831d58e6 ccu_gate_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x844f1c47 ccu_mux_helper_set_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8813232a ccu_pll_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8a845fdb ccu_nk_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8bdea961 ccu_nkm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8e63463a ccu_frac_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x923edf17 ccu_sdm_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x976fa968 ccu_mp_mmc_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x98224ec7 ccu_reset_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xad1062ab ccu_gate_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xb159e62a ccu_helper_wait_for_lock vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xba365240 ccu_sdm_helper_get_factors vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbdb5d83e ccu_mux_helper_determine_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbe8d8188 devm_sunxi_ccu_probe vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xc4608f36 ccu_mux_helper_apply_prediv vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xce9edc4f ccu_frac_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd050ca65 ccu_sdm_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd27db71e ccu_mp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe49056d8 ccu_div_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe70cc090 ccu_frac_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xeb47a9b9 ccu_frac_helper_set_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf66eb443 ccu_gate_helper_is_enabled vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x04c78b54 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0f1c03ed usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1d5a944f usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x28b512ce usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x29264d80 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2ca6c07b usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x33860da0 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x339c9037 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x44e248b2 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x50440975 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x577648c7 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x57792b0f usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x61eec015 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7722c676 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7b7a6b70 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8881f843 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x892306d2 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9c053ffa usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc793afb6 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcd214d0f usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdf01b52e usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeee1e595 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf1c777af fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf21d00d4 usb_stor_pre_reset drivers/usb/storage/usb-storage --- linux-gcp-6.2.0.orig/debian.master/abi/arm64/generic-64k.compiler +++ linux-gcp-6.2.0/debian.master/abi/arm64/generic-64k.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 12.2.0-17ubuntu1) 12.2.0 --- linux-gcp-6.2.0.orig/debian.master/abi/arm64/generic-64k.modules +++ linux-gcp-6.2.0/debian.master/abi/arm64/generic-64k.modules @@ -0,0 +1,7312 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +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 +BusLogic +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 +ad4130 +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 +ad74115 +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 +adf4377 +adf7242 +adfs +adi +adi-axi-adc +adiantum +adin +adin1100 +adin1110 +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 +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_ceva +ahci_dwc +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 +alibaba_uncore_drw_pmu +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 +anx7411 +anx7625 +anybuss_core +ao-cec +ao-cec-g12a +aoe +apbps2 +apcs-msm8916 +apcs-sdx55 +apds9300 +apds9802als +apds990x +apds9960 +apple-admac +apple-dart +apple-mailbox +apple-mfi-fastcharge +apple-rtkit +apple-sart +apple-soc-cpufreq +apple_wdt +appledisplay +appletalk +appletouch +applicom +apr +apss-ipq-pll +apss-ipq6018 +aptina-pll +aqc111 +aquacomputer_d5next +aquantia +ar0521 +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 +aria_generic +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm-cmn +arm_cspmu_module +arm_dmc620_pmu +arm_dsu_pmu +arm_mhu +arm_mhu_db +arm_mhuv2 +arm_scmi_powercap +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 +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-keypad +bcm-phy-lib +bcm-phy-ptp +bcm-sba-raid +bcm-sf2 +bcm203x +bcm3510 +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_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 +bno055 +bno055_i2c +bno055_ser +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 +brcmfmac-bca +brcmfmac-cyw +brcmfmac-wcc +brcmnand +brcmsmac +brcmstb_nand +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 +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 +camcc-sm8450 +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +can327 +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-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-mt6795-apmixedsys +clk-mt6795-infracfg +clk-mt6795-mfg +clk-mt6795-mm +clk-mt6795-pericfg +clk-mt6795-topckgen +clk-mt6795-vdecsys +clk-mt6795-vencsys +clk-mt8365 +clk-mt8365-apu +clk-mt8365-cam +clk-mt8365-mfg +clk-mt8365-mm +clk-mt8365-vdec +clk-mt8365-venc +clk-palmas +clk-phase +clk-plldig +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-sprd +clk-twl6040 +clk-versaclock5 +clk-versaclock7 +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 +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_hps_i2c +cros_kbd_led_backlight +cros_peripheral_charger +cros_typec_switch +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 +cyttsp5 +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 +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-sc8280xp +dispcc-sdm845 +dispcc-sm6115 +dispcc-sm6125 +dispcc-sm6350 +dispcc-sm6375 +dispcc-sm8250 +dispcc-sm8450 +display-connector +dl2k +dlhl60d +dlink-dir685-touchkeys +dlm +dln2 +dln2-adc +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9601 +dma-axi-dmac +dmard06 +dmard09 +dmard10 +dmc520_edac +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpaa2-console +dpaa2-qdma +dpaa2_caam +dpdmai +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_buddy +drm_display_helper +drm_dma_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-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 +dw100 +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-tegra +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-fsl +ehci-npcm7xx +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 +emc2305 +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 +erdma +erofs +error +esas2r +esd_usb +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 +fit2 +fit3 +fixed +fjes +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +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-msm8909 +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-sm6375 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gcc-sm8450 +gcc-sm8550 +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-aggregator +gpio-altera +gpio-altera-a10sr +gpio-amd-fch +gpio-amdpt +gpio-arizona +gpio-bd71815 +gpio-bd71828 +gpio-bd9571mwv +gpio-beeper +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-idio-16 +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-latch +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-rcar +gpio-rdc321x +gpio-regmap +gpio-regulator +gpio-rockchip +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-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-sc8280xp +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm6350 +gpucc-sm8150 +gpucc-sm8250 +gpucc-sm8350 +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_bcm4377 +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hctr2 +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 +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-pxrc +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-topre +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-vivaldi-common +hid-vrc2 +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +himax_hx83112b +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_ptt +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 +hns3_pmu +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +host1x +hostap +hostap_pci +hostap_plx +hp03 +hp206c +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +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 +hynitron_cstxxx +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-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-elan +i2c-hid-of-goodix +i2c-hisi +i2c-hix5hd2 +i2c-i801 +i2c-imx +i2c-imx-lpi2c +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mchp-pci1xxxx +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-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-rzv2m +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 +ibm-panel +ibmaem +ibmpex +icc-bcm-voter +icc-bwmon +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-lcdif +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 +imx8mp-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx8qm-ldb +imx8qxp-adc +imx8qxp-ldb +imx8qxp-pixel-combiner +imx8qxp-pixel-link +imx8qxp-pxl2dpi +imx93-blk-ctrl +imx93-pd +imx93-src +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_qat +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 +iommufd +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_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-imx-mu-msi +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 +kcs_bmc +kcs_bmc_cdev_ipmi +kcs_bmc_npcm7xx +kcs_bmc_serio +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 +kionix-kx022a +kionix-kx022a-i2c +kionix-kx022a-spi +kirin-drm +kl5kusb105 +kmb-drm +kmem +kmx61 +kobil_sct +komeda +kpss-xcc +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz884x +ksz8863_smi +ksz9477_i2c +ksz_spi +ksz_switch +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 +lattice-sysconfig +lattice-sysconfig-spi +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 +libwx +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 +logicvc-drm +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 +lt7182s +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 +ltrf216a +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 +max11205 +max11410 +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 +max30208 +max3100 +max31722 +max31730 +max31760 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +max6621 +max6639 +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 +mchp_pci1xxxx_gp +mchp_pci1xxxx_gpio +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 +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_ddr_pmu_g12 +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-spi +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 +msa311 +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 +mt6331-regulator +mt6332-regulator +mt6357-regulator +mt6358-regulator +mt6359-accdet +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6370 +mt6370-adc +mt6370-backlight +mt6370-charger +mt6370-regulator +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 +mt7996e +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8186-mt6366-da7219-max98357 +mt8186-mt6366-rt1019-rt5682s +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-cci-devfreq +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-svs +mtk-uart-apdma +mtk-vpu +mtk_dp +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 +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_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 +ngbe +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 +npcm-rng +npcm750-pwm-fan +npcm_adc +nps_enet +ns558 +ns83820 +nsh +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +ntfs3 +ntxec +null_blk +nuvoton-cir +nvec +nvec_kbd +nvec_paz00 +nvec_power +nvec_ps2 +nvidiafb +nvme +nvme-apple +nvme-common +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-apple-efuses +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_mtk-efuse +nvmem_qcom-spmi-sdam +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmem_sprd_efuse +nvmem_sunxi_sid +nvmem_u-boot-env +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 +ocelot-soc +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 +onboard_usb_hub +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 +ov08x40 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov4689 +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-ebbg-ft8719 +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-jadard-jd9365da-h3 +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-nv3051d +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-epf-vntb +pci-hyperv +pci-hyperv-intf +pci-pf-stub +pci-stub +pci200syn +pcie-apple +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-altera-tse +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-berlin-sata +phy-berlin-usb +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-imx8qm-lvds-phy +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-mipi-dphy-analog +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson8b-usb2 +phy-mtk-dp +phy-mtk-hdmi-drv +phy-mtk-mipi-dsi-drv +phy-mtk-pcie +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-combo +phy-qcom-qmp-pcie +phy-qcom-qmp-pcie-msm8996 +phy-qcom-qmp-ufs +phy-qcom-qmp-usb +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-snps-pcie3 +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 +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-apple-gpio +pinctrl-axp209 +pinctrl-cy8c95x0 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-imx93 +pinctrl-ipq6018 +pinctrl-ipq8074 +pinctrl-keembay +pinctrl-lochnagar +pinctrl-lpass-lpi +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-mdm9607 +pinctrl-meson-s4 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-mt6779 +pinctrl-qcm2290 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc7280-lpass-lpi +pinctrl-sc8180x +pinctrl-sc8280xp +pinctrl-sc8280xp-lpass-lpi +pinctrl-sdm660 +pinctrl-sdm670 +pinctrl-sdm845 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm6350 +pinctrl-sm6375 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8250-lpass-lpi +pinctrl-sm8350 +pinctrl-sm8450 +pinctrl-sm8450-lpass-lpi +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pinctrl-zynqmp +pinephone-keyboard +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +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 +polynomial +polyval-ce +polyval-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 +pse_regulator +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 +pvcalls-front +pvpanic +pvpanic-mmio +pvpanic-pci +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-atmel-tcb +pwm-beeper +pwm-berlin +pwm-clk +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-omap-dmtimer +pwm-pca9685 +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 +pwr-mlxbf +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 +qat_4xxx +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +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-rradc +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-sm6350 +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 +r8a779f0-ether-serdes +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 +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-hi3660 +reset-meson-audio-arb +reset-qcom-pdc +reset-rzg2l-usbphy-ctrl +reset-scmi +reset-ti-sci +reset-ti-syscon +reset-tps380x +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 +rk817_charger +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 +rswitch_drv +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5120 +rt5120-pwrkey +rt5120-regulator +rt5190a-regulator +rt5759-regulator +rt6160-regulator +rt6190-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-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-nct3018y +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-ti-k3 +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 +rtq6056 +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_8723du +rtw88_8821c +rtw88_8821ce +rtw88_8821cu +rtw88_8822b +rtw88_8822be +rtw88_8822bu +rtw88_8822c +rtw88_8822ce +rtw88_8822cu +rtw88_core +rtw88_pci +rtw88_usb +rtw89_8852a +rtw89_8852ae +rtw89_8852b +rtw89_8852be +rtw89_8852c +rtw89_8852ce +rtw89_core +rtw89_pci +rvu_af +rvu_cptcommon +rvu_cptpf +rvu_cptvf +rvu_mbox +rvu_nicpf +rvu_nicvf +rx51_battery +rxperf +rxrpc +rz-dmac +rza_wdt +rzg2l-cru +rzg2l-csi2 +rzg2l_adc +rzg2l_mipi_dsi +rzg2l_thermal +rzg2l_wdt +rzn1_wdt +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +sa2ul +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +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 +scmi_power_control +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-cadence +sdhci-esdhc-imx +sdhci-milbeaut +sdhci-msm +sdhci-of-arasan +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-neon +sm3_generic +sm4 +sm4-ce +sm4-ce-ccm +sm4-ce-cipher +sm4-ce-gcm +sm4-neon +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc_diag +smd-rpm +smem +smipcie +smm665 +smp2p +smpro-core +smpro-errmon +smpro-hwmon +smpro-misc +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-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-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-es8336-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-apple-mca +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-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-cs42l42-i2c +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42l83-i2c +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-es8326 +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-utils +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hda-codec +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-mt8186-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-qcom-sdw +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-rt1318-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-sc8280xp +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-src4xxx +snd-soc-src4xxx-i2c +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-tas2780 +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-ope +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-wm8961 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-wsa881x +snd-soc-wsa883x +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-imx8ulp +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 +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-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-hisi-kunpeng +spi-hisi-sfc-v3xx +spi-imx +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-microchip-core +spi-microchip-core-qspi +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-pci1xxxx +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-sn-f-ospi +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-wpcm-fiu +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 +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +ssd1307fb +ssd130x +ssd130x-i2c +ssd130x-spi +ssfdc +ssif_bmc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st-vgxy61 +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 +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-csi +sun4i-drm +sun4i-gpadc +sun4i-ss +sun4i-tcon +sun4i_tv +sun50i-codec-analog +sun50i-cpufreq-nvmem +sun50i-dmic +sun6i-csi +sun6i-dma +sun6i-isp +sun6i-mipi-csi2 +sun6i-rtc-ccu +sun6i_drc +sun6i_hwspinlock +sun6i_mipi_dsi +sun8i-a33-mbus +sun8i-a83t-mipi-csi2 +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_hub +surface_aggregator_registry +surface_aggregator_tabletsw +surface_battery +surface_charger +surface_dtx +surface_gpe +surface_hid +surface_hid_core +surface_hotplug +surface_kbd +surface_platform_profile +svc-i3c-master +svgalib +switchtec +sx8654 +sx9310 +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_none +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_rtl8_4 +tag_rzn1_a5psw +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 +tc358746 +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_mt6370 +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-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-dlpc3433 +ti-ecap-capture +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 +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 +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_tis_synquacer +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps546d24 +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 +tps65219 +tps65219-pwrbutton +tps65219-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 +txgbe +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ublk_drv +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucc_uart +ucd9000 +ucd9200 +ucs1002_power +ucsi_acpi +ucsi_ccg +ucsi_stm32g0 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-hisi +ufs-mediatek +ufs-renesas +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 +ums512-clk +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 +vcpu_stall_detector +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 +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 +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 +visl +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +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 +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 +xctr +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_r5_remoteproc +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 +zram +zstd +zunicode +zynqmp-aes-gcm +zynqmp-dpsub +zynqmp-fpga +zynqmp-sha +zynqmp_dma +zzstd --- linux-gcp-6.2.0.orig/debian.master/abi/arm64/generic-64k.retpoline +++ linux-gcp-6.2.0/debian.master/abi/arm64/generic-64k.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED --- linux-gcp-6.2.0.orig/debian.master/abi/arm64/generic.compiler +++ linux-gcp-6.2.0/debian.master/abi/arm64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 12.2.0-17ubuntu1) 12.2.0 --- linux-gcp-6.2.0.orig/debian.master/abi/arm64/generic.modules +++ linux-gcp-6.2.0/debian.master/abi/arm64/generic.modules @@ -0,0 +1,7315 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +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 +BusLogic +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 +ad4130 +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 +ad74115 +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 +adf4377 +adf7242 +adfs +adi +adi-axi-adc +adiantum +adin +adin1100 +adin1110 +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 +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_ceva +ahci_dwc +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 +alibaba_uncore_drw_pmu +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 +anx7411 +anx7625 +anybuss_core +ao-cec +ao-cec-g12a +aoe +apbps2 +apcs-msm8916 +apcs-sdx55 +apds9300 +apds9802als +apds990x +apds9960 +apple-admac +apple-dart +apple-mailbox +apple-mfi-fastcharge +apple-rtkit +apple-sart +apple-soc-cpufreq +apple_wdt +appledisplay +appletalk +appletouch +applicom +apr +apss-ipq-pll +apss-ipq6018 +aptina-pll +aqc111 +aquacomputer_d5next +aquantia +ar0521 +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 +aria_generic +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm-cmn +arm_cspmu_module +arm_dmc620_pmu +arm_dsu_pmu +arm_mhu +arm_mhu_db +arm_mhuv2 +arm_scmi_powercap +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 +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-keypad +bcm-phy-lib +bcm-phy-ptp +bcm-sba-raid +bcm-sf2 +bcm203x +bcm3510 +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_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 +bno055 +bno055_i2c +bno055_ser +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 +brcmfmac-bca +brcmfmac-cyw +brcmfmac-wcc +brcmnand +brcmsmac +brcmstb_nand +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 +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 +camcc-sm8450 +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +can327 +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-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-mt6795-apmixedsys +clk-mt6795-infracfg +clk-mt6795-mfg +clk-mt6795-mm +clk-mt6795-pericfg +clk-mt6795-topckgen +clk-mt6795-vdecsys +clk-mt6795-vencsys +clk-mt8365 +clk-mt8365-apu +clk-mt8365-cam +clk-mt8365-mfg +clk-mt8365-mm +clk-mt8365-vdec +clk-mt8365-venc +clk-palmas +clk-phase +clk-plldig +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-sprd +clk-twl6040 +clk-versaclock5 +clk-versaclock7 +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 +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_hps_i2c +cros_kbd_led_backlight +cros_peripheral_charger +cros_typec_switch +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 +cyttsp5 +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 +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-sc8280xp +dispcc-sdm845 +dispcc-sm6115 +dispcc-sm6125 +dispcc-sm6350 +dispcc-sm6375 +dispcc-sm8250 +dispcc-sm8450 +display-connector +dl2k +dlhl60d +dlink-dir685-touchkeys +dlm +dln2 +dln2-adc +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9601 +dma-axi-dmac +dmard06 +dmard09 +dmard10 +dmc520_edac +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpaa2-console +dpaa2-qdma +dpaa2_caam +dpdmai +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_buddy +drm_display_helper +drm_dma_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-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 +dw100 +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-tegra +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-fsl +ehci-npcm7xx +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 +emc2305 +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 +erdma +erofs +error +esas2r +esd_usb +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 +fit2 +fit3 +fixed +fjes +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +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-msm8909 +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-sm6375 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gcc-sm8450 +gcc-sm8550 +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-aggregator +gpio-altera +gpio-altera-a10sr +gpio-amd-fch +gpio-amdpt +gpio-arizona +gpio-bd71815 +gpio-bd71828 +gpio-bd9571mwv +gpio-beeper +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-idio-16 +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-latch +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-rcar +gpio-rdc321x +gpio-regmap +gpio-regulator +gpio-rockchip +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-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-sc8280xp +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm6350 +gpucc-sm8150 +gpucc-sm8250 +gpucc-sm8350 +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_bcm4377 +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hctr2 +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 +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-pxrc +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-topre +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-vivaldi-common +hid-vrc2 +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +himax_hx83112b +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_ptt +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 +hns3_pmu +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +host1x +hostap +hostap_pci +hostap_plx +hp03 +hp206c +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +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 +hynitron_cstxxx +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-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-elan +i2c-hid-of-goodix +i2c-hisi +i2c-hix5hd2 +i2c-i801 +i2c-imx +i2c-imx-lpi2c +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mchp-pci1xxxx +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-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-rzv2m +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 +ibm-panel +ibmaem +ibmpex +icc-bcm-voter +icc-bwmon +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-lcdif +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 +imx8mp-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx8qm-ldb +imx8qxp-adc +imx8qxp-ldb +imx8qxp-pixel-combiner +imx8qxp-pixel-link +imx8qxp-pxl2dpi +imx93-blk-ctrl +imx93-pd +imx93-src +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_qat +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 +iommufd +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_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-imx-mu-msi +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 +kcs_bmc +kcs_bmc_cdev_ipmi +kcs_bmc_npcm7xx +kcs_bmc_serio +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 +kionix-kx022a +kionix-kx022a-i2c +kionix-kx022a-spi +kirin-drm +kl5kusb105 +kmb-drm +kmem +kmx61 +kobil_sct +komeda +kpss-xcc +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz884x +ksz8863_smi +ksz9477_i2c +ksz_spi +ksz_switch +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 +lattice-sysconfig +lattice-sysconfig-spi +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 +libwx +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 +logicvc-drm +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 +lt7182s +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 +ltrf216a +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 +max11205 +max11410 +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 +max30208 +max3100 +max31722 +max31730 +max31760 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +max6621 +max6639 +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 +mchp_pci1xxxx_gp +mchp_pci1xxxx_gpio +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 +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_ddr_pmu_g12 +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-spi +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 +msa311 +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 +mt6331-regulator +mt6332-regulator +mt6357-regulator +mt6358-regulator +mt6359-accdet +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6370 +mt6370-adc +mt6370-backlight +mt6370-charger +mt6370-regulator +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 +mt7996e +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8186-mt6366-da7219-max98357 +mt8186-mt6366-rt1019-rt5682s +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-cci-devfreq +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-svs +mtk-uart-apdma +mtk-vpu +mtk_dp +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 +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_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 +ngbe +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 +npcm-rng +npcm750-pwm-fan +npcm_adc +nps_enet +ns558 +ns83820 +nsh +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +ntfs3 +ntxec +null_blk +nuvoton-cir +nvec +nvec_kbd +nvec_paz00 +nvec_power +nvec_ps2 +nvidiafb +nvme +nvme-apple +nvme-common +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-apple-efuses +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_mtk-efuse +nvmem_qcom-spmi-sdam +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmem_sprd_efuse +nvmem_sunxi_sid +nvmem_u-boot-env +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 +ocelot-soc +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 +onboard_usb_hub +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 +ov08x40 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov4689 +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-ebbg-ft8719 +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-jadard-jd9365da-h3 +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-nv3051d +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-epf-vntb +pci-hyperv +pci-hyperv-intf +pci-pf-stub +pci-stub +pci200syn +pcie-apple +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-altera-tse +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-berlin-sata +phy-berlin-usb +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-imx8qm-lvds-phy +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-mipi-dphy-analog +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson8b-usb2 +phy-mtk-dp +phy-mtk-hdmi-drv +phy-mtk-mipi-dsi-drv +phy-mtk-pcie +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-combo +phy-qcom-qmp-pcie +phy-qcom-qmp-pcie-msm8996 +phy-qcom-qmp-ufs +phy-qcom-qmp-usb +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-snps-pcie3 +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 +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-apple-gpio +pinctrl-axp209 +pinctrl-cy8c95x0 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-imx93 +pinctrl-ipq6018 +pinctrl-ipq8074 +pinctrl-keembay +pinctrl-lochnagar +pinctrl-lpass-lpi +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-mdm9607 +pinctrl-meson-s4 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-mt6779 +pinctrl-qcm2290 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc7280-lpass-lpi +pinctrl-sc8180x +pinctrl-sc8280xp +pinctrl-sc8280xp-lpass-lpi +pinctrl-sdm660 +pinctrl-sdm670 +pinctrl-sdm845 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm6350 +pinctrl-sm6375 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8250-lpass-lpi +pinctrl-sm8350 +pinctrl-sm8450 +pinctrl-sm8450-lpass-lpi +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pinctrl-zynqmp +pinephone-keyboard +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +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 +polynomial +polyval-ce +polyval-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 +pse_regulator +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 +pvcalls-front +pvpanic +pvpanic-mmio +pvpanic-pci +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-atmel-tcb +pwm-beeper +pwm-berlin +pwm-clk +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-omap-dmtimer +pwm-pca9685 +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 +pwr-mlxbf +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 +qat_4xxx +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +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-rradc +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-sm6350 +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 +r8a779f0-ether-serdes +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 +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-hi3660 +reset-meson-audio-arb +reset-qcom-pdc +reset-rzg2l-usbphy-ctrl +reset-scmi +reset-ti-sci +reset-ti-syscon +reset-tps380x +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 +rk817_charger +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 +rswitch_drv +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5120 +rt5120-pwrkey +rt5120-regulator +rt5190a-regulator +rt5759-regulator +rt6160-regulator +rt6190-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-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-nct3018y +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-ti-k3 +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 +rtq6056 +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_8723du +rtw88_8821c +rtw88_8821ce +rtw88_8821cu +rtw88_8822b +rtw88_8822be +rtw88_8822bu +rtw88_8822c +rtw88_8822ce +rtw88_8822cu +rtw88_core +rtw88_pci +rtw88_usb +rtw89_8852a +rtw89_8852ae +rtw89_8852b +rtw89_8852be +rtw89_8852c +rtw89_8852ce +rtw89_core +rtw89_pci +rvu_af +rvu_cptcommon +rvu_cptpf +rvu_cptvf +rvu_mbox +rvu_nicpf +rvu_nicvf +rx51_battery +rxperf +rxrpc +rz-dmac +rza_wdt +rzg2l-cru +rzg2l-csi2 +rzg2l_adc +rzg2l_mipi_dsi +rzg2l_thermal +rzg2l_wdt +rzn1_wdt +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +sa2ul +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +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 +scmi_power_control +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-cadence +sdhci-esdhc-imx +sdhci-milbeaut +sdhci-msm +sdhci-of-arasan +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-neon +sm3_generic +sm4 +sm4-ce +sm4-ce-ccm +sm4-ce-cipher +sm4-ce-gcm +sm4-neon +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc_diag +smd-rpm +smem +smipcie +smm665 +smp2p +smpro-core +smpro-errmon +smpro-hwmon +smpro-misc +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-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-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-es8336-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-apple-mca +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-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-cs42l42-i2c +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42l83-i2c +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-es8326 +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-utils +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hda-codec +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-mt8186-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-qcom-sdw +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-rt1318-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-sc8280xp +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-src4xxx +snd-soc-src4xxx-i2c +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-tas2780 +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-ope +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-wm8961 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-wsa881x +snd-soc-wsa883x +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-imx8ulp +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 +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-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-hisi-kunpeng +spi-hisi-sfc-v3xx +spi-imx +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-microchip-core +spi-microchip-core-qspi +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-pci1xxxx +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-sn-f-ospi +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-wpcm-fiu +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 +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +ssd1307fb +ssd130x +ssd130x-i2c +ssd130x-spi +ssfdc +ssif_bmc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st-vgxy61 +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 +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-csi +sun4i-drm +sun4i-gpadc +sun4i-ss +sun4i-tcon +sun4i_tv +sun50i-codec-analog +sun50i-cpufreq-nvmem +sun50i-dmic +sun6i-csi +sun6i-dma +sun6i-isp +sun6i-mipi-csi2 +sun6i-rtc-ccu +sun6i_drc +sun6i_hwspinlock +sun6i_mipi_dsi +sun8i-a33-mbus +sun8i-a83t-mipi-csi2 +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_hub +surface_aggregator_registry +surface_aggregator_tabletsw +surface_battery +surface_charger +surface_dtx +surface_gpe +surface_hid +surface_hid_core +surface_hotplug +surface_kbd +surface_platform_profile +svc-i3c-master +svgalib +switchtec +sx8654 +sx9310 +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_none +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_rtl8_4 +tag_rzn1_a5psw +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 +tc358746 +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_mt6370 +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-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-dlpc3433 +ti-ecap-capture +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 +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 +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_tis_synquacer +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps546d24 +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 +tps65219 +tps65219-pwrbutton +tps65219-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 +txgbe +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ublk_drv +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucc_uart +ucd9000 +ucd9200 +ucs1002_power +ucsi_acpi +ucsi_ccg +ucsi_stm32g0 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-hisi +ufs-mediatek +ufs-renesas +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 +ums512-clk +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 +vcpu_stall_detector +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 +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 +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 +visl +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +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 +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 +xctr +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_r5_remoteproc +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 +zram +zstd +zunicode +zynqmp-aes-gcm +zynqmp-dpsub +zynqmp-fpga +zynqmp-sha +zynqmp_dma +zzstd --- linux-gcp-6.2.0.orig/debian.master/abi/arm64/generic.retpoline +++ linux-gcp-6.2.0/debian.master/abi/arm64/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED --- linux-gcp-6.2.0.orig/debian.master/abi/armhf/generic +++ linux-gcp-6.2.0/debian.master/abi/armhf/generic @@ -0,0 +1,26457 @@ +BRCMFMAC EXPORT_SYMBOL_GPL 0x276b9561 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0x7fffffff brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x157dc752 counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x1de4f531 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x3d0cbe64 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x3fed87bf counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x4b9d53f2 counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x54d1bb19 counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x7fffffff counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x7fffffff devm_counter_alloc drivers/counter/counter +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x10f96a47 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7fffffff crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7fffffff crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x01f920bc cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x082422b1 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x09491f17 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x09d16f33 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0c825231 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0e628e8e cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0f2f4f1d is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x14b8585d cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x177592c0 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1ba3f99a devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1c3cd78d cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1ec24b7c devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29f527ad cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2dc925fe cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x42437eaf clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x46f058a4 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x50afb43c devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x543a14c9 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x59cbc7c0 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x59d0f1b5 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x59f8bbc0 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5baf6e7c cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5bb6b817 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5c04460c cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5eb1c577 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x66536c45 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x69c2a820 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6bc0689b cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x72e4f63d devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x75e0d7f4 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x76295ab2 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff alloc_free_mem_region vmlinux +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_bus_drain drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_decoder_add 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_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_endpoint_decoder_alloc 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_internal_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_mem_find_port 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_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_rch_dport 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_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff insert_resource_expand_to_fit vmlinux +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_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff read_cdat_data 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_endpoint_decoder 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_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff to_cxl_port drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x0042c34e dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0412af43 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x079f4006 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x28e295de dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3f8507e1 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x413a9979 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x471ca9bf dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4b0db746 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x56b244f0 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x706fd6ed dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x79665eb7 dma_buf_vunmap_unlocked 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_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_vmap_unlocked vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x2303b915 efivar_lock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x5a3c9dbb efivar_get_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x7fffffff efivar_get_next_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x7fffffff efivar_set_variable_locked vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x7fffffff efivar_unlock vmlinux +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 0x10756d0e crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x7fffffff crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x7fffffff crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x7fffffff crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x7fffffff crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x7fffffff crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/sha3_generic 0x7e455a49 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x7fffffff 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 0x1dcd3d01 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 0x20f97d6d pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x22050ac1 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x282f2527 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x72b3a2e3 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x769620b2 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff paride_unregister +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/bluetooth/btbcm 0x2748d40e btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x6c44e564 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x7fffffff 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 0x20810da7 ipmi_smi_watcher_unregister +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 0x617b6da8 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmb_checksum +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_add_smi +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_register +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 0x2cc08883 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x5104f63e kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x5fbbe1cb kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x67ab94c8 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x68b0e226 kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_add_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/ipmi/kcs_bmc 0x7fffffff kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x38e51d46 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7668103b st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7fffffff st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7fffffff st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x38311932 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x45b8576c xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x7fffffff xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x240866be xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7fffffff xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7fffffff xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x345679d7 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x526ff579 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x60a88aef atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6c28f9b1 atmel_i2c_init_ecdh_cmd +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/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7fffffff caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7fffffff caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7fffffff caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7fffffff gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7fffffff split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x06717761 cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x09c41809 cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4099709e cnstr_shdsc_aead_givencap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x46efe449 cnstr_shdsc_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4b74fe69 cnstr_shdsc_rfc4106_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4ead8e70 cnstr_shdsc_aead_null_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x6de99a64 cnstr_shdsc_rfc4543_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x756131a7 cnstr_shdsc_aead_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 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 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 0x03338b5d fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x045674b1 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x07dc4919 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7a5c9f fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x103979c7 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x13f0df03 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x18c60099 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x19c15067 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b1be173 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1d1334d7 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x396f3251 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x45bf2399 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x48d60573 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4dd1e291 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f607d36 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5c881e94 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5e7b41d0 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x656ae87b fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7363898e fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7dd0deea fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_add_descriptor +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_stop +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/firmware/imx/imx-dsp 0x7fffffff imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x7fffffff imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x7fffffff imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/fpga/dfl 0x14a8048a __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0x7fffffff dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x7fffffff sysconfig_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 0x04527a74 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05a62727 drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05d71ce1 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06497813 drm_dp_add_payload_part1 +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 0x0a539820 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0adcc863 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0affc10b drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d84bacc drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x158b3c67 drm_scdc_set_high_tmds_clock_ratio +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 0x180ceb4b drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1877e015 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x18f9fbe1 drm_dp_downstream_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 0x1b465a6c drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1c1fb14f drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e311845 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e478632 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e839d4f drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1efafbe7 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21ffff1b drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x222fd669 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x253b75b9 drm_dp_aux_init +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 0x26eb4e4d drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x280829a8 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2837e40c drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2898035b drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x28fc8c07 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2b76d874 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2d265fbd drm_dp_mst_topology_mgr_suspend +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 0x305c0f7d drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3126b0d9 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3329688a drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x349d7dc2 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3865dee5 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x38bd9b54 drm_dp_cec_unregister_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 0x39740782 drm_dp_dual_mode_set_tmds_output +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 0x3ebd96e6 drm_dp_dpcd_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 0x49a4c7b4 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4a662857 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4aa471bd drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4de544ef drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x53371738 drm_dp_mst_atomic_setup_commit +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 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 0x59133015 drm_dp_mst_get_port_malloc +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 0x5a86f411 drm_dp_phy_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x60072853 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x617552cc drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x619c1a51 drm_dp_read_sink_count +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 0x673e00ad drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x674659a9 drm_dp_mst_put_port_malloc +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 0x6adbe6f1 drm_dp_mst_connector_late_register +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 0x6cb4df78 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6d3ffbdd drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f4a8dcd drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6fe1abd5 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x701eecd3 drm_dp_pcon_frl_prepare +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 0x747a5329 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x75d16821 drm_dp_mst_dsc_aux_for_port +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 0x772605eb drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7a7c0c12 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7d6f8fec drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_atomic_get_new_mst_topology_state +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_time_slots +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_register_connector +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_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_check_act_status +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_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_dpcd_read_phy_link_status +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_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_add_affected_dsc_crtcs +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_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_connector_early_unregister +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_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_root_conn_atomic_check +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_hdmi_frl_link_error_count +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_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_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_remove_payload +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_vsc_sdp_log +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_enable +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_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_lspcon_get_mode +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_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 0x00639d81 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01efd49b drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01fcfa0a drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x028e4c6a drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02b77649 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x032f524d drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03f6ce44 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fb0a9c drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ff2c6f drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0596de61 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05f06921 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07118483 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07185d7e drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x071af3ef drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07797b9c drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x081477c7 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0879f281 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09301395 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09ad7456 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a44cfed drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c49ed1e drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d819664 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df1cd7d drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7b86cc drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fa76708 drm_gem_object_release +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 0x1108fcda drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x116e1fba drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11edd566 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x120c9afb drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x125dd437 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12864122 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12a74b74 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12efa0f4 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12f14c08 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14ae51bb drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x183096f5 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1972db02 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19f98a9c drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aa341e6 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b7a77fd drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5a5aa2 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5c0d31 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ca62a53 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cd2a4f8 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d1181ad drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1df553bb drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e1cca5e drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e87c449 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x207783cd drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20b8840c drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21557abb drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x218ad101 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x220934b5 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x247bb9f6 drm_atomic_normalize_zpos +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 0x25648ba0 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ebf7d2 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x263ebc15 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x282787e3 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28515fe8 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29b28cc1 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a4a69b1 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c7d9e5e drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d45b3b7 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2de537d7 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e0f5ede drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e943ec1 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e9c545e drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe55440 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a0c31c drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30afaa47 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30b0d599 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3134b374 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x328367f0 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c6d98c drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c9ab3d drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x344b9cc2 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36ea6dfd drm_event_reserve_init +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 0x3878f04b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38da1cb2 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093b79 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3933b372 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3967fdae of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x396a74fb drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c42ce4 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a99a514 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab2e715 devm_aperture_acquire_from_firmware +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 0x3bb8ac7d drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bbf5800 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c4e784e drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c507100 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d05de9d drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e3f8c5c drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40acbd6b drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x432a2e87 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4442d3ad drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x444d4b31 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw +EXPORT_SYMBOL drivers/gpu/drm/drm 0x456ca259 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4688955f drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46bc1989 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46f01c90 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x470ae97a drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48751660 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x489a7393 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x494cde28 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a2eafe1 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b2d4015 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b4c00bd drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b8fceec drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c498072 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d0a7e1e drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73b36c drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de9cfc0 drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e155766 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e46edae drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eba16cd drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ed24578 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f1a9c97 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f398cbb __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f5df13c drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8169e2 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x500ad48e drm_connector_attach_content_type_property +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 0x515e5a6e drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52163f5e drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53545298 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x545f4f89 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54b9dfef drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x550c4bf1 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x570ace68 drm_crtc_vblank_reset +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 0x57c383ea drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f760e5 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x594a721c drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x597644b1 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab6f8c5 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ae7b1d0 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bbc5d1c drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9ae404 drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5caa0842 drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60397754 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60949223 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a1ac52 drm_vma_node_allow_once +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61077dd1 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62e3b5aa drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62feecfd drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x638305d0 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63af13dd drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6422ace3 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x653a19ed drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x655f1f5c drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66368cea drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6745974b drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67c6db80 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6800bdc0 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68d49e8f drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x697afb7a drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69a87a6f drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a675e04 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac8a541 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b5acb37 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bba816c drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c6bc117 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca90c76 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de930cb drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f6cc235 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fb8d403 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704587ac drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x706a9b4c drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71221d52 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7129afc9 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7139683f drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x715d746c drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7167ceda drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x718d1567 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f22071 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f6deb2 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x737caf86 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73823dbc drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73868e81 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73fb5516 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x742c561b drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x746983e9 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eaf26b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74efc06b drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fb7c84 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7692d198 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b2e593 drm_gem_lru_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77026de0 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7713c257 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c7e510 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bb679ea drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c38e21c drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ce79b30 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7de33167 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dec4fb1 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e7d002f drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e87f84f drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e8a6901 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f15c1af drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f34b577 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa78163 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff ___drm_dbg +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_dev_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 __drm_universal_plane_alloc +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 drm_add_edid_modes +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_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_connector_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_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_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_set_mode_prop_for_crtc +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_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_disable +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_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_framebuffer_flush +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_attach_hdr_output_metadata_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_create_privacy_screen_properties +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_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_tile_property +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_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_commit_wait +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_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_count_and_time +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_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_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_unplug +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_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_dup +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_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_format_info_bpp +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_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_dmabuf_mmap +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_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_map_dma_buf +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_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_objects_lookup +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_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_vmap_unlocked +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_format_info +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_vendor_infoframe_from_display_mode +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_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 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_dvi_i_properties +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_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_prune_invalid +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_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_lock_all +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_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_of_component_probe +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_remove +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_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_prime_sg_to_page_array +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_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_object +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_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_release +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_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_syncobj_get_handle +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_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_universal_plane_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_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff of_drm_find_bridge +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 0x7fffffff drm_buddy_alloc_blocks +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x7fffffff drm_buddy_block_print +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x7fffffff drm_buddy_block_trim +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x7fffffff drm_buddy_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x7fffffff drm_buddy_free_block +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x7fffffff drm_buddy_init +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x5cf389c9 drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00a3cb62 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x047fd03d drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06dc567d __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a4be0c3 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c8c5301 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cbc8f96 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fb3a65a drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10b53d27 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10deb043 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12af7e51 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1652b67f drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x165e86c7 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16746549 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17fef44b __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1823d217 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1853740c drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x188dd051 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x194be052 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19e80ea4 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1aa2cc71 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x200a1b76 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x232b9003 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25434ecb drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2596d81c drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x265df29d drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26861aef drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28040eda drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2938351b drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b7d1d80 drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c58329b drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d3b3cd3 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ee477ac __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f7dbc2c drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f86597d drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f88b9dc drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x304af691 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x313c0ddd drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32419e5c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33e47669 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3446cd74 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34837f39 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x361a2994 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37f746a6 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38342e1f drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3917301d drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392f9b7e drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39cb4c5d drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a3adc1c drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ad5cb64 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d6fdd40 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f8edb77 drm_fb_helper_cfb_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4101dc19 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x434f6752 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43af3ab1 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44329e8a drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44846679 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x473ea1cc drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47bcd1c9 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4834906a drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b99b63b drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb6fe28 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c2af30e drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eda9094 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f18fa11 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f33b66c drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51cb651d drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51d93b28 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53bbb76e drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54d7bc54 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x550d3514 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57c25d7c __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5832cf18 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x583fcdb1 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x588940f0 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58e8f574 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 0x5c7c4e74 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ca5dc73 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e655b50 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60120096 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60616522 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6076d347 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x630fd04a __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63951e84 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64ed5c98 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65073225 drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x654ac66d __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68469e3e drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69085c1e drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a520e8a drm_gem_fb_destroy +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 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6efb1ace drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x707e7465 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76fd2c53 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7749f654 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x778794be drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b595c3f drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ca42908 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d3801a1 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e016d38 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f62b181 drm_helper_hpd_irq_event +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_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_connector_state_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_destroy_state +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_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff devm_drm_of_get_bridge +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_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_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_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_commit_planes +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_connector_tv_margins_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_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_destroy_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_prepare_planes +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_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_legacy_modeset_state +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_fences +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_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_crtc_helper_set_config +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_blit +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_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_debug_enter +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_fill_info +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_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_initial_config +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_set_suspend +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_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_memcpy +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_rgb888 +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_begin_shadow_fb_access +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_end_shadow_fb_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_vunmap +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_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_encoder_in_use +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_i2c_encoder_destroy +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_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_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_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_kms_helper_poll_fini +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_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_plane_helper_destroy +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_kms_helper 0x7fffffff drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x013cef0b mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x07677f50 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x140ae695 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x141c4b3a mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1f23afd4 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x24af874d mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x37f67212 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5225c85a mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x68e862d5 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7dd73075 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7f0b5a25 mipi_dbi_poweron_reset +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_read +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_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_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x27dedf9e drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2a6c5820 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3c6e5c0b drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6a2608c2 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x79e78a40 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7ee09af5 drm_gem_shmem_vmap +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_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2b804070 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x6a8f95be drm_gem_ttm_print_info +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_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7fffffff drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0265c0ae drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1f429c92 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2a6696bc drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x30b3439e drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4a23cf04 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4e5a8838 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7171eb7c drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7bb2cb96 drm_vram_mm_debugfs_init +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_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_plane_helper_prepare_fb +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 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x56278d3f rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06a3dcfd drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x09c4b9a5 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x142b9b6b drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x175a26d7 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2abb367a drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2eea5c73 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2ffe45df drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x53418ba4 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x555b541b drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5946edc6 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6b0c3222 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7f751ad2 drm_sched_start +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_push_job +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_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_job_add_dependency +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_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05e34746 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x066db167 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09b13583 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b145b62 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16ea0c5f ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17e78c92 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1936d0b9 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1cc1fb26 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e32f92a ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f78db46 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x200c0ac0 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x236b9a42 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27e7dd08 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28dbeaa1 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cb68a90 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f1f6bc6 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31f8a866 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32d8c556 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3df1076d ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4acd55d5 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c98a409 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51fc0333 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5401584b ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56b90c2e ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x591ee745 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59bb29ed ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f80a27b ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ffb1d73 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60204e39 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x636fc1c4 ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x637ab3c8 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64f10764 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d7f0b3d ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f8ac4d0 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70e60d0d ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x737c1854 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c368fc0 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cdd717e ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_pin +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_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_vm_access +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_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_free +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_sg_tt_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0474543b host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x06b3a76f tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0d993afb host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1703e4f4 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2ec30800 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x38712f03 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x399b6570 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3ce8eb2f host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x40a28d92 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x42f09272 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x430e1865 host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x52f4b5e0 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5483f125 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x57553ccd host1x_fence_create +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x57b8d146 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5e9df6db host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x61927b78 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x61cc53a1 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +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_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_client_unregister +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_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_alloc +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_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_release_vblank_reservation +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/hid/hid 0x7fffffff hid_bus_type +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x7fffffff adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x7fffffff ltc2947_pm_ops +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 0x34e9af9f i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6934ee0c i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7c2e218a i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x4ba301ef 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 0x6f90ec1e iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x7fffffff iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5df1bc44 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7fffffff iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x553ce305 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x11ff8ab5 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x15c328e8 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x168f2085 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x2612af7c iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x261718a1 __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x28687a34 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x28707f84 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x341129cf iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x429d75c6 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x59592aa9 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x61bada32 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x66d118f1 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_buffer_init +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_get_time_ns +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_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x6ec0fa9c iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x2f87e73c iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x53bc9c01 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x66dab7ff iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7576fcf2 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x05cf7eb9 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x2950a2f3 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4d03301d iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x613d4333 iio_unregister_sw_trigger_type +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 0x3e6a2be7 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x08f9b59c ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0b73bdf4 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14084193 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x20ebd0d2 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x20f44153 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x466d65ec ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x475f57f9 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x563e13e0 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x58cd4268 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5db55c46 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6446dfd4 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_cm_init_qp_attr +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_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00d25e7a ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0128ce01 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01c42843 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04fc98b3 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x052c6110 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06599c88 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c7660d rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x074cecb7 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x078c36a0 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d55bb2f rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d704602 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0db99560 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10f1ceea rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11393bcb ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13417b21 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d8b4a7 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16e01e65 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17133aa5 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18b6fe3e ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bb96b2a ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cded965 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ecf713e ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1edbd0da _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f110ff3 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21036460 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x217f5445 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x234ba934 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25745581 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x265ee577 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29013893 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x293c12c6 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa35a50 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b623c02 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e33ba2a ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e711142 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e8464e8 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f8b8d38 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fec7bf9 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x300f62c4 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30f7c166 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x312b84d2 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x339c18d2 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33bbfafc ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x352fd0fe __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38d81650 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x396bc0ff rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39c7f770 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cced77c ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3def657b ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f65cea5 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44dc8269 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45e36108 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ac5a30b rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bd85aad ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c4aed20 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d74d3ed rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52bfd420 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x547276bd rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54f47da2 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576a5e68 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58091672 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x588558ac rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5914a447 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c0b84ed __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ce52d46 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ceb0fb1 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dd4f87c ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dfd29a8 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e7be9a1 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eba0744 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x608bcb00 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61f0d82b ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65448f6b rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6716a231 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6891cbaa rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a5e045 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6baa10e7 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c0c0ca7 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c17a625 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dba2b8a ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6eda7e50 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70685576 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x726ff7c1 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x732df6e8 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7610a1b0 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x770965d7 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7770e8bc ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7804edee ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78755880 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79535a6c rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a0a619f ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cc147ef ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ebe4b15 ib_open_qp +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 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_advise_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_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_destroy_wq_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_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_drain_qp +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_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_cached_subnet_prefix +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_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_vf_config +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_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_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_put +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_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_query_pkey +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_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_vf_guid +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 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibnl_put_msg +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_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_create_user_ah +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_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_link_unregister +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_register +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_query_ah +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_resolve_ip +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_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_parent_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_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_rw_ctx_init +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_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_user_mmap_entry_get_pgoff +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_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x013dd0f3 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0cb4bf00 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0e5e6418 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1aef7fc5 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2c34aee7 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x384992ac ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x399a33f2 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3dc1e25f uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4062c3ec ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4ee5b469 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x502999fd ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x588bf2cf flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c2f8a6a ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c498355 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6533cff1 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x67a75330 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x76811b2f ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x789b7731 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f069655 uverbs_get_flags64 +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 ib_copy_qp_attr_to_user +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_get_peer +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_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_odp_unmap_dma_pages +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_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_fd_class +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/ib_uverbs 0x7fffffff uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x099ee84f iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2eb59651 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x53b817a9 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x58576d05 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7328c12d iw_create_cm_id +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_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ddac586 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20d5fa1a rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26a685e6 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2711799e __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c224d90 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31694716 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x37daf286 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3bb8f5f8 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x415e2226 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46b1ae4a rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ccc7a7f rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d4d5428 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f7008b0 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58531d97 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5c4ab78f rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62420d45 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68ee9423 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x75f86e74 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7959e1cb rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_leave_multicast +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_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_set_afonly +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_service_type +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1287732f rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3dcdffe5 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5933a924 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_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x31f42d47 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x67029a33 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x68d66e5c rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7370e641 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_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2782da99 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x295a26f7 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x44c61441 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x46f6fa77 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x665eb9d4 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7fffffff rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/input/gameport/gameport 0x097db540 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1c5051fb gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x311109c2 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3b552d39 gameport_start_polling +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/joystick/iforce/iforce 0x5d7ac14c iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x5dcad77c iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x645d5782 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x7fffffff matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x2ab64830 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7fffffff ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7fffffff ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x29564ce7 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 0x590de3f2 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1fad1355 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fffffff sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fffffff sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fffffff sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fffffff sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x15c8f8cd ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7fffffff ad7879_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x774bacc6 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x7fffffff qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1e568680 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6f04fc8c attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x716b32ff capi_ctr_handle_message +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 0x1e446431 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7fffffff mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7fffffff mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7fffffff mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x350d87a1 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x7fffffff mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03abce1d mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0482b03e mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0bfc9893 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x10882446 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x169812f0 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x35d3ce5a mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3bbabec5 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x41547d57 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x466d2dd7 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51f64989 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x665dfc70 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff bchannel_senddata +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_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_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_unregister_Bprotocol +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_Bchannel +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 0x1129edd2 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 0x550b7177 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x7fffffff ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x0c6550d6 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7fffffff omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7fffffff omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7fffffff omap_mbox_request_channel +EXPORT_SYMBOL drivers/md/dm-log 0x09ebf862 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x10388974 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x1c9f86b6 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x55d057d0 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x27599ef3 dm_exception_store_type_register +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_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 0x7fffffff r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x7fffffff raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x16bd931d flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3cf71c4d flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3cf81b3a flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6299ea0c flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x68edf4de flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7b35dc8f flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7e520e54 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7f46789e 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_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 0x32f1202c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x54bb94db cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7bc1ac64 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7fffffff cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7fffffff cx2341x_handler_set_busy +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 0x33ba0d9c 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 0x7fffffff 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 0x3791e0b0 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x5fd6641f vb2_buffer_in_use +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-dvb 0x15f3049d vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2634d952 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4051c9b7 vb2_dvb_get_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_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 0x66de3edd vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1ba26a2c dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f6663ab dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x218f95a7 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty +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 0x42d15a1b dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x481f5a3f dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5b8fe5a7 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f8008f0 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6642a9bd dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x704b6841 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7afcf2dc dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ea2c6b7 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ca_en50221_camready_irq +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_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_generic_ioctl +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_register_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-core/dvb-core 0x7fffffff dvb_unregister_frontend +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 0x2b74f20d au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2ed657ce au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x38998a04 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x46ea2c9f au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x699f3260 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x74dedec4 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x7fffffff au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4faafbdf bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x18fe1c16 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x7fffffff cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x03ee5679 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x27ec67dd cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7fffffff cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x7058591e cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x7fffffff cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x71fa5e33 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7fffffff cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x432bd895 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7fffffff cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7fffffff cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x7fffffff cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x08cd3ae4 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x16c028b1 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x792629ff dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7fffffff dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7fffffff dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x11519ce7 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2764fb48 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4d1b46ef dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_dcc_freq +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_tune_state +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_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 0x2010de4e dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1004ce95 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x305bb7c6 dib3000mc_i2c_enumeration +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_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x44c206e8 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7ff17077 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7fffffff dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7fffffff dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x7fffffff dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x7fffffff dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x056775bb dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0a6a7884 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1308e3b9 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x388b0229 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x47ccb0c2 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x622422a0 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x68e4d69e dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6aa3de14 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x752c459e dib9000_fw_pid_filter_ctrl +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_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x10cd6b21 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x25da56e1 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3ac42ee3 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x73f4a147 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7fffffff dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x7fffffff drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7fffffff drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x7fffffff drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x19dd055a ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x6e443ee1 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x122631bf dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x7fffffff 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/ec100 0x401a4abf ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x34699b83 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x7fffffff helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x5fa33d09 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 0x2939b4b1 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x47570c01 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x1502b2be ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x32853446 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x332e4431 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x290ff072 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x1304d4b1 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x7fffffff lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x4106009a lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x7fffffff lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x7fffffff lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x7fffffff lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x120ff12d lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x3ab73436 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x7fffffff lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x7fffffff m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x7fffffff m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x6cdf027f m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x3fb85258 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x7fffffff mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x39b9ab72 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x7fffffff mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x2d5c7cef nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x26fa63df nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x7fffffff or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x418fc551 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 0x56b074b6 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 0x7fffffff stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x3f16a9c2 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x7fffffff stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x7fffffff stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1bd67a24 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 0x7fffffff stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x7fffffff stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x7fffffff stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x72813208 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x7fffffff tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x7fffffff tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x4f067abf tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x5766bfe3 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x6ceba097 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x7fffffff tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x42ff01a5 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x77ffe850 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x7fffffff tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x2b741104 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x6d5c6147 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x41df3932 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x7fffffff ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x7fffffff ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x53f4e39f 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 0x4a4e68bc zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x7fffffff zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x7fffffff zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x089f003d flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1ebdf3a7 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2b140afe flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x472b18b8 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6a7e9a00 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x39daa7d3 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5a76ed38 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x70a463fd bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7fffffff bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7fffffff bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6eb73c20 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 0x04246373 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0d42b0c5 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4cf85244 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x55169ffa dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x56b06edb dst_wait_dst_ready +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 0x1bbd34ff cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3a3448de cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x519491be cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x54aa4dbf 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 0x1f1bd25c cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x238c2c84 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3933e2d2 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x66e0dac8 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7ccd78ce cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x41983910 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7fffffff vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7fffffff 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 0x0c31bde4 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0c549fc7 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x127656e7 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x65c3c95e cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7d2a581d cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x029d54e7 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0637a47b cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x14e173bb cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2503c238 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x262232d7 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x36196c95 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x51b8f228 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x60aa07e1 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x653211a1 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x67d01047 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a23c7e6 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_audio_thread +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_set_scale +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_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 0x07f7b4cb ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x04c6ca43 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x15ade147 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x15e7006c ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x468fe183 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x479c0312 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x595312ca 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_clear_irq_mask +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_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x00f577b2 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x05377397 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x223caa1d saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6a39501a saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x73300b57 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f68c76e saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_pgtable_alloc +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_unregister +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 0x060424eb csc_set_coeff_bypass +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x272575a1 csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x357a4526 csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x7fffffff csc_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x1d6d55ad sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x61652166 sc_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x7e449341 sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x7fffffff sc_config_scaler +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x7fffffff sc_set_vs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x0506b5d3 vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x163e1a86 vpdma_free_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x16f0b6e4 vpdma_add_cfd_adb +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x1d8a5dbd vpdma_add_abort_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x1e26321d vpdma_misc_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x2d1faccc vpdma_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x3bb6047d vpdma_create_desc_list +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x3cbfa587 vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x43b922ba vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x49293b26 vpdma_yuv_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x50ec40af vpdma_rgb_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x5118bd7d vpdma_add_sync_on_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x5db4b5b7 vpdma_update_dma_addr +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x65d23377 vpdma_add_in_dtd +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x664dd09f vpdma_alloc_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x77c99821 vpdma_submit_descs +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_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_enable_list_complete_irq +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_hwlist_release +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_map_desc_buf +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_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_unmap_desc_buf +EXPORT_SYMBOL drivers/media/radio/tea575x 0x0ca70228 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x16de43b1 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x23df7218 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7fffffff snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7fffffff snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7fffffff snd_tea575x_g_tuner +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 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7bcf96cb ir_raw_handler_unregister +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/rc/rc-core 0x7fffffff ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x7fffffff fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x1ab184aa fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x225b9299 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x38a8861f fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x49ba9246 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x7fffffff max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x19d5ee65 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 0x6e09eb8f mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x7fffffff mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x7fffffff qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x7fffffff 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 0x7fffffff xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x2d995d48 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x7fffffff xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0cca74bb cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x4ee439a9 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x29faff7c dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2c6e402d dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x34341ce7 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5d39db0b dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x604710c2 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7398f49a dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x02aee021 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 0x742c9a7e 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 0x7fffffff dvb_usb_device_init +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 0x1807e0fd 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 0x19fb90ce dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5561502d 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_rc_query +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 0x4dd0a8f7 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x6ae49f50 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x764baa0f em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x00eb975e go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x17678ae5 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5f2ab78a go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6cdf1340 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7a2c43b2 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7fffffff go7007_boot_encoder +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/gspca/gspca_main 0x122b9d23 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3b47e430 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x47faead9 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4d369454 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5f4bef63 gspca_suspend +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/ttusb-dec/ttusbdecfe 0x16b48976 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3d7388bc ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x16bc6115 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x332fc8df v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x60d2807a v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x73f6a8d0 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_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2f1cb6a0 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 0x7fffffff v4l2_m2m_buf_done_and_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_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 0x08868195 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f6ded0e v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11a4ec59 v4l2_ctrl_add_handler +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 0x1a4b84f8 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ab2dd1f v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b4a0a97 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d5ed540 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e22fba0 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20ec8073 v4l2_ctrl_activate +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 0x2a7b39a5 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f354d4f __v4l2_ctrl_s_ctrl_string +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 0x350fef8c video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36acb4d8 __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3953e47f v4l2_ctrl_type_op_validate +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 0x3c42138d v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x41a6d0c5 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45410aed v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48eebb0e video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49b59a53 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d2a7712 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e1ae586 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50ec38ef v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56a907cc v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57bbf3a0 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x594ecd1b v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c863a44 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d949364 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68a64d90 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71c80298 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x775e2c05 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_auto_cluster +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_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_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_new_std +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_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_g_ctrl +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_query_ext_ctrl +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_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 0x023b7476 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x45525f63 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x7fffffff rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x7fffffff rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x7fffffff rpcif_prepare +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0a77a5b3 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0af26fc1 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1d6c8afc memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3ab058a6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x420f1edf memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x49c443c3 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x534e41c5 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5eee5a64 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5fd87c6f memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6c5bf3ea memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_add_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_remove_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0318e093 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x091f4a26 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0abb95d3 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d2f98c0 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x240e33f3 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2772ee7f mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x289d3e51 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f01137e mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3fec7686 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x404f8799 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57ab74c9 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76a97a70 mpt_resume +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_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_deregister +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_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_put_msg_frame +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_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a742341 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b31dc59 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0cc3bde2 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x14978d88 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x160f30d1 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2d3085ce mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31a1ebc7 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x387ef939 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3def441b mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3e8d23d8 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x42964dea mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x43e0b2f0 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4fdae485 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50d7c839 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x534c84c9 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a03a8b1 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_io_done +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_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_suspend +EXPORT_SYMBOL drivers/mfd/axp20x 0x56210d32 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x7fffffff axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x7fffffff axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x7fffffff 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 0x07f52556 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x293976bb pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x00a943c9 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x00d00477 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2f673716 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x591c66c6 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_irq_mask +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_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x7fffffff qcom_pmic_get +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 0x4d3ae881 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x50171f4d wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x5fc513e6 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x7f005318 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7fffffff wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7fffffff wm8994_base_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x01ad24eb ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x5640382d ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x2fb85933 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x20ff8b6e c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x268d827e c2port_device_register +EXPORT_SYMBOL drivers/misc/tifm_core 0x2c2e6df7 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2fd4219d tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x55b6a873 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7e100af2 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x25f50d0f dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x38cda9f2 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7fffffff dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7fffffff dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x758a621e mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x7fffffff mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0ba0aa58 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1b8b606f cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x770f26f3 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7dc51d16 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_udelay +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 0x510533f5 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 0x7eb47fa9 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x7fffffff mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x120b7f56 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x30cd5cc3 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x0d487452 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x3661bf1c denali_remove +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x086c0b52 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x15b853da arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x19118db4 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3e0856c0 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arc_raw_proto +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_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x002f969e com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x33d84710 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7fffffff com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x7fffffff ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x7fffffff ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x7fffffff ctucan_suspend +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x7fffffff can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x7fffffff can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x01cf24f4 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07c6fa3d b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0f0a9f25 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1e44ab1d b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x21c2c26b b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x429f3151 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a240921 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c2a8ecd b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51f7b163 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x531c893e b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a3cbd0a b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a70a815 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5e367483 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60a74d8c b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x695612a3 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7449e547 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7a1f0951 b53_configure_vlan +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_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_get_strings +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_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_switch_alloc +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 0x30d5faf6 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3ab7c436 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7fffffff b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7fffffff b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4015544c lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x770cd128 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/microchip/ksz_switch 0x7fffffff ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x7fffffff ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x7fffffff ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5330bc8a vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5bb8a7c1 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 0x38a2d8c8 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6242ab98 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_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0141c740 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x10050c46 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x157d970f ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x161b282f ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x29624526 ei_tx_timeout +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_set_multicast_list +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 0x22f7f613 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x7fffffff cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1bf9b83e cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x33fd6257 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b29bc9e t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4ef6b4c1 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x582ab0c8 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5d938744 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5e70a40e t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67324b0b cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ac441de cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6d082d92 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7af4c83a t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x016506a5 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b100bc1 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f225997 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x169d42ce cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1dbfcf39 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e329926 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22d47871 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24b4b07d cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25519f64 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2816e110 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x297553c8 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a0f8d71 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d17c54a cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33c86b71 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a0b1b7c cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a861ed5 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ab6984e cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57444349 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60e52b08 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62b75276 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6666b04c cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f38322 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67a58efe cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6bda8da6 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74ca3a49 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_alloc_sftid +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_get +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_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_port_idx +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_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_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_write_partial_sgl +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 0x14b11e2d cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x16a8d583 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 0x2db74ae0 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x67c7be8c cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x67de12bd cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7fffffff cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7fffffff cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x51a875a3 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6c7695ec enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x79162398 vnic_dev_get_res +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_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7fffffff vnic_dev_unregister +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/emulex/benet/be2net 0x7fffffff be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x1d7407fa 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 0x14eb2f6d fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x46bd3d23 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3d7abed5 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x498fa806 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x782b6866 hnae_put_handle +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 0x7fffffff hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5dfacd25 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5ff64ae7 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x646f7f48 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x72a34787 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x75d5f27b hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fffffff hnae3_register_ae_dev +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_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x2e360e81 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x7fffffff iavf_register_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 0x3b6f74b6 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x7fffffff prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02055769 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05e5467e mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b651556 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x103e3365 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1271101e mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c0300fb mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d924be5 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f63bff8 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2146c0c7 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22ab9906 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27a5479d mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a7c0e35 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bce5549 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dcbdad3 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x300a0cc0 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31a15ab7 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47db50de mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4805aa50 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48b8f6cb mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a383a5c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5204997d mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56286808 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ff8b5f7 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68043b7b mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b698308 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73bf69a0 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74252f08 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74b9e737 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x774c78bb mlx4_SET_PORT_user_mac +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_SET_MCAST_FLTR +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_SCHEDULER +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_assign_eq +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_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_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_roce_gid_from_slave +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_put_slave_node_guid +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_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01f1afa6 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0240f19c mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04b5dc40 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09dc62e4 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b29a9fe mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d5f7e22 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd0393c mlx5_core_create_psv +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 0x10f76522 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12778688 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x147655fa mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1554ad84 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17a2a602 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17db6542 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18d38c30 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a5f6fbb mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ca2f45e mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ef6c3d1 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f9bd798 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21781ffa mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x226dc42f mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25604e99 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x292c9467 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x293506b4 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x296508bd mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a1c095f mlx5_core_detach_mcg +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 0x2fed0305 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x336d0a1f mlx5_lag_get_num_ports +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 0x34a30bf5 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35d8ff1b mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3915494f mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x422f61d6 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45320fb2 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47279318 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47e9d575 mlx5_eswitch_get_vport_metadata_for_set +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 0x4a889c56 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bf4a892 mlx5_fpga_mem_write +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 0x4f079b28 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fefedec mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50f0d349 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x510da783 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5188b7d9 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x546ffdc8 __traceiter_mlx5_fs_del_rule +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 0x567554c4 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5907640c mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59a2ab39 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b2d9cca mlx5_add_flow_rules +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 0x5eb80db7 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ff0b08f mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x607d78e6 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 0x61c3ee68 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61ef5e95 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65a0ae68 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6678f621 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68fddb6e mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a6e0f52 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b4b3758 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d1e554a mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6da26c8b mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e3173b6 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ea4e995 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70bce8a7 mlx5_debug_qp_remove +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 0x7437d61b mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74a00535 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75304d53 mlx5_core_modify_sq +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 0x773ae014 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78c70be1 mlx5_get_fdb_sub_ns +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 0x7a4f3e5f mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cf8df99 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d3488e7 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7da03e2c mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e554f2c mlx5_core_roce_gid_set +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 __traceiter_mlx5_fs_del_fte +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_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_create_vport_lag +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_exec_cb +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_cmd_init_async_ctx +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_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_alloc_pd +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_attach_mcg +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_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_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_tir +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_cq_moderation +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_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_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_create_auto_grouped_flow_table +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_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_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_create_generic +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_notifier_register +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_get_core_dev +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_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_flow_table_id +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_sendmsg +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_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_get_roce_netdev +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_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_is_sriov +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_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_packet_reformat_dealloc +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_rl_add_rate_raw +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_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_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x0728a89e 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 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode +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 0x16f4221d mlxsw_core_irq_event_handler_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23914bd6 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x377197af mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +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 0x427fe224 mlxsw_afa_block_append_mirror +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 0x473d0d1c mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49bb013c mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49bb6833 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4c7302c1 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4cef7f0b mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get +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 0x57e736af mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x58ca2e66 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 +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 0x6237089c mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x62c03c6f mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio +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 0x718d28f4 mlxsw_afa_block_append_vlan_modify +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 0x7e08c6e0 mlxsw_core_event_listener_register +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_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_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_ip +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_sampler +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_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_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_irq_event_handlers_call +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_max_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_read_utc_nsec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_res_get +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_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_state_set +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_core_traps_unregister +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_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 0x55638df1 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 0x00669ae7 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0442c455 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x061039aa ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07e8a5a0 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0baf83da ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11b8b719 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13e172e0 ocelot_mact_learn_streamdata +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 0x19cf5a0b ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ea7d840 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2446b55f ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x264b3d62 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a4201c5 ocelot_bridge_stp_state_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 0x3f01a14b ocelot_vlan_del +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 0x429c5dbb ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4429d2ea ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44645b7f ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ddefc8d ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54bc7b3d ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55f3f531 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x586f9497 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x59f22899 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b68ac2e ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c3130b8 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ca88cfd ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f808de1 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x627fdbc4 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6511d7b6 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x698c0954 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c679c17 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6fa98d0a ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71e08331 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e31a481 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7eae92bb ocelot_mact_forget +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_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_fdb_dump +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_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_get_ts_info +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_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_add_ring_role +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_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_get_stats64 +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_leave +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_port_pre_bridge_flags +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_adjfine +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_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_sb_occ_max_clear +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_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_sb_port_pool_set +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_vcap_filter_add +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_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 0x402c4811 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x670a7b81 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x745f13be 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/ethernet/wangxun/libwx/libwx 0x021ff935 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x270b4d19 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2ac1ffec wx_set_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4f32c002 wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x595aaad3 wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6a5e9024 wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x77d65c62 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_clear_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_sw_init +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x475183ce hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4a10b888 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7771aaf5 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7fffffff hdlcdrv_register +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 0x7e8fabde mdio45_ethtool_ksettings_get_npage +EXPORT_SYMBOL drivers/net/mdio 0x7fffffff mdio45_ethtool_gset_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 0x1f8bff75 mscc_miim_setup +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0cad3e7a lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x11bf1027 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x27665820 lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/pcs/pcs-rzn1-miic 0x63f8a250 miic_create +EXPORT_SYMBOL drivers/net/pcs/pcs-rzn1-miic 0x7fffffff miic_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x3a8c8cbe bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x620b94af 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 0x21a9b5fe team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x2223813c team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x7fffffff team_mode_register +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_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 0x164ff3de 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 0x05c7c034 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff unregister_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 0x3c0bbe18 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3da60bec ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x547fc0ab ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5712a092 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6ff4752b ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x776d5701 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_keyreset +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_regd_init +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 0x02b5af60 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x046a7e50 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x049b7050 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0a6d8ca1 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c14b6a6 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0eab1f6b ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x103db113 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10a9d775 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14ac053a ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x154bfdeb __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e6f73ac ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1fe34aa7 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2153f5bb ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x230d71ed ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x232b9df3 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x23496637 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x25cc2e1a ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30305a2c ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f5d35f8 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56275096 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63a8b364 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63d90405 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6884bc91 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b9c772b ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ee00bdf ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f60f719 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x746c5dd0 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x79ac1c20 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ac09a93 ath10k_warn +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_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_send_next +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_dump_registers +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_init_pipe +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_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_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_destroy +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_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htc_process_trailer +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_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/ath11k/ath11k 0x0661ec30 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x081ff4a6 __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0efd86ac ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2ad63850 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2f68f9d5 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x45956031 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4b21ff77 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4b2a3638 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4b4bd0f3 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5b8446f2 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5d497301 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x601799a8 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x608a9939 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x663e0c17 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x67e8ed36 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6be60751 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f6a234a ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x73aa35d0 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7d8e57e9 ath11k_pcic_config_irq +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_attr_flags +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_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_ce_irqs_enable +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_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_start +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/ath6kl/ath6kl_core 0x0ff191bb 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 0x1ed08043 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3a0a6e99 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x41f1a656 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x51dabcb6 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x73083186 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_core_cleanup +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_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_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 0x00613923 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08e55dc3 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b6e4b9c ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x18ebd68e ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x18ec7f07 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25ea70cf ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2b7c8418 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x33c86f4b ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4f22ffdd ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56a4e65e ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x657c27ba ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6937a9d8 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7ad716b4 ath9k_cmn_reload_chainmask +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_count_streams +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_channel +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_rx_skb_postprocess +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_spectral_scan_config +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 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 0x01d231f1 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03ce2fd9 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04026abc ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04d78281 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05a4c012 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x071866ae ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bdb6cb7 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ea87ced ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10845fce ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14151944 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c5f1cd7 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d235bf0 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2388903c ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23c4a84b ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b01fdfa ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b1ca0d1 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3342cee5 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33dda0d4 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33f2028f ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36a5b82a ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3911b2c4 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f43bdab ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44bf6ada ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46be885b ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x489901e6 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48a36005 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a33b011 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bcb1aaf ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c7c6a53 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e0cc4ac ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55822eb0 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55e7d919 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x594789d2 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5957d944 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a5618a0 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ccdc82b ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ec4dc0d ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ed26f21 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x611abf8e ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62448700 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x633aae37 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x642f794f ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6812a70b ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x681da1ba ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ac0b61d ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ace85cd ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d82d43c ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e6eca8d ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x705127fa ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7078e9d1 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73a39c0b ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x783f0fe8 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78763103 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7895cbdc ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7aa10e6d ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d25d3e6 ath9k_hw_reset_tsf +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_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_hw_bb_watchdog_dbg_info +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_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_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_populate_single_table +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_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_init_scheme +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_alive +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_enable_interrupts +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_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_gettxbuf +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_in +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 +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_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_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_reset_calvalid +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_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_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_settsf64 +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_setuprxdesc +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_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_wow_apply_pattern +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 0x289e3f31 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x5971be32 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7416e691 atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0284235b 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 0x321769a4 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x34995e9f brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x402a9b51 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5fa214f0 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x77faafdd 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_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_mlen +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_penq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x06f02b89 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x26327c2e libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x27430fc8 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x335e76a5 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x49566697 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4ccdbdd6 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6b6ba3aa alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x75baf574 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff 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_channel +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_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_rx_mgt +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_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01486e2c il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x021308cc il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07130dc5 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0cb7f67c il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11686ea8 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1681dfcd il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a6f947a il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b4c5349 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c06620e il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cf651df il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ff6bc3e il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2071e093 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26f07b6e il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28cf72d8 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b3c74ad il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c1e5cca il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d086e04 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e312795 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33daf018 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33ea92e2 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37737824 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c3b80f3 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3eec207b il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4070361d il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42cbf57f il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x433dfd64 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45fba2f5 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48268f9c il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x490089eb il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b6bc6fb il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f193e98 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f5eb0a7 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51390304 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x563207b4 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c300624 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5eb7d8ab il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x618deebc il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6307ff72 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x646699b0 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66c2ede9 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x680829b5 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b8d8f09 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c5364a8 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cb1e177 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d396b0e il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e5c5b18 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x700d373f il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x743ff35d il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x759642fb _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ae4ca44 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cb98f29 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d4e19b8 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dd0c9f4 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e129e15 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ebca0fc il_eeprom_init +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_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_cancel_scan_deferred_work +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_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_geos +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_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_init_channel_map +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_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_rd_prph +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_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_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_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_set_decrypted_flag +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_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_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_setup_watchdog +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_txq_update_write_ptr +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 0x2883a2e9 iwl_trans_pcie_remove +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_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fffffff __traceiter_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 0x003cad18 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x054f6c46 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x073a9a7a hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0bba2a85 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x286e54ff hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2c65516f hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3c4a6947 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3cc18411 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x43769b72 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x54398c1c hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x68d71d0b hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x74210577 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 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_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_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_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_init_proc +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_auth_algs +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 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x121dc5fa __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x272d643e orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3ca01f26 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5773f163 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x624112f4 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6f980026 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x71e418f9 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x75c2e388 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff __orinoco_ev_rx +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_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x7945bf3c rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01ee5ee5 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02bdd6f7 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1456201f rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x192e9eea _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c563b50 rtl92c_firmware_selfreset +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 0x23a5d0f8 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x23bda335 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x289a9fe0 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30b4d8da _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x326ed010 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33213d91 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e96262b rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c40b5da rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58f5f1ce rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a376947 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a4a878d _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5bab08c3 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x66da8db9 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69d8d7dd rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b12e2b4 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x703e577f _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_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff _rtl92c_phy_txpwr_idx_to_dbm +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 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_init +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_download_fw +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_lc_calibrate +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_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_set_fw_rsvdpagepkt +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 0x689adc45 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x70be5c26 rtl_pci_suspend +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_usb 0x023b8767 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4ed0ec2c rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7fffffff rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7fffffff rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x042e6413 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x079240d2 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0acff556 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ef65a17 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19250fd4 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1aa41754 rtl_process_phyinfo +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 0x261d46cc rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x377d7e56 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37a85770 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b369ebb rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40e6fece rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5632f756 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d7a0b82 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7afafd16 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff efuse_shadow_read +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_mark_invalid +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_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_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x2700cf00 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x7fffffff rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x7fffffff rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x2322de8c rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x081d8f38 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x094b216f rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0ce3241f rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f459243 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x10e5ce1b rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17008d7e rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24732be4 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x27894692 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c464fb0 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2dc80906 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e76adbf rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x35f9aaba rtw_coex_write_indirect_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 0x38493647 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e7cc2b3 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4255711f rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4554a142 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x462853e3 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4904aa9a rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f3d6d3c rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x512c1e24 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x52aa52aa rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59c4ed9b rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b8b883b rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6baeb56a rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6c0f12f3 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fee320f rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78107c0c rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7aeb8d04 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c7a25c8 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff __rtw_dbg +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_bf_remove_bfee_mu +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_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_coex_write_scbd +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_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_fw_do_iqk +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_parse_tbl_txpwr_lmt +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_init +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_pwrtrack_avg +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_pwrtrack_thermal_changed +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_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_register_hw +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_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 0x2cfb267f rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x36bcdb13 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_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x7fffffff rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x7fffffff rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x7a12da85 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x0d8c0875 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x7fffffff rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x090e5508 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0939dba6 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e0cc9d0 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x154564d4 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x231d3989 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2330e3fe rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x23f11f3f rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2a00a109 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2c5c35a1 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2ef64bfd rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3731b0fa rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x477eb753 rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x489f87b8 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a285c1f rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x506240af rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x521dd490 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x568a7abc rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x59ea1706 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5dd93c67 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x65c53a90 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x67a477b0 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x682bead1 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e208fc6 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7616d448 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c9cb455 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_alloc_ieee80211_hw +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_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_btc_set_policy_v1 +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_fill_txdesc_fwcmd_v1 +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_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_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_rx +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 +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_gnt +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_coex_init_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_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_get_err_status +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_stop_sch_tx_v1 +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_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x02d0d70e rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2e214789 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3a259714 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x45e93f87 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5f331df7 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x70c06492 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single +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_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_fill_txaddr_info +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_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x7fffffff rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2b2fec07 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x317f26ae wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x198ace7d fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6f7eff2a fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x3836f426 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x3e96733c microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2128ba60 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7fffffff nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7fffffff nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x5565ee96 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x1c97ad66 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3f4d50aa pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1d10b217 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x664e2a86 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_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0cdf20ca ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x13b2e506 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x193ddb27 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1cc30ebc ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1d95ff04 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1dd7b638 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2dd08857 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x08e7299f st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1949b427 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1ff2b64a st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2b6c20c0 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x35b79359 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3fbb0abb st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4d7014ba st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x50ba01bb st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x76ce6e32 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_se_init +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 0x02247c4f ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x05bdcbf6 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x06a1a80a ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x0779c996 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x0c20bdb9 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x45f35593 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x5def2083 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x7187bc03 ntb_default_peer_port_number +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_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x03a8b225 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x154791cb parport_read +EXPORT_SYMBOL drivers/parport/parport 0x19db25ed __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x24d7afde parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x28a554b8 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x2e8de6e1 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x30ef8b75 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x32459866 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x326a0e99 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x3d8d6b04 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x51cc579e parport_write +EXPORT_SYMBOL drivers/parport/parport 0x52d0702d parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x55ba1182 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x56c40a22 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x68fba5ef parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x7f8f199d parport_remove_port +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_get_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_ecp_read_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_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_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_wait_event +EXPORT_SYMBOL drivers/parport/parport_pc 0x0efff053 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x2b821045 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x05a0543f pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x067dc42b pcmcia_register_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 0x7fffffff dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_get_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_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x5549a570 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x060a5c16 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_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7fffffff cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7fffffff cros_ec_suspend +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 0x1bb95ab7 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3b6bd78a rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3fa6025e rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x47eb0903 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x57352548 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6188610a __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6cbe7522 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7790d032 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7b62bd95 rpmsg_trysendto +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_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_send +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_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x7fffffff rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x7fffffff ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7573bcb8 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7fffffff scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7fffffff scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7fffffff scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1a4ec77e fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2c1a89af fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x56ee09ec fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5ec08073 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x62a88603 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x710c4d30 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7a2ed2ba fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7d8e57b4 fcoe_transport_detach +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 0x0231e132 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05354fe2 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0952b477 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a6fec2c fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ccad2af fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fc9c45b fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13e551a7 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c729ff7 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1cb25d09 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fbb173d fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27ac7465 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27ce6836 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e920c33 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e926826 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eabcf82 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3123e79b fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37c417ca fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d0ac7f3 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x502ac9ce fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50b9a230 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57561ef7 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x587b8ee4 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5aae7ef4 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6060a5c7 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x661812a1 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69d1a076 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6bae0fde fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dd77bb6 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x754d96e3 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7be90eed fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c3914fa fc_exch_mgr_list_clone +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_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_update_stats +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_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_get_host_stats +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_reset +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_recv_req +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_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_set_rport_loss_tmo +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 0x1ede7133 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3daa3366 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4f248c02 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7fffffff sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x7fffffff mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x7fffffff mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x7fffffff mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2491b9ab qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x37259402 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4dd161b7 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x53c6973d qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7b5870d0 qlt_stop_phase2 +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_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/raid_class 0x06c6b56a raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x4790f46d raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x7fffffff raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x04d9c471 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1c192e2b fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3251a679 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x348d5faa fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4107785b fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4d10b272 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4f979380 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x59425a68 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5ce3222c fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_block_rport +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_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_vport_create +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 0x03b97aec sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1326862a sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x206aad2c sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32a2ead6 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x33cd6bf3 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38687dec sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f644785 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x629331c5 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ed4d0e0 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7045d5a1 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7361ef60 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74f6e040 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77b94df6 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a818c1d sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7beaef20 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c9ca328 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fc0f415 sas_phy_free +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_phy_alloc +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_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_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x38f6df82 spi_attach_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_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7fffffff spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1cc67e71 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_timed_out +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x03d78ecc cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x06a1a806 cmdq_pkt_assign +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0bf9a7ef cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x12a94af9 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x269e0d14 cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x4cba599f cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5266c0a3 cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5cc31efe cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x63a5281b cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6c9e633e cmdq_pkt_write_s_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x70c3238c cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x798e8604 cmdq_pkt_write_s_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7dec2f49 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7e18060d cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_mbox_create +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_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_write_s_mask_value +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x1870716e 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 0x017f1d67 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x0b258a77 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1b9f3b9f geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3296942c geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3ee67a6a geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4f8f83fe geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x62fa70c5 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x716b9e30 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_se_resources_on +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-geni-se 0x7fffffff geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x4646becd qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x7fffffff qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x34c150c0 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5159c243 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x60a24c30 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x75b4eb65 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_add_lookup +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_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_send_request +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 0x7da5ce85 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x09a60b8b sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0c3a3e69 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0f469253 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1511c049 sdw_clear_slave_status +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 0x24d3d0fb sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x315e7d2c sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x33c3f53f sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x37b44f46 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4052b223 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5d665d45 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60062163 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x633a75bf sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x68036b25 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6b80b737 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7133e787 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7399ba42 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7630f3b9 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7e91c53c sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_cols +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_nread +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_show_ping_status +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_write +EXPORT_SYMBOL drivers/ssb/ssb 0x0138a287 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x08cf2c6b ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x220aab0e ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4a51cf8d ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x5179d8a7 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x59828551 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x6094b54e ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff __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_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_dma_translation +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_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_set_devtypedata +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x076dd60f fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0bfab26c fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e499d31 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1e9bef29 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x22e6f752 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2387ff5a fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3138683a fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x32aa870e fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3aa9bb4b fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x40851c0b fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4712202a fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x478013ae fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x484f5347 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e330c7e fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4feb9475 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e198e6e fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x76970e52 fbtft_init_display +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_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_reg16_bus16 +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_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x68d7e04c gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7f0aac26 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7fffffff gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x7fffffff adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x7fffffff ade7854_probe +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 0x006f4efd rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00ddc732 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03045a4a rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08c1b0e5 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08e01ba1 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e519e33 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1029f58a dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11c258a7 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1218b8f0 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x126b4d3a rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14cdd6d0 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x17173687 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18bf0698 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18f0fee4 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28a738c5 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38ecf6b9 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a3619ba rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b07bb5b rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c6cbdee rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43f57e1d rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4520103d rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x499843c8 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x526e18aa rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6388b351 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6de07682 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x732ad738 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b2bc1a1 rtllib_wx_get_rts +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 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_DisableIntelPromiscuousMode +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_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_reset_queue +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_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_essid +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_wap +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_mode +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 0x050e77c4 ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x120698f1 ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14ea6be9 ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1dc28858 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d17308f SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3052809f ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3063c4cd is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x306c410b ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x328db785 ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38af58ed ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3adb429f ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4168177b ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e1dd17d ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x502186c1 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x574a5378 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x587773db ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x637d2a65 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66904968 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66979591 ieee80211_is_54g +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d63c3d3 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71893817 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7be52c17 HTUpdateSelfAndPeerSetting +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_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_is_shortslot +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff to_legal_channel +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x008c7dd0 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0725c61d iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23d47227 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24cb1b50 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a08934b iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d9fe8e1 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x384c9db0 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3edf742c iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4bf72e48 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5123ce7e iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x534dab64 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a35f624 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b62571e iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f42107a iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x642b7fc9 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6666b586 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7543beba iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7edb6316 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 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_aborted_task +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_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_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_queue_rsp +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_set_unsolicited_dataout +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_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a22d98b target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cc9e3ab target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1010ec53 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x14e867a3 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x184680bb transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x192508fc target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x2443793f sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x3170d564 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x31e5ad24 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x33b5dc79 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x368c7fc6 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3866b658 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x38b2b9f4 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a5760f5 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ab57617 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f265526 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x42dd130d __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x46f8d628 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x51a5a36e target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x543cc603 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x553f7e7b target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x5585968d transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x57a63984 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x594ecbe9 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x59520e51 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x61b16b02 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x67daa2b5 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d18b9d7 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f02460e passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x714d4865 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x71b5ee09 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_tpg_deregister +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 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_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff sbc_get_device_type +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 target_backend_unregister +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_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_free_sgl +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_send_busy +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_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_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_generic_handle_tmr +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_lookup_tmr_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/target/target_core_mod 0x7fffffff transport_wait_for_tasks +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5f3ac690 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6331dbe4 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7b86d052 ufshcd_map_desc_id_to_length +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_suspend +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x6123b3ee tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x7fffffff tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x7e52b402 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 0x7fffffff usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x194781d6 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x38d2d5aa sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x00f450e8 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x28613f3b usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x46fe1fc5 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x587ff660 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7c580f3b usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_close +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_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7fffffff usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7fffffff usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x5d733fed vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x28fda947 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5fb4f1c1 mdev_register_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6ed8283a mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7fffffff mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/vfio 0x05b8cfda vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0x0f655355 vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x566ede3d vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x7fffffff vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x7fffffff vfio_unpin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x148ba8d9 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x7fffffff vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x102c8234 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x140ceb39 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x221d4624 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x261fea85 vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x26c60a08 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4164520a vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x5dfbeba4 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x723ab668 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x79b927f7 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x79c86ceb vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7c007927 vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7c2e8833 vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 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 0x1ab7b001 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5e9dd6f8 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7fffffff devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7fffffff lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x186dea7b svga_get_tilemax +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 0x6edcddea svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7c3e099f 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_get_caps +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_tilecopy +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 0x7fffffff sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x38259cbc 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 0x3be8e77d 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 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 0x7fffffff g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7fffffff matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7fffffff matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1706f608 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x43469c87 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x69536e2b DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6d7c065a DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x7fffffff matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x696c6479 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x72cd7aed 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_base 0x7fffffff matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0655d9d3 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x10642338 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x264a6fa7 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x435bff39 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5dce8b7b 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_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7fffffff matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x0014db25 omap_dss_find_output_by_port_node +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 0x04b21296 omapdss_unregister_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x0990998a dss_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x0ce6259c omap_dss_get_next_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x22b47952 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2423d741 dispc_ovl_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2b6b83b4 omapdss_unregister_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2d941eca omapdss_default_get_resolution +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 0x36218c8f omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x38bfe17f dss_mgr_start_update +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d36d54d dispc_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x42912b0c dispc_clear_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x458bd03b omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45e5c800 omapdss_register_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x482ec5d8 omapdss_default_get_timings +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 0x4e464812 omapdss_output_set_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x54f6830a omapdss_get_default_display_name +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5a1e7d38 dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5fc6d671 dss_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6252ef87 dss_install_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66cdd3c9 dispc_mgr_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 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 0x70e4b8b1 omap_dss_find_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x78a6961b omap_dss_get_overlay +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x78cb751f omapdss_register_output +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_connect +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_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 +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_num_overlay_managers +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_dss_put_device +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_find_mgr_from_display +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 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 0x2d397ffc virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x4409b4b1 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7fffffff is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7fffffff virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x7fffffff w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x7fffffff w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x07fa80c2 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x7fffffff w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x21d57728 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x70b48619 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x74d8a898 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x7fffffff w1_remove_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x057161d3 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x19b4108c fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x28a0f6cf fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2f30b6d4 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x35f56845 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x36a43397 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x3f8c86af fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x401c29f2 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x4476870e fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x49611cc8 __fscache_begin_read_operation +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 0x5fad03bb __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6365342f __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x64b75157 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x66c1baf9 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6ffbafbb fscache_wait_for_operation +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_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_write_to_cache +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_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_get_cookie +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_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_wq +EXPORT_SYMBOL fs/netfs/netfs 0x355c3c7c netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x65a7e9ef netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x7fffffff netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x7fffffff netfs_stats_show +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 0x6665836c qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_release_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 0x051e43d1 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x16a8e2ca lc_put +EXPORT_SYMBOL lib/lru_cache 0x2257d5b6 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0x2838dcbd lc_create +EXPORT_SYMBOL lib/lru_cache 0x2ff949a9 lc_reset +EXPORT_SYMBOL lib/lru_cache 0x3dcbf915 lc_get +EXPORT_SYMBOL lib/lru_cache 0x4fbe8be4 lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x5fd4497c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x72122451 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x7d905c59 lc_del +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_committed +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_find +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_try_get +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 0x1becda1a lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x499f5a98 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x5c2c00a9 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x69de8e36 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x3426b3c0 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x7fffffff register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0aa410b4 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x13b73e43 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0x1490b343 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x1de92008 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x20ca5a6f p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x3253ccaa __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x33bb8f9f p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x37c0a7ba v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x3bb362aa p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3cf9cf66 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x4064cd1d p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x46baf750 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x48d16022 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x53d20029 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x5607b24c p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x5fc92027 __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x620ce85f p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x64216238 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x681cfffa p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x6b035c0f p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x6db7033e p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x707613e8 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff __SCK__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_begin_disconnect +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_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_fsync +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_mknod_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_readdir +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_readlink +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_stat +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_walk +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_req_put +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_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 0x24284c8d alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x2cd15ba8 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x7fffffff aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x7fffffff atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x0a151d8e vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x233e7bab atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x2660b991 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x325b926b vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x3731d0c6 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x3c4906a7 atm_init_aal5 +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_lookup +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_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_process_recv_queue +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x201605a2 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2f2aa1c7 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x6c326199 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_linkfail_release +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 0x009553b4 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04d6bf79 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09c72f87 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a39565b bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15f6849a hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16a751e1 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e99f23b bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22760c92 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x251f964c bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ab2f43a __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38328349 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d32f403 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3dc99b56 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4403cb8a __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48a44574 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bbccd5d hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d096c47 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4da1186a bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x537857e9 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x55962356 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e6e2108 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x607d1390 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60a6455d hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x62a18883 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6695d404 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70900af1 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x750006d4 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7672853d __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7744872b hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c628881 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fe23b13 hci_conn_switch_role +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_enqueue +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_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_register_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_unregister_cb +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_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff l2cap_unregister_user +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x10ba89ae ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x335c8815 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3de42925 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4f913086 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5b0626ec ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7fffffff ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4101b162 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x65b116a8 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x784e3d44 get_cfcnfg +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_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x7fffffff cfpkt_set_prio +EXPORT_SYMBOL net/can/can 0x12cb7aac can_rx_register +EXPORT_SYMBOL net/can/can 0x4ef28a61 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x5b4429e5 can_sock_destruct +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_send +EXPORT_SYMBOL net/ceph/libceph 0x00f9ed6c ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x05bb1e21 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x0887d73e ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x089cf218 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0x13403285 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x160c0bcb ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x18bf85e7 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x1d5a6126 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x1df15338 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x1fdffff4 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20dee350 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x25952d6c ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x26e8c392 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x2a2b2247 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x2ee65362 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x30f1f728 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0x32d092a3 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x32e25d70 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x32e3c0e8 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x34b14047 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x34dcfe61 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x35b870c8 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x36cd4fab ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x37d5a805 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x38b8fec7 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3b83b95f ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x4086a71b ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x4665ae97 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4c006397 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x51887c94 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x51cdef48 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x54ed1489 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x55eaeaf9 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x591485a2 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x62ee4073 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x641e553b ceph_open_session +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 0x649e2b81 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x65fa9837 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6b56bbc3 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x6c28b556 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x720963bf ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x723241f4 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x733660ac ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x7621695d ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x775926e9 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x7a34e316 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x7ef37669 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_handle_svc_reply_done +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_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_cls_unlock +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_open +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_con_send +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_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_do_statfs +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_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_validate_auth +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_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_get +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_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_list_watchers +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_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_wait_request +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_print_client_options +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_page_vector +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_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_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_osd_data +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_init +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_xattr_init +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7fffffff dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7fffffff dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x7fffffff hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x7fffffff is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x56eca41e 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_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 0x7fffffff __fou_build_header +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 0x070a75dc ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x15b0cae0 ip_tunnel_get_iflink +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 0x5549fe83 arpt_unregister_table +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_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x416be6f7 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5671c780 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7fffffff ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7fffffff ipt_unregister_table_pre_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 0x7fffffff udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x06dcfc44 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2abc165f ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x34fa5551 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x454d735e ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x502934f1 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7d3e65d2 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x13065362 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x79437ae9 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7fffffff ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7fffffff ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x675f47a3 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x7fffffff 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 0x1b48abc5 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x1f493bde lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x202dd1d5 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x226a338a lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x5f5b0505 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x7b1f433b lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x0a7ad7da llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x2d30afed llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x45601adf llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x51ffee37 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5e10bd96 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/mac80211/mac80211 0x00f4b33c ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x025b2516 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x0297cdc3 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0633d124 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x08da6f59 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x0d1a7b34 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x10fdefdb ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x14a4f4c8 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1847f0ba ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a2bafc4 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x1aa38caa ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x1b4e99fd ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x1e51f91d ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2116ea1e ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x241eac4d ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x270b0a79 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x298e692e ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x29a3b0f1 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2d72d4dd ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x30be4619 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x33032812 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x38dea94b ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4416a8fa ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x450f34c9 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x45144eb0 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x4c61a55e ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x524ac5ee ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x54d91b06 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x554afef7 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x55e3a199 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x5653c567 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x5744736c ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x5f66318d ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x623449ca __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x681420a4 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x6bd523e2 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x6d56e2ed ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x6e8fc51e ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x7092c180 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x71482b9d ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x71b7e66c ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x73824bfb ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x744db4e3 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x74c26df7 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x78a50524 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x7aa40978 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7abfd20d ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x7e6fa6a3 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x7e87907e ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x7f8ad515 ieee80211_nan_func_terminated +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_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_beacon_get_template +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_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_get_key_rx_seq +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_get_unsol_bcast_probe_resp_tmpl +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_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_radar_detected +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_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sta_ps_transition +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_start_tx_ba_session +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_tdls_oper_request +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_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_status_ext +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_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 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x45139719 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x63a6f7a0 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6e1f2d12 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x787ff7e6 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_rx_irqsafe +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_hw_error +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0a5bbc42 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0c35759f unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1397ede5 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1c19ffd7 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x642d7676 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_conn_new +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_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 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6aebdc4e 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 0x3625a6ed nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x5441aa7f __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7bef8199 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7fffffff nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x051e168c xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x08396fa2 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x0da3010b xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x15495cae xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x36a25f13 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x4bafa941 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x677bda6f xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x682985fe xt_unregister_match +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_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_register_target +EXPORT_SYMBOL net/nfc/hci/hci 0x044a30ad nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x0a7fd69a nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x164f74e7 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x17d6b19d nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x20a31365 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x2a5bb291 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x309cfff8 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x530472ba nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x5bf16665 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x642fa311 nfc_hci_set_clientdata +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_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_reset_pipes_per_host +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_param +EXPORT_SYMBOL net/nfc/nci/nci 0x0c111aba nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x1dd755c8 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x27f7c37a nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x28b54c77 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x392187a6 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x399e8a3b nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x3d01921d nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x406b2a25 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x4aba7c95 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x67ea21cd nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x786c56b9 nci_core_conn_create +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_cmd +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_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_get_param +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_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_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x21598dd4 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x437ee968 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x5239d7c8 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x52f0ab02 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x55d52ecc nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x66b1d737 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x6e0bf052 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x72ea44eb nfc_se_connectivity +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_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_driver_failure +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_get_local_general_bytes +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_se_transaction +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_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x24ee62eb nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7fffffff 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 0x06897b95 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x1b32f920 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x56f6d58f phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x5b2854cd phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x5d5bfb76 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x7fffffff phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x7fffffff pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x7fffffff pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x058528bc rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1a2ba9b4 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x20849cb3 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x22aaf550 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x23966cfc rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3933f670 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6082eca3 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x75c7a6de rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x79fc28ee rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_get_peer +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 0x244885a9 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +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 __traceiter_smcr_link_down +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 0x2460f491 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4cd5f77c gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x6155e550 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7fffffff svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7fffffff xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x7fffffff tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x7fffffff tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x7fffffff tipc_nl_sk_walk +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 0x016e6dfd cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x091175a3 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x0aafd546 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x0b291ba1 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x0c1a1a62 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0de0c34e ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x1077bd6f cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x132a311e cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x138483ac cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x15a96fc8 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x160b153f get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19f65314 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x202b8eec cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x207cad0c cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x28bc494b cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x2a26d652 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x2d07239b cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x308ae357 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x3122b34e cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x3273d770 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x34aadbc8 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x3786078b regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x39accce2 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x3a9d5c7f cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x3c8fd17e cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3ece1d40 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3ee7a2f5 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x3f7b7b16 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4205b845 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x42e86235 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x4564275c cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x463de137 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x4a302cb0 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x52f9f371 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x5494b786 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x54d1a696 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x55011a8f cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x5b8e3dd9 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x5ee671b0 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x5fdb6a74 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5ff83ae6 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x600fb820 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x63092aed cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x652fe11f wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x69b8dbf4 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x74e4e308 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x796f5757 wiphy_free +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 0x7baa76eb cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7cc0a12c wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x7e9b3395 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_assoc_comeback +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_color_notify +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_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_conn_failed +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_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_crit_proto_stopped +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_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_inform_bss_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_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_ref_bss +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_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_sched_scan_results +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_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff ieee80211_amsdu_to_8023s +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_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 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_unregister +EXPORT_SYMBOL net/wireless/lib80211 0x0fe8bb0c lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x6a5e0743 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x7fffffff lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x7fffffff lib80211_get_crypto_ops +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 0x2b4a1089 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 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_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 0x7fffffff snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x41a2249f snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x06fcf214 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x07694e98 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0f13b39f snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x107e80c5 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x153634c7 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x33304aa5 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4552f45b snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4ab1ff1e snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4eedc3bb snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5795b7fd snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a946a39 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x72f76c5a snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x268de98a 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 0x263886dc 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 0x27b827f6 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x359273a8 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x392dcd41 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x41c81725 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x49c11fe1 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fffffff snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fffffff snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fffffff snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fffffff snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1509c318 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x257d8d1c snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2e5f6532 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_check_reg_bit +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/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_suspend +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03ecc1ef amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c9ca4f6 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e5ff007 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x29b050d9 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2d05dc04 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33e282b7 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39326460 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3cbc78c3 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x46eabb82 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c71bf79 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6e2d0295 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ebf711f amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x754927f1 fw_iso_resources_destroy +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 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_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff fw_iso_resources_free +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 0x7fffffff snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x50863925 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x560f9628 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6784eb9c snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6981658c 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_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 0x017d92f9 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x02fcc496 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x045b2f26 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2a34410b snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x7ca95854 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x7fffffff snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-i2c 0x19aef923 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x45f9fc0e 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/i2c/snd-i2c 0x7fffffff snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7fffffff snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2c267b2c snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2d19668b snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x32be6474 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x39445593 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5456adb9 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x59699e01 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6286719e snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x69838360 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6bae0814 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x740424f1 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7d9b5a82 snd_ac97_write +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_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_read +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_cache +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x151c0502 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7fffffff snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7fffffff snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x03eab38a oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0713ede0 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x13607c8d oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a4b6743 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2e7b1698 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x30d98d1f oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4157d6f8 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4dd08ed8 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5a09504e oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x625e786c oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x63abd504 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x715a828b oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79732921 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_pci_shutdown +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_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write_spi +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0x7fffffff acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x5fe0c12a snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x7fffffff snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x7fffffff snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x7193c7c7 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x7fffffff wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x0534224c pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x294b0329 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0x7fffffff hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x504fad8d tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x659f8a20 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0daf04d4 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x38b9ac82 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7fffffff aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x76f3c894 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7fffffff aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x223a4889 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 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_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x27971e7d fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x7fffffff fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x7fffffff fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x7fffffff mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x7fffffff mt8192_afe_gpio_request +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/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 0x0016aec0 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base +EXPORT_SYMBOL vmlinux 0x005e56e4 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x006e82d4 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x0072e795 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x00922d37 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x00a0354d vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00b78ae7 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL vmlinux 0x00b908a4 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x00cacc87 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x00d69316 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00dc13d2 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x00f41a9e __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01119515 dev_uc_init +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 0x0132d8af igrab +EXPORT_SYMBOL vmlinux 0x014818c6 bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x0148dde9 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x014eee24 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x015f1d1a xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x01606ddf udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x017535de cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x0179f83b netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01979187 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x019f3ffa sock_rfree +EXPORT_SYMBOL vmlinux 0x019f9fd8 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x01a9b90a vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x01c05c35 skb_dequeue +EXPORT_SYMBOL vmlinux 0x01d697aa snd_card_file_add +EXPORT_SYMBOL vmlinux 0x0209d06c ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x0211d3e7 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x0216d7e3 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x023c0f24 sk_common_release +EXPORT_SYMBOL vmlinux 0x023c364e tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x0241d045 ac97_bus_type +EXPORT_SYMBOL vmlinux 0x024b5538 inet6_getname +EXPORT_SYMBOL vmlinux 0x025582ff __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027e413d skb_queue_tail +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a52012 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x02b2baaf pci_release_resource +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c13504 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x02cffb61 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x02db9e08 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02fa87e8 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x02fde509 can_nice +EXPORT_SYMBOL vmlinux 0x031ed25a __neigh_create +EXPORT_SYMBOL vmlinux 0x032a452d blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x032ff535 __of_get_address +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror +EXPORT_SYMBOL vmlinux 0x03528f5b tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0361a693 snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036bd1b2 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x03754783 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x0379c86c pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x03936a9a __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x039ace70 napi_complete_done +EXPORT_SYMBOL vmlinux 0x039c5916 netif_device_attach +EXPORT_SYMBOL vmlinux 0x03a4e592 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x03aa724a nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x03b49885 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03bbd899 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x03c42f9c md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x03c84e30 skb_dump +EXPORT_SYMBOL vmlinux 0x03ea8a9c iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x03eed34b snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x03fc8e4a tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0419591e __sg_free_table +EXPORT_SYMBOL vmlinux 0x042460cb vme_dma_request +EXPORT_SYMBOL vmlinux 0x042685d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x042aaa7f load_nls_default +EXPORT_SYMBOL vmlinux 0x04304ace tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x0433fa41 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x04426076 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x04426f14 mem_section +EXPORT_SYMBOL vmlinux 0x04446823 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x0447c51f fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 +EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock +EXPORT_SYMBOL vmlinux 0x045be36b security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047ab70a __invalidate_device +EXPORT_SYMBOL vmlinux 0x048e7b38 genphy_loopback +EXPORT_SYMBOL vmlinux 0x04a2c7d2 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x04ae0988 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04cf3091 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x04d5cee0 skb_append +EXPORT_SYMBOL vmlinux 0x04e2864a grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x04eee602 sock_edemux +EXPORT_SYMBOL vmlinux 0x04f484e6 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x04f85b81 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x04ff6e4b snd_card_file_remove +EXPORT_SYMBOL vmlinux 0x0501c727 dm_io +EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05314435 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x053586b3 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x0536ebeb __bh_read +EXPORT_SYMBOL vmlinux 0x053d4f42 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x054043c6 inet6_protos +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054a1beb xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x054e5f71 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x0555692d flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x0564e0b1 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x0569b924 mdiobus_read +EXPORT_SYMBOL vmlinux 0x05714f8e param_get_ushort +EXPORT_SYMBOL vmlinux 0x057fc685 dev_mc_add +EXPORT_SYMBOL vmlinux 0x05857930 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x0595d11f pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x059c59c8 set_user_nice +EXPORT_SYMBOL vmlinux 0x05a2b40f kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x05c9e327 phy_connect +EXPORT_SYMBOL vmlinux 0x05ca2d13 pci_pme_active +EXPORT_SYMBOL vmlinux 0x05d4d511 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x05da3c57 set_blocksize +EXPORT_SYMBOL vmlinux 0x05e5c572 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x05ea4a80 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x05ec9597 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06225943 dst_discard_out +EXPORT_SYMBOL vmlinux 0x062f47d9 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064c099c dev_mc_init +EXPORT_SYMBOL vmlinux 0x06634183 snd_timer_instance_free +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x0675c30b netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x0681c73d ip_frag_init +EXPORT_SYMBOL vmlinux 0x06828910 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x069ac110 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x06b1e726 d_exact_alias +EXPORT_SYMBOL vmlinux 0x06c05ddb neigh_for_each +EXPORT_SYMBOL vmlinux 0x06c213eb unregister_md_personality +EXPORT_SYMBOL vmlinux 0x06c30ba1 __register_binfmt +EXPORT_SYMBOL vmlinux 0x06c8547a sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06d4e51d xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x06d83742 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x0714a55a security_path_mknod +EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x071bda9c __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074355ed jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x07510fd8 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x0778d6ff sget +EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x07eef566 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x07f54272 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0806bd57 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x081da383 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x08209e4d sock_kmalloc +EXPORT_SYMBOL vmlinux 0x082b9dbc da903x_query_status +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08303920 sock_create_lite +EXPORT_SYMBOL vmlinux 0x0832694e __block_write_begin +EXPORT_SYMBOL vmlinux 0x0833f498 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0840a9a5 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x084e3c38 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x084f7d72 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x08531b00 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x086253a7 ioremap_cache +EXPORT_SYMBOL vmlinux 0x08631ae2 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x0865e098 begin_new_exec +EXPORT_SYMBOL vmlinux 0x088cecb9 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x0898aa46 fc_mount +EXPORT_SYMBOL vmlinux 0x08b025ed _dev_crit +EXPORT_SYMBOL vmlinux 0x08cdbbd8 inet_offloads +EXPORT_SYMBOL vmlinux 0x08cf489b zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08f5a3f4 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x08ff531f clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x0906a0ff dev_printk_emit +EXPORT_SYMBOL vmlinux 0x090e1087 input_get_keycode +EXPORT_SYMBOL vmlinux 0x0949191b d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x094e6c51 vga_put +EXPORT_SYMBOL vmlinux 0x09515730 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x096832e9 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x0977a406 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x0980a362 pci_disable_device +EXPORT_SYMBOL vmlinux 0x0986c0e3 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099f5ecb kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x09b101ad simple_lookup +EXPORT_SYMBOL vmlinux 0x09c57fea netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x09c6ad8b devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d8910d key_unlink +EXPORT_SYMBOL vmlinux 0x09f070b5 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a3aacec sk_capable +EXPORT_SYMBOL vmlinux 0x0a559d54 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x0a75a419 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x0a7f277e flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x0a8786cb finish_no_open +EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x0aa09d79 omap_vrfb_map_angle +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa454ca dev_get_stats +EXPORT_SYMBOL vmlinux 0x0ab49c63 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x0abec0d5 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x0ac55781 genl_notify +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad72f41 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x0ad77396 scmd_printk +EXPORT_SYMBOL vmlinux 0x0ada4b6b ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update +EXPORT_SYMBOL vmlinux 0x0af0b20f bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x0af47120 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x0b06a5c8 page_pool_create +EXPORT_SYMBOL vmlinux 0x0b170e39 snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b320aa9 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x0b431d3c xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b565315 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x0b5bcf3b mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x0b5e48f5 pin_user_pages +EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x0b6336bc vlan_for_each +EXPORT_SYMBOL vmlinux 0x0b709411 omap_vrfb_release_ctx +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b938e50 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x0b972ea2 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x0b9e39ba scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba8d8fb tcp_check_req +EXPORT_SYMBOL vmlinux 0x0bc1f505 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcdbe4b generic_read_dir +EXPORT_SYMBOL vmlinux 0x0bd2d8ce d_alloc_name +EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0c16f8f7 d_make_root +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c29f80c param_set_long +EXPORT_SYMBOL vmlinux 0x0c3d5fbe md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x0c55e7d8 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x0c88674b phy_read_mmd +EXPORT_SYMBOL vmlinux 0x0c9199a0 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb5eae1 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x0cca1dd1 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x0cd2f99d tcp_init_sock +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d4b8add tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x0d4e80f2 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x0d4feb74 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x0d539149 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61a190 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x0d6a1a80 genphy_suspend +EXPORT_SYMBOL vmlinux 0x0d93bae1 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x0d94ca71 __snd_pcm_lib_xfer +EXPORT_SYMBOL vmlinux 0x0d9ab51e scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete +EXPORT_SYMBOL vmlinux 0x0dbb8b61 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0df05172 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x0df4cca3 put_disk +EXPORT_SYMBOL vmlinux 0x0e14cf9b kill_fasync +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e177f44 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x0e1baade netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x0e240289 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x0e45b45f __SetPageMovable +EXPORT_SYMBOL vmlinux 0x0e4bd8a7 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x0e562d90 bdi_register +EXPORT_SYMBOL vmlinux 0x0e573bfe dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x0e5bb9c8 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x0e5da8f0 utf8_normalize +EXPORT_SYMBOL vmlinux 0x0e649cbd qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec53033 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec82334 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x0ecb6ec7 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x0ed381ed param_set_bint +EXPORT_SYMBOL vmlinux 0x0ee199ed inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x0ee5f42f pci_save_state +EXPORT_SYMBOL vmlinux 0x0ee872d5 seq_puts +EXPORT_SYMBOL vmlinux 0x0ee8d581 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0ef9b75b ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x0f06957f allocate_resource +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0f3004 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f2f290a inet_listen +EXPORT_SYMBOL vmlinux 0x0f3cf1f3 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x0f4bfabd cfb_fillrect +EXPORT_SYMBOL vmlinux 0x0f5d7053 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe0b009 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x0fe78be9 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff224fb of_phy_find_device +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x103226e8 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x103c09e6 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x10539a45 phy_attach +EXPORT_SYMBOL vmlinux 0x10588b4a key_validate +EXPORT_SYMBOL vmlinux 0x105f99ed md_write_inc +EXPORT_SYMBOL vmlinux 0x1064f189 skb_clone +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x10739aff security_unix_may_send +EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1087f5e4 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x10d0f27c d_tmpfile +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10dcdf4b inet_add_protocol +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10f740de rproc_add +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x114e1dae fb_pan_display +EXPORT_SYMBOL vmlinux 0x115fa0df device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11725b4e vme_bus_num +EXPORT_SYMBOL vmlinux 0x119a7db3 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a4422e tty_hangup +EXPORT_SYMBOL vmlinux 0x11cc931c netif_skb_features +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11e95447 set_binfmt +EXPORT_SYMBOL vmlinux 0x11fb815e kernel_read +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x1211bad8 simple_open +EXPORT_SYMBOL vmlinux 0x124ae23d dquot_get_state +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down +EXPORT_SYMBOL vmlinux 0x128a2e6d md_unregister_thread +EXPORT_SYMBOL vmlinux 0x128eb0f6 snd_timer_open +EXPORT_SYMBOL vmlinux 0x129933a3 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x12a06a3e fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x12b94e0b nf_log_register +EXPORT_SYMBOL vmlinux 0x12c70965 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12de0ad7 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x12ee7339 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fc7171 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x1309cb80 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x130ca787 folio_add_lru +EXPORT_SYMBOL vmlinux 0x1341b799 __devm_request_region +EXPORT_SYMBOL vmlinux 0x1364e5e2 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x136bb7d2 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x1379a9ed add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x139ba492 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x13bb354a fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x13bf1881 bpf_map_get +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d1b5b2 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13dfc6dd pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x13e2c1bf dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x14116f53 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x1425e11c file_remove_privs +EXPORT_SYMBOL vmlinux 0x142b1214 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x142d2bf4 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x142d9f64 tty_port_put +EXPORT_SYMBOL vmlinux 0x14381e1b kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x143ae542 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x143d446a tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x1456d3f7 tty_vhangup +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1465bcd2 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x14717570 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x147541cd dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x147b02a3 d_drop +EXPORT_SYMBOL vmlinux 0x1496894a devm_memremap +EXPORT_SYMBOL vmlinux 0x149c6630 simple_setattr +EXPORT_SYMBOL vmlinux 0x14b30fdd tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock +EXPORT_SYMBOL vmlinux 0x14ee7225 follow_pfn +EXPORT_SYMBOL vmlinux 0x1511be4b dquot_acquire +EXPORT_SYMBOL vmlinux 0x15138a50 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x1515dd37 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x15190592 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1534c7ed iget5_locked +EXPORT_SYMBOL vmlinux 0x1539d725 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x153bde10 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x153c0a7f alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1559b1cc file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x155b2dda netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x1568774f sock_no_accept +EXPORT_SYMBOL vmlinux 0x158d4a4c of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x15a04428 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x15a90a95 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bbc503 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15cfb2b3 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0x15dc4724 napi_build_skb +EXPORT_SYMBOL vmlinux 0x15f6c712 km_query +EXPORT_SYMBOL vmlinux 0x15f7f713 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x1601faaf generic_writepages +EXPORT_SYMBOL vmlinux 0x1603194c folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x16138cd3 pipe_unlock +EXPORT_SYMBOL vmlinux 0x161eff08 ata_print_version +EXPORT_SYMBOL vmlinux 0x161fe300 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x1627fb95 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1632c5c2 devm_clk_get +EXPORT_SYMBOL vmlinux 0x163bdda6 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x1648560f skb_checksum_help +EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find +EXPORT_SYMBOL vmlinux 0x1682486b read_cache_page +EXPORT_SYMBOL vmlinux 0x168990a0 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x1693a4a0 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x16aae8e2 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable +EXPORT_SYMBOL vmlinux 0x16c7a346 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x16cfcf87 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ebd7e0 netdev_features_change +EXPORT_SYMBOL vmlinux 0x16ee2b4b kernel_listen +EXPORT_SYMBOL vmlinux 0x16f6bb9e ip_local_deliver +EXPORT_SYMBOL vmlinux 0x16fc9df0 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x170f5049 tty_name +EXPORT_SYMBOL vmlinux 0x171310c3 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x173c7bef key_type_keyring +EXPORT_SYMBOL vmlinux 0x17654a99 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x1778867e vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x1779af39 passthru_features_check +EXPORT_SYMBOL vmlinux 0x178b946f param_ops_invbool +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x1794dd84 nf_log_trace +EXPORT_SYMBOL vmlinux 0x17ab59d2 generic_perform_write +EXPORT_SYMBOL vmlinux 0x17d55604 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x182ab0ea __kmap_to_page +EXPORT_SYMBOL vmlinux 0x1832dda1 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x185c32cf sgl_free +EXPORT_SYMBOL vmlinux 0x18687cab of_match_device +EXPORT_SYMBOL vmlinux 0x18733893 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x18828672 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x188c561a snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x188cd275 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18c24b9a kill_litter_super +EXPORT_SYMBOL vmlinux 0x18c29e6c skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x18d18bed elv_rb_add +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f7618e scsi_register_driver +EXPORT_SYMBOL vmlinux 0x19087cbb snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x191193b1 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x191d8985 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x191da171 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x192942ff pci_map_rom +EXPORT_SYMBOL vmlinux 0x19508e1a vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x196521bb skb_pull +EXPORT_SYMBOL vmlinux 0x19764ca0 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x1976ef42 tc_setup_cb_destroy +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 0x199fa88d udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x19b41dfa kunmap_high +EXPORT_SYMBOL vmlinux 0x19b7b583 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c068e2 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x19d2220b cdev_alloc +EXPORT_SYMBOL vmlinux 0x19fe2ef3 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x19ff65f2 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x1a0c2d13 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x1a0cff29 readahead_expand +EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported +EXPORT_SYMBOL vmlinux 0x1a2c59fc shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x1a2fee92 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x1a3de522 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x1a3fdecf mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x1a51c881 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x1a65a342 configfs_register_group +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a764c9d register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x1a794303 phy_stop +EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 +EXPORT_SYMBOL vmlinux 0x1a8aac7b d_add +EXPORT_SYMBOL vmlinux 0x1a8ba7fe fqdir_init +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim +EXPORT_SYMBOL vmlinux 0x1ac7dcb6 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ae36ec8 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x1af490c8 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b05e0ae neigh_event_ns +EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store +EXPORT_SYMBOL vmlinux 0x1b26e638 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x1b4dfe49 set_bh_page +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8f2b42 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x1b8f55bc input_match_device_id +EXPORT_SYMBOL vmlinux 0x1b90505c tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x1b991735 km_state_expired +EXPORT_SYMBOL vmlinux 0x1bab9aa7 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x1bb827b9 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x1bc02e24 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x1bf4406f ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x1bf7c52e scsi_device_get +EXPORT_SYMBOL vmlinux 0x1c0496dd misc_register +EXPORT_SYMBOL vmlinux 0x1c1cd2da vfs_mkdir +EXPORT_SYMBOL vmlinux 0x1c28e078 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x1c32dca8 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c6a863f __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x1c83f8af find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x1cac8a0c new_inode +EXPORT_SYMBOL vmlinux 0x1cb03698 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cc978fa snd_card_register +EXPORT_SYMBOL vmlinux 0x1cf5d7e2 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d08ffb3 proc_create +EXPORT_SYMBOL vmlinux 0x1d0a0ca0 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL vmlinux 0x1d0c1155 generic_listxattr +EXPORT_SYMBOL vmlinux 0x1d0f7ed2 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x1d10e257 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x1d1330d5 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x1d345e39 simple_write_begin +EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x1d901673 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x1d97b3b3 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x1d9afccf dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dc93a43 skb_copy_bits +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 0x1df94fd3 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e1c4856 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x1e444083 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x1e47c5aa free_task +EXPORT_SYMBOL vmlinux 0x1e4cfbb1 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7251bc of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb28c3f sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 +EXPORT_SYMBOL vmlinux 0x1eb776a5 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1eef4b5a vm_map_pages +EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format +EXPORT_SYMBOL vmlinux 0x1efc41a2 posix_lock_file +EXPORT_SYMBOL vmlinux 0x1f0019f7 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x1f0b2abc bdi_unregister +EXPORT_SYMBOL vmlinux 0x1f11e55e xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x1f1ef4fc pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x1f1ff9ee mem_map +EXPORT_SYMBOL vmlinux 0x1f34f999 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x1f3f771c mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x1f3f93d0 pci_choose_state +EXPORT_SYMBOL vmlinux 0x1f44f584 param_ops_short +EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x1f5469ef _dev_warn +EXPORT_SYMBOL vmlinux 0x1f6b6e2f flush_signals +EXPORT_SYMBOL vmlinux 0x1f723eb5 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x1f72dd48 dev_open +EXPORT_SYMBOL vmlinux 0x1f7f5b36 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x1faea48e dev_activate +EXPORT_SYMBOL vmlinux 0x1fb8063f seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc03cf9 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe4f0d8 get_mem_type +EXPORT_SYMBOL vmlinux 0x1ffe72e8 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x20047625 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x20092bbc get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20103327 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x20119a94 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x202eeebc mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x2041a005 nand_ecc_init_ctx +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x205e64b9 make_kgid +EXPORT_SYMBOL vmlinux 0x20695611 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x206c916b blkdev_put +EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x207ef94c inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x207ff975 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x208f9660 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x209cec3f vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c88fa6 dev_close +EXPORT_SYMBOL vmlinux 0x20ccf718 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20db1bb3 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x2102c074 seq_open_private +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x2116efce __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x211ee9bc qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2120225e tcp_req_err +EXPORT_SYMBOL vmlinux 0x212749a3 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x212c512d posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x2131b380 generic_permission +EXPORT_SYMBOL vmlinux 0x2135b5f6 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x213806dd simple_fill_super +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2140c4c7 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x21473c25 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x214a6de8 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x215667b2 zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x215af608 vmap +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x21a21e47 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x21aaefd2 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c26dec nf_reinject +EXPORT_SYMBOL vmlinux 0x21d54e1d put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x21da5653 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e9bb58 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21f12a32 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq +EXPORT_SYMBOL vmlinux 0x21fc295f single_release +EXPORT_SYMBOL vmlinux 0x21ffd435 eth_header +EXPORT_SYMBOL vmlinux 0x2201c230 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x22099f71 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x22172726 vme_irq_free +EXPORT_SYMBOL vmlinux 0x221862d6 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223cc043 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x22438bd0 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x224740ab scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x22480cba get_vm_area +EXPORT_SYMBOL vmlinux 0x2257d726 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x22735cdd snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision +EXPORT_SYMBOL vmlinux 0x227a654b of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x2288dcb8 vfs_symlink +EXPORT_SYMBOL vmlinux 0x2292e5e8 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x22947abd neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x22958d22 blk_start_plug +EXPORT_SYMBOL vmlinux 0x229c53b9 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x22aa7354 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x22aa8c3b sock_setsockopt +EXPORT_SYMBOL vmlinux 0x22af7cce udp_gro_receive +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b9d75d mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x22d63d8d unregister_netdev +EXPORT_SYMBOL vmlinux 0x22e35a23 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x22f367d7 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x2310e7d6 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x231cb471 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x232649b9 __scsi_execute +EXPORT_SYMBOL vmlinux 0x23278d26 folio_unlock +EXPORT_SYMBOL vmlinux 0x233018d8 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x2355b8b1 fb_show_logo +EXPORT_SYMBOL vmlinux 0x2358d442 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x235990e1 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 +EXPORT_SYMBOL vmlinux 0x23635623 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x237d302c inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x23b3908b __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x23b6aacd iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c3bcf4 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x23c5fcb9 follow_down_one +EXPORT_SYMBOL vmlinux 0x23dd0844 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x23e1ae57 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2407467f vfs_get_tree +EXPORT_SYMBOL vmlinux 0x240fd495 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x24213805 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2457fb51 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246790df idr_for_each +EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update +EXPORT_SYMBOL vmlinux 0x2473b4df genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x24752b0d eth_header_parse +EXPORT_SYMBOL vmlinux 0x2477e4a2 d_delete +EXPORT_SYMBOL vmlinux 0x24807ce4 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x24859b9f input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24ad4e28 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x24b02261 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x24cc1df1 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x24ea8f02 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2505c078 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x251287bf refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x2561929f register_sound_special_device +EXPORT_SYMBOL vmlinux 0x256349a8 build_skb +EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2586843b may_setattr +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x2590a164 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x25922829 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x259b93de of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x25b20406 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x25c650a3 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x25d3e67d fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x25e3674e file_update_time +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9a27f kill_pgrp +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f4a88c __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x25fb69d0 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x25fe3cdf dcache_dir_close +EXPORT_SYMBOL vmlinux 0x25febf2d kobject_add +EXPORT_SYMBOL vmlinux 0x26094276 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x26149823 snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x2617d6ac vme_register_bridge +EXPORT_SYMBOL vmlinux 0x2624d70b t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x263a2a0f rproc_alloc +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263f80af __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x26400cef phy_device_free +EXPORT_SYMBOL vmlinux 0x26701ab9 qdisc_put +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x269f7647 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x26a12349 sock_from_file +EXPORT_SYMBOL vmlinux 0x26ab376e do_SAK +EXPORT_SYMBOL vmlinux 0x26aee328 cdev_device_add +EXPORT_SYMBOL vmlinux 0x26b13a28 vme_slot_num +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x270ac400 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x270b08a8 sock_create +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27384732 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27675dba twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x276a3a44 irq_stat +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278aa736 free_buffer_head +EXPORT_SYMBOL vmlinux 0x278c2712 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x278cb61c __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x279348b4 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x279be1e0 ip6_xmit +EXPORT_SYMBOL vmlinux 0x27ad5349 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x27b64fdd pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bdaa83 inet_addr_type +EXPORT_SYMBOL vmlinux 0x27d67ce9 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x27e11cf5 blk_get_queue +EXPORT_SYMBOL vmlinux 0x28090426 bio_add_page +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281dec18 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x282afea8 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x283d0448 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x2873438a zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2876f472 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy +EXPORT_SYMBOL vmlinux 0x287a63a9 ps2_init +EXPORT_SYMBOL vmlinux 0x2892f019 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x28a8fee4 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x28bf8665 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x28d6098b neigh_lookup +EXPORT_SYMBOL vmlinux 0x28d6a5dd touch_buffer +EXPORT_SYMBOL vmlinux 0x28d95ba5 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x28dbe945 softnet_data +EXPORT_SYMBOL vmlinux 0x28de7396 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x28f7d9cb jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x28f835fd dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x28f8a417 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x290df430 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x290f74c9 snd_device_new +EXPORT_SYMBOL vmlinux 0x29155793 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x292741f9 of_phy_connect +EXPORT_SYMBOL vmlinux 0x2952b6c0 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x29530b5e filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x2958c498 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x2963bcb2 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x2969902a mmc_get_card +EXPORT_SYMBOL vmlinux 0x296bd8a3 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x296f2991 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x296fd68d skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x29710ac6 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x2979916e scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x297d33f1 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x29898fb3 snd_card_free +EXPORT_SYMBOL vmlinux 0x2995423b rtc_add_group +EXPORT_SYMBOL vmlinux 0x299d582d pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x29cfbf8e input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x29d153b5 ping_prot +EXPORT_SYMBOL vmlinux 0x29d96c82 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x2a12fa20 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x2a1d8ff6 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x2a1ea6b2 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a366453 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x2a36b1ec udp_seq_stop +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a47f091 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x2a582296 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x2a656270 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable +EXPORT_SYMBOL vmlinux 0x2a70c523 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x2a77643b configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a92dcc7 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2abb4036 dump_emit +EXPORT_SYMBOL vmlinux 0x2abbfc4e skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x2abc0d2a vlan_vid_add +EXPORT_SYMBOL vmlinux 0x2ac1f3fe zpool_register_driver +EXPORT_SYMBOL vmlinux 0x2ae304dc dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x2b024e47 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x2b1febba tty_devnum +EXPORT_SYMBOL vmlinux 0x2b3088cc inet_sendpage +EXPORT_SYMBOL vmlinux 0x2b5f1143 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x2b713297 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x2b8db0f2 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x2b923202 iunique +EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x2b9be0d1 framebuffer_release +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bdf536b phy_find_first +EXPORT_SYMBOL vmlinux 0x2be2b501 sync_file_create +EXPORT_SYMBOL vmlinux 0x2bed3b30 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy +EXPORT_SYMBOL vmlinux 0x2c076466 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c335cb9 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x2c35e870 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x2c421aed dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x2c42a97b _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x2c4ee013 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x2c7320e3 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c8b6588 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x2ca51006 arp_xmit +EXPORT_SYMBOL vmlinux 0x2cabfb50 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x2cd8b0aa cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x2cd9aea9 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x2cf42ade rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x2d0bcd38 truncate_setsize +EXPORT_SYMBOL vmlinux 0x2d1396fe jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d16a224 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x2d21bf4c config_group_init +EXPORT_SYMBOL vmlinux 0x2d22843d dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3b096d dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x2d4472c2 zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0x2d47df5d jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x2d49e23f mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc +EXPORT_SYMBOL vmlinux 0x2d82cbea input_close_device +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d949946 bdi_put +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2daddd5d vfs_fadvise +EXPORT_SYMBOL vmlinux 0x2db31c92 give_up_console +EXPORT_SYMBOL vmlinux 0x2dcaaae5 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x2dcbc782 snd_sgbuf_get_page +EXPORT_SYMBOL vmlinux 0x2dcc41d4 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2de6f051 free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x2df723cc wireless_send_event +EXPORT_SYMBOL vmlinux 0x2e0c6eb7 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x2e110960 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x2e123789 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2be92a pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x2e420606 mmc_free_host +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e5d334b dma_resv_init +EXPORT_SYMBOL vmlinux 0x2e7051da blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x2e71b4a7 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x2e799b29 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x2e7c33a3 netdev_err +EXPORT_SYMBOL vmlinux 0x2e84177e sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x2e940b47 fiemap_prep +EXPORT_SYMBOL vmlinux 0x2e953441 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x2e97c6b7 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x2eb0528e __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x2ec2237f vme_irq_handler +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2eff0ac2 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f2f3b42 km_report +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f3f91c6 netlink_capable +EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x2f592e90 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2f5fd734 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x2f6957bd zstd_end_stream +EXPORT_SYMBOL vmlinux 0x2f7236dd qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x2f8cc120 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x2f998939 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x2fc62e93 __icmp_send +EXPORT_SYMBOL vmlinux 0x2fc63f3b blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x2fd03085 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ffabf39 component_match_add_release +EXPORT_SYMBOL vmlinux 0x301276c9 filemap_release_folio +EXPORT_SYMBOL vmlinux 0x3016f4b1 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x3020a0ae lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x3027f7dc unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x303bdd69 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x3071be7a genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x3076cc2e vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x307cd566 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x3087368a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309e05cd mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b3b8d3 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x30c8a746 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x30cca524 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create +EXPORT_SYMBOL vmlinux 0x30e11a72 release_and_free_resource +EXPORT_SYMBOL vmlinux 0x30fbbe6b mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x3119f591 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info +EXPORT_SYMBOL vmlinux 0x313e3a8f vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x314468c8 sock_alloc +EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf +EXPORT_SYMBOL vmlinux 0x314dc9da get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x317051e7 bio_uninit +EXPORT_SYMBOL vmlinux 0x317e1fb5 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x31977c99 __fs_parse +EXPORT_SYMBOL vmlinux 0x31a1f7e0 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x31a247bf tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x31a31940 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31f9b50d bio_free_pages +EXPORT_SYMBOL vmlinux 0x3200fdcd clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x3207fe83 cqhci_deactivate +EXPORT_SYMBOL vmlinux 0x320c9761 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x321209cb tcf_classify +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x32368d3a pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages +EXPORT_SYMBOL vmlinux 0x325111fc rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x32550427 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop +EXPORT_SYMBOL vmlinux 0x3270e31d crypto_kdf108_setkey +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 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x328c42d6 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x32cb4bbd reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32dce54f fs_bio_set +EXPORT_SYMBOL vmlinux 0x33214690 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x3328c22c skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3374211c tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x338fb288 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x33966077 of_match_node +EXPORT_SYMBOL vmlinux 0x33a8990d filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x33b76b36 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x33cb4c03 bio_endio +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f31e89 scsi_partsize +EXPORT_SYMBOL vmlinux 0x33f52251 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x33f91a4b block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x3402d0b7 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x3411144d flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x34459c93 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x3445dcc6 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x3449d63a blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x3463fd1d devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x3486bb90 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x348f3c55 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x34c068dd ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x34d68d90 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x34da9a3b inet_protos +EXPORT_SYMBOL vmlinux 0x34dac841 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x34eba928 serio_bus +EXPORT_SYMBOL vmlinux 0x34ee7c50 arp_send +EXPORT_SYMBOL vmlinux 0x34f20f95 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3521fd14 init_net +EXPORT_SYMBOL vmlinux 0x352c05d9 release_resource +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x35403719 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x35468353 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul +EXPORT_SYMBOL vmlinux 0x356310d6 dev_driver_string +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3576fe06 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b67d17 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL vmlinux 0x35b96e92 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x35c858c8 bioset_exit +EXPORT_SYMBOL vmlinux 0x35db9cf1 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x35ed47d3 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x35f7aad2 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x3605169d jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x360985cd bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x362be55b key_invalidate +EXPORT_SYMBOL vmlinux 0x363d284a sk_dst_check +EXPORT_SYMBOL vmlinux 0x3643a80d blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x365590d7 nand_ecc_finish_io_req +EXPORT_SYMBOL vmlinux 0x365a21e2 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36668d4d max8998_read_reg +EXPORT_SYMBOL vmlinux 0x368ab734 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x368bb1bb fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x3694bbbf nand_monolithic_write_page_raw +EXPORT_SYMBOL vmlinux 0x36992fd8 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x36b75726 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x36e58c32 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x36f1527d neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x36f2aca5 pci_dev_get +EXPORT_SYMBOL vmlinux 0x37198f43 skb_store_bits +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x37208879 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x372910d5 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x373e400b tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374cec15 amba_driver_register +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x3758e8b7 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x3763f2a7 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x377498e4 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x377fd2f1 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x378221c4 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x378bd37a page_symlink +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x3797caad twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37cb35e2 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e13de4 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37f753a1 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x381925e3 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3823508c nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x3833be33 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x385823b5 mntput +EXPORT_SYMBOL vmlinux 0x385eb866 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x3860fed1 input_register_handler +EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup +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 0x38a3f75e phy_start +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b4a5db unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x38d6797c revert_creds +EXPORT_SYMBOL vmlinux 0x38dc321c dcb_getapp +EXPORT_SYMBOL vmlinux 0x38e0f35c devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x3907d2f5 nand_read_page_raw +EXPORT_SYMBOL vmlinux 0x391711bd update_devfreq +EXPORT_SYMBOL vmlinux 0x39211c5e ip_setsockopt +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393c82c5 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39465d71 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x396ab2f9 setattr_copy +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x3976a22e pci_dev_driver +EXPORT_SYMBOL vmlinux 0x3983962f simple_empty +EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a6e65c netif_device_detach +EXPORT_SYMBOL vmlinux 0x39bb870c __vcalloc +EXPORT_SYMBOL vmlinux 0x39be4b91 mount_single +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work +EXPORT_SYMBOL vmlinux 0x39d74d30 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x39db3ff0 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x39dd2192 console_start +EXPORT_SYMBOL vmlinux 0x3a0bcfc0 posix_test_lock +EXPORT_SYMBOL vmlinux 0x3a19d251 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x3a1bf576 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x3a28e57b skb_eth_pop +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a6d21f6 dev_get_flags +EXPORT_SYMBOL vmlinux 0x3a6ed7ce pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x3a734cdb __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x3a7a3175 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x3a84fed3 utf8_casefold +EXPORT_SYMBOL vmlinux 0x3a866fbd inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x3aa5b3b1 inet_put_port +EXPORT_SYMBOL vmlinux 0x3aab5d90 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ac12fdb fwnode_iomap +EXPORT_SYMBOL vmlinux 0x3acfaa64 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0x3b0de37e pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x3b27d2e3 inode_init_owner +EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b3a29bf uart_get_divisor +EXPORT_SYMBOL vmlinux 0x3b3ca8f6 dcache_readdir +EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user +EXPORT_SYMBOL vmlinux 0x3b454e84 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x3b4ce2ec pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b6c4f37 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner +EXPORT_SYMBOL vmlinux 0x3b788903 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x3b883c95 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x3b8b3017 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x3b9138d5 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bd02f65 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x3bd82c07 security_path_rename +EXPORT_SYMBOL vmlinux 0x3bea901d tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x3bec4f90 ip_options_compile +EXPORT_SYMBOL vmlinux 0x3bee0a27 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x3bfa3494 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x3c000cbe sock_wfree +EXPORT_SYMBOL vmlinux 0x3c157ea4 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1c8a6e ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c4bd66c filemap_flush +EXPORT_SYMBOL vmlinux 0x3c540587 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x3c783130 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x3c7a50f6 devm_release_resource +EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert +EXPORT_SYMBOL vmlinux 0x3c995b74 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cd769f1 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce55333 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x3d03e81c blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x3d04439c of_iomap +EXPORT_SYMBOL vmlinux 0x3d127b23 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x3d24d78e eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d404ceb __vmalloc_array +EXPORT_SYMBOL vmlinux 0x3d5f1fc9 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x3d77343f security_path_unlink +EXPORT_SYMBOL vmlinux 0x3d812789 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x3d850f98 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x3d8a5236 set_page_dirty +EXPORT_SYMBOL vmlinux 0x3d9a15b7 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x3d9aedc5 dev_mc_del +EXPORT_SYMBOL vmlinux 0x3dac210e in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x3df2e322 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e186a65 setup_new_exec +EXPORT_SYMBOL vmlinux 0x3e37c55b inet_ioctl +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e3cd95a __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x3e5499af bio_init +EXPORT_SYMBOL vmlinux 0x3e65e976 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x3e70c1ff tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes +EXPORT_SYMBOL vmlinux 0x3e8b1b03 pid_task +EXPORT_SYMBOL vmlinux 0x3e9bb208 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x3ea1feea dquot_initialize +EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit +EXPORT_SYMBOL vmlinux 0x3ece5f55 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark +EXPORT_SYMBOL vmlinux 0x3ed1a0c2 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x3ee43eb2 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3efe4e26 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x3f0c082d tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x3f21fb3c nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x3f2e87fe slab_build_skb +EXPORT_SYMBOL vmlinux 0x3f436931 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f533dd3 devm_iounmap +EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init +EXPORT_SYMBOL vmlinux 0x3f6e23b6 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x3f70f5ae eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x3f781f0b dm_kobject_release +EXPORT_SYMBOL vmlinux 0x3f7dd095 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x3f80f121 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x3f828456 skb_find_text +EXPORT_SYMBOL vmlinux 0x3f889921 zap_page_range +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f905e04 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x3f90822a generic_update_time +EXPORT_SYMBOL vmlinux 0x3fad9dd6 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x3fb4a3ef snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x3fbab11f fb_class +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3ff93f74 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x40234005 input_register_device +EXPORT_SYMBOL vmlinux 0x4027665c mmc_request_done +EXPORT_SYMBOL vmlinux 0x402a5f0e redraw_screen +EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x40422250 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c52fa input_unregister_device +EXPORT_SYMBOL vmlinux 0x405ca6d1 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x405f3299 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x4061b36d devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a45807 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string +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 0x40d9f156 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x40da4326 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x40db7559 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x40e142af xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x40e196a3 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40f871ee rw_verify_area +EXPORT_SYMBOL vmlinux 0x40ff4dcb _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x41167c45 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x411c453d inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x41268442 submit_bh +EXPORT_SYMBOL vmlinux 0x412ce10f ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x413cbcd8 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x4141e0ae bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41484828 nf_log_packet +EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x415787b0 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x415ab8eb tcf_em_register +EXPORT_SYMBOL vmlinux 0x4167326c napi_gro_frags +EXPORT_SYMBOL vmlinux 0x416a3325 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x4173c0af __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x4173c68b generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x4179110a blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x417a7eb2 param_get_int +EXPORT_SYMBOL vmlinux 0x417c1fde cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x417e8369 cpu_user +EXPORT_SYMBOL vmlinux 0x41851860 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41a50ffe page_get_link +EXPORT_SYMBOL vmlinux 0x41acfeaa flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x41b6147a __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x41b751e6 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x41ca7243 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x41cdf55d rt6_lookup +EXPORT_SYMBOL vmlinux 0x41d11bcb skb_free_datagram +EXPORT_SYMBOL vmlinux 0x41d92121 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x41e3e7f5 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x41eb5e25 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x41f14eb3 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x41f2e44c register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x41f86a31 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x420cfb02 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x420fd204 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc +EXPORT_SYMBOL vmlinux 0x42274714 __quota_error +EXPORT_SYMBOL vmlinux 0x423786b6 proc_set_size +EXPORT_SYMBOL vmlinux 0x423d4496 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x424095cb block_dirty_folio +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 0x4266ce84 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x426bcabb _snd_ctl_add_follower +EXPORT_SYMBOL vmlinux 0x426c1322 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x426ce4c7 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x427e2095 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x427f6ce9 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x42804e29 tty_check_change +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x42b2a8ab mtree_erase +EXPORT_SYMBOL vmlinux 0x42c27943 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x42cc7e25 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x42d963a2 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x42f14dba generic_ro_fops +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4334094d commit_creds +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x4341b1a4 param_set_ushort +EXPORT_SYMBOL vmlinux 0x434ae851 skb_push +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435ce522 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x4366ec8c __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x43713c3c of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x43768fc6 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x4377e4bc mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x43840209 fb_set_var +EXPORT_SYMBOL vmlinux 0x4384eb42 __release_region +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438e507d xfrm_register_km +EXPORT_SYMBOL vmlinux 0x438e588d send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x43b2c96d prepare_creds +EXPORT_SYMBOL vmlinux 0x43b997d1 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x43c631d9 block_write_end +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43e7a169 unregister_console +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x441819e5 skb_expand_head +EXPORT_SYMBOL vmlinux 0x441b5dfa set_page_writeback +EXPORT_SYMBOL vmlinux 0x441d7034 seq_read +EXPORT_SYMBOL vmlinux 0x4423cada find_vma +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x445edbd7 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x4461583d mdiobus_write +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 0x4467926b phy_write_mmd +EXPORT_SYMBOL vmlinux 0x447676a6 set_create_files_as +EXPORT_SYMBOL vmlinux 0x4477cb11 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x4498682f put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x44d9e8f8 locks_free_lock +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44fc9384 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x44ffa1dd tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x4515f266 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x451cc2ee sock_sendmsg +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453fd528 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x4540b9c6 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x455cdba1 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x4566f199 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x456bc66a vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x456f595c __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x45733a70 nand_read_oob_std +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45853e6f inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x45904352 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x45add87a jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x45b4af3a scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45becbfb security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x45c3673a del_gendisk +EXPORT_SYMBOL vmlinux 0x45c36c49 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x45cfeaf2 phy_write_paged +EXPORT_SYMBOL vmlinux 0x45f491f7 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x45f96fd8 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461ce3f8 mmc_erase +EXPORT_SYMBOL vmlinux 0x4622544a serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x46339e9f tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x46357719 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x46481aee bio_split_to_limits +EXPORT_SYMBOL vmlinux 0x465838fb call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x465aa115 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x46669d36 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x4670308c __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0x46745f90 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x469d0ade uart_suspend_port +EXPORT_SYMBOL vmlinux 0x46a3831b ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x46ad81b1 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x46afa299 md_write_start +EXPORT_SYMBOL vmlinux 0x46b268e7 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46d4f174 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x46e3b03d __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x46fa359b pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x472b6711 __seq_open_private +EXPORT_SYMBOL vmlinux 0x472fbcb4 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x473a9d05 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x47469776 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy +EXPORT_SYMBOL vmlinux 0x475d84ef gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x47634a22 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x4764c6c9 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x47705637 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47762192 phy_attached_print +EXPORT_SYMBOL vmlinux 0x47766da8 bioset_init +EXPORT_SYMBOL vmlinux 0x478b96c2 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x478c51d7 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c7fc10 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x48001364 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x480e8e47 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x4845b58f iov_iter_init +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484eabdf param_ops_ulong +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48661eae register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0x486e0148 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x488492c6 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x488528bd gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x488d40e1 mtree_insert_range +EXPORT_SYMBOL vmlinux 0x48a043d7 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48db2235 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x48e76c3d dev_addr_add +EXPORT_SYMBOL vmlinux 0x48ef5960 proc_remove +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4906b5d2 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x4907ae73 __register_nls +EXPORT_SYMBOL vmlinux 0x492deaba sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x496a2cb6 sk_net_capable +EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits +EXPORT_SYMBOL vmlinux 0x4978b6f1 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x497d1ab9 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x498f2429 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait +EXPORT_SYMBOL vmlinux 0x499b7c61 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x49a56f08 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x49b25a90 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x49b77ed8 kernel_bind +EXPORT_SYMBOL vmlinux 0x49c9bcff d_prune_aliases +EXPORT_SYMBOL vmlinux 0x49d15202 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup +EXPORT_SYMBOL vmlinux 0x49f3be43 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x4a05069f mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x4a080bbc mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x4a116ee0 udp_prot +EXPORT_SYMBOL vmlinux 0x4a12a2d3 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x4a1cc65a filemap_fault +EXPORT_SYMBOL vmlinux 0x4a2d504e scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x4a2ef6c3 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x4a2f6bab rproc_del +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a44f1e5 netdev_printk +EXPORT_SYMBOL vmlinux 0x4a591d06 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x4a5b5d7d notify_change +EXPORT_SYMBOL vmlinux 0x4a73660f seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x4a7925fe devfreq_add_device +EXPORT_SYMBOL vmlinux 0x4a818e0f tty_port_close +EXPORT_SYMBOL vmlinux 0x4a92a379 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9dbef6 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x4aa71f76 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x4aac240b sock_set_mark +EXPORT_SYMBOL vmlinux 0x4ab668da dm_table_event +EXPORT_SYMBOL vmlinux 0x4acdffed tty_unregister_device +EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0x4ae1b91e tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x4ae8ee66 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x4aeb71a4 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4b01df32 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x4b337dd0 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x4b3888ea call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x4b456c92 amba_device_register +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b805c27 send_sig_info +EXPORT_SYMBOL vmlinux 0x4b85be65 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x4b8ab6b6 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x4b9e82d1 param_set_ulong +EXPORT_SYMBOL vmlinux 0x4bab3c0d scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x4bad75d9 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x4bbac0e4 register_key_type +EXPORT_SYMBOL vmlinux 0x4bbbbd4a seq_vprintf +EXPORT_SYMBOL vmlinux 0x4bc1a5d3 iterate_dir +EXPORT_SYMBOL vmlinux 0x4bc56746 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x4bd0724d phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x4bdc0049 mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4befcc41 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 +EXPORT_SYMBOL vmlinux 0x4c18fabb flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x4c211cd3 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c334c47 snd_timer_close +EXPORT_SYMBOL vmlinux 0x4c38e5a4 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x4c414f8f set_nlink +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c59bf66 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x4c59d1af blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x4c7bb916 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x4c8bf3f3 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x4ca198a1 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x4cba4e12 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x4cce9ea1 _dev_info +EXPORT_SYMBOL vmlinux 0x4cf9f7d0 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x4d07e732 cqhci_irq +EXPORT_SYMBOL vmlinux 0x4d0c6443 pci_iounmap +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d1adb8f pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x4d2df0e8 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x4d38cdca xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x4d39c623 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4b118f copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x4d514485 xa_store +EXPORT_SYMBOL vmlinux 0x4d67f859 lock_rename +EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x4d71345c skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x4d923a3f pcim_iomap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4d9fd9f6 mount_nodev +EXPORT_SYMBOL vmlinux 0x4da75e75 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x4db4a847 of_clk_get +EXPORT_SYMBOL vmlinux 0x4dbb3ae4 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x4dd30ff9 has_capability +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df760b3 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x4e031185 xfrm_input +EXPORT_SYMBOL vmlinux 0x4e051f1e dev_load +EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node +EXPORT_SYMBOL vmlinux 0x4e143d05 get_user_pages +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e432a58 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x4e58e1b4 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6a5509 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e80d27c ucc_fast_enable +EXPORT_SYMBOL vmlinux 0x4e96d63a tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x4ea0441b fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb68ff4 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x4ebd7425 keyring_clear +EXPORT_SYMBOL vmlinux 0x4ebec109 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x4ed57005 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc +EXPORT_SYMBOL vmlinux 0x4f0815fe mipi_dsi_set_maximum_return_packet_size +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 0x4f27fb68 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x4f3ab755 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x4f3b7903 inode_insert5 +EXPORT_SYMBOL vmlinux 0x4f3bfc8b of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x4f428a2a dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x4f485b3f of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x4f69cb2e generic_setlease +EXPORT_SYMBOL vmlinux 0x4f6e4164 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f8a750e __ip_select_ident +EXPORT_SYMBOL vmlinux 0x4f96b735 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x4fa37c21 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x4fb8d18f d_instantiate +EXPORT_SYMBOL vmlinux 0x4fbe1bde param_ops_bint +EXPORT_SYMBOL vmlinux 0x4fbf35c3 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x4fc075d6 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done +EXPORT_SYMBOL vmlinux 0x4ff64910 sock_i_uid +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 0x500bd139 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x5040cbc9 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x5051ed08 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x50673d7e d_splice_alias +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50705f91 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d15ce5 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x50dd70aa phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x50ea98cb mmc_add_host +EXPORT_SYMBOL vmlinux 0x50ed37e7 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x5133520b snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0x51391093 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x514a0d1a dget_parent +EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock +EXPORT_SYMBOL vmlinux 0x5156df92 poll_initwait +EXPORT_SYMBOL vmlinux 0x51572b2c inet_frags_fini +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5166236d backlight_force_update +EXPORT_SYMBOL vmlinux 0x517018a2 sgl_alloc_order +EXPORT_SYMBOL vmlinux 0x5183609f tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x519562f1 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x51a4acbe get_tree_keyed +EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x51c877a5 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x51c91cd0 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51edc625 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x51fb137f snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0x51fdc550 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x520ab42f generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x52181b0b xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0x523bbecb setattr_prepare +EXPORT_SYMBOL vmlinux 0x524b480f sock_gettstamp +EXPORT_SYMBOL vmlinux 0x524dfe4f skb_pull_data +EXPORT_SYMBOL vmlinux 0x5269d4b1 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x527b51d3 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x5288b398 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5291321a snd_timer_instance_new +EXPORT_SYMBOL vmlinux 0x5294e819 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x52bb7032 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x52c9f7ba serio_interrupt +EXPORT_SYMBOL vmlinux 0x52cf8de7 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x52d5d6c6 load_nls +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52ebf134 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x5302fa49 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53172519 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x5325d79b file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x53400eec pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x53520050 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x53671c17 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x536e00cc xfrm_state_update +EXPORT_SYMBOL vmlinux 0x537fdaca blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x53a1256a devfreq_update_status +EXPORT_SYMBOL vmlinux 0x53a6f05e generic_write_end +EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x53b55b68 vme_master_request +EXPORT_SYMBOL vmlinux 0x53bcb860 snd_jack_new +EXPORT_SYMBOL vmlinux 0x53c14b3f netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x53c5f44d sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x53cf11b8 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x53d59542 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x53e6c707 path_is_under +EXPORT_SYMBOL vmlinux 0x53e78138 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x53e7e258 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x53f2496e scsi_done_direct +EXPORT_SYMBOL vmlinux 0x53f846fc vfs_fsync +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x5409e123 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x54233922 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x54249420 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x542c833a __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x54342430 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54494767 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x545a2460 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x54807508 lease_modify +EXPORT_SYMBOL vmlinux 0x5488c568 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x5492a480 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x54a41769 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54c53227 fb_find_mode +EXPORT_SYMBOL vmlinux 0x54d25f16 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54efcfdb xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x54f99f4c tcp_read_done +EXPORT_SYMBOL vmlinux 0x54feae55 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552b4dc5 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x5532c4f2 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x55330986 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x55371b58 is_subdir +EXPORT_SYMBOL vmlinux 0x553c3ff4 napi_get_frags +EXPORT_SYMBOL vmlinux 0x554a1199 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554f84e0 sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x555c5020 read_cache_folio +EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x5567ca76 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x556ef5fa file_path +EXPORT_SYMBOL vmlinux 0x5574f8e2 d_set_d_op +EXPORT_SYMBOL vmlinux 0x5577c588 md_reload_sb +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x558eacf7 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x5599bd9d snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x55a41ecf genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x55a5b14f ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x55b854a6 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x55b9e1e9 sock_efree +EXPORT_SYMBOL vmlinux 0x55c116d0 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x55d2ddef filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x5622356d skb_eth_push +EXPORT_SYMBOL vmlinux 0x56311745 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x56498087 paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x565028af kill_anon_super +EXPORT_SYMBOL vmlinux 0x565a527e jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x56665944 netdev_update_features +EXPORT_SYMBOL vmlinux 0x5667fb56 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x567c1498 inode_update_time +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56944857 key_task_permission +EXPORT_SYMBOL vmlinux 0x56b1a7a2 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x56b44467 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x56b950c0 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56f0ef4c netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x5703ea74 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x570df426 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x5714df7a sound_class +EXPORT_SYMBOL vmlinux 0x571df0ef alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x57255ed5 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x5729271a sock_no_bind +EXPORT_SYMBOL vmlinux 0x574333d3 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x579d3e17 sk_free +EXPORT_SYMBOL vmlinux 0x57add89d security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x57b98924 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x57c64edd tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57db216c has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x57f409dd _dev_notice +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581cde4e up +EXPORT_SYMBOL vmlinux 0x581e7a8b ps2_command +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5822f576 snd_device_free +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584648c9 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x5855b740 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x5859709d ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x587a0195 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x5889fd75 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x588ab983 cdev_device_del +EXPORT_SYMBOL vmlinux 0x5892b22b d_invalidate +EXPORT_SYMBOL vmlinux 0x589acf6b kobject_init +EXPORT_SYMBOL vmlinux 0x58acbf04 dev_uc_del +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bd5a42 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x58c4fcdf dm_register_target +EXPORT_SYMBOL vmlinux 0x58cf4a43 init_task +EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e9a36a module_layout +EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x591c8c8a rproc_shutdown +EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x59452419 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594c1429 snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x594e7337 regset_get +EXPORT_SYMBOL vmlinux 0x595799ad dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x5957b337 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x595f8ada phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x59853865 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x5993bc85 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x5996ec27 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x599a1eb9 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high +EXPORT_SYMBOL vmlinux 0x59a57002 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x59a6c1c7 dm_get_device +EXPORT_SYMBOL vmlinux 0x59b1d17c pci_add_resource +EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize +EXPORT_SYMBOL vmlinux 0x59c2153c mr_table_dump +EXPORT_SYMBOL vmlinux 0x59c46026 md_handle_request +EXPORT_SYMBOL vmlinux 0x59cf0b3b zstd_compress_bound +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d3b044 __module_get +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59e975cd inode_dio_wait +EXPORT_SYMBOL vmlinux 0x59f7b2f0 folio_wait_bit +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x5a16ffa8 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x5a366423 input_set_capability +EXPORT_SYMBOL vmlinux 0x5a3a6d2d sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x5a3b29dc napi_gro_flush +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a650954 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x5a6fb29d mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x5a75a700 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x5a7a3607 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9d2d25 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x5aad3bb5 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x5ac95449 _dev_err +EXPORT_SYMBOL vmlinux 0x5ad3c5cc make_kprojid +EXPORT_SYMBOL vmlinux 0x5addf2d3 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x5adef583 dev_add_offload +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5af4a25c neigh_direct_output +EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5b220acc __mdiobus_register +EXPORT_SYMBOL vmlinux 0x5b346ffc __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x5b4e6c7e __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5b87ee0c iget_failed +EXPORT_SYMBOL vmlinux 0x5b9e1cd7 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x5bae11b6 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x5bb03892 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x5bb91849 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5bbe9518 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be3cbdf complete_request_key +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5be8d3e3 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x5bf7d23e __alloc_pages +EXPORT_SYMBOL vmlinux 0x5c07d007 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x5c12dad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x5c1edb9a dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x5c2187d9 ilookup5 +EXPORT_SYMBOL vmlinux 0x5c2a8507 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c5165d2 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x5c534f29 unlock_buffer +EXPORT_SYMBOL vmlinux 0x5c61cdc1 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x5c675974 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 +EXPORT_SYMBOL vmlinux 0x5c8d68d1 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5ca7f1d4 serio_close +EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le +EXPORT_SYMBOL vmlinux 0x5cc16cc8 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x5cc98db4 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x5cde145e tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x5ce4846b t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d237c01 find_vma_intersection +EXPORT_SYMBOL vmlinux 0x5d239269 import_single_range +EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d751f7a register_qdisc +EXPORT_SYMBOL vmlinux 0x5d808847 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x5d8590d6 block_read_full_folio +EXPORT_SYMBOL vmlinux 0x5d8c54a0 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x5d9a551d sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x5da6ef2a vme_lm_request +EXPORT_SYMBOL vmlinux 0x5db89106 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x5dba71d7 sg_last +EXPORT_SYMBOL vmlinux 0x5dcad0bc of_device_register +EXPORT_SYMBOL vmlinux 0x5dcf49f7 param_ops_byte +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dd0ab1c dquot_commit +EXPORT_SYMBOL vmlinux 0x5dd1c346 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x5ddcf1ab inode_set_bytes +EXPORT_SYMBOL vmlinux 0x5de55219 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x5dfdc91e nf_setsockopt +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e11ce24 phy_resume +EXPORT_SYMBOL vmlinux 0x5e1bc343 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x5e221d6f kmap_high +EXPORT_SYMBOL vmlinux 0x5e279bf9 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x5e367c0b sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e38c830 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x5e445f29 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x5e5ea7cb __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x5e5ffd4e freezer_active +EXPORT_SYMBOL vmlinux 0x5e6766c9 tegra_dfll_suspend +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 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb34101 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x5eb3d3bb ethtool_notify +EXPORT_SYMBOL vmlinux 0x5ebfeec4 block_commit_write +EXPORT_SYMBOL vmlinux 0x5ec45c95 tcp_get_cookie_sock +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 0x5ed6a0fa audit_log_start +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5efe3d7b do_clone_file_range +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x5f513699 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x5f521d1d kmem_cache_create +EXPORT_SYMBOL vmlinux 0x5f52e84d qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f672052 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x5f74d7d6 __folio_alloc +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f7dc646 snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0x5f91742f pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5f924fd2 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x5fa14675 set_groups +EXPORT_SYMBOL vmlinux 0x5fa7f1ac tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fbe71e2 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x5fcb55c1 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x5fd06a3e unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x5fd9c5b0 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x5ff112d4 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x60054616 pci_restore_state +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601250a8 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602c306c tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60499444 dev_uc_add +EXPORT_SYMBOL vmlinux 0x6052c6b6 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x605bfffc __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x60738eae filemap_map_pages +EXPORT_SYMBOL vmlinux 0x608bb121 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x6091753f simple_transaction_set +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x60996214 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 +EXPORT_SYMBOL vmlinux 0x60c6da8c wake_up_process +EXPORT_SYMBOL vmlinux 0x60ca8eba __d_drop +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e60217 param_ops_int +EXPORT_SYMBOL vmlinux 0x60f6a8a2 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x61023e14 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x610c05e7 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x61147b7b snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x611523e3 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x6117602f par_io_of_config +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 0x613e895d security_sb_remount +EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6162998d uart_add_one_port +EXPORT_SYMBOL vmlinux 0x616f620a security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x617701fe vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x618429c9 fsync_bdev +EXPORT_SYMBOL vmlinux 0x618507a8 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x61b010ef snd_compr_malloc_pages +EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bd3c52 rproc_detach +EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x61d501be vme_irq_request +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e4f964 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61f4a810 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x61fac456 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x61fdf7db take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6218be2d mt_find +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x625318aa xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x6259379a mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x625ff971 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62811dea xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x62833a59 phy_init_hw +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62943e21 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x629f5bee xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x62c7889f nla_put_64bit +EXPORT_SYMBOL vmlinux 0x62d56363 seq_file_path +EXPORT_SYMBOL vmlinux 0x62d5faa8 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x6302c7c2 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x6303f20a mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x6311590f kernel_write +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x6336a44e skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x633ad629 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x633b86d2 vm_mmap +EXPORT_SYMBOL vmlinux 0x633ff72b __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x634caf8d filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x6351ac42 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0x635e7fa6 register_sound_mixer +EXPORT_SYMBOL vmlinux 0x636bf237 follow_down +EXPORT_SYMBOL vmlinux 0x637493f3 __wake_up +EXPORT_SYMBOL vmlinux 0x63860f8e block_write_begin +EXPORT_SYMBOL vmlinux 0x639ac5db __mdiobus_read +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b15491 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x63b5d755 input_flush_device +EXPORT_SYMBOL vmlinux 0x63bb786b inet6_release +EXPORT_SYMBOL vmlinux 0x63d72ecc bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x63e91a4b ip_getsockopt +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f29eda mtree_alloc_range +EXPORT_SYMBOL vmlinux 0x63f5460a of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x6403c6f4 __netif_schedule +EXPORT_SYMBOL vmlinux 0x640f0c10 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641f3c69 snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0x64267a91 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x64444905 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x64793d5d release_sock +EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0x64859ef0 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x648b030d ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x648ea43a __fput_sync +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x649c4ffb i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b2c538 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x64b635f3 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x64bcb1bf vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x64bdb459 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x64eb0fd4 empty_zero_page +EXPORT_SYMBOL vmlinux 0x64f64e6e netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x64ff6106 qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x650608c0 kobject_del +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6512c252 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x65172ac0 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x651795b4 __put_user_ns +EXPORT_SYMBOL vmlinux 0x6517c8ca devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x653631ab devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x65377535 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6564c291 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait +EXPORT_SYMBOL vmlinux 0x6589b32a user_path_create +EXPORT_SYMBOL vmlinux 0x658befbc vfs_get_link +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x659c1a8c mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65bdb02c mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x65c15113 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x65c753ed i2c_verify_client +EXPORT_SYMBOL vmlinux 0x65c873a9 dcb_setapp +EXPORT_SYMBOL vmlinux 0x65cda8a1 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x65d3507f blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65ed1ce8 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x65ed7493 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x66022e32 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x6604b45d from_kgid_munged +EXPORT_SYMBOL vmlinux 0x662514c4 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x662eb07c tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x663a31a0 snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66623dca unregister_binfmt +EXPORT_SYMBOL vmlinux 0x666630d9 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x666adc92 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6674bd14 omap_vrfb_request_ctx +EXPORT_SYMBOL vmlinux 0x6674c976 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x667fc65e tty_unlock +EXPORT_SYMBOL vmlinux 0x66920b54 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x66b27535 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x66cd7714 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x66dbdfc6 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x66dccce9 param_get_charp +EXPORT_SYMBOL vmlinux 0x66e21dc8 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x66e72848 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x67092819 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x672b99d5 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x67371bae phy_error +EXPORT_SYMBOL vmlinux 0x674803b2 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x67597ff7 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x675a508f fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67794a45 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x6786f2a5 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x679b2aee of_graph_is_present +EXPORT_SYMBOL vmlinux 0x679e6b37 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x67a5992e pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b6b4c3 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c14f6b rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x67cdec01 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x67e4376b unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x67fd7326 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x67fde2bb md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x6803771b blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x680bf3f1 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x680e59b5 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x68169857 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x68203106 key_alloc +EXPORT_SYMBOL vmlinux 0x68532af6 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x685ea04c mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x6866327e fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68811011 dst_destroy +EXPORT_SYMBOL vmlinux 0x688bd3a4 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x688c9fa8 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x689ac65c snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68a82375 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x68c655bb netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x68d10aa0 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x68dfed36 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x68e026f3 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x68fae2fb scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x690e3080 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x69410e4f blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x695dfc29 ppp_input +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x69932716 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x6994309b nand_ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x69f1daf3 dst_alloc +EXPORT_SYMBOL vmlinux 0x69f2579a mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a2ecf1a udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x6a3d73a6 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x6a52d90a keyring_alloc +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5cdcc6 flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a67fb7f xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x6a686cee i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a81c7d5 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x6a835af7 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x6a84a4ef input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x6a879513 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x6a8d7ad4 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6a8e2bea udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6ad3246d d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x6ada5334 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af7b21a packing +EXPORT_SYMBOL vmlinux 0x6b0911af bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x6b156fa4 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x6b26f317 __inet_hash +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b352ba2 tty_register_device +EXPORT_SYMBOL vmlinux 0x6b422bbe mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5ae4fc mmc_can_discard +EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6b7997f5 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b91dc34 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x6b9cf777 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x6ba2be05 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bac0f4d pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x6bb15f27 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc6eebd __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x6bcb4458 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x6bd5b60b aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0x6be00f3e reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x6c1a1f4a mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c1d1db0 scsi_print_command +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c2d3a23 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x6c3d3caa input_set_abs_params +EXPORT_SYMBOL vmlinux 0x6c53c8df phy_read_paged +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c72f75d tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x6c758a40 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x6c76e482 nand_create_bbt +EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x6c82b520 cred_fscmp +EXPORT_SYMBOL vmlinux 0x6c91cfcc snd_timer_new +EXPORT_SYMBOL vmlinux 0x6ca88d7c phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x6cad4993 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x6cb0304f xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cbc57b2 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x6ccb5fb6 scsi_device_put +EXPORT_SYMBOL vmlinux 0x6cce5f5f n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x6cd7ca51 phy_device_remove +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6d0eb3f3 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x6d1a8b3e __breadahead +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d5f06e1 ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x6d69a152 edac_mc_find +EXPORT_SYMBOL vmlinux 0x6d77fda3 md_update_sb +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6d908a87 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x6d975f7c of_platform_device_create +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbe7dd5 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x6dc8f742 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x6dca4a26 adjust_resource +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd86388 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x6dd8743f skb_queue_purge +EXPORT_SYMBOL vmlinux 0x6ddb9459 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x6dedb7d6 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0ef353 uart_resume_port +EXPORT_SYMBOL vmlinux 0x6e2160b0 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x6e2689ca mpage_readahead +EXPORT_SYMBOL vmlinux 0x6e308fd3 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x6e43e8bc locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x6e682d45 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7bdc38 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x6e84ed0f ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x6e98d39d kern_path +EXPORT_SYMBOL vmlinux 0x6e9aa3e9 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9e9692 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eb7b846 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x6ebb5d72 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x6ebf9bd9 kmalloc_size_roundup +EXPORT_SYMBOL vmlinux 0x6ec1dc36 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x6ecff4e1 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6efc2a42 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem +EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock +EXPORT_SYMBOL vmlinux 0x6f176537 mt_find_after +EXPORT_SYMBOL vmlinux 0x6f17d1c6 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x6f1e2c8c buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x6f1eef0e i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x6f317b97 pps_event +EXPORT_SYMBOL vmlinux 0x6f3ddb38 config_item_get +EXPORT_SYMBOL vmlinux 0x6f552328 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x6f71b7f7 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin +EXPORT_SYMBOL vmlinux 0x6f86aad6 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x6fa22697 rawnand_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x6fa8f6b3 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable +EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd2ab34 retire_super +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6ff79446 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702b41d1 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x703d4abf textsearch_unregister +EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x70731ba4 tcf_block_get +EXPORT_SYMBOL vmlinux 0x7094d906 snd_pcm_new +EXPORT_SYMBOL vmlinux 0x70a144cc inet_accept +EXPORT_SYMBOL vmlinux 0x70c0f442 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x70e36bf5 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x70f29f1a nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x716b58cb ioport_resource +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717c2242 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x718f110a security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b3d158 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x71b7d8cf import_iovec +EXPORT_SYMBOL vmlinux 0x71be8d83 alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71ce2a02 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7207dfca serio_open +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x7231db7f scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x723bebb2 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x723d9953 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x724428b3 simple_unlink +EXPORT_SYMBOL vmlinux 0x72587f97 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x7290825c mtree_store_range +EXPORT_SYMBOL vmlinux 0x729672e2 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bf9b95 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x72c264e6 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x72c42bf6 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x72e7ca36 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f48747 snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL vmlinux 0x731216e0 inet_frags_init +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x73198d5d phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x732f4654 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x73720b66 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x737ff261 skb_put +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7386b21c tcp_setsockopt +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 0x73b95e7d mmc_retune_release +EXPORT_SYMBOL vmlinux 0x73d5a263 pci_free_irq +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73f134f3 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x73f3db89 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x73f42398 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74192380 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742e5f69 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x742fc1e7 fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0x74329b00 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x745a16a3 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74896902 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x749a8c57 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x74a16fde pci_get_slot +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74bcc5ed bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ea31f2 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x74f1385e fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x74f15d24 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x7507f68b mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x75265d95 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x7527fbfd snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0x752ebaa9 shmem_aops +EXPORT_SYMBOL vmlinux 0x753aedaf xp_alloc +EXPORT_SYMBOL vmlinux 0x753b9691 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x753d2e70 xattr_full_name +EXPORT_SYMBOL vmlinux 0x75420cc1 secpath_set +EXPORT_SYMBOL vmlinux 0x754d8434 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x755a5440 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x755adba3 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x757dc0bb pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x75832ed1 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x75858aea pneigh_lookup +EXPORT_SYMBOL vmlinux 0x759c43d2 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x75a8a125 netlink_rcv_skb +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 0x75f36cc0 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x76023426 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x761baea2 param_get_short +EXPORT_SYMBOL vmlinux 0x761dcfe8 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x763031f3 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x7640ba29 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7663d7fb of_lpddr3_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x7669d2be mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766d69b7 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x76796bcb mmc_remove_host +EXPORT_SYMBOL vmlinux 0x767acf46 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x7693504e inc_node_state +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a351c6 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x76a8cef9 dma_set_mask +EXPORT_SYMBOL vmlinux 0x76bd45e4 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x76bdfb33 phy_device_create +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d08673 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d880e7 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x76df2eeb _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0x76ec73ae gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x76f124ec bio_split +EXPORT_SYMBOL vmlinux 0x76fdcd78 snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x770dfeab neigh_app_ns +EXPORT_SYMBOL vmlinux 0x771905ac thaw_bdev +EXPORT_SYMBOL vmlinux 0x77209942 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x773525f7 param_get_long +EXPORT_SYMBOL vmlinux 0x7738b161 omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x775da707 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x777c188f dma_sync_wait +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77b672b8 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77dd61f4 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77ea1abe skb_copy_header +EXPORT_SYMBOL vmlinux 0x77f10745 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x77f61a6f param_set_bool +EXPORT_SYMBOL vmlinux 0x77faac71 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x77fc6a46 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780fc812 rawnand_sw_bch_cleanup +EXPORT_SYMBOL vmlinux 0x7826edd7 vfs_setpos +EXPORT_SYMBOL vmlinux 0x784e62e5 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x78730713 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x7873c71f i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a56693 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x78af8cb3 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78cfa299 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x78de37bd xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e71936 dquot_operations +EXPORT_SYMBOL vmlinux 0x78fa8bf5 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x78fd8c37 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x79243fee ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free +EXPORT_SYMBOL vmlinux 0x794a0345 default_llseek +EXPORT_SYMBOL vmlinux 0x796c852b __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x797b0d44 snd_timer_continue +EXPORT_SYMBOL vmlinux 0x798f7aa4 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x799be480 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x79b4e7d5 vme_register_driver +EXPORT_SYMBOL vmlinux 0x79c469d0 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x79cc87bd __nla_reserve +EXPORT_SYMBOL vmlinux 0x79e3dea0 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x7a05fd59 I_BDEV +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a29585e elv_rb_del +EXPORT_SYMBOL vmlinux 0x7a2f7a4e read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a33af75 input_free_device +EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0x7a49b52c tty_kref_put +EXPORT_SYMBOL vmlinux 0x7a534d9b jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a53a894 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x7a63d022 xp_dma_map +EXPORT_SYMBOL vmlinux 0x7a687a6a dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7a79761b fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x7a79b9f3 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7a79d45b pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x7a92dd6c sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aaba492 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x7ab20542 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x7abda6e4 netif_tx_lock +EXPORT_SYMBOL vmlinux 0x7ac82cf0 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x7ad03c3e dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad063fe phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x7ad485c8 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x7ad8ad87 rawnand_sw_bch_init +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7adc66e7 discard_new_inode +EXPORT_SYMBOL vmlinux 0x7ade9187 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x7adefcad done_path_create +EXPORT_SYMBOL vmlinux 0x7ae16b92 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7af5f9b6 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x7afa84d7 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b1800b1 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7b3b6815 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x7b586e47 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b5eb537 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x7b8072e4 devm_request_resource +EXPORT_SYMBOL vmlinux 0x7b815f3a devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x7ba08273 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7beafd91 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x7bf10bbe seq_dentry +EXPORT_SYMBOL vmlinux 0x7bf3313d mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1bbd11 read_code +EXPORT_SYMBOL vmlinux 0x7c26fd51 sgl_free_order +EXPORT_SYMBOL vmlinux 0x7c382a5c __kfree_skb +EXPORT_SYMBOL vmlinux 0x7c425ba6 tso_start +EXPORT_SYMBOL vmlinux 0x7c4611c9 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4a1257 register_filesystem +EXPORT_SYMBOL vmlinux 0x7c717d4d vm_map_ram +EXPORT_SYMBOL vmlinux 0x7c864f09 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x7c89b52e skb_tx_error +EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update +EXPORT_SYMBOL vmlinux 0x7c99e90e backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x7ca669de crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cc37c4b of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x7cd105fd __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x7cdeeb4d pgprot_user +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce7c01e tcp_shutdown +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf45bce generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d09596b dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d1ac8e1 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x7d28c195 locks_delete_block +EXPORT_SYMBOL vmlinux 0x7d29a003 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d4e0092 sync_blockdev +EXPORT_SYMBOL vmlinux 0x7d5c420c xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x7d5dd21a dm_put_device +EXPORT_SYMBOL vmlinux 0x7d627a6d framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x7d6c2636 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x7d6d56b0 freeze_super +EXPORT_SYMBOL vmlinux 0x7d94c99c ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x7d9a2fc2 of_device_is_available +EXPORT_SYMBOL vmlinux 0x7da0dca5 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x7da81a3f bpf_link_put +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db320e1 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x7db5492e blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dd8d174 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x7ddec996 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfb9336 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x7e00b74f phy_start_aneg +EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write +EXPORT_SYMBOL vmlinux 0x7e165763 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e37177a xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x7e4457d9 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x7e50afc1 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x7e5d694b of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x7e6c4b4b skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x7e72b304 register_md_personality +EXPORT_SYMBOL vmlinux 0x7e7d9db6 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x7e9954eb phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x7e9ec718 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info +EXPORT_SYMBOL vmlinux 0x7ea67579 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x7ea9e50c security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x7eac2de3 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x7ec00ba2 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x7ec7f1a7 kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x7ed0d606 cdev_init +EXPORT_SYMBOL vmlinux 0x7ed699b4 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f275aef skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x7f281f0d simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x7f349052 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x7f5202cd input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f6b44ea __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x7f712def sync_filesystem +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f9b0f30 dquot_disable +EXPORT_SYMBOL vmlinux 0x7f9c30c6 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x7fa2c262 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x7fb13b0d tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x7fbbc42c mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x7fc371c0 vme_slave_request +EXPORT_SYMBOL vmlinux 0x7fcc5dfb dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x7fce36e6 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd8a520 netdev_crit +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fdfa15c qdisc_reset +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 __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 ___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_skb +EXPORT_SYMBOL vmlinux 0x7fffffff __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0x7fffffff __ashrdi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __bforget +EXPORT_SYMBOL vmlinux 0x7fffffff __bh_read_batch +EXPORT_SYMBOL vmlinux 0x7fffffff __bio_advance +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_and +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 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x7fffffff __blkdev_issue_discard +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 __break_lease +EXPORT_SYMBOL vmlinux 0x7fffffff __brelse +EXPORT_SYMBOL vmlinux 0x7fffffff __bswapsi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __cap_empty_set +EXPORT_SYMBOL vmlinux 0x7fffffff __cgroup_bpf_run_filter_sk +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 +EXPORT_SYMBOL vmlinux 0x7fffffff __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x7fffffff __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __ctzsi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x7fffffff __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff __destroy_inode +EXPORT_SYMBOL vmlinux 0x7fffffff __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7fffffff __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x7fffffff __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x7fffffff __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x7fffffff __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7fffffff __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7fffffff __devm_release_region +EXPORT_SYMBOL vmlinux 0x7fffffff __do_once_done +EXPORT_SYMBOL vmlinux 0x7fffffff __do_once_sleepable_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 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x7fffffff __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x7fffffff __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x7fffffff __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x7fffffff __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fffffff __f_setown +EXPORT_SYMBOL vmlinux 0x7fffffff __fdget +EXPORT_SYMBOL vmlinux 0x7fffffff __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x7fffffff __find_get_block +EXPORT_SYMBOL vmlinux 0x7fffffff __find_nth_and_bit +EXPORT_SYMBOL vmlinux 0x7fffffff __find_nth_andnot_bit +EXPORT_SYMBOL vmlinux 0x7fffffff __flush_workqueue +EXPORT_SYMBOL vmlinux 0x7fffffff __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x7fffffff __folio_lock +EXPORT_SYMBOL vmlinux 0x7fffffff __folio_put +EXPORT_SYMBOL vmlinux 0x7fffffff __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff __free_pages +EXPORT_SYMBOL vmlinux 0x7fffffff __generic_file_write_iter +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_random_u32_below +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 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x7fffffff __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x7fffffff __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_dev_find +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_options_compile +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_queue_xmit +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_node_track_caller +EXPORT_SYMBOL vmlinux 0x7fffffff __kmap_local_page_prot +EXPORT_SYMBOL vmlinux 0x7fffffff __lock_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff __lshrdi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x7fffffff __mdiobus_write +EXPORT_SYMBOL vmlinux 0x7fffffff __memset64 +EXPORT_SYMBOL vmlinux 0x7fffffff __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x7fffffff __mmap_lock_do_trace_released +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_alloc_skb +EXPORT_SYMBOL vmlinux 0x7fffffff __napi_schedule +EXPORT_SYMBOL vmlinux 0x7fffffff __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x7fffffff __neigh_event_send +EXPORT_SYMBOL vmlinux 0x7fffffff __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x7fffffff __netif_rx +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_parse +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_nohdr +EXPORT_SYMBOL vmlinux 0x7fffffff __nlmsg_put +EXPORT_SYMBOL vmlinux 0x7fffffff __num_online_cpus +EXPORT_SYMBOL vmlinux 0x7fffffff __of_parse_phandle_with_args +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_resume +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 __ps2_command +EXPORT_SYMBOL vmlinux 0x7fffffff __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x7fffffff __put_cred +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 __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_chrdev +EXPORT_SYMBOL vmlinux 0x7fffffff __request_module +EXPORT_SYMBOL vmlinux 0x7fffffff __request_region +EXPORT_SYMBOL vmlinux 0x7fffffff __scm_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff __scm_send +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x7fffffff __serio_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff __serio_register_port +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_dst_check +EXPORT_SYMBOL vmlinux 0x7fffffff __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x7fffffff __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x7fffffff __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_checksum +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_ext_del +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_flow_get_ports +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_recv_datagram +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x7fffffff __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x7fffffff __sock_create +EXPORT_SYMBOL vmlinux 0x7fffffff __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x7fffffff __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x7fffffff __sw_hweight8 +EXPORT_SYMBOL vmlinux 0x7fffffff __sync_dirty_buffer +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 +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_mmap_lock_released +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_kmem_cache_alloc +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 __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 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff __vmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff __wait_on_bit +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_init_state +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_from_iter +EXPORT_SYMBOL vmlinux 0x7fffffff _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_alert +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_emerg +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_printk +EXPORT_SYMBOL vmlinux 0x7fffffff _find_first_and_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x7fffffff _find_last_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_next_and_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x7fffffff _find_next_zero_bit_le +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 abort_creds +EXPORT_SYMBOL vmlinux 0x7fffffff add_device_randomness +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 alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x7fffffff amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff amba_release_regions +EXPORT_SYMBOL vmlinux 0x7fffffff amba_request_regions +EXPORT_SYMBOL vmlinux 0x7fffffff aperture_remove_conflicting_devices +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_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0x7fffffff arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x7fffffff arp_create +EXPORT_SYMBOL vmlinux 0x7fffffff arp_tbl +EXPORT_SYMBOL vmlinux 0x7fffffff ata_std_end_eh +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_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_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff bcmp +EXPORT_SYMBOL vmlinux 0x7fffffff bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x7fffffff bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x7fffffff bdi_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x7fffffff bio_chain +EXPORT_SYMBOL vmlinux 0x7fffffff bio_copy_data +EXPORT_SYMBOL vmlinux 0x7fffffff bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x7fffffff bio_init_clone +EXPORT_SYMBOL vmlinux 0x7fffffff bio_kmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff bio_put +EXPORT_SYMBOL vmlinux 0x7fffffff bio_reset +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_execute_rq +EXPORT_SYMBOL vmlinux 0x7fffffff blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x7fffffff blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_init_queue +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_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff blk_pre_runtime_resume +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_flag_set +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_init +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x7fffffff blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_issue_zeroout +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_full_page +EXPORT_SYMBOL vmlinux 0x7fffffff bmap +EXPORT_SYMBOL vmlinux 0x7fffffff bpf_empty_prog_array +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_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_usermodehelper +EXPORT_SYMBOL vmlinux 0x7fffffff call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x7fffffff call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x7fffffff can_do_mlock +EXPORT_SYMBOL vmlinux 0x7fffffff cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x7fffffff cancel_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_add +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_del +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_set_parent +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_open +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_release +EXPORT_SYMBOL vmlinux 0x7fffffff cfb_copyarea +EXPORT_SYMBOL vmlinux 0x7fffffff cfb_imageblit +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_get +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_register_clkdev +EXPORT_SYMBOL vmlinux 0x7fffffff clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x7fffffff clocksource_unregister +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_typed +EXPORT_SYMBOL vmlinux 0x7fffffff con_copy_unimap +EXPORT_SYMBOL vmlinux 0x7fffffff con_is_bound +EXPORT_SYMBOL vmlinux 0x7fffffff con_is_visible +EXPORT_SYMBOL vmlinux 0x7fffffff con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x7fffffff config_group_find_item +EXPORT_SYMBOL vmlinux 0x7fffffff config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x7fffffff config_item_put +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_unregister_subsystem +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_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x7fffffff console_lock +EXPORT_SYMBOL vmlinux 0x7fffffff console_stop +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_to_iter +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_generic_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff cpufreq_get +EXPORT_SYMBOL vmlinux 0x7fffffff cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x7fffffff cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_local_spread +EXPORT_SYMBOL vmlinux 0x7fffffff cqhci_init +EXPORT_SYMBOL vmlinux 0x7fffffff cqhci_pltfm_init +EXPORT_SYMBOL vmlinux 0x7fffffff cqhci_resume +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_check_result +EXPORT_SYMBOL vmlinux 0x7fffffff cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x7fffffff cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x7fffffff cros_ec_get_next_event +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_sha256_finup +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_sha256_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_in_userns +EXPORT_SYMBOL vmlinux 0x7fffffff current_time +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_find_alias +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_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_path +EXPORT_SYMBOL vmlinux 0x7fffffff d_rehash +EXPORT_SYMBOL vmlinux 0x7fffffff d_set_fallthru +EXPORT_SYMBOL vmlinux 0x7fffffff datagram_poll +EXPORT_SYMBOL vmlinux 0x7fffffff dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x7fffffff dcache_dir_open +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x7fffffff dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x7fffffff deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x7fffffff deactivate_super +EXPORT_SYMBOL vmlinux 0x7fffffff debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x7fffffff dec_node_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7fffffff default_wake_function +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_add_pack +EXPORT_SYMBOL vmlinux 0x7fffffff dev_addr_del +EXPORT_SYMBOL vmlinux 0x7fffffff dev_addr_mod +EXPORT_SYMBOL vmlinux 0x7fffffff dev_alloc_name +EXPORT_SYMBOL vmlinux 0x7fffffff dev_change_flags +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_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_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_flush +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x7fffffff dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x7fffffff dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_alias +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_threaded +EXPORT_SYMBOL vmlinux 0x7fffffff dev_trans_start +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_sync +EXPORT_SYMBOL vmlinux 0x7fffffff devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_remove_governor +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_target +EXPORT_SYMBOL vmlinux 0x7fffffff device_add_disk +EXPORT_SYMBOL vmlinux 0x7fffffff device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x7fffffff device_get_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x7fffffff devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x7fffffff devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0x7fffffff devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x7fffffff devm_clk_put +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x7fffffff devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x7fffffff devm_free_irq +EXPORT_SYMBOL vmlinux 0x7fffffff devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x7fffffff devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x7fffffff devm_ioremap +EXPORT_SYMBOL vmlinux 0x7fffffff devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x7fffffff devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x7fffffff devm_memunmap +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_threaded_irq +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 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_read_arg_group +EXPORT_SYMBOL vmlinux 0x7fffffff dm_table_get_md +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_create +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_chain_init +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_free_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_map_resource +EXPORT_SYMBOL vmlinux 0x7fffffff dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_pool_create +EXPORT_SYMBOL vmlinux 0x7fffffff dma_pool_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff dma_pool_free +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_fini +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x7fffffff dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x7fffffff dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x7fffffff dma_sync_single_for_device +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_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_blank_screen +EXPORT_SYMBOL vmlinux 0x7fffffff do_map_probe +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_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_drop +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_file_open +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_free_inode +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_quota_off +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_quota_on +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_release +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_resume +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_transfer +EXPORT_SYMBOL vmlinux 0x7fffffff drop_nlink +EXPORT_SYMBOL vmlinux 0x7fffffff drop_reasons +EXPORT_SYMBOL vmlinux 0x7fffffff drop_super +EXPORT_SYMBOL vmlinux 0x7fffffff dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x7fffffff dst_default_metrics +EXPORT_SYMBOL vmlinux 0x7fffffff dst_dev_put +EXPORT_SYMBOL vmlinux 0x7fffffff dst_init +EXPORT_SYMBOL vmlinux 0x7fffffff dst_release +EXPORT_SYMBOL vmlinux 0x7fffffff dump_align +EXPORT_SYMBOL vmlinux 0x7fffffff dump_page +EXPORT_SYMBOL vmlinux 0x7fffffff dump_skip +EXPORT_SYMBOL vmlinux 0x7fffffff dump_skip_to +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 efi +EXPORT_SYMBOL vmlinux 0x7fffffff efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0x7fffffff elevator_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff elf_set_personality +EXPORT_SYMBOL vmlinux 0x7fffffff elm_config +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_write_sync +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_complete +EXPORT_SYMBOL vmlinux 0x7fffffff eth_header_cache +EXPORT_SYMBOL vmlinux 0x7fffffff eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x7fffffff eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x7fffffff eth_mac_addr +EXPORT_SYMBOL vmlinux 0x7fffffff eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7fffffff eth_type_trans +EXPORT_SYMBOL vmlinux 0x7fffffff eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7fffffff ether_setup +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_intersect_link_masks +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_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fffffff f_setown +EXPORT_SYMBOL vmlinux 0x7fffffff fasync_helper +EXPORT_SYMBOL vmlinux 0x7fffffff fault_in_iov_iter_readable +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_blank +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_cvt +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_modesetting_disabled +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_var_to_videomode +EXPORT_SYMBOL vmlinux 0x7fffffff fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x7fffffff fd_install +EXPORT_SYMBOL vmlinux 0x7fffffff fddi_type_trans +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_default_rule_add +EXPORT_SYMBOL vmlinux 0x7fffffff fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff fifo_set_limit +EXPORT_SYMBOL vmlinux 0x7fffffff file_modified +EXPORT_SYMBOL vmlinux 0x7fffffff file_ns_capable +EXPORT_SYMBOL vmlinux 0x7fffffff file_open_root +EXPORT_SYMBOL vmlinux 0x7fffffff file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x7fffffff fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x7fffffff fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_check_errors +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_get_folios +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x7fffffff filp_close +EXPORT_SYMBOL vmlinux 0x7fffffff filp_open +EXPORT_SYMBOL vmlinux 0x7fffffff finalize_exec +EXPORT_SYMBOL vmlinux 0x7fffffff find_get_pages_range_tag +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_open +EXPORT_SYMBOL vmlinux 0x7fffffff finish_swait +EXPORT_SYMBOL vmlinux 0x7fffffff fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_priv +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_arp +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_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0x7fffffff flush_delayed_work +EXPORT_SYMBOL vmlinux 0x7fffffff folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x7fffffff folio_end_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff folio_mapping +EXPORT_SYMBOL vmlinux 0x7fffffff folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x7fffffff folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x7fffffff folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x7fffffff folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x7fffffff folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x7fffffff folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x7fffffff folio_write_one +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 fput +EXPORT_SYMBOL vmlinux 0x7fffffff fqdir_exit +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 freeze_bdev +EXPORT_SYMBOL vmlinux 0x7fffffff freezing_slow_path +EXPORT_SYMBOL vmlinux 0x7fffffff from_kgid +EXPORT_SYMBOL vmlinux 0x7fffffff from_kprojid +EXPORT_SYMBOL vmlinux 0x7fffffff from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x7fffffff from_kuid +EXPORT_SYMBOL vmlinux 0x7fffffff fs_overflowgid +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_encrypt_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_set_policy +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x7fffffff full_name_hash +EXPORT_SYMBOL vmlinux 0x7fffffff fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_mdiobus_register_phy +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_delete_inode +EXPORT_SYMBOL vmlinux 0x7fffffff generic_fadvise +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_mmap +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_open +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x7fffffff generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x7fffffff generic_fillattr +EXPORT_SYMBOL vmlinux 0x7fffffff generic_key_instantiate +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_splice_sendpage +EXPORT_SYMBOL vmlinux 0x7fffffff generic_write_checks +EXPORT_SYMBOL vmlinux 0x7fffffff generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x7fffffff genl_register_family +EXPORT_SYMBOL vmlinux 0x7fffffff genl_unregister_family +EXPORT_SYMBOL vmlinux 0x7fffffff genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x7fffffff genlmsg_put +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_status +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_resume +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_update_link +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x7fffffff get_cached_acl +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_inode_acl +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_random_u8 +EXPORT_SYMBOL vmlinux 0x7fffffff get_task_cred +EXPORT_SYMBOL vmlinux 0x7fffffff get_thermal_instance +EXPORT_SYMBOL vmlinux 0x7fffffff get_tree_bdev +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_ifreq +EXPORT_SYMBOL vmlinux 0x7fffffff get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff get_watch_queue +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_app +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_copy_queue +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 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x7fffffff gpmc_cs_request +EXPORT_SYMBOL vmlinux 0x7fffffff gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff gro_cells_init +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 hchacha_block_generic +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_infoframe_log +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_register_driver +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 +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_transfer +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x7fffffff icmp6_send +EXPORT_SYMBOL vmlinux 0x7fffffff icmp_ndo_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_locked +EXPORT_SYMBOL vmlinux 0x7fffffff ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x7fffffff ihold +EXPORT_SYMBOL vmlinux 0x7fffffff ilookup +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_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 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_del_protocol +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_offloads +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_addr_is_any +EXPORT_SYMBOL vmlinux 0x7fffffff inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x7fffffff inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x7fffffff inet_bind +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x7fffffff inet_current_timestamp +EXPORT_SYMBOL vmlinux 0x7fffffff inet_del_offload +EXPORT_SYMBOL vmlinux 0x7fffffff inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_find +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_kill +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x7fffffff inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x7fffffff inet_getname +EXPORT_SYMBOL vmlinux 0x7fffffff inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x7fffffff inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x7fffffff inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x7fffffff inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x7fffffff inet_recvmsg +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_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff inet_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x7fffffff inet_stream_ops +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_pseudo +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_get_bytes +EXPORT_SYMBOL vmlinux 0x7fffffff inode_init_always +EXPORT_SYMBOL vmlinux 0x7fffffff inode_init_once +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_permission +EXPORT_SYMBOL vmlinux 0x7fffffff inode_set_flags +EXPORT_SYMBOL vmlinux 0x7fffffff inode_to_bdi +EXPORT_SYMBOL vmlinux 0x7fffffff input_alloc_absinfo +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_event +EXPORT_SYMBOL vmlinux 0x7fffffff input_get_new_minor +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_inject_event +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x7fffffff input_open_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_register_handle +EXPORT_SYMBOL vmlinux 0x7fffffff input_release_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_reset_device +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_timestamp +EXPORT_SYMBOL vmlinux 0x7fffffff input_setup_polling +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_bdev +EXPORT_SYMBOL vmlinux 0x7fffffff invalidate_disk +EXPORT_SYMBOL vmlinux 0x7fffffff invalidate_mapping_pages +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 iommu_put_resv_regions +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_discard +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_npages +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_zero +EXPORT_SYMBOL vmlinux 0x7fffffff ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_frag_next +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_output +EXPORT_SYMBOL vmlinux 0x7fffffff ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x7fffffff ip_check_defrag +EXPORT_SYMBOL vmlinux 0x7fffffff ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x7fffffff ip_defrag +EXPORT_SYMBOL vmlinux 0x7fffffff ip_do_fragment +EXPORT_SYMBOL vmlinux 0x7fffffff ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0x7fffffff ip_frag_next +EXPORT_SYMBOL vmlinux 0x7fffffff ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x7fffffff ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x7fffffff ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x7fffffff ip_output +EXPORT_SYMBOL vmlinux 0x7fffffff ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x7fffffff ip_sock_set_mtu_discover +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 iptun_encaps +EXPORT_SYMBOL vmlinux 0x7fffffff iput +EXPORT_SYMBOL vmlinux 0x7fffffff ipv4_specific +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_setsockopt +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 is_bad_inode +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_vmalloc_addr +EXPORT_SYMBOL vmlinux 0x7fffffff iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0x7fffffff iterate_fd +EXPORT_SYMBOL vmlinux 0x7fffffff iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x7fffffff iwe_stream_add_event +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_ack_err +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_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_extend +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_write_access +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_put_journal_head +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_stop +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_update_sb_errno +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_create +EXPORT_SYMBOL vmlinux 0x7fffffff kern_unmount +EXPORT_SYMBOL vmlinux 0x7fffffff kern_unmount_array +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_accept +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_connect +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_cpustat +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_getsockname +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_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sendpage +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x7fffffff key_link +EXPORT_SYMBOL vmlinux 0x7fffffff key_move +EXPORT_SYMBOL vmlinux 0x7fffffff key_put +EXPORT_SYMBOL vmlinux 0x7fffffff key_reject_and_link +EXPORT_SYMBOL vmlinux 0x7fffffff key_revoke +EXPORT_SYMBOL vmlinux 0x7fffffff key_update +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_block_super +EXPORT_SYMBOL vmlinux 0x7fffffff kill_pid +EXPORT_SYMBOL vmlinux 0x7fffffff kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x7fffffff km_new_mapping +EXPORT_SYMBOL vmlinux 0x7fffffff km_policy_expired +EXPORT_SYMBOL vmlinux 0x7fffffff km_policy_notify +EXPORT_SYMBOL vmlinux 0x7fffffff km_state_notify +EXPORT_SYMBOL vmlinux 0x7fffffff kmalloc_caches +EXPORT_SYMBOL vmlinux 0x7fffffff kmalloc_large +EXPORT_SYMBOL vmlinux 0x7fffffff kmalloc_large_node +EXPORT_SYMBOL vmlinux 0x7fffffff kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x7fffffff kmalloc_trace +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_size +EXPORT_SYMBOL vmlinux 0x7fffffff kobject_get +EXPORT_SYMBOL vmlinux 0x7fffffff kobject_put +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 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_bind +EXPORT_SYMBOL vmlinux 0x7fffffff kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x7fffffff kthread_should_stop +EXPORT_SYMBOL vmlinux 0x7fffffff kthread_stop +EXPORT_SYMBOL vmlinux 0x7fffffff ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0x7fffffff ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x7fffffff kunmap_local_indexed +EXPORT_SYMBOL vmlinux 0x7fffffff kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7fffffff kvmalloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff kvrealloc +EXPORT_SYMBOL vmlinux 0x7fffffff ledtrig_cpu +EXPORT_SYMBOL vmlinux 0x7fffffff ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x7fffffff list_sort +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_copy_lock +EXPORT_SYMBOL vmlinux 0x7fffffff locks_init_lock +EXPORT_SYMBOL vmlinux 0x7fffffff locks_remove_posix +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_positive_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff loops_per_jiffy +EXPORT_SYMBOL vmlinux 0x7fffffff make_bad_inode +EXPORT_SYMBOL vmlinux 0x7fffffff make_kuid +EXPORT_SYMBOL vmlinux 0x7fffffff map_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x7fffffff mark_info_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_reg_read +EXPORT_SYMBOL vmlinux 0x7fffffff max8925_reg_write +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_update_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_free +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x7fffffff md_check_recovery +EXPORT_SYMBOL vmlinux 0x7fffffff md_done_sync +EXPORT_SYMBOL vmlinux 0x7fffffff md_error +EXPORT_SYMBOL vmlinux 0x7fffffff md_flush_request +EXPORT_SYMBOL vmlinux 0x7fffffff md_integrity_register +EXPORT_SYMBOL vmlinux 0x7fffffff md_register_thread +EXPORT_SYMBOL vmlinux 0x7fffffff md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x7fffffff md_write_end +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_device_create +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_device_free +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_device_remove +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_device_reset +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_find_bus +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobb_read +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobb_write +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_free +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_scan +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_unregister_device +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 memory_cgrp_subsys +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_remove_devices_late +EXPORT_SYMBOL vmlinux 0x7fffffff migrate_folio +EXPORT_SYMBOL vmlinux 0x7fffffff mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x7fffffff mii_check_link +EXPORT_SYMBOL vmlinux 0x7fffffff mii_check_media +EXPORT_SYMBOL vmlinux 0x7fffffff mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fffffff mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x7fffffff mii_ethtool_set_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 minmax_running_max +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_get_pixel_format +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_tear_on +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_dcs_write +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x7fffffff misc_deregister +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_can_trim +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_command_done +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_detect_change +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpio_get_ro +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_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_release_host +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_start_request +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x7fffffff mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x7fffffff mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x7fffffff mntget +EXPORT_SYMBOL vmlinux 0x7fffffff mod_node_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff mod_timer +EXPORT_SYMBOL vmlinux 0x7fffffff mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x7fffffff module_put +EXPORT_SYMBOL vmlinux 0x7fffffff module_refcount +EXPORT_SYMBOL vmlinux 0x7fffffff mount_bdev +EXPORT_SYMBOL vmlinux 0x7fffffff mount_subtree +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 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x7fffffff mr_dump +EXPORT_SYMBOL vmlinux 0x7fffffff mr_fill_mroute +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_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x7fffffff mr_table_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x7fffffff msleep +EXPORT_SYMBOL vmlinux 0x7fffffff msleep_interruptible +EXPORT_SYMBOL vmlinux 0x7fffffff msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x7fffffff mtd_concat_create +EXPORT_SYMBOL vmlinux 0x7fffffff mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0x7fffffff mtree_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff mtree_insert +EXPORT_SYMBOL vmlinux 0x7fffffff mtree_load +EXPORT_SYMBOL vmlinux 0x7fffffff mtree_store +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_ecc_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_get_sw_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_is_strong_enough +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_correct +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0x7fffffff nand_monolithic_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_consume_skb +EXPORT_SYMBOL vmlinux 0x7fffffff napi_disable +EXPORT_SYMBOL vmlinux 0x7fffffff napi_enable +EXPORT_SYMBOL vmlinux 0x7fffffff napi_gro_receive +EXPORT_SYMBOL vmlinux 0x7fffffff napi_schedule_prep +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_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_ifdown +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_parms_release +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_start +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_table_init +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_commit +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_alert +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_change_features +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_core_stats_alloc +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_info +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_master_upper_dev_get_rcu +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_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_get +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_pick_tx +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_port_same_parent_id +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_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_state_change +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_warn +EXPORT_SYMBOL vmlinux 0x7fffffff netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x7fffffff netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x7fffffff netif_receive_skb +EXPORT_SYMBOL vmlinux 0x7fffffff netif_rx +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_tso_max_segs +EXPORT_SYMBOL vmlinux 0x7fffffff netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x7fffffff netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x7fffffff netif_tx_unlock +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 netlbl_calipso_ops_register +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_disable +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_print_options +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_setup +EXPORT_SYMBOL vmlinux 0x7fffffff netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x7fffffff next_arg +EXPORT_SYMBOL vmlinux 0x7fffffff nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x7fffffff nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff nf_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff nf_hook_slow +EXPORT_SYMBOL vmlinux 0x7fffffff nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_set +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_unset +EXPORT_SYMBOL vmlinux 0x7fffffff nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x7fffffff nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x7fffffff nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x7fffffff nf_unregister_sockopt +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 +EXPORT_SYMBOL vmlinux 0x7fffffff nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x7fffffff nla_reserve +EXPORT_SYMBOL vmlinux 0x7fffffff nla_strcmp +EXPORT_SYMBOL vmlinux 0x7fffffff nla_strdup +EXPORT_SYMBOL vmlinux 0x7fffffff nmi_panic +EXPORT_SYMBOL vmlinux 0x7fffffff node_states +EXPORT_SYMBOL vmlinux 0x7fffffff nonseekable_open +EXPORT_SYMBOL vmlinux 0x7fffffff noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x7fffffff noop_fsync +EXPORT_SYMBOL vmlinux 0x7fffffff noop_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff noop_qdisc +EXPORT_SYMBOL vmlinux 0x7fffffff nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x7fffffff ns_capable +EXPORT_SYMBOL vmlinux 0x7fffffff ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x7fffffff ns_capable_setid +EXPORT_SYMBOL vmlinux 0x7fffffff of_chosen +EXPORT_SYMBOL vmlinux 0x7fffffff of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x7fffffff of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x7fffffff of_device_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x7fffffff of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x7fffffff of_device_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_backlight_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_find_property +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_nand_ecc_user_config +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_next_available_child +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_get_parent +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_property +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_next_endpoint +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_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x7fffffff of_lpddr2_get_info +EXPORT_SYMBOL vmlinux 0x7fffffff of_lpddr3_get_min_tck +EXPORT_SYMBOL vmlinux 0x7fffffff of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0x7fffffff of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x7fffffff of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7fffffff of_n_size_cells +EXPORT_SYMBOL vmlinux 0x7fffffff of_node_get +EXPORT_SYMBOL vmlinux 0x7fffffff of_node_name_eq +EXPORT_SYMBOL vmlinux 0x7fffffff of_node_put +EXPORT_SYMBOL vmlinux 0x7fffffff of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x7fffffff of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x7fffffff of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x7fffffff of_root +EXPORT_SYMBOL vmlinux 0x7fffffff of_translate_address +EXPORT_SYMBOL vmlinux 0x7fffffff omap_rev +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 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x7fffffff overflowuid +EXPORT_SYMBOL vmlinux 0x7fffffff override_creds +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 page_address +EXPORT_SYMBOL vmlinux 0x7fffffff page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x7fffffff page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x7fffffff page_frag_free +EXPORT_SYMBOL vmlinux 0x7fffffff page_mapping +EXPORT_SYMBOL vmlinux 0x7fffffff page_offline_end +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_destroy +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_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff pagecache_isize_extended +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_bool +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_byte +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_hexint +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_invbool +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_string +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_uint +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_ullong +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_ulong +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_bool +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_charp +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_long +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_string +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_uint +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_ullong +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_ushort +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_byte +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_charp +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_copystring +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_hexint +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_int +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_invbool +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_short +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_uint +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_ullong +EXPORT_SYMBOL vmlinux 0x7fffffff parse_int_array_user +EXPORT_SYMBOL vmlinux 0x7fffffff path_get +EXPORT_SYMBOL vmlinux 0x7fffffff path_has_submounts +EXPORT_SYMBOL vmlinux 0x7fffffff path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x7fffffff path_put +EXPORT_SYMBOL vmlinux 0x7fffffff pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x7fffffff pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_read_dev_vendor_id +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_word +EXPORT_SYMBOL vmlinux 0x7fffffff pci_claim_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pci_clear_master +EXPORT_SYMBOL vmlinux 0x7fffffff pci_dev_put +EXPORT_SYMBOL vmlinux 0x7fffffff pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x7fffffff pci_disable_msix +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_device +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_msi +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_msix_range +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_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_get_class +EXPORT_SYMBOL vmlinux 0x7fffffff pci_get_device +EXPORT_SYMBOL vmlinux 0x7fffffff pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x7fffffff pci_get_subsys +EXPORT_SYMBOL vmlinux 0x7fffffff pci_iomap +EXPORT_SYMBOL vmlinux 0x7fffffff pci_iomap_range +EXPORT_SYMBOL vmlinux 0x7fffffff pci_match_id +EXPORT_SYMBOL vmlinux 0x7fffffff pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x7fffffff pci_pci_problems +EXPORT_SYMBOL vmlinux 0x7fffffff pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x7fffffff pci_read_vpd +EXPORT_SYMBOL vmlinux 0x7fffffff pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x7fffffff pci_release_region +EXPORT_SYMBOL vmlinux 0x7fffffff pci_release_regions +EXPORT_SYMBOL vmlinux 0x7fffffff pci_remove_bus +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_irq +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_region +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_regions +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x7fffffff pci_select_bars +EXPORT_SYMBOL vmlinux 0x7fffffff pci_set_master +EXPORT_SYMBOL vmlinux 0x7fffffff pci_set_mwi +EXPORT_SYMBOL vmlinux 0x7fffffff pci_set_power_state +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_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_config_word +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_vpd +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_vpd_any +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_dword +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_get_readrq +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 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x7fffffff pcim_iomap_table +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_sum_all +EXPORT_SYMBOL vmlinux 0x7fffffff percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x7fffffff pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x7fffffff pgprot_kernel +EXPORT_SYMBOL vmlinux 0x7fffffff phy_advertise_supported +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_detach +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_register +EXPORT_SYMBOL vmlinux 0x7fffffff phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff phy_drivers_register +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_wol +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_wol +EXPORT_SYMBOL vmlinux 0x7fffffff phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x7fffffff phy_get_c45_ids +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_loopback +EXPORT_SYMBOL vmlinux 0x7fffffff phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x7fffffff phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x7fffffff phy_modify_paged +EXPORT_SYMBOL vmlinux 0x7fffffff phy_print_status +EXPORT_SYMBOL vmlinux 0x7fffffff phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x7fffffff phy_register_fixup +EXPORT_SYMBOL vmlinux 0x7fffffff phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x7fffffff phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x7fffffff phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x7fffffff phy_reset_after_clk_enable +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_sfp_probe +EXPORT_SYMBOL vmlinux 0x7fffffff phy_start_cable_test_tdr +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 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x7fffffff pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x7fffffff pipe_lock +EXPORT_SYMBOL vmlinux 0x7fffffff pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x7fffffff pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x7fffffff pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x7fffffff pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x7fffffff pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x7fffffff pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x7fffffff pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x7fffffff poll_freewait +EXPORT_SYMBOL vmlinux 0x7fffffff posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x7fffffff posix_acl_init +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_channel_index +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_dev_name +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_input_error +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_unit_number +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x7fffffff pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x7fffffff pps_register_source +EXPORT_SYMBOL vmlinux 0x7fffffff prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x7fffffff prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x7fffffff prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff probe_irq_off +EXPORT_SYMBOL vmlinux 0x7fffffff probe_irq_on +EXPORT_SYMBOL vmlinux 0x7fffffff proc_create_data +EXPORT_SYMBOL vmlinux 0x7fffffff proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x7fffffff proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x7fffffff proc_create_single_data +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 +EXPORT_SYMBOL vmlinux 0x7fffffff proc_set_user +EXPORT_SYMBOL vmlinux 0x7fffffff proc_symlink +EXPORT_SYMBOL vmlinux 0x7fffffff processor +EXPORT_SYMBOL vmlinux 0x7fffffff profile_pc +EXPORT_SYMBOL vmlinux 0x7fffffff proto_register +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_drain +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_end_command +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_handle_ack +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_index +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_clock_unregister +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 +EXPORT_SYMBOL vmlinux 0x7fffffff put_fs_context +EXPORT_SYMBOL vmlinux 0x7fffffff put_pages_list +EXPORT_SYMBOL vmlinux 0x7fffffff put_user_ifreq +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_grow +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_hash_add +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_watchdog_cancel +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_correct +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_hamming_cleanup +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_hamming_init +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 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x7fffffff recalc_sigpending +EXPORT_SYMBOL vmlinux 0x7fffffff reciprocal_value +EXPORT_SYMBOL vmlinux 0x7fffffff reciprocal_value_adv +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_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_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x7fffffff register_module_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_netdev +EXPORT_SYMBOL vmlinux 0x7fffffff register_netdevice +EXPORT_SYMBOL vmlinux 0x7fffffff register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_netdevice_notifier_net +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_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 registered_fb +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_proc_entry +EXPORT_SYMBOL vmlinux 0x7fffffff remove_proc_subtree +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_firmware_nowait +EXPORT_SYMBOL vmlinux 0x7fffffff request_key_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff request_key_tag +EXPORT_SYMBOL vmlinux 0x7fffffff request_key_with_auxdata +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_alloc +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_migrate_sock +EXPORT_SYMBOL vmlinux 0x7fffffff reuseport_stop_listen_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 rio_query_mport +EXPORT_SYMBOL vmlinux 0x7fffffff rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x7fffffff rpmh_write +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_boot +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_free +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_put +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x7fffffff rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x7fffffff rps_needed +EXPORT_SYMBOL vmlinux 0x7fffffff rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x7fffffff rtc_add_groups +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_kfree_skbs +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_link_get_net +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_set_sk_err +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_trylock +EXPORT_SYMBOL vmlinux 0x7fffffff sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x7fffffff sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x7fffffff sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x7fffffff sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x7fffffff schedule_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff scm_detach_fds +EXPORT_SYMBOL vmlinux 0x7fffffff scm_fp_dup +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_add_device +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_change_queue_depth +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_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_resume +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_prep_cmnd +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_get +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_host_put +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_is_sdev_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_print_result +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_register_interface +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_scan_host +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_set_sense_information +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_tpg_id +EXPORT_SYMBOL vmlinux 0x7fffffff scsilun_to_int +EXPORT_SYMBOL vmlinux 0x7fffffff sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x7fffffff sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x7fffffff sdev_prefix_printk +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_set_context_mgr +EXPORT_SYMBOL vmlinux 0x7fffffff security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x7fffffff security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x7fffffff security_dentry_create_files_as +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_getsecctx +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_init_security +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x7fffffff security_ismaclabel +EXPORT_SYMBOL vmlinux 0x7fffffff security_lock_kernel_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_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_skb_classify_flow +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_tun_dev_open +EXPORT_SYMBOL vmlinux 0x7fffffff security_xfrm_policy_alloc +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_del +EXPORT_SYMBOL vmlinux 0x7fffffff seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x7fffffff send_sig +EXPORT_SYMBOL vmlinux 0x7fffffff seq_bprintf +EXPORT_SYMBOL vmlinux 0x7fffffff seq_escape_mem +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_lseek +EXPORT_SYMBOL vmlinux 0x7fffffff seq_open +EXPORT_SYMBOL vmlinux 0x7fffffff seq_pad +EXPORT_SYMBOL vmlinux 0x7fffffff seq_path +EXPORT_SYMBOL vmlinux 0x7fffffff seq_printf +EXPORT_SYMBOL vmlinux 0x7fffffff seq_putc +EXPORT_SYMBOL vmlinux 0x7fffffff seq_read_iter +EXPORT_SYMBOL vmlinux 0x7fffffff seq_release +EXPORT_SYMBOL vmlinux 0x7fffffff seq_release_private +EXPORT_SYMBOL vmlinux 0x7fffffff seq_write +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_reconnect +EXPORT_SYMBOL vmlinux 0x7fffffff serio_rescan +EXPORT_SYMBOL vmlinux 0x7fffffff serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fffffff set_anon_super +EXPORT_SYMBOL vmlinux 0x7fffffff set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x7fffffff set_cached_acl +EXPORT_SYMBOL vmlinux 0x7fffffff set_capacity +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_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x7fffffff set_posix_acl +EXPORT_SYMBOL vmlinux 0x7fffffff set_security_override +EXPORT_SYMBOL vmlinux 0x7fffffff set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0x7fffffff sg_alloc_table +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_next +EXPORT_SYMBOL vmlinux 0x7fffffff sg_miter_skip +EXPORT_SYMBOL vmlinux 0x7fffffff sg_miter_start +EXPORT_SYMBOL vmlinux 0x7fffffff sg_nents +EXPORT_SYMBOL vmlinux 0x7fffffff sg_next +EXPORT_SYMBOL vmlinux 0x7fffffff sg_split +EXPORT_SYMBOL vmlinux 0x7fffffff sget_fc +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 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x7fffffff simple_dir_operations +EXPORT_SYMBOL vmlinux 0x7fffffff simple_get_link +EXPORT_SYMBOL vmlinux 0x7fffffff simple_getattr +EXPORT_SYMBOL vmlinux 0x7fffffff simple_link +EXPORT_SYMBOL vmlinux 0x7fffffff simple_map_init +EXPORT_SYMBOL vmlinux 0x7fffffff simple_release_fs +EXPORT_SYMBOL vmlinux 0x7fffffff simple_rename +EXPORT_SYMBOL vmlinux 0x7fffffff simple_rmdir +EXPORT_SYMBOL vmlinux 0x7fffffff simple_statfs +EXPORT_SYMBOL vmlinux 0x7fffffff simple_strtoll +EXPORT_SYMBOL vmlinux 0x7fffffff simple_transaction_get +EXPORT_SYMBOL vmlinux 0x7fffffff simple_transaction_read +EXPORT_SYMBOL vmlinux 0x7fffffff simple_transaction_release +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_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0x7fffffff sk_error_report +EXPORT_SYMBOL vmlinux 0x7fffffff sk_mc_loop +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stop_timer +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stream_error +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stream_kill_queues +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 sk_wait_data +EXPORT_SYMBOL vmlinux 0x7fffffff skb_checksum +EXPORT_SYMBOL vmlinux 0x7fffffff skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x7fffffff skb_condense +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x7fffffff skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x7fffffff skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x7fffffff skb_ext_add +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_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x7fffffff skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x7fffffff skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x7fffffff skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x7fffffff skb_queue_head +EXPORT_SYMBOL vmlinux 0x7fffffff skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x7fffffff skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7fffffff skb_seq_read +EXPORT_SYMBOL vmlinux 0x7fffffff skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x7fffffff skb_split +EXPORT_SYMBOL vmlinux 0x7fffffff skb_trim +EXPORT_SYMBOL vmlinux 0x7fffffff skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x7fffffff skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x7fffffff skb_unlink +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_disconnect +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_new +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_set_id +EXPORT_SYMBOL vmlinux 0x7fffffff snd_component_add +EXPORT_SYMBOL vmlinux 0x7fffffff snd_compr_free_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_add +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_make_virtual_master +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_remove_id +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_rename +EXPORT_SYMBOL vmlinux 0x7fffffff snd_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff snd_dma_alloc_dir_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_dma_buffer_mmap +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_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_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_integer +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_limit_rates +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_new_internal +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_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_release_substream +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_set_managed_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x7fffffff snd_power_wait +EXPORT_SYMBOL vmlinux 0x7fffffff snd_register_device +EXPORT_SYMBOL vmlinux 0x7fffffff snd_register_oss_device +EXPORT_SYMBOL vmlinux 0x7fffffff snd_seq_root +EXPORT_SYMBOL vmlinux 0x7fffffff snd_sgbuf_get_addr +EXPORT_SYMBOL vmlinux 0x7fffffff snd_sgbuf_get_chunk_size +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_notify +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 snd_unregister_device +EXPORT_SYMBOL vmlinux 0x7fffffff snprintf +EXPORT_SYMBOL vmlinux 0x7fffffff sock_alloc_file +EXPORT_SYMBOL vmlinux 0x7fffffff sock_bind_add +EXPORT_SYMBOL vmlinux 0x7fffffff sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x7fffffff sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff sock_create_kern +EXPORT_SYMBOL vmlinux 0x7fffffff sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x7fffffff sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x7fffffff sock_get_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff sock_i_ino +EXPORT_SYMBOL vmlinux 0x7fffffff sock_init_data +EXPORT_SYMBOL vmlinux 0x7fffffff sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x7fffffff sock_kfree_s +EXPORT_SYMBOL vmlinux 0x7fffffff sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x7fffffff sock_load_diag_module +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_connect +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_getname +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_recvmsg +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x7fffffff sock_pfree +EXPORT_SYMBOL vmlinux 0x7fffffff sock_recvmsg +EXPORT_SYMBOL vmlinux 0x7fffffff sock_register +EXPORT_SYMBOL vmlinux 0x7fffffff sock_release +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_priority +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x7fffffff sock_wake_async +EXPORT_SYMBOL vmlinux 0x7fffffff sockfd_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x7fffffff sort +EXPORT_SYMBOL vmlinux 0x7fffffff sort_r +EXPORT_SYMBOL vmlinux 0x7fffffff sscanf +EXPORT_SYMBOL vmlinux 0x7fffffff starget_for_each_device +EXPORT_SYMBOL vmlinux 0x7fffffff start_tty +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_bio +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_file_get_fence +EXPORT_SYMBOL vmlinux 0x7fffffff sync_inodes_sb +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_type3_crc +EXPORT_SYMBOL vmlinux 0x7fffffff tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff task_lookup_next_fd_rcu +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_mode +EXPORT_SYMBOL vmlinux 0x7fffffff tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x7fffffff tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x7fffffff tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x7fffffff tc_setup_offload_action +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_exec +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_block_put +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_dump_stats +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_create +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_idr_release +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_queue_work +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_register_action +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_child_process +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_close +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_connect +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_enter_quickack_mode +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_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_needed +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_mmap +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_parse_options +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_poll +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_prot +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_read_skb +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_read_sock +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_seq_next +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_splice_read +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_time_wait +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_destroy_sock +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_v4_md5_lookup +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_unregister +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_init +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_register +EXPORT_SYMBOL vmlinux 0x7fffffff thaw_super +EXPORT_SYMBOL vmlinux 0x7fffffff thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x7fffffff thread_group_exited +EXPORT_SYMBOL vmlinux 0x7fffffff timer_delete +EXPORT_SYMBOL vmlinux 0x7fffffff timer_delete_sync +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_atime +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 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x7fffffff truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x7fffffff try_module_get +EXPORT_SYMBOL vmlinux 0x7fffffff try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7fffffff tso_build_data +EXPORT_SYMBOL vmlinux 0x7fffffff tty_do_resize +EXPORT_SYMBOL vmlinux 0x7fffffff tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x7fffffff tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x7fffffff tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x7fffffff tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7fffffff tty_lock +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_close_end +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_hangup +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_init +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_open +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x7fffffff tty_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x7fffffff tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x7fffffff tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fffffff tty_unthrottle +EXPORT_SYMBOL vmlinux 0x7fffffff tty_write_room +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_clear_bits +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_power +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_get_baud_rate +EXPORT_SYMBOL vmlinux 0x7fffffff uart_match_port +EXPORT_SYMBOL vmlinux 0x7fffffff uart_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fffffff uart_write_wakeup +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_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x7fffffff udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x7fffffff udp_poll +EXPORT_SYMBOL vmlinux 0x7fffffff udp_pre_connect +EXPORT_SYMBOL vmlinux 0x7fffffff udp_read_skb +EXPORT_SYMBOL vmlinux 0x7fffffff udp_seq_next +EXPORT_SYMBOL vmlinux 0x7fffffff udp_seq_start +EXPORT_SYMBOL vmlinux 0x7fffffff udp_set_csum +EXPORT_SYMBOL vmlinux 0x7fffffff udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7fffffff udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x7fffffff udp_table +EXPORT_SYMBOL vmlinux 0x7fffffff udplite_prot +EXPORT_SYMBOL vmlinux 0x7fffffff udplite_table +EXPORT_SYMBOL vmlinux 0x7fffffff unix_attach_fds +EXPORT_SYMBOL vmlinux 0x7fffffff unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x7fffffff unix_detach_fds +EXPORT_SYMBOL vmlinux 0x7fffffff unix_get_socket +EXPORT_SYMBOL vmlinux 0x7fffffff unload_nls +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_page +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_rename +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7fffffff unpin_user_page +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_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_filesystem +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_mii_timestamper +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_netdevice_queue +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_nls +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_revoke +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 vesa_modes +EXPORT_SYMBOL vmlinux 0x7fffffff vfree +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_create +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_getattr +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_iter_read +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_link +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_mknod +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_mkobj +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_readlink +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_rename +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_statfs +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_unlink +EXPORT_SYMBOL vmlinux 0x7fffffff vga_client_register +EXPORT_SYMBOL vmlinux 0x7fffffff vga_get +EXPORT_SYMBOL vmlinux 0x7fffffff vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x7fffffff video_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0x7fffffff vif_device_init +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x7fffffff vm_brk_flags +EXPORT_SYMBOL vmlinux 0x7fffffff vm_event_states +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 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x7fffffff vm_node_stat +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 vme_bus_type +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_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_mmap +EXPORT_SYMBOL vmlinux 0x7fffffff vme_master_set +EXPORT_SYMBOL vmlinux 0x7fffffff vme_master_write +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_set +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 +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_state +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 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff write_inode_now +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 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 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_protocol_register +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_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_hash_rebuild +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_replay_seqhi +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_insert +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x7fffffff xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x7fffffff xp_can_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x7fffffff xp_free +EXPORT_SYMBOL vmlinux 0x7fffffff xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x7fffffff xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_tx_peek_desc +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_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 0x7fffffff sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x7fffffff sha1_update_arm +EXPORT_SYMBOL_GPL crypto/af_alg 0x0e273fe9 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x2de6ba5a af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x36ef5821 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x3cba6381 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x57f8dd55 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x620fb607 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x6d643752 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x705f9078 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x76927726 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x7d030326 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_free_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_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0x7fffffff aria_decrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0x7fffffff aria_set_key +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x1ff6a1fb async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6befc003 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7fffffff async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x2b2f9af4 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7fffffff async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x058ce849 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1aec16a4 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x53b87a68 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7fffffff async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x18a87250 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x57f306bb async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x59b776e2 async_xor_val +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 0x3c1263f4 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 0x50a56c24 cast6_setkey +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 0x0c2ffe50 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x3cb603f7 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x57d32ed9 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7a9c3105 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff 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_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x00ae5ea3 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x308399f7 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6f2b5444 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x71216629 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x77da6172 crypto_transfer_skcipher_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_finalize_aead_request +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_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x133c7bf0 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 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_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/polyval-generic 0x1936413e polyval_mul_non4k +EXPORT_SYMBOL_GPL crypto/polyval-generic 0x42c78b47 polyval_update_non4k +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5a96b6ea serpent_setkey +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 0x6dc1b16a twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x7fffffff __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1454d528 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x186af563 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x26c6fa11 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2e7e21d7 speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3804cd17 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4189e9d3 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x45eda959 spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5095e367 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x68fc1493 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7c975c6f spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7de65587 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7e4326ce 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 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_get_var_header +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_ttyio_ops +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 0x12588bc8 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x6ba8a8ad 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 0x7fffffff linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x7fffffff linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x64aec037 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x7fffffff __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x7fffffff __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x18af46ad __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x35ce96ee __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x7fffffff __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x07f60984 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x19ea376f __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x4bfabfa8 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x7809d135 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x13dddcd1 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x7fffffff __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x7fffffff __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 0x0b008980 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0c115a55 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0f4ef35e __devm_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 0x0ca713ec __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x7fffffff __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x180a665f bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ffcb0ab bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c1d8f2b bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x355a9138 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x35803d7a __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a03ee39 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x430b29c6 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4e359af2 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x54460477 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5c63631c bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f139417 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6cc4a5d0 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6dd8c847 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6ea13f49 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_gpio_control +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_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7e82b80b btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff 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 0x048752d6 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2294a9b4 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2eca3e4c btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5036d7ba btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5376be4c btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x544f738f btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x59ab493b btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x61b19c91 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67f3d2f8 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x76a7913e btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7d4d8ffd btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_secure_send_result +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 0x14233af4 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4c29939a btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_add_card +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_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x3b0b6869 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x40ddf9d5 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x7fffffff btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x42a7ca15 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5e8ad893 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6f0b0be4 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7fffffff qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7fffffff qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x04404f6f btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7d913aa2 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff 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_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0f17c8f7 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x46a2efec hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x71543cdf h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7fffffff hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x1d3064b9 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x2d0192e2 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x3588cec4 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x389d7e22 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x3ff42aa2 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6836e1a8 mhi_ep_queue_skb +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_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x03667c0b mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0920fbeb mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x11c8823a __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1f588c50 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2484eccb mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x29120d5b mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x35240ef5 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x389853c5 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x39031fe9 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x555e57a0 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x563ddd74 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5e037c17 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5f41ae79 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x64126a12 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x69c802c2 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x72212eac mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7d709012 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff 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_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_prepare_for_power_up +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_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x07b9e5cc moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1bbd9884 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7b3a22ee moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7fffffff __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03351dae clk_rcg_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07935d8b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ae351c4 clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0bb849d9 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ed823f3 clk_alpha_pll_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1d0f06af clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1de81c63 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ea782c8 clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f83275f clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f88365f clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x233e5373 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2bf885e6 clk_rivian_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d293905 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3013e054 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3610a768 qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x38229fba clk_alpha_pll_reset_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3a31ce9e clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3bd39c60 clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3e333ae6 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x420755eb clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x42bca3fb qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45180f77 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45226263 clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x468b22ce clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46eb964b clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4a930432 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x58238da6 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x59eabda5 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c035f38 clk_alpha_pll_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c3e75ee clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64b8755d clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66580ca3 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6b8e2aa0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6d308251 clk_alpha_pll_fixed_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x70156ec0 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x708a435d clk_alpha_pll_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x71b860b8 krait_div2_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7319e51c clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73748d88 qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7b87fe3e clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dfa4f12 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e69e953 clk_alpha_pll_postdiv_trion_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_agera_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_fixed_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_hwfsm_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_rivian_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_zonda_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_lucid_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg2_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_lcc_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_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_regmap_phy_mux_ops +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_mux_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x077bba75 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x09399d39 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x10886e90 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x12acbe67 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1845fcb3 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x293c9528 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4a3a6d72 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x562dc3c7 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x565ed759 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5b73683b comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5eb4771c comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x619f1951 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6ee3d315 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x70c2cd26 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x73846b74 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x73d3814d comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7a05f1e5 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7c8e33f4 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff __comedi_request_region +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_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_dev_get_from_minor +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_event +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_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_request_region +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 0x153ecf59 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x202493e5 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x39753800 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7fffffff comedi_pci_auto_unconfig +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_pci 0x7fffffff comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7fffffff comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4bf50829 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x559d7d79 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_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7fffffff comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x17d70b51 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x106e6b2d amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x7fffffff amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x7fffffff amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x419e49ed comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5cdb7834 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x69fab399 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6bf44b35 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6c8ccae3 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6cd726ed comedi_8254_read +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_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_set_mode +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_8255 0x3b514f7f subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x3df81d9d subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x475efa25 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x7fffffff das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x34917768 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x479f9810 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x492766c9 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x52996130 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x55a2d407 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x663862f8 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 0x01b9bec3 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x08af0092 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0e301c12 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2493a8fe ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x25d45c93 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5e7666f2 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5e9d2dcd ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6be166f3 ni_tio_set_gate_src_raw +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_get_routing +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_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3cbad525 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5d9dde2c ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x738ef20a ni_tio_cmd +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/drivers/ni_tiocmd 0x7fffffff ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x00feed7f comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3b94a39c comedi_find_subdevice_by_type +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_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7fffffff comedi_open +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/crypto/qat/qat_common/intel_qat 0x00215372 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x023c687e adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05346949 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x093e3fd7 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0a2cf5f2 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0a742caa adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1187c293 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x11d820f5 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x16dda1d7 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x19961826 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1a5618cd adf_gen2_dev_config +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 0x3176badd adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x347d5d5f adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3bb1bb71 adf_vf2pf_notify_init +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 0x42dc0920 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4601c5d1 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x497f3df2 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4dbc4298 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4f0a05bc adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x50a94705 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x51091926 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x51366b17 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x520b1fca adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x540bb91b adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55deddb7 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x600af9d5 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60c3d8e5 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x64d5fca7 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x66fe5cdd adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68dc6775 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6915ae02 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x776ae87f adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7a6d5251 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7e7b779b adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen4_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7fffffff 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 0x2a70e3b3 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3064c578 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5073744a dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7fffffff do_dw_dma_enable +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/dw/dw_dmac_core 0x7fffffff idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0bf6ce19 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x41459bff fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x604a4b06 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x73251818 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7b6f0137 fsl_edma_issue_pending +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_cleanup_vchan +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_pause +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_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x72752e45 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x7f7f6610 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x629371c7 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 0x1dbd3905 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x46c7465f mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x07ff8e1a alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x188f1bed dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x25b493eb dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x43bd1bff dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4dd526a9 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x52fceec5 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5ff7b6c9 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x65e4a1a6 dfl_fpga_feature_devs_remove +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_config_ports_vf +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_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_enum_info_free +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_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0624066f fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3298faa4 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x56a1874b fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6a40dd00 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fffffff fpga_bridge_enable +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 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 0x02ce152c fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1b2e25f1 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x20378958 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x21b52237 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x25e9ea2e fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4da3f254 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5370350b fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6577b4d8 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff devm_fpga_mgr_register +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_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4565fe2e fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6550f7c6 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7e7637eb fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7fffffff fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7fffffff fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x037b4fd8 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x08ae3116 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x60a97912 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 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_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_master_register +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 0x7fffffff fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x54f9709f sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x7fffffff sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x18b46cff gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1a5c8661 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x31971696 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4f6d08b7 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7fffffff gnss_deregister_device +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_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7fffffff gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7fffffff gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x2b457fa3 aspeed_gpio_copro_release_gpio +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-idio-16 0x19564f02 idio_16_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x40780f24 idio_16_state_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x7fffffff idio_16_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x7fffffff idio_16_get_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x7fffffff idio_16_set_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x2192931c __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7fffffff __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1f956e5b analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x26c6edf2 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff analogix_dp_bind +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_start_crc +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 0x2da2c4a4 dw_hdmi_bind +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 0x55aa5869 dw_hdmi_set_plugged_cb +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_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_high_tmds_clock_ratio +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 0x7fffffff drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x348c1589 of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7fffffff __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7fffffff devm_of_dp_aux_populate_bus +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_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0f74206f drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x19682edb drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4473a69e drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x49330a59 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5703a29e drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5cf7ede2 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x60920e1f drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x691c219b drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6e9d0cd9 drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75cb3cc7 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_bridge_get_modes +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_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_of_get_data_lanes_count_ep +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 0x7fffffff drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x069e36f4 drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x19d52fe1 drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x1c3e5af3 drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x276c1475 drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x379e511f drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x44af947d drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x456b8c3d drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5b31d7bf drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x213c0e73 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4d20aca5 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x580bea05 drm_gem_fb_create_with_funcs +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_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_get_obj +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 0x0168640e drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x28faf324 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x330b3934 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x679e490a drm_gem_shmem_mmap +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/drm_shmem_helper 0x7fffffff drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f3e01ba 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 0x466f2cff 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_vclk_vic_supported_freq +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 0x67e6716a s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x7fffffff s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x7fffffff pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x26260c3b rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x43c536ca rcar_cmm_enable +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 0x2e9fbdf6 rcar_lvds_pclk_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/rcar-du/rcar_lvds 0x7fffffff rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0x2a7d6a5b rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0x7fffffff rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x1a3a58f1 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x3c0cf94d rockchip_rgb_init +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 0x7e3d5e02 ssd130x_shutdown +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/host1x/host1x 0x042e1b63 host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x745b068e host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x7fffffff host1x_memory_context_alloc +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 0x038b7cac ipu_idmac_get_current_buffer +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 0x06f57117 ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0bfa3839 ipu_get_num +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 0x1161ff01 ipu_prg_channel_configure +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 0x144c1959 __ipu_ic_calc_csc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18730251 ipu_rot_mode_to_degrees +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18aa0dcd ipu_image_convert_abort +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ad9198c ipu_idmac_enable_channel +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 0x1f302673 ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x213ea159 ipu_ic_task_init +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 0x24599b50 ipu_idmac_set_double_buffer +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 0x26609526 ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2913b512 ipu_srm_dp_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2af718e4 ipu_cpmem_skip_odd_chroma_rows +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2c9637be ipu_idmac_channel_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 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 0x35d27d82 ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3673c1dd ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x39a74680 ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e5d27d9 ipu_prg_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 0x3eac22e3 ipu_idmac_put +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 0x48c6a74e ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x492a422d ipu_csi_set_mipi_datatype +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x498b4c7b ipu_image_convert_enum_format +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c40948d ipu_fsu_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4daede1c ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x506a99ab ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x513f5e24 ipu_prg_channel_disable +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 0x54063896 ipu_cpmem_set_fmt +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 0x59c4576a ipu_cpmem_set_burstsize +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 0x5e45d61f ipu_dp_get +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 0x64e18f86 ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x69b8a4da ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6aab55a7 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6aba50d7 ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6c347454 ipu_prg_format_supported +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x722ae2d7 ipu_prg_disable +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 0x7fffffff ipu_cpmem_get_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_buffer +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_high_priority +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_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_rotation +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_uv_offset +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_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_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_ic_calc_csc +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_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 +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_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_select_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_image_convert_prepare +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_module_disable +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_present +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_set_ic_src_mux +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_get +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 0x02aac821 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x04c06b3b __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x11fc99e6 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1338f071 gb_hd_del +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 0x16209f00 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x17913eb0 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1795cec2 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19c8e4e0 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1eddf6c4 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x20183204 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x23d62866 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x23f38d99 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x28c1245d gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a827a07 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2e5aa06d greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x560ebcd2 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5790c346 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5a00c37a gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68fed9e6 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6c96e5a7 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78931394 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bfa420b __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7ed96c9c gb_interface_request_mode_switch +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_add +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_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_put +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_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff greybus_message_sent +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0286f14a hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x06006775 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x06921336 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07105e8a hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0db06575 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0fc50e2f hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11059c44 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1694808b hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x174504e3 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e157b89 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x27cc8f6c hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x29fc5076 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b9e24bf hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c00d8fa hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ca97a26 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2fea8009 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x32c6a2a5 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36c70b81 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ad19bb0 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e01f6be hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4000e822 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x49279daf __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x569c64ef hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x56d283d2 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ba15b8f hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x70530df9 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x71463974 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72e3c52e hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x75a3869d hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x770eb84b hid_input_report +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_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_hw_close +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_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_match_id +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_register_report +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_calc_abs_res +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 0x7fffffff hidraw_disconnect +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 0x58f56121 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x297a1676 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6a5358eb roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x714b9aeb roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fffffff roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fffffff roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fffffff roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0a48d4f6 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3c2b4e5f sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6bd6408a sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x780a32bb sensor_hub_remove_callback +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_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7fffffff sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7fffffff sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x023b3702 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x7fffffff vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x25e33d19 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6227e912 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x74060c66 i2c_hid_core_remove +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/uhid 0x28ead68c uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7fffffff hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7fffffff usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x00b4da3f ssip_slave_running +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x58de4f14 ssip_slave_stop_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x7fffffff 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_start_tx +EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0x7fffffff ssi_waketest +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2d667d47 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2eac1b79 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x62edad3a hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6c619cce hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6e43807e hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7097f805 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x736dc71c hsi_free_msg +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_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_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_register_client_driver +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_unregister_controller +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/nct6775-core 0x2ff494fb nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x4aed0c32 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x4bcde5d9 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 0x4949665c intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4c17ab2f intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x55a9192d intel_th_trace_switch +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_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 0x1ba353dd intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x2b777af1 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7fffffff intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2609f5bf stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2bd990c7 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4d93a135 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4f9ad4bf to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fffffff stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fffffff stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fffffff stm_source_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/i2c/busses/i2c-ccgx-ucsi 0x7fffffff i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1a09e949 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x68751860 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7fffffff i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7fffffff i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1bdd103c i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x5415c5c6 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 0x060f51d9 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x07623c9c i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x076e4578 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0c0f712d i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x189239c3 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x208ea119 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x22a54649 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x23d2ddd9 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4324feb1 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x512dc84f i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x583ddd58 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6ad80055 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6b82035d i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x780a3a22 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_do_daa +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 i3cdev_to_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 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 0x249f6485 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x39c4c743 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x463c4f8e iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x61c4822d iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_block_done +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_exit +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_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x590eaf5b 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 0x7fffffff devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x7fffffff 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 0x7fffffff devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x044bc3f5 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x13626f85 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x35940ca5 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x396b9394 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5e1332c0 cros_ec_motion_send_host_cmd +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_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_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_lpc +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x2f69400a bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3595f0bb bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x74f721a1 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x3285d262 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x04f1a901 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0acc880e iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e081257 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ac86a7a iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1cc932b3 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1de45cdf iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x216bc4ac iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x264a33df devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x266820b8 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3124f533 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x316cea1a iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3543401f iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3645214a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x396dfb60 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40584b22 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x433bbaca iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d5f2986 devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5455a4ce iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54c48cb4 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57a8ce89 devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58ff1060 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x59bf3129 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ba3873a iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5cfaf9fd iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x603c6bc8 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x603d5107 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x606f49a1 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x618cee6a iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6451a340 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x665ea285 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66eeb3e5 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6715670a __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ae40d0b devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_show_mount_matrix +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/infiniband/core/ib_core 0x7fffffff ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x147685a0 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2af0dd41 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4dac5a99 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6337f259 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6bc4dedc rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_cq_qp_create +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_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_stop_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 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 0x18ce73f2 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2808b76b rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3445c788 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3b9ddd5d __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x61ed5c65 rmi_2d_sensor_abs_process +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_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7fffffff cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7fffffff cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7fffffff cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x2b5ba8ef cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7fffffff 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 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_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7fffffff tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0aba6fa8 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x134fb9bb wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1d2ec879 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x596bbd61 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x65a755aa wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6d715734 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70cf4a6e 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_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_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x2baca5c1 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 0x1380a861 of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x2f573302 qcom_icc_bcm_voter_add +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x18634db2 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x1db996cc qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x1fec2db2 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x37050a6c qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x4979dc04 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_aggregate +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 0x448cd974 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x613c3661 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x64b2a8d4 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fffffff 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_put_device +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x098b68f1 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3d07993c devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x54419b8d led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5a439372 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x79995dcd devm_led_classdev_flash_unregister +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-flash 0x7fffffff led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x166898d1 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2b075265 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2b880d69 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x4f1a4d19 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7fffffff devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5b97f3ba lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x71f0ac84 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_init_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_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 0x00d48844 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02661103 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05907c93 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a62aea7 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0be9cd41 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1edc7d9e __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25bbd6d5 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2626142a __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30556300 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x34bad1f1 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x357e1c0e __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3d0953db __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4782f4d8 __traceiter_bcache_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 0x56ca79b8 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58ac933d __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59df1cb8 __traceiter_bcache_request_end +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 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 0x69ad759e __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6be89d3d __traceiter_bcache_bypass_sequential +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 0x7d61c7b4 __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_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_bypass_congested +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_write +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 0x17b6a862 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x199d8cf9 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2b736ed9 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3c98613d dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x74edf057 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x79e6da0e dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7c16a120 dm_cell_release +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_alloc_cell_v2 +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_promote_v2 +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_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_cell_unlock_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 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x68e4efc8 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 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x76e24f0e dm_cache_policy_unregister +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 0x7fffffff 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 0x044a6de3 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x17365869 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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_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_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 0x5d55cac5 dm_block_manager_create +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_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 0x03cb2990 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2276b454 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x330c9c08 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3a6466e8 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3ab8f2fe cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x49bcaf40 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5587af90 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x673aae68 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7e493d60 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_delete_adapter +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_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_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_s_log_addrs +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/siano/smsmdtv 0x1895c460 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2e0ba73c smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4bd41219 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x59d81c5e smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5b83d7a1 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5bc24769 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x65641038 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6f24e229 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74cb40f3 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 0x7fffffff sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff sms_get_board +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_onresponse +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 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4a738cc1 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7e83543f tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_alloc +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_fill_plane_buffer +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_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_log_status +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_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0735be56 vb2_read +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 0x0960423e __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24ea9e80 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x321b23e4 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3257502f vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x33f28d03 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x41bb4c4c vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x43257b11 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b870a16 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x58239cdf 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 0x62df59d3 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6d6cc4eb vb2_core_prepare_buf +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_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __traceiter_vb2_dqbuf +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_create_bufs +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_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_plane_cookie +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-common 0x7fffffff vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x0bde1347 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x7fffffff vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x4f46c103 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x0bd71ba9 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01006ac8 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0402abcd vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x093bacee vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x13d47e70 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x15294812 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1886b1f3 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d5b8b9c vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x23ed14c6 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x305daa56 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3ca366f6 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3f92a513 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x475e62fe vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x50169b9e vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x57c50a91 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5bf950b3 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x62baf4f0 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64b0d0d6 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x665991b1 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x685be4cd vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6ea12d07 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x72e732dc vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7ca25abf vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_expbuf +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_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_expbuf +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_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_prepare_buf +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_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x7fffffff vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x106d39db dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x43d0d82e dvb_module_release +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 0x75ac5721 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x5f0b64d2 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x65781723 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x71e1a2ca stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x7fffffff tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x11b8528d aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x7fffffff ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2cc6c002 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2f925f1f max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3be51f71 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x451838e6 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4caa6eeb max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x51602f02 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x64a0ebaa max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6aabfb79 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_configure_gmsl_link +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_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0b909fc5 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x102507e5 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x16f30606 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x194bbb54 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x19c2defe media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1aec7acc media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20a47832 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2980900a __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2f0d034e media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3107b77d media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3523cbe1 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3805ec33 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3dcd2600 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3fe6b992 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x40aac905 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x422ca6e9 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x46b36547 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4ddc5ff5 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x59560e99 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5aa2607d media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5fa8b87c media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60899c4e __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6b93bb66 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d9b045e media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f282208 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7216304c media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7232c5de media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x751d61f4 media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7889a7e2 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7c894b72 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_pipeline_start +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_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_devnode_remove +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_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_pipeline_alloc_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_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_request_put +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1a2e31d5 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x23f9f394 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x387447f0 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x46830c22 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4c7a2212 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4f0f3c85 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x546c544c mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5e856e3a mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x70542705 mantis_uart_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_dvb_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_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_pci_init +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 0x07836f0f saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x16010087 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3b476600 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x48c78d11 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4c935b37 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5207e6b5 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x52143ca4 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x79e1e173 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_qops +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/saa7134/saa7134 0x7fffffff saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x05175fc5 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x1434da30 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x53713e91 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x5ec1cdcf mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x66509153 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x18bc138f vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x1947cc53 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x294b0f9b vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x34226975 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x50eacee0 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_mapping_dm_addr +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 0x00e0708a vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x1e7432e3 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x31c5c6c3 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x79bfb7fa vsp1_du_atomic_flush +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_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7fffffff vsp1_du_map_sg +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 0x15df20f6 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x18ee6979 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4361c607 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 0x667b6178 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x68067cbd xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff xvip_cleanup_resources +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_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-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 0x7fffffff 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 0x0a9a86a1 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3f180420 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x65b4d066 si470x_start +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_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x02a0ccf7 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1a01b1e5 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2514d0da lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28af3c3f rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x31c970aa rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x347f5845 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x57742b4c devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7145a2d3 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x774734d5 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7bf263d7 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff ir_raw_event_store_with_timeout +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_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/tuners/mt2063 0x471b3854 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x0fca326a microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x7fffffff mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x20e8d90c r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x4bd01ac6 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x7fffffff tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x639b6412 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7fffffff tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x7fffffff tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x0a2e2cb0 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7fffffff tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7fffffff 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 0x0d29e6fb cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34a4e819 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x364bf65f cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b1bb479 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6652da9c cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6c72db18 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x711f633e cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7bd9228c cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_dev_uninit +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_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x549e57ac mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x7cef551a mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x195047cc em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x23436956 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x33feb34e em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3cff5551 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4007bf2c em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x49b74b02 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x50c6b5be em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x549d2520 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x69643b56 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6cb2d1e1 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x71c94b73 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 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_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x1ba1309b __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2b3ff149 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x6325905e __v4l2_async_nf_add_subdev +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_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 0x1b4af4a6 v4l2_hdmi_rx_colorimetry +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_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 0x1262b980 v4l2_flash_release +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_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0444385b v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1581f90d v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1e80ebbc v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x279e8848 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4a7ed3cd v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7192238c v4l2_fwnode_put_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_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 0x0c26d389 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d535827 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e9fba8f v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0ecf8e63 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f4d0ec5 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x12c7a8be v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x131b107a v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15bf87df v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ccbeab5 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e097de1 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x23a806d0 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x245bc281 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x283ffad5 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28bb9d59 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a4123e7 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3102ccca v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x336d7524 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x465f2cdb v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47f24f29 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x481405a6 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x491a1ad8 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x497668f4 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4af2c31e v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x53cc4660 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6019b176 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x667a70d6 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6990537c v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6aaf7136 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x706d47c8 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x799c2011 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d32e4a3 v4l2_m2m_last_buf +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_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_create_bufs +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_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_try_encoder_cmd +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_request_queue +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_unregister_media_controller +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 0x1d390c28 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2e8ba5ce videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x395ceb45 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x39e233e6 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3b6794bf videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x45e0c253 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e68b290 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4fb7b881 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x544e63d0 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5977958c __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6eeb08db videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x777de000 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_mmap_mapper +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_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1ab1ba9c videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5c1f5ac5 videobuf_to_dma +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_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 0x6aae9f87 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7fffffff videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7fffffff videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x019f7c8d v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x023c475e v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x067563b5 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ea881a4 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1268e8a0 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14451ba9 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1eaa2f75 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2009d110 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21233b75 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26ed9a39 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed9acd3 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3cfc3ce7 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3e3588e1 __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fe47f05 video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42f676eb v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x455a4179 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45befcb0 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47dbf042 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4bc55792 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54a3ac2c v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5aaafeb9 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d2b163f v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62cc685b v4l2_get_link_freq +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 0x67dbee2b v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cb82766 v4l2_src_change_event_subdev_subscribe +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 0x7136210b video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74513ae9 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7728a32a v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a9b455f v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ae64010 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7eaf8476 v4l2_i2c_new_subdev +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_ctrl_handler_setup +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_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __video_device_pipeline_start +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 +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_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_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fh_exit +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_fh_release +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_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_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_mc_create_media_graph +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_simplify_fraction +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_spi_subdev_init +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 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff video_device_pipeline_stop +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 0x571b27a9 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x60e35848 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7fffffff pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7fffffff pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x05442bf4 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x185bf41f cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1a017b61 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1bf13e48 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1edb1a43 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x467ceab8 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x54f40ee4 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5cabc658 cs47l24_patch +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_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7fffffff atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7fffffff atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x23fa86a1 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3172f4ac da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x58d29d2a da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7a35dcfc da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_bulk_read +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/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 0x317287de kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x36d1d112 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x434d5ece kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x71d86c8b kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7fffffff kempld_get_mutex +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 0x24ec4b6f 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 0x047d453e 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_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7fffffff lm3533_ctrlbank_set_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 0x7bc4cc32 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 0x06430049 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x08c3bcc6 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x08ce6086 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1016cb76 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x101b1736 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1ae124f1 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2264500e cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x22698c4e cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3f42a73b cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3f4f7b7b cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x47c93427 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4bf6a1ca cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4bfb7d8a cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5323d67a cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x532e0a3a cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x61514d02 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x615c9142 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7c77ba37 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7c7a6677 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 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l85_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/madera 0x7fffffff madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x341bcb66 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4b272d44 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x66ae752e mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x74a18046 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7772b212 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0x7fffffff cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x189fdd85 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2d4a3f63 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x330975d9 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x34afa187 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3f5d00d1 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x404e7fa2 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x55f4daa1 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5db56bf1 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2c9e22e9 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2dae1be2 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x35a755de pcf50633_gpio_invert_get +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_power_supply_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 0x0517670f si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x056e4de0 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x096f6c06 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x182dbaea si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x19c62874 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24712a0f si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36742fad si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3776b77f si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x46029e51 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48f08925 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x52b38b5d si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x582dd4cb si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67fb6772 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ada6398 si476x_core_cmd_intb_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_agc_status +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_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_am_tune_freq +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_dig_audio_pin_cfg +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_seek_start +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_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_is_a_secondary_tuner +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_stop +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x7fffffff ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x7fffffff ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x513e0cd3 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x7fffffff stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x00aa9cf7 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x72f31de2 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7fffffff am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7fffffff am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x46ad2d1e tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7fffffff tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7fffffff tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x7e18fab3 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x64e4af28 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x788ca3fa alcor_write32be +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_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0ef3dcac rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x17c57b55 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1a7316a8 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1d844705 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1f029744 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x21911534 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x229e5d94 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x448a9464 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x48935c3b rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4d631769 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6f4798cd rtsx_pci_read_ppbuf +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_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_dma_unmap_sg +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_send_cmd_no_wait +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_pci 0x7fffffff rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x18dec975 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1e48a866 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2bb46ea5 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2e226a34 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x46a8d3d1 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5a947d51 rtsx_usb_read_register +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_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_read_ppbuf +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_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0bad8917 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x77896122 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 0x0e8e9d22 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x26534e2f enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6c7eea3e enclosure_unregister +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_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fffffff enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fffffff enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0e60c668 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2f368acc lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6b914261 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7231b968 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7fffffff lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7fffffff lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7fffffff lis3lv02d_poweron +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 0x0342e0ca st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x406a74a1 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x7fffffff uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x7fffffff uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x7fffffff uacce_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x577c63e6 dw_mci_pltfm_register +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_remove +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 0x1fa13156 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x280bd185 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3a1e8e9d tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x46459c03 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x60ad2e0d tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x6b45cc35 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_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/most/most_core 0x01183291 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0af335b3 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0cdb5b31 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x18ea4131 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1c8b9947 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x721b1be1 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_deregister_component +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_register_configfs_subsys +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/mtd/chips/cfi_cmdset_0001 0x00923dfd cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3fbb1815 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7fffffff cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1f06af09 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x6154e4d9 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7fffffff cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x7fffffff cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1c95b148 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 0x5f30c8cb hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x7fffffff hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x7fffffff onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x7fffffff onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x35997050 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x7626d100 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x7fffffff brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x34327863 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 0x30b736f3 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x516fbc3d spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x14d458a9 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2ac88c28 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x41a248af ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x44fc7756 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x50bdb342 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x576d5a30 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6c08729f ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x76335d4f ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7d30508d ubi_leb_read_sg +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_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_leb_write +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 0x0704d1ed devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x09e2ab33 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x18a140fe mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x252aa574 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x26ff38c9 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3d4cc320 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +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_state_get +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_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x38a738e6 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x447bb523 arcnet_led_event +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 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7fffffff free_c_can_dev +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 0x21d74b98 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x292ec167 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7d07bda5 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7fffffff free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x00f8ce7c of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x01829d72 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x225bf30f can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x345881fe close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3a6da9b3 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3ef9b9b2 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x44b6d673 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45612e9b can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x47d41dcd can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4b59c8ea can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4e0ee820 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4e3faaae alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x536935a0 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 0x76594421 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7ff6567d can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff alloc_candev_mqs +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_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_get_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_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_irq_finish +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_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_threaded_irq_finish +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 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0041f0b2 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1316e249 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x178bef73 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x29f75f78 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x35582609 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3b4b89d9 m_can_class_resume +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_suspend +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x107e0d04 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x57ae0a50 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7fffffff free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7fffffff register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x103d7fea lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x7fffffff ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x7fffffff rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x057bd725 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x07787572 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1d169608 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3a27790f rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4a19cb58 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_set_pvid +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/dsa/realtek/rtl8366 0x7fffffff rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x4c039eeb ax_NS8390_reinit +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x1b10cb92 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 0x526f654c enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x6afe3359 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/fungible/funcore/funcore 0x2dd81f72 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x3a7d0024 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x54593737 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5c1db363 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x68582f13 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6d186e30 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x71629e09 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x79a6d706 fun_cq_create +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_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x378d874e i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x7fffffff i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1ab6676a ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2c4104f9 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/mellanox/mlx4/mlx4_core 0x0166032c mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x023655a4 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x043bddb7 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0609a4a3 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b3202fd mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10ef1864 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1110bccb __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x117751b1 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x124291e4 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12a8b3ae mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15d1b9b5 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19773434 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a1e332d mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b07414d mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fa508d2 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23644419 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27c56d5b mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2888b8b5 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2caa68d5 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cd8185b mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cec04cc mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x302d8a27 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32a7cc28 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33298a29 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34309e79 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36e7e527 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a825c63 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x400ccb2f mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41bfc51e mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43613380 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44cf5d5c mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x454d8da1 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b9a7fce mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5084d072 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54f8e4c7 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5aaa2ccf mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c0c0d69 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c8384e7 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d4e55a6 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d7ab701 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6200e84d mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x679aa060 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c6d62bc mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ca92ade mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d080131 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6df41567 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x792cd98e mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79c08197 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7af63809 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bcf9d01 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c1ac417 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c6cb8c9 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e050ecd mlx4_INIT_PORT +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_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_ACCESS_PTYS_REG +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_bf_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_buf_write_mtt +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_counter_free +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_modify +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_free +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_free_cmd_mailbox +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_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_base_gid_ix +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_counter_stats +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_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_enable +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_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mtt_init +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_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_alloc +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_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_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_qp_remove +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_read_clock +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_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_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_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_unicast_detach +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_unregister_interface +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_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dcabd47 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0efff396 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12ac66d9 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15efd80a mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x160fd5a3 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17b43807 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x221de7be mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2287c38d mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a94e0ee mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e339896 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f319c0c mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35360ac3 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x397ebc8e mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a8f8e23 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d3e8ee8 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ef145ee mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4075a782 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43218a04 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x433ea05f mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43d33062 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x454a9880 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d1b793c mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e38ba97 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5189fece mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53d0eb63 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56e13b94 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x578e8c8d mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59d4cd32 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a045737 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a6c3372 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x624ed0ae mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6543a9d6 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65d704e5 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x673db164 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x678a7397 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f31f3e6 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7221baf4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7568a9fa mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a439c54 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cf5054b mlx5_set_port_admin_status +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_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_frag_buf_free +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_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_enable_roce +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 +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_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_nic_vport_mac_address +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_port_admin_status +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_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_prio_tc +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_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_set_port_caps +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_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/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x3d02dd9a ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x44143ea5 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/microchip/encx24j600-regmap 0x1a5f76f3 devm_regmap_init_encx24j600 +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/mscc/mscc_ocelot_switch_lib 0x1a1f1d24 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29af6bd4 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c133ce6 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c3f0ee7 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f06a45b __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x378cb5e2 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a1a6c02 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ba2af20 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46de846d ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48ee6123 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x494c9d4b ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c22b8a6 ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fe39951 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x510a038a ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5341d86c ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a7afa63 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5aa5fddb ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6006fcb8 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x670e5524 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c29bd09 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x776df004 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f4d9fec ocelot_bond_get_id +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_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_lag_fdb_add +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_mact_flush +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_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_teardown_dsa_8021q_cpu +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_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 0x04b9f329 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3db6f5d6 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x50073bd3 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 0x678490b6 stmmac_dvr_probe +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_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7fffffff stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x094597c1 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3a8165a1 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3c69bd1d stmmac_probe_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_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2f5edff5 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x54fc6901 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7fffffff w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7fffffff w5100_probe +EXPORT_SYMBOL_GPL drivers/net/geneve 0x553250ea geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5e2bd1f6 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 0x039b189a macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x232fe152 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3787db6d macvlan_common_setup +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 0x4b706b42 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit +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-altera-tse 0x1785d513 alt_tse_pcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x26a18cba xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x52c8a8fb xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x56265fad xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x069e68e6 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x091cef15 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x345c95b7 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3c16af84 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x40d5b273 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x469b9f66 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c8a9c86 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x548acb89 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b6f1900 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x66595fa8 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x67255d7b __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x70a15b02 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x715b28b9 __bcm_phy_write_exp +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 bcm54xx_auxctl_read +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_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_downshift_get +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_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_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_shadow +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_misc +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_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x7fffffff bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x7fffffff bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x7fffffff bcm_ptp_stop +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 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3dc1f7f9 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3f3a174a phylink_ethtool_ksettings_get +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 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x64a1a5ce phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x66e8b5b0 phylink_caps_to_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6ae8575b phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x739273a6 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7c1563db phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_create +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_capabilities +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_an_restart +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_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_of_phy_connect +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/phy/phylink 0x7fffffff phylink_validate_mask_caps +EXPORT_SYMBOL_GPL drivers/net/tap 0x061ef745 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x3b26aa2f tap_queue_resize +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_destroy_cdev +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 0x016fe4d5 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0210b15b usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5a818612 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x66e517d9 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7f7dd9ea usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7fffffff usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7fffffff usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2b7eb322 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x76cd7f87 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_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_rx_verify_nth32 +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/r8152 0x7fffffff rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x02f9c424 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2cbd66ef rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6869283b generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fffffff rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fffffff rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fffffff rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x062e209e usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x081e7817 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0bdb849c usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1514f6ff usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17ab2a9c usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17d41931 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1d7fa8fc usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2cc84534 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d76c4f8 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x33636457 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3521b80e usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x394830f7 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f1d67cb usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x454fd37a usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c0472c3 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6405c31d usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ff10a2d usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74341e97 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7867592f usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x78a78f39 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_set_msglevel +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_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x2de23ba8 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4256b4a5 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6fb58818 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7fffffff vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x1c390707 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c07e8fd il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cc4fb54 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_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 0x067c4677 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0b45b3a4 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4503b43f p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5b564dcc p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x64446d7d p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6c1292cc p54_free_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_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x273e73a5 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x33288009 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3b145de3 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4eb8a51e lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x62bcfeaf __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x75dd5200 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x776df4e6 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x78e7ef88 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7e144bbc lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_cmd_copyback +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_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7396aea7 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7e7fd4e0 lbtf_add_card +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_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_cmd_copyback +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_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 0x0130f442 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x025bc197 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1c9c59eb mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x20ab8833 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x299b0ef9 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x33c6cfec mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3e3def93 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f51eda7 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x453341a9 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x583109f5 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x64107a64 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6904568f mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7408a464 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_add_virtual_intf +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_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_handle_rx_packet +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_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x049d71a5 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09e1e05c mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1afd2b66 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d78d77e mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x212af182 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2621457e mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x275ed7a2 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29d78778 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d8faa9b __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2de51974 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x304a44c0 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x321d1cd1 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3977392a __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b408607 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 0x467efcb2 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4797361d mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b2ee34d __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d6f0db6 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e49cee6 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x53a8bf0b mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x53df9739 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x574bf55e __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58eb4e0f mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5908e0ec mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b31d2e2 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5baa791e __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fa7f7b1 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fbb3190 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fc27021 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x602b0b08 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65dfc813 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65fd1b95 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e052ea5 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e592ed1 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x740d1450 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x747e500c mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74ecde26 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77f17bac mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a073544 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7bc14cef mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e7e9c2a mt76_sw_scan +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_sta_remove +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_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_get_rate +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_init_queue +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_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_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_register_device +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_start +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_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_rx_token_release +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_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_worker_run +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 +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_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04dd8159 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10d3e662 mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1298a1ae mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x12d2e9c3 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x15b218e1 mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x162bd191 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1cf9ad68 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x21f7ed2a mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25c4529b mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26ef6327 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2b4d3d0c mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2ddc7163 mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e897d75 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2ff424f3 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2ffdbf7b mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x32b7c7b2 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3a733936 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3a90d116 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3a9ab5dc mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c6e6474 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3e91da84 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45713ee5 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45f83398 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4880a3ff mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c97ea2b mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5288a8e6 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x53c5b611 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5942eb16 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x720c01cf __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72c8b70a mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76311c8c mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76b45a7e mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76bf731e mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7aead6db mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac2_mac_fill_txs +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_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac2_reverse_frag0_hdr_trans +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_init_tx_queues +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_alloc_wtbl_req +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_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_coredump_event +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_reg_rr +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_restart +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_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_rts_thresh +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_cmd +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_start_firmware +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_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_wtbl_generic_tlv +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_mcu_wtbl_smps_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_pm_wake +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_tx_complete_skb +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 0x0124b14f mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x100700bd mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1ddfaac6 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1e1cffe5 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x55e0a997 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x666e8f11 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x69b0c8d1 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_deinit +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_rmw +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_txqs_empty +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 0x0a425aa2 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x36e89d62 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5832c8ff mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x618292ab __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7353b160 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x73d6c67f ___mt76u_wr +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_alloc_mcu_queue +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_resume_rx +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/mt76-usb 0x7fffffff mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x07586576 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1e632c5f mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x281bff4c __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x31c993fa mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x37cd06b2 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4319b053 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x487b6cb6 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4e7e0e8b mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x58c9314f mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5dd19d70 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6934cab2 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7e3587c1 mt7615_init_device +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_enable_rtscts +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_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_fill_msg +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_register_ext_phy +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_tx_token_put +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/mt7615e 0x7fffffff mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x05b5f1b2 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 0x323e9e1a mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x68e08074 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/mt76x0/mt76x0-common 0x0927f070 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x119d6bc7 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1adbaa71 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4b000c15 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5e38fb4f mt76x0_init_hardware +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_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0299f85c mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x04561beb mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0795ac27 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d00b19d mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13a1258c mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x15d8903d mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19deb7da mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1df98620 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ec324b0 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x234348cd mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x250273c9 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2a467e94 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d24f7cb mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34de31d4 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x36d041d4 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x376a3cb8 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3bb61a70 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3be8e6af mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d522efe mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e93f6e3 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4517fbd3 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4dd2f5aa mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e5ba3f2 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4ece7de3 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x578d71ef mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59be9f49 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x618a27c0 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64827f7c mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66c6a775 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69a42cb0 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69ea6c59 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6be14fcb mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72b15ddf mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74a607c9 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x758b8851 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x76e7dcfb mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c7b6e5f mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7e7d4043 mt76x02_eeprom_parse_hw_cap +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_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_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_enqueue_buffered_bc +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_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_init_agc_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_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_limit_rate_power +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_start +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_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_phy_adjust_vga_gain +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_bw +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_queue_rx_skb +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_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_set_rts_threshold +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_remove +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 0x248dfe3e mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4fe3d0f4 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5a165744 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6d5f1172 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7317ca6a mt76x02u_mac_start +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_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x03407ced mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1282d657 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x17f2357f mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x300190ba mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x30b4b5be mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x31ff7447 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x432a7120 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x63b5eb55 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x64a64405 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6d723b5f mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6fb6fd63 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7da9624d mt76x2_mcu_load_cr +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_apply_gain_adj +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_get_temp_comp +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/mt7921/mt7921-common 0x3ee183f2 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x423020be mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x52428633 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x55d5a3fd mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6658e678 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x66eaaa54 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7c95aab8 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_check_offload_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mac_init +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_poll +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_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mcu_set_eeprom +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_rx_check +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_txwi_free +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 0x3b09371a host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x57dcb4c2 chip_wakeup +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 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fffffff wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fffffff wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x26018e98 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2875980d qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x60925208 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x648d8989 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7fffffff qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7fffffff qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0381028b rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0510153a rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0bbab273 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x15061774 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x174c9b60 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x17947836 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1dc2632a rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x201410a7 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x27b2ea5e rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b42e9c6 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x313aa221 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43ebdeea rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4983bce2 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56ffd80d rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61472633 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64ed840c rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6d9a3187 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7359e846 rt2800_get_txwi_rxwi_size +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_pairwise_key +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_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_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_enable_radio +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_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_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_probe_hw +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_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1cd6ae6d 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 0x394fc4fb rt2800mmio_toggle_irq +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 0x54242ac0 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5ef46013 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6687a0cd rt2800mmio_kick_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_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_get_dma_done +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_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_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_stop_queue +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 0x001e13b7 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x075b454e rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0d921a39 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e73c8b2 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x144e8a89 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x14a4bd60 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x19df4196 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a08deda rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b09282c rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1fbc868e rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21040abc rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x215e2a69 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24b082a7 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c4cdf7e rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3d53a9b6 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x44bd6799 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x480699dd rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f22ea84 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x547d7a17 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5772e3be rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58937acf rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f26a74c rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60657bdf rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62a8938a rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6fdd490e rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75304c43 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a6e542f rt2x00queue_map_txskb +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_rxdone +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 rt2x00lib_txdone_noinfo +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_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_get_ringparam +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_sw_scan_start +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_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 0x1cb4c959 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x23f27267 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x42a6be5e rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6a9cc74b rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7fffffff rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x1047373e rt2x00pci_remove +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/rt2x00usb 0x15ea55f6 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x173c8d4b rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2cd5c3c9 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x35aa57dc rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3cfa09cd rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x445bbd8e rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x51815e30 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5c4459cb rt2x00usb_regbusy_read +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_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_vendor_request +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 0x3ac4b3bc dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x648e0ab1 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 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d0bbf11 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0e2793d6 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1cef094c rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1e287955 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32ebbdba rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c8a12e9 rtl8723_phy_rf_serial_write +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 0x40dca6da rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4eb4ac3b rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x52b44b69 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5352e58b rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x584797e3 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59a52755 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x67855ca2 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75f4e639 rtl8723_write_fw +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_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_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_reload_adda_registers +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_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 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0081711e rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1829c893 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27399ef1 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 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 0x303c18ff read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x333dcf27 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36eb0ce8 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3993bc0e rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46ef6252 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49f48dee rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d1dcbe7 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62d4d755 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x687f7a64 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7087c553 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x738cacec rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76a71f3e rtl_get_hal_edca_param +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_deferred_work +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_get_hwinfo +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_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_recognize_peer +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/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x29f452b5 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x30ce71b5 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x342ac2dd rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x49f7b71c 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_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x374b1139 cw1200_core_probe +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_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7fffffff cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x22641758 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3b763eec wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7fffffff wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x040cce1f wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11d287a6 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b598eb6 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20f7853e wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2265477e wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27ea35a4 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3567f829 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44acefb4 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4738abc6 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c01b2bc wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x577e9188 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6071f3e2 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x647d0f74 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65b6c1bb wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6602cc35 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b723004 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6bcd3072 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74d97b18 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x752234c5 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75dcb695 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7690a6ea wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x793679dc wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79b2f84c wlcore_event_max_tx_failure +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_send +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_flush +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_alloc_hw +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_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_beacon_loss +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_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_event_rssi_trigger +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_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/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1ad12558 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x327e01d5 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/pn533/pn533 0x00aeee6c pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2f422d24 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5072df69 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6c7aa681 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/pn533/pn533 0x7fffffff pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x15d20b7f st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3c570b07 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6f6e6606 st_nci_remove +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_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_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x122b767d st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x67c1aeca st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7fffffff 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 0x1b4f47d5 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 0x7e6a4abc 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 +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/common/nvme-common 0x1f0da484 nvme_auth_augmented_challenge +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x37a166fe nvme_auth_extract_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6f6c90f9 nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_dhgroup_kpp +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_dhgroup_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_free_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_generate_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_hmac_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_transform_key +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c08595c nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0d51fb64 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f0fa852 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f55f05c nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f6c9085 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x117bc7e0 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x145e81cf nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15116c72 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27098edd nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27a62e40 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a5bc69a nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b3bc56e nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30980a66 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x37173089 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x436d6ca5 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4739cdd4 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b3e14f7 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f260f71 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50d1e4cc nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5612eaba nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x59c02549 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b12d27d __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d4b933a nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x717ff194 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x730d6c6f nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7459b1b2 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x74b7f8d9 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x77adba94 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff __nvme_submit_sync_cmd +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_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_auth_init_ctrl +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_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_reset_ctrl +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_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_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0b2fae66 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0ff0b564 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x14c788e3 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2d562198 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x37807fb8 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x41c4a800 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x50b6bd05 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x674131f8 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7311d484 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x763ae5a0 nvmf_reg_read32 +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 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 0x78056a40 nvme_fc_register_localport +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 0x1a53ceb8 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1e9ba1aa nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4921269d nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4fe3e6dd nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x584a48d7 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_req_free_sgls +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 0x7fffffff nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_unregister_transport +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 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_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fffffff nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x1deeab8f switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0885418b tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x133d7332 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x19bbb7a8 tegra_phy_xusb_utmi_pad_power_down +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2464dd20 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x31968513 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3cc14ce7 tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3cd4e566 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5e3b71a8 tegra_xusb_padctl_enable_phy_sleepwalk +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_pad_power_on +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_disable_phy_wake +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_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x68a722aa omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x7a675623 omap_control_pcie_pcs +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 0x37e90ac7 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5eee5ddc mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x6e95f933 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x09c618e3 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x4a8364a5 lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x02f3934a 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 0x2f4faa0b reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x65d35eab reboot_mode_unregister +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/supply/bq27xxx_battery 0x5c184671 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7fffffff bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7fffffff bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x6d3bb15e pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7c2dd646 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7fffffff pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x23b5c108 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x29486685 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4670e1b8 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff extts_clean_up +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/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x18585719 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x41fa6080 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7fffffff mc13xxx_fixed_regulator_set_voltage +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 0x06b77533 rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3994bc54 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4ece9ab9 wm8350_register_regulator +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/wm8350-regulator 0x7fffffff wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x4c48a8de wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x128db608 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x4182c332 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x48c8b364 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x65a6a595 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6993197b scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x797a316a scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7a99e921 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x39dd7df0 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x6efe77d2 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x74b8c25d scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7b017a9c scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7fffffff scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x119d9d8e qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x2d9e71b7 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x2fefd279 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x5999050d qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x763da956 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_register_dump_segments +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 0x1e2a6c53 qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2ac172a0 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x34d50161 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x4af15cbe qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7ff4de42 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fffffff qcom_q6v5_panic +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 0x65b5c07e 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 0x5220c718 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 0x325f39e3 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x028f3d61 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04160bc4 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x150cd79c cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x195a65c3 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a83a4fc cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b1a0805 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25b5e606 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c9497a8 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40739c37 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40e9ff33 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4384dfed cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47519b88 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48952ebb cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ed0d24d cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54b4f2ef cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55872291 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5de20f0a cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ec4a155 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7082ef4e cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x737e1d67 cxgbi_hbas_remove +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_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_tx_open +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 +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_device_register +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_get_host_param +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_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_established +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_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x48428684 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ac5d03b fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e31c63f fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6b987305 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6c73abd3 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x70f7610e fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_device_delete +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_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_fcf_device_delete +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_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_queue_timer +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 0x7fffffff fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x7fffffff fdomain_destroy +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_host_kset +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_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 0x7fffffff fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x030150ca iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bc6191c iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10a9883c iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x157fdb5b iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2159b0de iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2212e27e iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x266a7911 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b0d8ab5 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c78f10a iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2daff88a iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x312d0db2 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a56c842 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dd0259b iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40b97243 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45fe6662 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49a1f97a iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55e572b9 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ce31ed3 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5de6275b iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ecf6211 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x617b0f61 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x635a3d80 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63ca1100 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d75901f iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x707a4bc6 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77958bcf iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7db0bddb iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_failure +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_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_teardown +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_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_session_free +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_suspend_queue +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_tcp 0x01c369db iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04c243be iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0c0d52c6 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d2fd897 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x24c37335 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5e942d37 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x61a84559 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6b71fb59 iscsi_tcp_conn_get_stats +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_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_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x089b1f18 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0a7e86cf smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0fd2512c sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x139d5f31 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x144ba550 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x148e17b2 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e7fe625 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3045aee7 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x337bae0c sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36d31940 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3bb37538 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e0f7d8d sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5d8ff0d9 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e909073 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5f0ca6f8 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6380cb8b sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6d326ed9 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x780befab sas_execute_internal_abort_dev +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_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_ata_schedule_reset +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_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_notify_phy_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_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x7fffffff fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x023e14b9 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x028b6f61 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02f1dd98 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07810c2d __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0929b53b iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0971698b __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c413486 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0fea7651 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12d1e9bf iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18ee9929 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x197254c2 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26cbffac iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2729c3c1 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x298497ad iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x412a9016 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d14ca3d iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fddea50 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x507e1861 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55e700a2 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58d2022f __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x611f9339 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 0x69f2441d iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74f0a04b iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bd400ba iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bdf56a9 iscsi_offload_mesg +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_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_alloc_conn +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_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_create_endpoint +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_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_destroy_flashnode_sess +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_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_free_session +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_speed_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_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1c274908 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x34cb6b98 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x71734907 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x76bb3849 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0e8a9f51 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 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 0x1c482c3f srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2de8fd71 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4677b94c srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7cbb7cc7 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7fffffff srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7fffffff srp_rport_del +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x199f87c1 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x340fa0b3 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6418463c siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7fffffff __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7fffffff siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7fffffff siox_master_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0dc41047 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x10ecf795 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x13d47bc7 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1bf5db3a slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1f540479 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x23bc9706 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x23c48b94 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x24074a0e slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x255ebf18 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x26c4f075 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x29121f3b slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3a0a4fde slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x48600013 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4d404fd0 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5564f3b8 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x558578de slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x597634ca slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_unregister_controller +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 0x0ea15c1c gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x28f3fce8 gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x35d26df3 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff __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 gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff gpr_send_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 0x11038eab qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x45e1cd7c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x66ed3ca7 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x7fffffff qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x7fffffff qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1875d7b2 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x68102924 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bus_type +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x6ec05ce2 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x7fffffff altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1cf00487 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x248d70a6 spi_bitbang_start +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_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7fffffff spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x51211cc2 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x5c08cdd8 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7fffffff spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x010341e2 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x09642458 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0c2f2f95 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x18ad2d51 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x211d3d9c spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x26dc1410 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41bda929 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4a8c0284 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x648e8622 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x70d732cc spmi_ext_register_readl +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_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x23f2c615 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5db1dcca anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6981d07f 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_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_send_ext +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_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 0x6bd4ec3e fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7e310511 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7fffffff fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7fffffff fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x05db685c gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3daef77e gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5427e65d gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x56fcfbd0 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x67bcaefc gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7156db7c gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7d97a838 gb_audio_apbridgea_shutdown_rx +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_set_config +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_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x20b15c78 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2b95435e gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x335aa53b gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x453a5c17 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x45f6f22d gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4bbbb937 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7f5c38a7 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7f90969d 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_control +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-gb 0x7fffffff gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x688fadf7 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 0x6777e873 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x7fffffff gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x7fffffff 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 0x01b601ff imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x110ebbae imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1661a74e imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x25190028 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x327ba8a6 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x38f74144 imx_media_pipeline_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 0x534ba9e1 imx_media_find_mbus_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x56139a89 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5f865d2d imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x655c4e31 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x694b582d imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x69c8a017 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x752b55c7 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x79972aa5 imx_media_find_subdev_by_fwnode +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_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_capture_device_unregister +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_dev_notifier_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_free_dma_buf +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_cfg +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_set_stream +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 0x00740c50 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x279f51e3 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3ed425c6 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x414d9b9c amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4290168e amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x42a15481 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 0x605d2b45 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6ea5f0de amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x700a6d2c amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_clear_dos_bits +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_get_output_size +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_remove_ts +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_src_change +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/media/meson/vdec/meson-vdec 0x7fffffff codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x76ae593d nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7fffffff nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7fffffff nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x24cf02c0 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4dea228b target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x55e5c09b target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x6c59c159 target_queue_submission +EXPORT_SYMBOL_GPL drivers/tee/tee 0x002fcb83 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x04598512 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0d7b89d6 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x35c9103c tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3ac80930 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4cb6eb05 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x524c84cf tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x65d81854 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x67a8d00a tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x704da4f2 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x71e8d2a3 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_device_unregister +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_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_shm_free +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_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff teedev_open +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x019e6df1 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0a76a84c tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x19cc573b tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1fc08f17 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21a31526 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2c087c86 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2ec2be1a tb_xdomain_lane_bonding_disable +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 0x43bb6f9f tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x46427c7a tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4c649977 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x50bd1e6f tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x57b001aa tb_ring_poll +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 0x67fe73a1 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x692a781b __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ceee74b tb_property_remove +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_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_release_in_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 0x00100510 ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0651f320 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0edac306 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x15bac236 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x270bcc09 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2aabd4ec ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x380c07a3 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3b43b817 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x42c85455 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x55d66ea0 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x55e7440c ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5b301004 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x68b6e374 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6cf7c777 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6f43c15f ufshcd_dme_get_attr +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_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x09f52995 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x3f04149c ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x3f7fdb09 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 0x7a0460ff ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/uio/uio 0x14e8b496 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x1b1425e9 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5cd6dbf8 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7fffffff uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7c54f464 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7fffffff usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0203658e cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x022958bf cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0910bfcb cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3f6554a5 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4e7f3d21 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7806f7d5 cdns_suspend +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_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7fffffff cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2325959c ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2e6d5d73 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4de12be9 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7fffffff ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1a2f8e86 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x69d4c76f imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7069355f imx_usbmisc_init_post +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_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7fffffff imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3ef133ed ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x482d99c6 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x51a528a1 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x542da1e5 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x104da108 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x205b15c1 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x25c1d815 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x25db8143 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3c5251f9 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x40ee9fb9 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x587b73c3 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x61eabc35 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff g_audio_setup +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_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_set_playback_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_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x17338705 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1f273def gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x230b810b gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2592a696 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x42e9c6e5 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x54698edc gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x71b0da4f gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x75228c5d gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x78fb7724 gether_get_host_addr_cdc +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_ifname +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_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 0x07698985 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x23758e6d gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4580b2af gserial_suspend +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_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_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 0x7fffffff ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x7fffffff ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0299260a fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ef05656 fsg_store_cdrom +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 0x1ce5b736 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1d7af28b fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2396b409 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x23c7a1ae fsg_store_inquiry_string +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 0x518c149e 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 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x71044908 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7a6a5013 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_file +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_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 0x382b7af6 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x41850ad4 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x560bb1f1 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x63fbbe45 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66741a81 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6969075a rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x76a46036 rndis_get_next_response +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_rm_hdr +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_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_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02380de1 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x08a0115b usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b4c50e4 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b975a25 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d759a39 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x576bfc76 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x615c12aa usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x627b493d usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x66750f9c usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b79e0b6 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x781ec796 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7dbee9ad usb_function_activate +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 +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_composite_setup_continue +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_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_ep_autoconfig_reset +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_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_function_register +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_otg_descriptor_init +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_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x119ed725 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x277a7b14 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2e026343 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x31264d8e gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x46c76bdd 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 0x7fffffff empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff udc_remove +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x7fffffff renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x43fd66fa 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 0x400c0054 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4847a497 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x54c0698d ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7539fc44 usb_ftdi_elan_edset_output +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_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fffffff usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fffffff usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fffffff usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x2bef8190 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 0x0b169b45 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x3b47b792 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/serial/usb_wwan 0x49945a71 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x03c37bd5 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1bb7debb usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x30c48115 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31e81e38 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x32731586 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x37e06143 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x40d43404 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4ba281ca usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5a3e3060 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5c3ccba0 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d6ee539 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x75ba1d3c usb_serial_generic_open +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_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x03f4faf1 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x7fffffff dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x618e997b tcpci_register_port +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_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 0x07b1a460 usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0d9c6aa6 typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x10d213bb typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11778d72 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13a7dcdd typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x162ec646 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x193da883 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1a58cc61 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1be6510e typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1dc7e216 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x246f029b typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x248607df typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2596d9d0 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b348147 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d120389 typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33ef6b38 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x340b967c typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3712c077 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x380659b7 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x39e6c564 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x44b6d013 usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49aa6b8d usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4cd5cac2 typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4d1776a6 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5346d67e typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f5456d3 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x658081dc typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67eb5cfb fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6af539e3 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6e401bd9 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x73276c66 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ab7bf53 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff fwnode_typec_switch_get +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_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_cable_set_identity +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_negotiated_svdm_version +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_register +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_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_partner_usb_power_delivery_register +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_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_set_data_role +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_get_drvdata +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_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x307cc674 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3a81b59b ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3c22781c ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4eb13ef7 ucsi_destroy +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_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_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0bac1827 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1a512424 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6668feb8 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x70e0c53c usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7e7437c1 usbip_pack_pdu +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_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_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_recv_iso +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 0x058df08d __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x411f1005 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5184287c _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x780507a4 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff __vdpa_register_driver +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_mgmtdev_unregister +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 0x7fffffff vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x68f32f6a vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x013d320c vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0c40a15f vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x204fa0b6 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x40a059ea vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x42a1554e 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 0x70430c92 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7305ea83 vfio_pci_core_unregister_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_init_dev +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_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_dev_region +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_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x08e259d2 vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x21c60020 vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x718f080f vfio_platform_write +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_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x141fb2f4 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1b0160ac vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x249f827f vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2651c904 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4c32449a vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5fb64906 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6107ff4d vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x647baa9c vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x695d58eb vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6fb7f6ac vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff iova_bitmap_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_device_set_open_count +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x012db4c5 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03ada026 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0adbf2fe vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c2e1579 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c518a46 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2020c8dc vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23f4b7e3 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269815ff vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28ed901b vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x328b9529 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x38182240 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x444c7a11 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x665483fc vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x67b05fed vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x680d5c6e vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a6c57f6 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d5c4bf3 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7436bb85 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78fbcb18 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d58e5c6 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_has_owner +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_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_log_access_ok +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_set_backend_features +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_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 0x102891e0 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x14ab0a7d ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6acade3d ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7fffffff ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7fffffff ili9320_remove +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/fbdev/core/fb_ddc 0x2d5124b3 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7fffffff 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 0x624dc921 omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66e7f37e omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_of_get_first_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 0x7fffffff sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7fffffff sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x062d2554 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x22b77f8e w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x76c97386 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7eae9125 w1_reset_select_slave +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_reset_bus +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_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_write_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7fffffff 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_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 0x3c4e8b51 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x44fcdda8 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4c316dea 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 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fffffff nlmsvc_unlock_all_by_ip +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 0x02d349b2 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x066ad3a5 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09268aba nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b04e58e nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c9d8ab2 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x107ab4d1 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11683921 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11a07c9e nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x150a53f0 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18476a5f nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19960022 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c0dd478 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cc344ab nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ebc65a1 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eff9c70 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f3dd026 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23d82561 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27bbe1fc nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x285490df nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28a5ab25 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29598abc nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ad57152 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b071dcd nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b64c151 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2becb4cd alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c18ee3b nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c4bb1e3 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e75076f nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f149fc4 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30b36582 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x322998de nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33091388 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x349d5239 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34b5a98e nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34b91bf5 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36e33e5d nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a09ee59 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bc86ff1 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3edf5fc8 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x400ee163 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41c9cd3e nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x423271e2 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x476cc7f6 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49574869 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4968109d nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a11e564 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a455458 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4add2f51 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f90b837 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5158f702 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x579eab24 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58354a5f nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58552cdb nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c699807 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d1fd121 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d243987 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e984fd9 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f3b2586 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x600b5bad nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x602c44ba nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60a27829 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6231042e __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65d3ac6b get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6976f9c5 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f44fdda nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f959377 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x721aa8c9 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x725c2116 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7292639f nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dccb34 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74319722 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x762ca6e0 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x772b324e nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b33883f nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c3f0f00 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e433e04 nfs_rmdir +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_xdr_bad_filehandle +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_disable_idmapping +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_alloc_server +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_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_fhget +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_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_filemap_write_and_wait_range +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_generic_pg_test +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_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_kill_super +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_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_retry_commit +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_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_show_options +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_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_unlink +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 send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x7fffffff nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00c4ab52 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x029d7cf5 nfs4_decode_mp_ds_addr +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 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 0x108b8a8f __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ab5c65e pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d4911f4 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ecaa434 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f771173 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2df323dd __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37e07e09 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3924efd6 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c46a2bc pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x416e543c nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4414ed46 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x462c458d pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4750a65e pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e245a50 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51d60fb7 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56fca1b4 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58525fcb __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5885e075 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5983b5d6 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d10e485 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fccbc0a nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x627e417b pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a69766a pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6dea81b9 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71a5b64a pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74ae9dda nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75bd62fd pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d979567 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 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_read_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_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_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 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_delete_deviceid +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_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_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_set_ds_client +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 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs_remove_bad_delegation +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_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_error_mark_layout_for_return +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_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_pg_readpages +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_sync +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_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x058a686a opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5e75d78d locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7fffffff locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x07392762 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0881bc1e nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7ab92e8c 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 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 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 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_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_setup_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_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2nm_node_get +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 0x2419992b dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x337b2e9d dlm_unregister_domain +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_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7fffffff dlm_register_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/dlm/ocfs2_dlm 0x7fffffff dlmunlock +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 0x3b133404 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x59d82181 ocfs2_kset +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_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 0x62af6d94 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x7fffffff unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x7956ac2a 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 0x0e09d9b5 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7fffffff notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/polynomial 0x7fffffff polynomial_calc +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 0x40db7c1d lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x4937a8f4 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x0009ebcc garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x7fffffff garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7fffffff garp_register_application +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 0x518b0de8 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x6c932005 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x72ee3754 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x7fffffff mrp_register_application +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 0x4ab741bc stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x7fffffff stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x1817b645 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 0x40c9fa3f ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0x7fffffff ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0x7fffffff ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0702b6af l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x09e60656 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x34b04a24 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6264259e l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6a95143b l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6af0ac08 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x23868b83 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0b90020b br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x174fb03e br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x24c3d865 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3d1e6568 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x49d5aadb br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5db4c754 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x61fbce95 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x653098cd br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6948f906 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_forward +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_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_port_get_stp_state +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_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff nf_br_ops +EXPORT_SYMBOL_GPL net/core/failover 0x0ca4fbb1 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x2ecbc1e5 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x74b5f1c7 failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x059052d5 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05a23c7b dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x122fb598 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x127179c5 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x16d16ed6 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x20bf6fd5 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21af0886 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2bca3d8a dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x31b52bd2 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d795faa dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ca179b0 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x50dd8e4c dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6255163e dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ca55eab dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x718208d1 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d30e718 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ebdbf37 dccp_getsockopt +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_child_process +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_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_hashinfo +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_established +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_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0fc802ec dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1efcade0 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x288f2b5b dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x57accee1 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x765bd2ef dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7fffffff dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x129e8084 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x20b47c96 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d8648d3 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x317e4891 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x39c8c5fe dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4278dd24 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4381014a dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49ca84b8 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x502820b1 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5dbbf2f0 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x65b56499 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b43af8c dsa_devlink_resources_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_region_destroy +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_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_8021q_find_port_by_vbid +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 0x06801880 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1cb930fd ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7516efc2 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7fffffff ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7fffffff ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7fffffff nl802154_scan_event +EXPORT_SYMBOL_GPL net/ife/ife 0x07705fcd 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 0x5cea0908 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 0x17cd32e1 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x57f78cc7 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x14e46e97 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x32648a72 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x55922419 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c9124b7 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7aa4a66c inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fffffff inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fffffff inet_diag_msg_attrs_fill +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 0x2046d8df gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11d3dd1f ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1edd355c ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2d397f5c ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4b4878d0 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4d555984 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4e1d9e50 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x639ca6fc ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ad3512d __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a098a8d ip_tunnel_changelink +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_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x320648c7 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x7fffffff ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x75c67357 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7fffffff 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 0x053de2d2 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2c3e9392 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_ip_tcphdr_put +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_reject_skb_v4_unreach +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 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 0x2cc76c61 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7fffffff nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1f3c228b tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x68b5ae4f tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6c8fd6de tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7fffffff tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7fffffff tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2e83cc90 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7676aa20 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fffffff 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_add_rx_port +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/ipv6/esp6 0x285f554b esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7fffffff esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7fffffff esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1c78d72d ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x791a8b5c ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x337727ad udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7fffffff udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x307fa07d ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0a516661 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1876831a nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x7fffffff nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7fffffff nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1392bdde nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x226e64b9 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4d4d8207 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6cd659cf 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_reject_ipv6 0x7fffffff nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7fffffff nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x60ab0ce5 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x19dccb56 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4b4a8449 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 0x093f261a l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x179c73f6 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c3c5ead l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1cd5dd6e l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x313ad124 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3e041ad2 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x454843f7 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x460e2ede l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x48969dd0 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x62a8b033 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69f720a1 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6bd4a316 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7e36b5ba l2tp_session_get_by_ifname +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_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_create +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_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x3721e100 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x43744bd9 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x08171fd3 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1230fc6b ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1239c779 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1c30240e ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21189440 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2171e1ec ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2a5f8dec ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x30e57c30 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39746fd0 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4dd240ab ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x55b6048b ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5a598a32 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_gtk_rekey_notify +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_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_key_replay +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_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_update_mu_groups +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 0x385d1210 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7fffffff mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7fffffff mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7fffffff mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7fffffff mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7fffffff nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x01babdee ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0e953516 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 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3f0fe175 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x54005afb ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x63e0b44b ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x65f9bcef ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x665255bc 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 0x7fffffff ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_del +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_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_get_ip4_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_init_comment +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_put_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/ipset/ip_set 0x7fffffff ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6f39cb39 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7fffffff 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 0x5aba9fda nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5e5e3705 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_count +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_conncount 0x7fffffff nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0191a98b nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0223acac nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04938741 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cafebc5 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f6594de nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11edd073 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14dfe49c nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b6ef2e0 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d5760d8 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ed86c99 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f9a78a6 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ff2b8d9 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23656ac7 nf_ct_helper_init +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 0x36c128e8 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x380ffc47 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x399880ab nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41e50ae5 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x541f8621 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54bb3e4a __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54bed76a nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54cc41c6 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x566a7076 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a84de7c nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e305c81 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61ea3c44 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63e329bb nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66c019c9 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bc29d28 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e119495 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7797c229 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7896d078 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ae2c87f nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c5cc70f nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c9c7eda nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff __nf_ct_change_timeout +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_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_connlabels_replace +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_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_helper_try_module_get +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_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_bridge_register +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_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_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_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_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_helper_expectfn_register +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_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_netns_put +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_expect +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_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7fffffff nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x29418a3e 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 0x7fffffff get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fffffff nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x2dd1f45b nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7fffffff nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0ba88762 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x56a9bd92 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7930541a nf_nat_sip_hooks +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_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x0ded0d11 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x594db24c nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x3b488f0e nft_fwd_dup_netdev_offload +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_flow_table 0x13820207 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2171637f nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x236f1184 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x46ec146d flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x62d878f5 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6c11a1c6 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff nf_flow_offload_ip_hook +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_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0ce2ded1 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c6b4a67 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bab12ba 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 0x4ad1ffb1 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x52d3313f nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x762b862e nf_nat_inet_unregister_fn +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_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_icmpv6_reply_translation +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_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_ipv6_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_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1d0476da ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1fc16595 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x32e0a025 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x33251ec4 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x39d80ec8 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x53f4547f nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x58ccfa92 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x78499a45 ipv4_synproxy_hook +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_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x004428ea nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0157f896 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04a96536 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06fd3166 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08067947 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c442de0 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1065867a nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1203ceb5 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x28c5fdb6 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d9a2ec8 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2fef1a0b nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x324b95a9 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3278cb4b nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b76d22f nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48cc0bef nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f3bf66e nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x604fe4e0 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x696cfbb5 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e51b4cf nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7832bd2a nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c2ce02e nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nf_tables_destroy_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_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_inner_eval +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_obj_lookup +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_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_request_module +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_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0844c15f nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0e82b401 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x40528ea3 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4587b512 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x593e10d8 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5e75fd58 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7fffffff nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7fffffff nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2020b1ed nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3a68bf87 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 0x6b885764 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7b588a7b nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2433901f nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x27444421 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x44084ad2 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x68d8770b nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7fffffff nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x36dc6515 nft_reject_dump +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/nft_reject 0x7fffffff nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7fffffff nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0108a3f9 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x03123a8a xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2317b491 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x246b6b0e xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c99b5bd xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x415e0b9d xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x42fcd409 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x45691c16 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x49fc74ef xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a3a5736 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d82244f xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +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_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_register_template +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_target_to_user +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 0x3f8d9b8a nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7fffffff nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7fffffff nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x56d67849 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x642f7c18 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x67ce5430 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x7fffffff nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x7fffffff nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0a956a3e ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x13e74839 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x45bc3ea8 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6acedf28 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7fffffff __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7fffffff ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x3838d3b4 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x7fffffff 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 0x704f1ded 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 0x1d3ecf6a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x20d5c10d rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x27c01695 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x331b3ca7 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3383e0e0 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3af2bab7 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x3c199936 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x4993f948 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4ae43466 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x4b93d1a0 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4d6b3ba8 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x69eda5c4 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x6c425c20 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x77b7cc99 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x7e484ba3 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_inc_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_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_trans_unregister +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_pie 0x7fffffff pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x0b86e245 taprio_offload_get +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x387d86f4 taprio_offload_free +EXPORT_SYMBOL_GPL net/sctp/sctp 0x216b9037 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2b3eead3 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x313e823a sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7fffffff sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x10956651 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x3bdc7bc1 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x3d443726 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x520bdfb3 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x671c3432 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x76afb71b smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7d8da674 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smcd_handle_irq +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x32b0371d 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 0x651b34d4 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_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x022f6dc8 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02698b27 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x031d8216 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04246f9e xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x063c2c58 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c095f6 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a371e27 rpc_cancel_tasks +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 0x0c846129 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e94f7fb xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fddf0e8 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10567aaf auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12bd81e2 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13eb84ae sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ff9711 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x144c9153 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1472468f xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16c51076 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17cc1b6b rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17eeaadf xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18ee4014 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19aaa196 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a51b7dd rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bffb682 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cfcc2b2 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ea61508 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f17278d rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa1168f cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x210f257d svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23d2b432 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x241fc493 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25b1196f xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2670db39 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28247b9a xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x289fcb0f rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f4f972 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x294fc22a write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29dbfbf2 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a0883f1 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a1e4076 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac4772f rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c7c3e9e xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c967321 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca19887 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cfcc8aa svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e76fbcc svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fce6f6e xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x318c8a57 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32d725db rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x332f018a rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x351f1167 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35aabd40 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35c91900 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x363be86f rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3727b60e xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a15f287 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b133058 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c21b017 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cb8562c xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e74775d svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ea22875 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ed51f65 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eeb1bb7 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fdfc727 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41681238 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4220a995 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42813c69 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x428d45a4 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c73aea read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4357ca74 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c022fa bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45a4fc2a svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4729dcdf _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47dc8de2 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ea1a0a rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49a7d20c rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a27b4da sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a98561a xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac48954 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b84afd5 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c095e89 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d8a3d8d svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4df2cb61 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51774883 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53652676 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53a213cc svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54f0f9d4 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55a0c049 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57d5fcbd rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57fc6141 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b119eb3 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c2cc4b7 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dac2fe1 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ebd7c9e svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f0d8971 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fe8c263 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ff49340 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x608f5b05 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641e9a88 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6543ff8c rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66f51794 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bc1fbad rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c9d8419 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d8ebda7 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e2a043f rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f980ee1 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70284a4a xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7207fa64 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72774c8f rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f50e98 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76262135 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x768cf053 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x789e891e xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a94043c rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ada9df7 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c268feb rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c3a1e62 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c82e7cb rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cb9c7d7 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd16ae8 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_destroy_net +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 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_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_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_probe_trunked_xprts +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_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clone_client +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_count_iostats_metrics +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_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_find_or_alloc_pipe_dir_object +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_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_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_put_sb_net +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_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_restart_call_prepare +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_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_task_timeout +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 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_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_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_unwrap_resp_decode +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_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff sunrpc_init_cache_detail +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 +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_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_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_generic_rpcbind_set +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_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_process +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_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_create +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_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_stream_decode_opaque_dup +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_zero +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_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_disconnect_done +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_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_release_xprt_cong +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_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_update_rtt +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_up_backlog +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/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 0x112455c2 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1219ae56 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x12823775 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x13255bbf virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x157d93db virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c3c864e virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ee878d8 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28605b11 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28808584 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34bfa41c virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x352b453b virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x43a14817 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x458c1ad7 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x49b0ebb1 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e7c7ead virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a63a633 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x654750f5 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b284dba virtio_transport_inc_tx_pkt +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_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_dgram_dequeue +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_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_poll_out +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_block +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_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0d9ac6e4 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x14d09bc2 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x157f1ce3 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x19213791 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1cfa3bd2 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c7961f7 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x36d4b713 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x47ba0134 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e9bb37b vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f4d58bd vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x729d3868 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7779cc3b vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7c346498 vsock_stream_has_space +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_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_remove_pending +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0241101c cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x07133031 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x09037af1 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x11d31f30 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1de653d2 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2102e1c6 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x290bbb07 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2b00f7c8 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2bc56eb4 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x31dbdec6 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x323527af cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_pmsr_report +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_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 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 0x0349e0fa ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x65be3566 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x72c4111c ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7fffffff ipcomp_input +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 0x773506dc __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 0x0125fcf8 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x16d0142b amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1df16a4b amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x246def4e amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2c985c18 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x40c9416c amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_am824_init +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_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_init +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/ext/snd-hda-ext-core 0x025bb5d5 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x03a18be9 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x14b4f67e snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1cb6522b snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x20db510c snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2179352f snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2325ba88 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x24b59142 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x27b30cde snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2946b4d1 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x45262945 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5a56d46a snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5e7d9cdb snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x71afe5c0 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x774f2a5b snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x793d28fa snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x79f572a8 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00261fa9 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00bf6d98 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x011b0a76 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07676a37 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c9ee31f snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x156e5a64 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17b76583 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f3c8a28 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f7f1af3 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21998fc0 snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23dbdeb1 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2488992d snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29eacffa snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30f6ef8f snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33023397 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35d5a5a5 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36c06909 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x394c591d snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fc54db2 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x416e05b1 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4411db67 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x495af8e3 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b7706dc snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4de3c85e snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e4a16e6 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5411d422 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5595e5ff snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ff44f70 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61ac3881 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63338bce snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x657a029b snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67a48e7f snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68e42ba9 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7431d013 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74da683b snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75f7060d snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e42b28c snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f5c7645 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff _snd_hdac_read_parm +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_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_acomp_register_notifier +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 +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_init_cmd_io +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_send_cmd +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_stop_cmd_io +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_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_codec_link_down +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_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_device_init +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_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_get_connections +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_is_supported_format +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_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_regmap_exit +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_regmap_update_raw_once +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_cleanup +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_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_spbcap_enable +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_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x58fb1608 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 0x091cb0b0 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x375ecdb6 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x462a7963 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x68c3f326 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x778fd74d snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_build +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x005d0894 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0408a3eb snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x045c3fe5 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0631d50f snd_hda_ctl_add +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 0x0a5b4c9c snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d3cb600 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x101b06c1 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10d0ecd0 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10ef2cd4 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x124a07eb snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x147fa5a5 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14e11b0e snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x185fb1c7 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bb1b5d4 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d0151ad snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1db5f6fe snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fd123a5 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21a7566f snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22ef96b8 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24014e12 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28f3d1c4 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x294d4997 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ad76701 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c5cc336 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e0c5d9b snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e67bf44 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32b52805 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x386c0eed snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a51380f snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b251132 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f1fa16a snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41e2c682 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47cdaea4 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47e96054 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48c62d0b __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a4e1a4a snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b42f895 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4eade5a9 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fca29df azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51324a34 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x534b92d0 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55465f4c snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cf7329d snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e24430e snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6480f877 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65f5d067 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66c12992 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a49b3f2 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c503795 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7009e9fb azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7108f303 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x714187e9 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x746c76f3 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76b5bd15 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76e9133c snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78a48a6e snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x792dd284 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b2ea79d snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b4faebc snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dfc79fa snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e01f561 snd_hda_codec_build_controls +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_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_add_imux_item +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_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_apply_verbs +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_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_amp_init +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_configure +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_get_pin_target +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_parse_pcms +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_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_set_pincfg +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_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_enum_helper_info +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_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_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_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_detect_enable_callback_mst +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_pin_sense +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_set_gating_jack +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_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_cleanup +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_analog_prepare +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_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_pick_fixup +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_set_vmaster_tlv +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_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 0x152ecd1a snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1886a3a3 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x25fdf9f9 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x40fbb708 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x451f5f60 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6c09b4b4 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x741d493b snd_hda_gen_update_outputs +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_kctl +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_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_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x0fedccf1 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 0x7fffffff adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x12cb3ce1 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x7fffffff adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1a4a5bcf adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3fb8d9bc adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x63280c3a adau17x1_volatile_register +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_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x7fffffff adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x2771a18b cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x55c8595c cs35l41_remove +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 0x1720c8cc cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x356f8f7a cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3952d186 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 0x58e4bfcf cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x77a30733 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_exit_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_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_channels +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 0x56d1ee2e 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 0x46e34080 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x72c1fc68 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_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7fffffff cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0d92caf2 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x24b6e217 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-es8328 0x7fffffff es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7fffffff es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x7fffffff hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x7fffffff snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x7fffffff soc_hda_ext_bus_ops +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 0x6966cc56 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x469e9aa4 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x562a3709 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7fffffff max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7fffffff soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x0cb56809 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x5edf166a mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x67b95b0d mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x69b2f36f mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7fffffff mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7fffffff mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7fffffff mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7fffffff mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x0389f74f 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 0x660e54d8 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 0x1b2b7928 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x61bef8f0 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x6a2bb449 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x7fffffff pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x438be823 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x4e4305d2 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7fffffff pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7fffffff pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x29638521 pcm512x_probe +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-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 0x07bd9285 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3016b9da 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_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7fffffff rt5640_enable_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 0x7391978c 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 0x0d18594a rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d36004c rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x15347127 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3a82215a rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x43dfe3cf rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x44fa7f0e rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6b1ff677 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_apply_patch_list +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_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x7fffffff rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x26ba9e8e sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3839bc06 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4e01383b sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7fffffff sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7fffffff sigmadsp_setup +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-src4xxx 0x3d9878a0 src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x7f25fa69 src4xxx_probe +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 0x7fffffff aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x7fffffff aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x757f2700 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x2ee22ccc twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x345b969d twl6040_get_hs_step_size +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x44ad50ce twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x667498e4 twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x7fffffff twl6040_get_dl1_gain +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 0x1740016c wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4a69061e 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-wcd938x-sdw 0x7fffffff wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x073aaf45 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0eb1533d wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x17f32d6b wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1e9a81d6 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3c78b2ee wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3f50f958 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3f683755 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4d457fc8 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4edc576f 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 0x58ef015f wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x67d0d0ab wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x73eab41e wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff 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_probe +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_init +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_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_compr_handle_irq +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_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_get +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 0x0cf73a80 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x472a1bcc wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 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-wm-hubs 0x7fffffff wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7fffffff wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7fffffff wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7fffffff wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x7fffffff wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x7fffffff wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x156cbf77 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2aa6091a wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x55bbece3 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7759de7c wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x7fffffff 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 0x23ea176b wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x7b9feeae wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x20a75713 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x5c114794 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x075df159 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x1365ec63 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x7442e2f3 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 0x001da70d asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x066d5b38 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1374f18f asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x174fa3bc asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x270cf1b3 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x29da7789 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x38abeef9 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x445ed23d asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4c172724 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x50f8c88c asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x566bb6c2 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x73798a04 asoc_simple_parse_convert +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_cpu +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_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_parse_clk +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_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_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x05bece78 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0660e90f mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x09081d50 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x14a4ea86 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x190e9cfd mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x39ac51a5 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3a69fe02 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3d34c5c0 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3d5c6ead mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x523a3d92 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x524e2977 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x67af66aa mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6eb59fca mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7e8463a4 mtk_afe_fe_trigger +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_combine_sub_dai +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_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_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_memif_set_addr +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_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0x48fa8f1e mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x24f04ba7 mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x7fffffff mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x7fffffff mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x7fffffff mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x148d1554 mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x40ae5528 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 0x1a669ffb axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3c989529 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x402a5fb9 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5df8328f axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x72f0ac4c axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x75b34e7c axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fffffff axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fffffff axg_fifo_pcm_pointer +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-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 0x7fffffff axg_tdm_formatter_event +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 0x001ac269 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x09e2f33c meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x28fca61d meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x2a42b5da meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5cd39943 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x703b3dcc meson_card_parse_daifmt +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 0x1dafb05d meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7297699f meson_codec_glue_output_startup +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_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/meson/snd-soc-meson-codec-glue 0x7fffffff meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x56932dee q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x7fffffff 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 0x1daf2fac 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 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 0x12129405 q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x6244dfa1 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 0x06832380 q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x12378d17 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1edc963b audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1f51aaa3 q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3ae804e3 audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3b520d9d q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4e79b82b q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x65e3159e audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x77dd9b9b q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_graph_free_buf +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_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 audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_flush +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_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_prepare +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 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x3fc259ae q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x4c8c3142 q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x66065ca6 q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x2d1c359c asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x1631b5df asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x1e4de941 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x69e3f985 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7fffffff asoc_qcom_lpass_cpu_dai_ops +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 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x4f7e789e asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x7fffffff asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x362fc988 qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x7fffffff qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x2ba72196 qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x7fffffff qcom_snd_sdw_hw_free +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x7fffffff qcom_snd_sdw_prepare +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x388ad496 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 0x07f7e7f8 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x54bcc9e9 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6426fd64 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x65c43fb1 tegra_pcm_hw_params +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_construct +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-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 0x7db4c50c 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 0x7fffffff edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x7d3757d4 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 0x1c285d6e line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1f974e6e line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2a2188bf line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x31b6a3b6 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3f26511c line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x503562a6 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5deb2055 line6_suspend +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_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_read_data +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_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_write_data +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x7fffffff irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x7fffffff irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x0005988c __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x0008e1ef inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x0021294c component_del +EXPORT_SYMBOL_GPL vmlinux 0x0024bbf2 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x003082db pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x003f7f40 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x00487271 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x004df394 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x004e2947 sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0051e5a6 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x0053e821 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x0059a40b tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x005ccc3c mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006560a4 rockchip_register_softrst_lut +EXPORT_SYMBOL_GPL vmlinux 0x0082e6de devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x00884b0a mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x008c4a5f snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0x00a21c1e mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x00af7b1b meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x00b18bfb snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00dd69cd iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x00e0bdea trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x011132bc iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x0125e60f device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x0132b315 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x014b88d5 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x01574cae snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0170956a show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x017804b7 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x0178344f devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x017eea6c __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018d5837 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x0194322d tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x01ae3a7b icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x01b8ad58 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x01bb97d4 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL vmlinux 0x01c01040 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x01c1975e usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x01c41b45 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x01c5a722 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01d18c37 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01ff7b4d bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02000dd0 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL vmlinux 0x02014a5d crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x0221ed7f usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x022bb777 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023c9000 power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x023cc082 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x02487a8a vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x0252910c spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x025bb3ac pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x026e1ba8 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x028fe7df snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x0297f685 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x029c4a7c raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02c4c456 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02c7b310 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x02d438dc snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x02f037a0 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x02f03922 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x03067473 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x033275f9 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033b6524 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x03439c1e ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03565b5e alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x036030b7 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x0367b6eb snd_soc_runtime_action +EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x037b9d72 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x0392ab23 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x03950e43 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a663c3 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x03c5d79e phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x03d871d7 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x03e08fd0 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x03e0aa3f dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x03f68eb0 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x03fef516 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x040a81a5 spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x040c6d68 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr +EXPORT_SYMBOL_GPL vmlinux 0x04153548 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04175791 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x0418eb3c ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x041d4d0b regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x041e0c0f rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x041ec553 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x042ab9aa imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x04316b10 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x0434a78d platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x0435b283 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x0448b7b0 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x0451afbc xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x04678e53 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x047a3f74 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049447b3 device_register +EXPORT_SYMBOL_GPL vmlinux 0x04a2c934 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x04a76de8 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x04b11b16 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x04bb8e65 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x04bbbaac debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x04c25d66 regulator_disable +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 0x04d7f639 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x04dcce4e remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x04de6c2a of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04e37fe4 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x051108f1 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x051224f3 ip6_append_data +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 0x054071eb __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x054b41ca regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054f863f dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x056f40ec blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x057180b7 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x057d23ed mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0x057daefb irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x0586debf blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x0598c164 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05a95dcf regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x05bb50b6 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x05bd22f4 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x05c3006b devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x05c5dfff ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x05c93cab __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x05d57e13 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x05db1998 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x05ecb33e crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x05f7ea73 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x0608d40c spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06136b62 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x0617b37a i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062c9ba8 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0637fa21 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x0640f8b6 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0662658b espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x066449b1 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x068924a6 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x06929e89 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x06a6508a mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x06c51ec5 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL vmlinux 0x06c7f15a regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06cffee1 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x06d2cee8 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x06d46b0b adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x06d61ad4 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x06d8db78 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x06eff8be regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x0700fcf8 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x0713645c hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x071991fb nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x071f3309 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072afc2b devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x072e33cf sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x0745e610 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x075079a9 snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07699524 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x0771e3b1 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x077d3d7a regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0798ce1c of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x0799aaea sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x079a68d6 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x07a74349 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x07b1a8fc seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07d7ec0e ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x07db23bf relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x07e8d0cd phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x0807e7df fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x080832b4 rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x08084ea6 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08212f01 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x0842aa34 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x0895f8e5 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x08a32d46 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08adae91 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x08aea3d2 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x08b2549b devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x08c30712 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x08cead08 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x08d034b1 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x08d4886a component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x08f555de mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x090158d1 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x09033958 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x090cc320 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x090fd4d8 get_device +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09324999 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x0940cf25 sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x0965dc0b vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x09663e10 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x096a633a edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x097b51aa regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x097d3db9 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x097d8b05 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x099f8a83 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x09a13d16 usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0x09b2ec30 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09ba76e7 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x09e0f5cd ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x0a1007ba ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x0a123242 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x0a1657fb dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x0a1774eb sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x0a252ea3 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x0a3c0597 sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0x0a3c7806 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x0a489f04 pci_doe_submit_task +EXPORT_SYMBOL_GPL vmlinux 0x0a59a8d9 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x0a626632 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x0a64c45d mtd_pairing_groups +EXPORT_SYMBOL_GPL vmlinux 0x0a851302 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x0a976323 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x0aacc364 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x0ac83f00 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x0acbbb68 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x0ae38aaf snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x0aeb7ed8 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x0af39d0d netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b14df5f ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x0b185cf8 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0b1bbbf8 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0b2e31b8 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x0b2f1117 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b340fd8 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x0b359cba kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0x0b682348 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b70b17f dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x0b767876 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x0b7f34d5 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x0b833984 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x0b9b0813 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bbe2447 devm_thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0bcc5caf irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfce286 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0c1e310a encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x0c21ffc3 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c39380b attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x0c4a0684 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x0c4f6988 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x0c65902b fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x0c85bdf7 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0ca4822f usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x0ca61f60 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x0cbe4c94 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ce74469 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x0d013d56 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x0d09285a clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d0f5f83 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x0d154260 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x0d2c603f blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x0d38b734 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free +EXPORT_SYMBOL_GPL vmlinux 0x0d3ed32f skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d53cc2a rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0d5dc46b usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d6f013d debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x0d9ce0b2 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x0da74025 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x0dbb58fd __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x0dbd588b pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x0dc5d112 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x0dcd5d8c snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddc000b snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0df32c7f ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0dfa3cc1 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL vmlinux 0x0e01761a device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0e0ac777 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e141447 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x0e16cc16 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x0e17c3af iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0e29f9a7 topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x0e37bb63 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6a3f97 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x0e751495 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x0e81dd6d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0e8d646f spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0e979ca7 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x0e9a7a0e nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x0ea44dbf crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x0ec59a6e netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0eda495b meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x0edc94ba snd_power_ref_and_wait +EXPORT_SYMBOL_GPL vmlinux 0x0eddc47d rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0edf538d vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x0ee191a6 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x0eec3ba5 snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x0f0b7002 firmware_request_platform +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 0x0f3663f6 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0f389aeb pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x0f4aa4f6 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x0f4cb3ba ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x0f55cd14 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x0f5b0884 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x0f61641f sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x0f694452 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x0f72c2f0 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f809cd7 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x0f8c8041 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x0f95805d platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x0f9d11b3 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0f9d815f kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x0f9f00db tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x0fcbfb46 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x0fcf89b9 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fdabf88 snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x0fdb5a69 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0fe00dc7 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x0fe00e73 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x0ff9b948 mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x0ffd7381 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x100ec26f of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1013fa6f meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x10287a32 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x103bd6c0 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0x104cfe76 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x10523637 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x10524578 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x1083f2b9 mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x10906859 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x1091534c pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x109941d4 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x109b667d device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10bb2423 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x10c25205 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x10cb68af pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x10d56de2 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x10d9ee96 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10e298b9 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL vmlinux 0x112c7600 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x11448476 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x1147b291 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x1149c5f5 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x115d4676 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x1171c909 ZSTD_getErrorName +EXPORT_SYMBOL_GPL vmlinux 0x11758b7e debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x11783d05 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x1186f8c0 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x1189dabb snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x11a2dfb3 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x11ba97de crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x11dca72b device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x11deeb97 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e68a27 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x11eb235e i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x11ee2acf compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x11f116c3 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x11f36439 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x11fab29a usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x120e6fcd devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x12131e93 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1226e962 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x1228858b subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x122ce299 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1232db48 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x12499158 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x125736ac dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1262ff85 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x126785b9 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x1271aef8 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12722ae9 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x1272b4fd sdhci_end_tuning +EXPORT_SYMBOL_GPL vmlinux 0x1277ef8a usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x1280e104 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x128135d7 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x128fcb5e dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x129d775f __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x12a1faeb spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x12e37afa vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x13065628 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x1316ab62 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x131a2d2c device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132858cf HUF_readStats_wksp +EXPORT_SYMBOL_GPL vmlinux 0x1328c5dc of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x132d945f replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0x132dd4d0 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x1331831e snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x133c9219 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x134315f6 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x1351e62f firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1360704d irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136221ee pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x136ba3ee tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13aa7d0b sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x13b37a46 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x13c37a03 page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13c6c769 mtk_clk_register_gates_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x13d03268 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x13d7444e usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x13e69af3 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x13eac098 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f84fa5 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x13fdfe9c irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x14005eb8 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14095917 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x14104702 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x1411b444 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x1431c468 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1443c19d handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x14447e26 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x144b33e2 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x145016ab gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x1456a5e0 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x145c2cc2 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x1469cade __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x147edcbb pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x148948bb snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x1493eaa7 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x1499482a gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x14a4a3a5 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14accfb9 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x14b10255 musb_queue_resume_work +EXPORT_SYMBOL_GPL vmlinux 0x14b51b85 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x14ca358c pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x14cf8cc7 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x14db0747 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x14e4bfac ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x150b4e08 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x150e0ce9 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x1513e7ca crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x151a75d0 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x152838ae tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x1528a20d led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x1530d825 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15412f67 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x15486f96 nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x1551bc4d subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x15546c12 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x1555797e md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x1560cede blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x1561a1eb of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x1567d256 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x15785920 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x1578e1ec rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x15829d6b ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x158676fe of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x158680e7 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x158d7b4f crypto_default_rng +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 0x15bd7435 psi_memstall_leave +EXPORT_SYMBOL_GPL vmlinux 0x15c02275 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x15c6ae5b pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x15cc52f0 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x15df58da scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x15ef856c ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x1604e44f devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x160748a4 sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0x160e4577 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL vmlinux 0x1614a11a pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x16198a10 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x162abdc5 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x16444bb3 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x164bb6ff __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x166504a3 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1676213c pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x167affc9 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1680a424 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169595ad xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x16a0727e dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x16a8b945 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x16acac02 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x16bb0d3c pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x16c6f863 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x16d25e10 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0x16d85066 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16f1ae34 sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x170505a1 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x170a80e2 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x172f494a switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x173a8d4b ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x1742ccb3 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL vmlinux 0x17460a28 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x174a4e67 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174fb5d7 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1755868c __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x175dd808 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x1760a1e0 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x17727d43 devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x177adaf7 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17888fdf snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x1795df76 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x179af37b snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL vmlinux 0x17b66a72 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x17cba086 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x17ce1a80 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x17daf812 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x17db4192 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x17e4fc96 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x17f9d57b regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x17fbdd6d mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18230753 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x182800b6 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x182fba65 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x183575d2 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x183de446 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1861316d pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186a87c6 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1870a835 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x18915c7e phy_init +EXPORT_SYMBOL_GPL vmlinux 0x18a0d824 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x18b54109 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x18c499af nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18f49c0c skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1905fb34 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x190a7209 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x19119632 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x191757ed sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x19221289 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x1924753f usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1931a968 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1937cc3a device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x193a606b kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x194e4652 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x194e9dc5 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x1958d7eb exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x195af478 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x195ba002 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x195f6513 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x1973da8d ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x197f9de3 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1987fce3 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1999303e wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x199fdda0 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19bbdc69 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x19e11fd8 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19e946d1 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x1a05c249 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x1a073a45 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a10d9f4 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a14aafa init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1a24740b ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1a266232 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL vmlinux 0x1a2c751b get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x1a32a198 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1a44572f rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a51c36c pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0x1a5a5c3c acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a5a844a ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x1a66e5a6 nanddev_bbt_update +EXPORT_SYMBOL_GPL vmlinux 0x1a6a69b1 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a747cd7 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x1a7edb66 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x1a8c613a crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x1a9d425a tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x1aa114d2 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x1aa61e79 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x1aac130f debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x1aaf78d9 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x1aaf9efb gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x1ac2d072 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x1ad4668d serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x1ad94eed regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1adccf97 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1aeb2c08 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x1aec4f2e find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1afc7ed5 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x1b08f2d7 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x1b1d691e samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x1b282464 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x1b2cf901 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x1b4e41e0 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1b559507 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x1b640260 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x1b6dc001 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8fb502 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1b91291a usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x1b91e7a1 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b94c6e1 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x1b94ea71 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x1b95090b dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x1ba28699 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x1bae42fd rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bca2592 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x1be742dd skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x1beb7731 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x1bf0e03a soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x1bf5ee07 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x1bfde901 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x1c009840 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1c1227a5 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x1c16f46b fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c2724e5 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x1c2b2d9b i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x1c2c8cdc snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL vmlinux 0x1c2e1f3f nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x1c3b416a mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c4157b9 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x1c4e872d spi_bus_lock +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 0x1c7be59c __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c88a69b perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x1c983eaf perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x1c9e477b crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cd238f1 usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral +EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x1ce8331b tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x1cee10d5 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL vmlinux 0x1cf71159 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1cffe1da pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x1d022289 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x1d067c1b verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x1d1ea29d device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x1d2c9707 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1d41f137 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x1d563e4d kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0x1d62ed3b blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x1d639a4a crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d682318 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x1d6a3b14 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL vmlinux 0x1d7309ea __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1d7dad98 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x1d928301 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d9d050b hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1da04926 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x1da6123f crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x1dab1e41 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x1db24c5d snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x1dc17bf9 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x1dc8be16 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x1dd29e98 imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0x1de0c973 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x1de93907 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e03cd19 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0d1d4c mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id +EXPORT_SYMBOL_GPL vmlinux 0x1e3c90ba amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x1e47c98d validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x1e48ef2e serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x1e4b1309 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e4ea64f securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1e4f7be6 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x1e503035 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e564449 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x1e59fb00 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e99b240 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1eaa6957 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1eb20be9 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec2b8bf of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x1ed2cb95 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x1ee861db blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x1eeb0687 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x1eeed0cb musb_set_host +EXPORT_SYMBOL_GPL vmlinux 0x1ef5a420 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x1f203989 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x1f2b7749 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x1f2c55c4 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x1f2ebaf6 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x1f32521d sata_sff_hardreset +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 0x1f5e5538 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x1f5fc4a5 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x1f673910 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f95c7df pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x1fcddcd3 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1fce36d0 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1fd7364c phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200da412 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x200efddf mt_prev +EXPORT_SYMBOL_GPL vmlinux 0x20178f7e snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x201cbb46 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x2020578c cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2020994b xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x20232977 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x20275580 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x2027f6b9 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2027ff01 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x20288516 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x2032ecc0 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x20371f1d device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x203b25f7 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x203e9545 devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x2041afbd regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x20448ed1 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0x20455695 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x206df289 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x207e6e82 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x208df878 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x20a02b04 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x20a78303 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x20b8ea95 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x20bc3963 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x20c3fcbf tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x20d2235a clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x20dab912 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x20dfbe56 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20edb1ce dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x20faa525 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x20fc6174 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x2102819f vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x21087621 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy +EXPORT_SYMBOL_GPL vmlinux 0x212bd35e crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x2139a1ec blk_rq_is_poll +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 0x2173525f sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x217a8435 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x217b3639 iov_iter_get_pages_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x219b28b5 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x219fe005 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ddb98a devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21e53884 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x21fd8ed1 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0x22030b15 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x22091f16 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x2217199c phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x22199e7c wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x221fae42 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x22267368 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x223e215c rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x2242358f securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x2246cd50 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x225d5777 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x225edbbf rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x227aed88 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x2289f3a3 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x228e70c5 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x22a8e452 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22abf8ed mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x22b7dfe6 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x22c54e39 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x22d89592 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e31466 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x22ee37fe fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x22f97de9 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x22fa4832 dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x230465a9 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x230a1644 sdhci_start_tuning +EXPORT_SYMBOL_GPL vmlinux 0x2314dbf9 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x231b2b93 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x2320c0ad snd_soc_component_read_field +EXPORT_SYMBOL_GPL vmlinux 0x23282a33 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x233163a8 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x23368f2c pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x2337d9c8 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x233ec18b ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x2351fac3 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x2360c28e sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x23622741 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23935d9d __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x23963a37 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x2396c127 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x2397dc4a rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x239afdd4 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x23a0a5b8 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x23a1133d of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x23a69bb8 devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0x23ac6fef xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x23af6bc5 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x23b7ef84 xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x23c6a789 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x23cdbcfa dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x23d3f859 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x23ea5510 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x23fa6e7a gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x240c967f dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x2427ec77 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x242e1284 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2437624d pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x244090e1 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x244d1b32 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x2453ecec pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x24609571 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x246b84a4 r9a06g032_sysctrl_set_dmamux +EXPORT_SYMBOL_GPL vmlinux 0x247209f8 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x247b8890 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2480944e gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x248098a9 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x248b5af2 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x24a810ee gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24bbfcbe dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x24bc4d1f irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x24c82133 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24dba78f vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x24e03d48 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2501173d of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x25049986 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x250b8b5b mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x25122455 devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x251244e6 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x2516bbe8 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x251db88e pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x252b678a spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x252f5576 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x254327d7 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x254ee617 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x255801e2 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x2569e895 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x257afc5b fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x257c4e3f ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x2585bf82 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25b15f5d nand_erase_op +EXPORT_SYMBOL_GPL vmlinux 0x25b7a173 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c138ca da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x25c9bec4 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x25d5b1fb __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x25da2169 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x25ef17cf __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x25efe83b ahci_platform_find_clk +EXPORT_SYMBOL_GPL vmlinux 0x25ffe454 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2602cca1 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x2611217c rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x261252c6 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x2621b064 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x26264af6 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x26378e6b mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2646d036 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26549da5 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x2655c994 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2663db4d dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x26652f59 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266dc5f6 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x2674eed3 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x2674f662 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x267aa802 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x267cee19 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x267e40c1 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x269b013f sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x26a62f5d crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b0f5d6 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x26b0fee7 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x26b7b392 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x26bc8492 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x26bde294 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d0058a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x26d5aa47 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x271514c8 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x2719f8eb msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x271da12d wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb +EXPORT_SYMBOL_GPL vmlinux 0x273d95f5 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x27411e56 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x275b81cc component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x27619200 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x276ed42c icc_get +EXPORT_SYMBOL_GPL vmlinux 0x279a42d4 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27a082c0 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x27aa9a75 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x27addba9 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x27c00812 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x27cd5d0c i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x27ce2b93 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280077b1 ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x2802f0a6 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL vmlinux 0x280433c2 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x280c68cb subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x28110000 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x281bbed1 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x282ad03c tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28392338 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x283eec18 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x285d09c3 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x2865bc9c devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x28736010 __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x2874aca0 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x288832b0 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x28892bf0 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x28939316 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x28939cb7 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x289b3481 mtk_devm_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x28a246b5 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x28a35beb crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x28a84f89 badblocks_exit +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 0x28b13448 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28ba1767 tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x28d7f7ff __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x28d8975a udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x28e4c0c3 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x28e5c822 mas_store +EXPORT_SYMBOL_GPL vmlinux 0x28f1d27f dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x28f39472 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x28f59ea5 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x28f8b0c5 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x29017e63 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x29029872 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x2904847b espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x2904b138 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x290d1f2f irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x291123ea __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29290130 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x29406fbc __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x294222ec __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x29660000 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x296b0494 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x296bb9bd irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x296c11e3 cpts_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x296d23ca virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x2970b3fb spi_async +EXPORT_SYMBOL_GPL vmlinux 0x29853239 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x29d3d6c5 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f361ca __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x29f5a44f extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x2a1fd397 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x2a254a94 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms +EXPORT_SYMBOL_GPL vmlinux 0x2a3d0058 mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0x2a53ab8a rtc_read_alarm +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 0x2a95aff7 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x2a9638bb mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2a9f8dec spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x2ab8af8d __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x2acf60cb regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x2ae1e475 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x2aed633a rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2af6c68f dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x2affa497 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x2b1a8f06 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x2b1b03de cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x2b23b746 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x2b37845a perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x2b3fd8df devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b68e3c7 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2b74c7e3 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x2b750cbe gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2b86774f gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2b8c0d3a regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x2b8d1303 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2b8da9eb crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x2b992bd3 device_move +EXPORT_SYMBOL_GPL vmlinux 0x2bc569cc bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x2be5894d relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x2c000275 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x2c04b2a2 bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x2c088d75 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x2c17480f dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x2c205aa4 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c252f2a list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x2c302722 cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c37ba83 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2c3884e5 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x2c4158a1 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x2c452071 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6989b0 synth_event_trace_array +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 0x2c9987c1 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2ca0f282 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2ca314c6 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x2cb78e53 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2ccc7c7c devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2ce48d8f __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2ce8ee03 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2cec7457 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x2d123572 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2d12e7c3 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d26db40 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d2f5693 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x2d3217e6 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d42ba6c component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x2d47426c put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x2d495744 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x2d50ab11 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x2d558757 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x2d5bbf47 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d677dc5 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x2d69b56b mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x2d72a383 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x2d744089 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x2d7a6c21 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x2d7e07d4 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x2d84983c phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x2d9fbe5e get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x2da22c5c devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x2da90a41 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL vmlinux 0x2dab6387 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dbcf545 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x2dc26b92 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x2dd22a73 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2dd96fbe scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2dddd5a7 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x2dddfd18 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e0af5fb crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x2e0ba105 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x2e0e552d vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x2e0ed434 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x2e1363bd of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x2e1ee4ad wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2b0d07 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x2e2e7a5a edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2e2f8a19 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x2e32b4e1 vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x2e32c9c8 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0x2e4dd7ac spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x2e63dd19 mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e70f5c3 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x2e72ed4e ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x2e8bb33e irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x2e986f5e mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0x2ea35815 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x2eb77ec4 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec92a63 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x2ed944d2 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x2ef359d4 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x2ef77a28 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f16f226 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f284d7c mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x2f36484e snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x2f3e4dd6 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x2f476dff da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x2f5948a4 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x2f5b5e20 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2f6074d7 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2f785eac find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2f92742a get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x2f9b7b0f pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x2fa9e8fb device_create +EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x2fbc84fe pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x2fbfa90e mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc61f35 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x2fd310c7 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2fdba969 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2fe10588 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x2fe86273 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x2ffa86ba crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x30045932 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x30096d57 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x301aa5c3 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x301f5c62 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x302db013 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x302dddc4 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3051c51e ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x305a92a9 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3063fb8b fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x3069e46b scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x306bd0b2 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x306f3aca balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x3077ae30 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x307ad3d3 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x3090e83f bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x30a05d9b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30b52a6d cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x30bca9a2 cpts_create +EXPORT_SYMBOL_GPL vmlinux 0x30bff44e palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x30d6da55 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x30de00ad snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x30f04fc6 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x30f1253a register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x30fcda0f rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310703ac vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x310968e5 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x311975b8 sdhci_request +EXPORT_SYMBOL_GPL vmlinux 0x311a6c3e __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x311c9f01 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x312177e7 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x31237a94 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312b87be gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x31362dba perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x313d4d75 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x3146e3a7 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x3148c0f1 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x31671c93 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x31735280 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x31757e20 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x31772502 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x3179f0db dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x3184d517 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x318aa668 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL vmlinux 0x318d86b9 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a1b8e8 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x31a4f37b mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31ab7fa4 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x31b79cf8 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cd02b8 mas_walk +EXPORT_SYMBOL_GPL vmlinux 0x31d40c50 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x31ea9cdd misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x3207a583 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x320f2cc6 mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0x3219ce99 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x321fe119 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x3225e8cb devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config +EXPORT_SYMBOL_GPL vmlinux 0x3241146c sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x324a0368 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x324ec2c3 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x325e5118 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x32645cce sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x327f80b1 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x328d4913 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x328fae54 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x32992614 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c7097e bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x32c94442 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x32ccc5cd dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x32d370d2 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x32dcb114 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x32e7c0d6 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x32f0bee3 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x32f7107a pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x32fc1290 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x3317ef2f bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x331b18a8 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x3326ae88 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3348f088 snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x334aa55d __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x3352b8b4 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33618f5e pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x336636bb clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x3382aa37 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x3397ec0b dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x33b250bf irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x33b46aa6 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x33e33e17 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x33ee7516 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f24af2 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x33f2dc0a clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x33f3d0da fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x34222bef irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x34253d1e blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x342f38ec edac_device_alloc_ctl_info +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 0x344bd03b devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x345dec61 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x345e7c0b devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x347a324a ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x3482c9d2 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x348af8d7 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x349d2e73 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34b4aed7 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x34bbb01c sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x34cd0671 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x34d5a216 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x34dad089 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x34dbc133 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x34ddc1e0 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x34ded9c3 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x34efa1df pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x350d2194 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3514ddfd blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x3526dab7 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x3528e6b5 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35420630 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x355fc4d8 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x35661fff usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x356ee655 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x357779a5 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x359a0833 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x35aa6c08 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x35af019b __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x35b0375a dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x35b0e642 usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x35b69455 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x35c49973 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x35cd0c93 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x35d58648 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x35da607c rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x35de2cb1 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x35e554d9 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x35e7e9bc nand_read_page_op +EXPORT_SYMBOL_GPL vmlinux 0x35f4b746 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x35f9b220 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362508f7 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x3626a153 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x362886b1 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x36356eda tegra124_clk_set_emc_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x363fd9d6 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x36498a13 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x3650ece6 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x3655e480 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x366a0a5e ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x368d4313 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36bd346d led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x36d1b3db da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36ded886 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x36df2560 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x36e95b25 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x36f1e569 mas_pause +EXPORT_SYMBOL_GPL vmlinux 0x370eb149 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x3715196f dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x373d2c5b sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x3742966e skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x37480197 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x375bec84 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL vmlinux 0x37626889 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x3766ca5e snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x37790270 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x37850e92 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x378872a1 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x378f54e1 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x379076f7 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x3797b605 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x379ee4c2 devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x379f840f crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x37a17673 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x37ad9748 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x37b7f7dc snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x37bfc5d8 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x37d89497 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x37e47aff devres_find +EXPORT_SYMBOL_GPL vmlinux 0x37ef3fa1 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x37f860ab dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x380f287c fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x381e4aa2 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL vmlinux 0x3821c47f snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x382423cc regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x38334e47 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383e77bc dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x384c838d perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x38546119 vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x386a98ae irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x387625d9 tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x3879ef50 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x38ce9b27 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f912e5 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x3909c396 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x390ae34f cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x39155def ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x3915ea4b clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x391fb69e genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3943e00e bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x39476e4d irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x3952d083 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x39585123 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x395c73b8 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x39681908 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x396a9488 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3999563e pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39ad3609 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x39ad55f6 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x39ba165b devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x39bf11bb i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39d76508 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x39e75571 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x3a0403af spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x3a12b03d rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3a147048 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x3a36a16c __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3a3bf1d4 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a608a4d snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x3a646370 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x3a6d9b37 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0x3a7648e2 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL vmlinux 0x3a819ade fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x3a930394 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x3a9b11b7 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9d37d9 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x3aa0c1c4 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3aa17826 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3aa71cf5 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x3ab70944 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x3ac8b01b devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3aeaac21 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x3af514aa paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x3af7df44 nand_reset +EXPORT_SYMBOL_GPL vmlinux 0x3aff5a70 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3b0714f7 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3b383297 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x3b45cf15 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b657db9 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x3b74644b tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x3b866937 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x3b87c281 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x3b8e4757 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x3b920d38 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x3b932e1d blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x3b97cbef xas_find +EXPORT_SYMBOL_GPL vmlinux 0x3b989877 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x3ba2f28b snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x3bbbf094 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x3bc1c411 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x3bd97ed1 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c05bab3 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1d1da5 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c2fcfc6 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c4fc5c8 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3c5eebc6 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x3c605fa4 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x3c63d352 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3c866bc6 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x3c8b6b9e tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x3c8ff6e0 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3c9ada6f serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3ce2162c pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x3ce7a0d1 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x3cf05c39 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x3cfbd1ca usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x3d0fdde1 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x3d1a4257 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x3d1c42ca da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3d377a0f input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3ae2a7 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x3d49b6f2 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x3d50d512 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5b131f rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x3d607375 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x3d65a333 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3d7e7c8f snd_soc_component_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x3d84fd6e dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d876ff1 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3d9e8aee pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x3db2f27d tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x3db48a49 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3dc88e35 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x3dcb8912 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x3de4d0ef sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x3de82152 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df9c6f8 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x3e27065b usb_ep_set_wedge +EXPORT_SYMBOL_GPL vmlinux 0x3e2f3f89 snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e34e96d mtk_clk_unregister_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x3e3cea85 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x3e478e9c snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0x3e494952 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3e7028e2 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e77136e usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule +EXPORT_SYMBOL_GPL vmlinux 0x3e7cf09c nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e7cf2eb crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x3e8522f4 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3e93517d vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x3eae265f of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x3eb0314a regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x3ec0aacb poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3ed7abce strp_init +EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put +EXPORT_SYMBOL_GPL vmlinux 0x3edf70c6 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x3ee247ab usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x3eea2746 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3f01f21d debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f110ba9 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f608b6e of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x3f6412a9 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8c2217 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x3f8d5960 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3f9eb88a i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x3f9f1898 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x3fb7c880 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x3fc76311 nand_status_op +EXPORT_SYMBOL_GPL vmlinux 0x3fcb1f3a ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x3fde79b0 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x3fe2f6e1 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe81900 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ff942b8 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4003111e tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x40056f4d clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x400ae589 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x400cbc0b bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x401d7b91 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x4023ed11 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x40344b78 usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045af6d usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x4068aa59 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4074e1f6 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x407a48e6 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x407d54ae rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x4081cdc1 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x408a41e2 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40ac6e46 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x40ba00e0 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x40c134e8 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x40c35135 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x40cd7ed5 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40d6cceb ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x40da2662 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40df163f spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x40e90161 bio_end_io_acct_remapped +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 0x411d7aa2 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x411ecaea filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x414a2381 usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x415142d0 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x41580488 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x415bc5a1 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x416d199c tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418bfe75 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x41953601 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a0b939 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x41a86083 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x41af2f36 cpts_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x41b592dc pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x41e3be30 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x41e8c9fa devres_get +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x420356bf nand_prog_page_begin_op +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4206f05d inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4239a5ac ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x4242beb2 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL vmlinux 0x42490a81 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x424d8482 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x425cce44 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x427bba5a trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4296408e nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42d6f225 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x42dd2571 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x42e7a297 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fd6a1c iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x4302f622 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x4303ad06 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x4304ff4e dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x43091243 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x430e2a53 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x4328f0fa irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x43332c43 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x4349129d of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x434a8e06 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x4375b997 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x4376f1d7 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x4379f979 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43819608 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x43880b7b gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x438e26bd devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ace54b sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x43b2daec clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x43c990c1 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear +EXPORT_SYMBOL_GPL vmlinux 0x43d2339b rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x43d2493f report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x43d48a2b pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x43dfd261 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x43e031a1 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x43ebcc1a musb_root_disconnect +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 0x440d9a4d ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x440e860f fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4411a0c6 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x44130285 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x4413950d devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x441dbd64 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x44239553 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x442ad2e6 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x442cd2a3 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x442e1aaf synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x442fa7c2 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x4438f1f5 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x444cb1c7 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4456d7e5 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x44587781 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x4480b832 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x448289a9 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x4484a1de dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4485a0ee tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x44928d9d iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x44b2add7 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c4659a disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d2d9ff sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x44d34b24 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x44d6e4c7 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x44da3cc3 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x44e615f5 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x4502feea raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4508dd0d dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x4511836f of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x4524e6d4 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x453494a1 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4564aa22 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x456a5c09 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x457e3574 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x458a18f1 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x4594a78b ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x45b43532 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x45b4ddee unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x45b98846 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x45beb8ce phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x45c6a67c nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x45cd3f7a device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x45ce2a30 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x45d24ac8 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x45e96051 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x45ede285 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x45fd219d l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460c46de fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x460e4fbb sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x4641ba44 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x464d6bae class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x46629b8e xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46af1a22 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x46b42a58 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x46beccba udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x46c2faa7 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x46d0f60b snd_devm_card_new +EXPORT_SYMBOL_GPL vmlinux 0x46d8c4fd dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x46e60e18 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x46fd5fbe perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x47010bb0 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x470ac95b __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x470e284a skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x4710d57e pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x471cb4be rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472fb6cd snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x473a967c kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x4748ccf4 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4777b643 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x47803f5d fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4780d72e snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478c82c7 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x47913b06 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x4792f6c4 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode +EXPORT_SYMBOL_GPL vmlinux 0x479e5991 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b8f19e device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x47c5567c uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x47c59b8c irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x47dbaa38 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f29c73 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x48069e4a rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x48085643 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x481d19ad switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x4830e1af blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x48336648 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4838732d gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x483e010e regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x48410614 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x4843019e net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x48675a99 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x486ba5c2 crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0x4895efef bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp +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 0x48d1dd39 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x48d486f3 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x48e1048f ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x48e7ab6a rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x48e9c096 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x49244266 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x495cefd2 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496e8e1a fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x49872e75 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49c230b0 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x49cc1bd7 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x49de149f regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x49e47007 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a09fb6e xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4a0cba26 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a0fa6fd regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a25becd dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4a2c9ad8 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0x4a3112ca device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x4a365151 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x4a57ebd7 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4a6e0e23 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4a707222 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x4a8cd7f7 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x4a9184a1 snd_soc_add_component +EXPORT_SYMBOL_GPL vmlinux 0x4a94ee9e sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x4aa874b5 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x4abc97ca gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x4ac0df4c da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x4ac7ab6e snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x4ac7e55c clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x4af05101 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4b0069ce sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x4b06c173 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b0a6b17 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x4b1b71b8 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x4b1df068 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x4b2e506c __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x4b36be51 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4b547493 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x4b56f250 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x4b634e17 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x4b859f3e sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x4b85a9ca __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x4b9c62de dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4ba8017c dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x4bab8d7e mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x4bac4957 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x4badf335 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4bb28398 mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x4bb70a02 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4bbe5932 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x4bc1dab9 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x4bd5f88b synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x4bd8a712 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4bebcb45 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x4bfade91 __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0x4c135a03 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4c466946 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x4c4a9be6 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x4c4e5411 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4c50b7f7 fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c5bc772 sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x4c7eebfb devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x4c9d83b0 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x4ca6bffe snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x4cb21be3 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cc7d575 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x4cd10dc0 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x4ce0e5eb kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4ce410ac devm_thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x4cebaddc thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d05e3d5 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x4d20831e ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4d27a649 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x4d29c322 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4d332dfa devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x4d36da1c scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d4fdcc8 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d7df5a0 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x4d8d131c netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x4d9527e4 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x4d9cf7ef phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x4da721bf of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db9028a devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x4dc56b88 ZSTD_customMalloc +EXPORT_SYMBOL_GPL vmlinux 0x4dc76be2 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x4dd09ddf dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x4dd334ea dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x4dd6d7f3 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4dff12cc perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e035ea3 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x4e1541c1 ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x4e1987b2 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x4e1b0ef5 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4e1cd1f2 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x4e232ca2 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x4e23f0ca usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x4e26e8dc srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x4e2978bd xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x4e2a2427 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e2b4c19 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x4e2f3c90 mtk_mutex_enable_by_cmdq +EXPORT_SYMBOL_GPL vmlinux 0x4e373174 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x4e3bc2dc devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x4e3d7ef7 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x4e40a31d pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4e49598d scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e5fa3f4 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4e601826 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x4e672846 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x4e77228f dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x4e78f2f9 vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4e8a7d05 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4ec1d201 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4eccfbf8 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x4ed44f91 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x4edf0229 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x4ee341b4 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x4ee6ded7 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x4ef05bfe mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef944a6 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f0aec4d crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x4f16ffdd cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x4f17ca99 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x4f1a52c3 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f274480 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x4f2b75fc i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x4f2bedc0 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f2cca9c genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x4f2e1fea phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4f2fb2c0 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x4f36faa7 nanddev_mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x4f50a78a folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x4f60fcda mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7de140 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x4f84f36b pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x4f93804d genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f9c7cf9 of_msi_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0x4facdd9f ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x4fc5621a pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x4fd9d106 xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0x4fdb95ef meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fde8d74 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x4fdf6285 mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff65888 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x4ffda8f9 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x5003f7aa of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x501ec14e sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x5021a8b2 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x50267bd2 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x503c0cd6 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x5049f58f pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x5060966a dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x506bab44 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x5079bd92 tegra_mc_get_carveout_info +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 0x509a6a2b pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x50b48294 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL vmlinux 0x50c61b5a mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x50c7ec10 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x50c7f99a snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50cfee04 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x50e6aaff rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5114d534 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x51153b89 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x511afc00 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x51289b23 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x514c04de usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x51673d1f device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x5169d87f usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x516d3844 nanddev_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x518fabe9 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x5191b687 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51ae6b67 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x51baf415 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x51d08f2f __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x51ee5349 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x520971f4 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5210813e find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x52108296 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5210bea3 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52264af2 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x524496ba pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x52530f96 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x52540d61 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x5257960a fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x525bc104 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x525c14b6 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52710ae3 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x5272949c irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x52805609 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x5290c296 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x52953bfb ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x529cbe3f dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x52aa5810 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x52b10bb4 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52bf0c46 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52eb5446 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x52ec9e7c sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x52fa9c45 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x5317e227 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x53227ccc security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x534a0516 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x535ee343 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x537b1787 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x538cf6ef dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538d5878 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x53a3a15d dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x53a7a406 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x53b4be2a usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x53d06127 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x53d1974a percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x53d26e34 vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53d93d4c posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x53dce328 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x53de4914 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x53e90ffb ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x53ebd877 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x5400626e mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x540d62f0 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x5413cac9 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541c3465 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x54247155 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x5426e423 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x542d0165 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x543f297a devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5442e3cb tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x5454f8cd rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x54620d47 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x546818eb ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x5478c0b7 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x547f0654 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x5488e650 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549ed464 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a300ec spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x54a76c7f rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x54b28833 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x54d64136 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x54d7f342 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x54f01e4a debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x552357e6 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x552c7e10 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x552c9626 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x55310abc snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553cd09a inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554504fd pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x554fd6fd fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x55532449 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x556b7ffc subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5571361f usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x55758e76 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x5576fb91 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55a7d11b gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55ccf619 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x55d4facb cpts_register +EXPORT_SYMBOL_GPL vmlinux 0x55defcfa led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56004569 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56082e11 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x561340b1 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5613b82c crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x5615dcc4 ata_link_abort +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 0x56266006 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x562ed104 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564c4efe sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0x56552ae7 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x5658fdf1 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x565d96bc devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x565f207f od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x566a6216 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x566b4841 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x566e7e01 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x56aa6fa7 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x56ad5d30 mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x56af8ce6 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x56b197cd ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x56b54cf6 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56c34584 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x56d5f59c of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x56de3980 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56eb4036 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x56fba299 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x57081764 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x570951fa ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x570f7f71 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x57358b44 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x574886e8 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x574f5f9c pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x5753716b device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x5753b882 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x575b4be1 snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0x576ea2bb perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x576eb184 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x578f7f3d trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x57bfd1de l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57e29091 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57e692c3 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f9ce90 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x5804577d sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5809f243 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x580d8946 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x5817c849 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5829344e ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5832d926 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x585bb8b2 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x5868aa77 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x5868fb77 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x58782615 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x58a5baa6 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x58b119c4 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x58c370db ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58f32dc6 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x59001a3b cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5906307f devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x590f114a invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x5916abeb xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x591c5307 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x591ef160 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x59216955 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x592a8b42 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x593269b1 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x593393ae sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x59428fb6 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x59450b7e nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x59459b59 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x59551cc1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index +EXPORT_SYMBOL_GPL vmlinux 0x595a7fa6 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x5973057b regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598d0ca1 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x5990dd15 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x5991a403 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x599d4c86 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x59b439f3 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str +EXPORT_SYMBOL_GPL vmlinux 0x59f1a495 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x5a0accde __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a19f449 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a1fc5ff scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x5a34dc47 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x5a3f093d ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x5a4180b2 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a5f2095 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x5a66bc51 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x5a6a071b gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a72f14c regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7cf36e usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x5a867cac fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x5a886f23 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x5aaba4cb fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x5aacf488 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5abfba0a __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x5ace5460 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x5adecb70 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL vmlinux 0x5afbd9ec posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x5aff950f skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5b0414bb pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2a48f3 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x5b2d0f52 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x5b349860 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x5b3b611c wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5b3c4bb6 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x5b45b607 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x5b47f1a8 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x5b56ddf0 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x5b5a0055 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x5b75916e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5b82d911 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b8cf1b0 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x5ba43681 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bb4aae3 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdae456 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdcabcd filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x5beaa809 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x5bf00932 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x5c244b5c xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x5c24c051 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x5c25c0d7 __hwspin_lock_timeout +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 0x5c3de463 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5c45c77c da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x5c463dae driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5c469223 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c62973b nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x5c6dbe0c pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c758c70 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x5c7a9840 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c88ba4c dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x5ca01320 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ca0c9e5 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x5ca37f44 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cae7880 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x5cb819ec gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x5cd034d5 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5cd12f99 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x5cd6bf57 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x5cd80d62 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x5cdd3e1b phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x5ce0ccd9 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x5ced986e tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cefeb7f splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5d1b34ff tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x5d26d0c5 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d30cab6 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x5d362b7c pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x5d376e19 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x5d453a9d sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x5d4c4006 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x5d582a9f snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x5d7f94b7 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x5d82a5b8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d8800c3 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x5da1dbfd crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da3dd36 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dad3c58 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL vmlinux 0x5dc093bb snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x5dd332b6 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5dd54cb4 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x5de2245c pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0a71b0 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x5e0de81c devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5e14217b usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x5e3d88cb mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x5e481e15 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5d1519 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x5e66468f handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +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 0x5ecc217c xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x5ed811c8 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x5ef0c3c2 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x5efbb493 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x5f07d22f pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x5f23a94f proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x5f29494f inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5f3016c0 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x5f3341b9 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x5f3767e0 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x5f5747cb nanddev_init +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f876cda usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x5f8ae46c pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f9a7be2 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5f9f3696 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fd50156 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x5fd5e9f0 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x5fd71a66 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x5fdc74a0 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x5fdd06ec usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x5ff7f6ea virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600d8ada device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x6032efd3 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x60357332 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x603a478d irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x603c8f04 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x603cec16 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x604181a8 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x60477aa1 nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0x604801e3 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x604de377 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x605b186d pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x605ecbc6 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x6060ed33 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x6060ee96 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x606328aa spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x60647f94 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x6072b446 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608d52e8 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6095517b io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x60988009 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60acd360 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60b705f1 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x60ca57d8 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0x60d22e3f devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x60d3ff59 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x60d61d05 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x60d8547a nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f14f7f ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x60f1f635 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x60f2433c iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x60f84c03 sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x610ea3f9 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x6116ed3a class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6120fd64 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6125e400 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x61351cc7 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x61393e4d tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x615e8849 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x6166f8b6 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x61774cd4 mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x617fdc07 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x61900769 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0x61cf2dd2 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x61f245c3 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0x6206dded sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x621f3e8b sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x622a0ce5 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62365368 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6239c3e6 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0x623aa1fa inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x623aa92d extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x6246ca58 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x625a0815 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x625bc2da __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x625d9526 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x626644de usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x627760be ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x627a7790 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x627cc65d irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x627d635c regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x628b7917 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x629309cb sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x629ccb91 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x62a1d12e omap_iommu_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x62a864d7 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x62adab80 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x62b25cdb cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x62b5d664 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x62b7b224 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x62b8bb54 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c0f7d7 pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x62caec3f lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x62da036f tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x6300654a switchdev_handle_port_obj_del +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 0x63255f8f blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x63350ca6 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x634eb1af trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x635137c7 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x635a39bc cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x63808708 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0x63809299 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x63907cb8 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x6398e721 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x639b5c34 snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x639d4512 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x63a3bd72 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x63ae62d6 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c3acce phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x63c6e0a7 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x63c991ff crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x63cdfad9 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x63d8e960 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x63e0294e switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x63f677a3 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x63fe12af snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x640bd90b rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x64148466 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x6421bc21 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x64731ef8 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x647b2161 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x647eafd5 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x648daddf reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x64a0274a devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x64af08fc devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x64c96917 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x64d39971 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x64d472be register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x64d6ff77 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x64daea73 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64ea135c icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x64f75c25 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x6507281d devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x65116b67 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x65149f3a platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x651d9969 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x65200540 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x65284995 efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6540de6f iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x65506d3f dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x65529d74 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x655bb13e devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x6567849d ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x657c8a34 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x6581ec1d sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x65917f3c regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x659e2e05 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x65a915e2 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x65be4223 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cfd772 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x65d15f54 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x65da5131 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x65ddd7f4 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x65def01d mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x65dffb6e usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x65e98421 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x65f50ac4 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661d2a97 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x661d6b2f usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x661ddf42 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x6623108a proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6644f133 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x667c8851 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66878b6e call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x6689a7b5 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x66937957 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL vmlinux 0x669e3b47 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x66a11836 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x66a769ad extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x66b5007a __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x66b8e7e2 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bd0d4d badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x66d6ce27 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x66d7451a sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dab1f3 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x66eb6628 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x66ff7e87 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x671b19d5 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x6746bfb4 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x674d35cd nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x6757a441 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x675d6499 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x675f8869 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x67626c16 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x6764f15e __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x677e1703 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add +EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x67907384 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a6faad fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67e87fbe lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x67fec2b9 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x67ffbf06 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x6801126f virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x680aec27 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x6827b964 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683192a1 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x68377254 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x6838569a ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x683a5c0c thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x683ec35d blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6844ee36 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x68549403 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x6864c3ef max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x687604ca ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used +EXPORT_SYMBOL_GPL vmlinux 0x688c08bb blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x6892518d i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689a5f9c adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x68ad19b4 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x68af33e6 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x68bce6d1 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x68c137b3 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x68cdb3d5 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68ce4781 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x68dfd0c8 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x68e084d0 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x68e83591 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0x68f30dae blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x68f53764 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x68f580db ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x69192894 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x691db949 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69344674 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x694c8822 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x6957104b xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel +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 0x697dd079 nand_write_data_op +EXPORT_SYMBOL_GPL vmlinux 0x69afc0c8 __srcu_read_unlock_nmisafe +EXPORT_SYMBOL_GPL vmlinux 0x69b1745e FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69dde9dc of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x69edeb4c tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69ef67ca scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x6a04254e scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a06921c fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x6a18db7d sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x6a1c3d45 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6a3864ef devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a46ceaf dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x6a47ec34 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a75d01c ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x6a7d7a21 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x6a829ed1 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x6a838f27 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6a877a59 __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6aadbd78 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x6ac5434f phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x6ac943e2 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x6acc6da4 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x6ad52fa0 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x6ae00855 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x6ae9dc73 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x6aff9c39 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x6b0151fc anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6b04475d hwspin_lock_free +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 0x6b42fd48 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x6b445893 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x6b44cbc4 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b460e73 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x6b468db1 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b4d4889 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x6b65997a __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x6b6886ec relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x6b6b047f phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x6b78ed56 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x6b7cc41a regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b900407 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x6b94c6b9 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x6b97cced of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x6b9ec2da blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x6ba09d22 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x6ba1e5d2 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x6ba2c472 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x6ba3a54d snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x6ba45cf1 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x6bc75943 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL vmlinux 0x6be296f8 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6bed2e97 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x6c0528f0 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6c0a5f2a watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x6c0b95b6 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x6c23f709 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6c3cc639 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c3fe442 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c564720 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5f8468 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x6c7a4ff0 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca77ebc fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x6cc3458d fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x6cd3860f inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6cd8f521 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x6cd96910 __kmap_local_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x6cdc4f9e snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x6ce7144d virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6cea3556 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d1057e0 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6d21b2bc gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x6d21f6b4 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6d2364b8 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x6d2961e2 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x6d2f1fea __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d448d23 disk_uevent +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 0x6d7cdc62 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8747a0 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x6d91d8fe __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6d9335e2 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x6d94bf32 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x6db250d0 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x6db37c4d skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbd81c6 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x6dbfa3e6 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused +EXPORT_SYMBOL_GPL vmlinux 0x6dc8151c crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x6dcfca99 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6dd1b8a7 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd75e1f tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6de5c6a4 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x6dedb096 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +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 0x6e40a4ff dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6e40e382 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x6e52bb30 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x6e54a2a0 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x6e582b36 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e6378cb irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x6e679321 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x6e683693 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x6e76ee07 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x6e78e72d fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e86b5b3 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x6e88197d of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e89bfaa trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x6e9c576f fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x6eac73fa tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x6eb26b15 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec5bd47 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6ed251e8 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x6ee66152 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x6ee990d1 lpddr2_jedec_manufacturer +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efa72de power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x6f0fc16e pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f30e146 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x6f358a53 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x6f39245e pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x6f3bb6e4 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x6f4c520c blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f76e92d of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x6f7b607a pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f81aed0 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6f83852a virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x6f8715e9 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x6f937e89 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0x6f98247a fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x6f9ad8f9 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fab0124 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fad1e2d pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x6fb39c8c usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x6fb84fbf __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x6fc0bff4 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x6fc8267f fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x6fce2b7f ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fda4043 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x6fdcdb96 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fe76c38 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x6ff31cf2 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x70141291 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x702e38e1 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x7058b025 vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0x705e6897 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x70778ef8 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x707fb262 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x708f58c2 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x709280db serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x70a7047a pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x70ab6f73 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x70ad7876 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x70adc398 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70c90a12 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d266b6 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x70d52513 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x70f1dec2 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x70f82acf of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x70fb11c3 vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7117e03a mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x711b3891 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x711fb679 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x71204fc3 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x712f2689 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7135fa26 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x7142d921 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x714e2596 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x71576a9b bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x715d35ce access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x715f388a bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7163cee8 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7180ae3d get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x71850429 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7196ce35 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x7196e09a fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a0d212 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL vmlinux 0x71a9d102 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x71b28df1 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x71b45524 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71b9bcf9 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x71be6f7f dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x71c56dad __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x71ca164b usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x71ce3687 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x71e34ee8 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x72040fe8 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x72243f6a led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x722f1a7f snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x7237348d serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x724121d8 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x72453004 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x724acaec sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x724c8d3b irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x72510b99 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x725a44d4 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x7262c89d device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x72651f7c rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72660893 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72828537 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x72877a57 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x72891af8 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x72897ed1 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7289ff2b snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x728d49b4 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x728ea10d metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x729f379b fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x72a1279c dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x72a8e75f nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x72b68e8b percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x72c26df1 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x72ea8dcd of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x72fa2fe3 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x72fee607 nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0x7307df5d of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7312b31f bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x731c2669 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x732b2f39 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x732be823 input_class +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7352bbd5 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x73695b85 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x736abe2a ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7392f2bc vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b368bb dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73bb324a fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x73c8b225 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d55c45 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x73e8fb58 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x73f3351c virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x742562d0 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7450e066 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7451a790 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x74528a3a set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x7465a7ed to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7478858f sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x74823abd hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x7488daf9 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x749840b6 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x749c0d8d led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x74b0ea17 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b73e4c iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74cd4cac led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x74d62f5a blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x74f13c01 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x74f2198b bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x74fd57f8 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x74feb0af vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7500001f phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x750157e7 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x750b87c3 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x7517c7f6 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7534596b mtk_mutex_write_sof +EXPORT_SYMBOL_GPL vmlinux 0x7545cb80 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x754fbcf5 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x7552c73f snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x758bad34 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759356de tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x75977c9b pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x75a7a785 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x75ab8638 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x75ac9a6c snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL vmlinux 0x75ad0148 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x75af267f cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x75af4b70 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x75b0b770 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x75b0eb60 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x75b30fae irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x75b380b3 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x75b5c2bb debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x75cb33f6 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x75cb7229 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x75d09371 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x75d19ec5 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75dede46 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x75fce0c5 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x76226591 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x7629e383 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x76560928 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub +EXPORT_SYMBOL_GPL vmlinux 0x7663d6e8 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x766bddb1 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x76722cab sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x767f5470 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7696d240 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x769d06c6 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x769fbc09 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x76a27042 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x76adb4d6 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76b353e6 musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e10a88 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x76e7250f i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f7ff14 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x770286ac noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x77070a96 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x770e624f devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7710f933 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x771925d0 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x772f0258 fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x77372a14 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x77453b3f regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775b21d3 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x776a24ef ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x7786ed0c sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x7793fe22 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x7799f606 usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x77aa7b5b alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b46ffb usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL vmlinux 0x77bf5a34 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x77c6f639 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77f2eb9c cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x77fe05dd elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x7818866b blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x7818fecb led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x781e4576 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x7823742d scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x782a4881 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x782b31b8 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x783da02f msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x7845669c of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x784be6e3 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x785875d3 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785e9245 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x786e4bc6 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x78705104 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x787f39d4 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x78854cef rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x788571d1 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x7894deb4 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78b23d39 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x78b749e2 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x78b83875 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x78c499da meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x78c9c27e tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x78caeff1 mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0x78d0c436 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x78dbd29a dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78eb3229 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x78fc8a5e inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x78ff736a l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x79129b07 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x79136767 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL vmlinux 0x791a72f6 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x7923778d usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0x793b5a44 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79464078 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794a6a98 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794b7515 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x794f49ac mas_destroy +EXPORT_SYMBOL_GPL vmlinux 0x794ff375 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79591eeb sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x7963020e mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x796e3580 nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x797e149a ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x7984957c spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x79ac7dd4 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x79ada3b7 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x79af7530 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x79b863c4 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0x79c7fc00 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x79cc0cac __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69014 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x79fba44d syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7a17d48e usb_del_gadget +EXPORT_SYMBOL_GPL vmlinux 0x7a2da6dc tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7a49dd7c tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x7a562d03 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x7a5ed540 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x7a67f815 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x7a712407 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8613b3 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7a87b12d rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7a8d263d tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac2cdb3 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acac86f fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x7acc804a bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad7ded0 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7adf1140 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x7ae59f8e ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x7aebae6e __srcu_read_lock_nmisafe +EXPORT_SYMBOL_GPL vmlinux 0x7aef3bc8 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7b0002d2 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x7b10453f l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7b134b22 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x7b13997c bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x7b16ebf1 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x7b1d04d3 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7b1de5c3 onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x7b2d0437 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x7b2dcbfb strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x7b4bb10e usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7b562c49 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b63e770 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7b6c97b0 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x7b700e24 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7b759e09 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b8a3ebf regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bbdd33f vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x7bc070f2 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x7bc3309e regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7bd12dda __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7bd5dd50 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x7be5eef7 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7beca608 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7bfe6b46 snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0x7c0f9a61 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x7c192508 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x7c193339 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x7c21c0f8 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c384ad5 snd_soc_dai_action +EXPORT_SYMBOL_GPL vmlinux 0x7c3c2205 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3e2387 dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0x7c4ad448 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7c51e26b ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7c62b5b7 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x7c8413d3 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x7c85f1b2 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x7c8980cc dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7c8d9144 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9cf1d1 omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7cb0fd17 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb8ff5d iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x7cbe3692 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7cca05ee irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdac6bf led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x7ce3c3c4 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x7ce864e5 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf852d4 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x7d070cfb ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7d0bd232 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x7d130db2 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x7d1c7714 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x7d21d32c rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x7d424dec devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x7d4bf54c pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x7d4f95df mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x7d4fb8e4 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x7d4feba2 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5c0197 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7d5d1b79 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d69f6e8 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7d75dde7 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x7d830b3e clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7d892cba static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x7d8e597f free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7daf741b fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7db2918f devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x7dd26257 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7df4abaa fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x7df6dc47 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x7dfc5c61 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7e12d570 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x7e1a0d3e serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7e1b2e4b snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7e1c5d11 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x7e263a91 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x7e2dda9a fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e4e8fc1 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x7e505c35 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e6282f2 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e78498e crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x7e7d219b __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e906b37 usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0x7e907dc4 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7eb00a3f usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec3ae36 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x7ee165a4 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x7ee7cf01 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x7ee8731c event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eebd30c clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x7eec1bfb led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ef12c3f sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x7ef1faf2 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f01c312 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7f19894b ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x7f459044 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x7f475b52 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f4f15c6 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL vmlinux 0x7f64c296 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x7f68d28d ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x7f783c13 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7f7bb8fe clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f7f7a6d sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x7f8e9ed8 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x7f90ccf2 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x7fa9eb56 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x7fbcc6da snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fc29a73 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x7fd46a25 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7fd79445 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x7ff25074 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x7ff268af unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ZSTD_customCalloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ZSTD_isError +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 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __auxiliary_device_add +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_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __class_register +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_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_is_enabled +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_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __dev_fwnode_const +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_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_regmap_init_i2c +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 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __dma_request_channel +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_link +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 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __inet_lookup_listener +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 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_alloc_domain_generic_chips +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_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mt_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __phy_modify +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_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pm_runtime_idle +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 __put_net +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 __regmap_init_spi +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 __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 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __symbol_get +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_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_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_block_split +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_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_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_neigh_update +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_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_rpm_suspend +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_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_wbc_writepage +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 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __virtqueue_unbreak +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 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_swap_extent +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_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_check_ready +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_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_disable_phys +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_phys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_start_engine +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 altr_sysmgr_regmap_lookup_by_phandle +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_inode_getfile +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_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_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_dummy_port_info +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_clear_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_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_qc_complete_multiple +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_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_slave_config +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_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_port_intr +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_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_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_std_postreset +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 ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff auxiliary_device_init +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_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff balloon_mops +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 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_start_io_acct +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_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_debugfs_rq_show +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_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_quiesce_tagset +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_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_max_discard_segments +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_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_stat_disable_accounting +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 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_rwstat_exit +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_log +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_map_inc +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_match +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_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run4 +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 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bsg_remove_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 buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_get_device_klist +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 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_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_compat_unregister +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_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clean_acked_data_flush +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_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_flags +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_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_register_fixed_factor_parent_hw +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_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_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_multiplier_ops +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_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_regmap_gate_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_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff console_list +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpts_misc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpts_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpts_unregister +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 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_freq_transition_begin +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_attr +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_register_driver +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_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_pause_and_lock +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_check_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_aead_setkey +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_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_acomp_node +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_rng +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_sync_skcipher +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_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_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_aeads +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_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_skcipher +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_req_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ct_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_unregister_notifier +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_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_holder_notify_failure +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_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debounce_time_mt6765 +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_read +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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_u32 +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_file_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_lookup_and_remove +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 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_get_regmap +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_by_id +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_set +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_get_next_hrtimer +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_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_add +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_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_supplies +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_indexed +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_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_remove_request +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 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_enable_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 device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_get_child_node_count +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_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_get_phy_mode +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_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_rename +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_unregister +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_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_trylock +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_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_entry_ctx_prepare +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_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_create +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_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_info_version_running_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_info_version_stored_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_activate +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_param_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_param_unregister +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_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_unregister +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_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_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_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_extcon_dev_free +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_array +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_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_put +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_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwrng_unregister +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_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kstrdup +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_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pm_opp_set_config +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_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regmap_del_irq_chip +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_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_get_enable_optional +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_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_reset_control_array_get +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_component +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_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_release_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_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_ro_round_rate_parent +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_from_per_bio_data +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_hold +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_send_uevents +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_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_fence_unwrap_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmi_available +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmi_kobj +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_unbind_con_driver +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_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_find +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_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_init +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_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_ep_init_notify +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_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_setup_rc +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_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_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_mc_handle_error +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_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_handle_npe +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 efi_status_to_err +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethnl_cable_test_result +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_fget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_register_notifier +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_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_unregister_notifier +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_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_deferred_io_fsync +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 fbcon_modechange_possible +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_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_nh_common_init +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 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff find_vpid +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 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff flush_work +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 free_uid +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_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_ioctl_get_key_status +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_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsstack_copy_attr_all +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_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 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_free_conn +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_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_send_init +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_matches +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_get_name +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_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_graph_get_next_endpoint +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_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gcd +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_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_handle_irq_safe +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_check_and_restart_aneg +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_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_completed_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_governor_parent_kobj +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_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_state_synchronize_rcu +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_init +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 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_get_data +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_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_direction_input +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_export_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_array +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_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_put +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_raw_array_value +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_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_simple_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 host1x_context_device_bus_type +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_sleeper_start_expires +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_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwmon_device_register +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_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_new_ancillary_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 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_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx8ulp_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx93_clk_gate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_clk_hw_sscg_pll +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_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_csk_addr2sockaddr +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_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_pernet_hashinfo_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_rs_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inode_sb_list_add +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_upload +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 interval_tree_span_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff io_cgrp_subsys +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_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_read_folio +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_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_get_domain_for_dev_pasid +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_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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_local_out +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_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_route_output_flow +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 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_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_disable_parent +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_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_associate_many +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_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_remove +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_simple_ops +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_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_gc_mask_clr_bit +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_remove_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 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff is_virtio_device +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_fd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_type_encrypted +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_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_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kill_pid_usb_asyncio +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_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobject_init_and_add +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 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_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_parkme +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_unpark +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_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lcm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lease_unregister_notifier +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_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_set_brightness_nopm +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_blink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_unregister_simple +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_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 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lp8788_read_byte +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 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_empty_area +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_empty_area_rev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_erase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_expected_entries +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_find +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_prev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_store_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_store_prealloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_request_channel_byname +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 +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_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_run +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mddev_init +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_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff metadata_dst_alloc +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_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_switch +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_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mnt_idmap_owner +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_rx_buf_u16 +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_u16 +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_mul +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_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_pm_get_subflows_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 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mt_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_block_isreserved +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_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_point +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_read_user_prot_reg +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_writev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_dividers +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_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_simple_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_unregister_dividers +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_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mmsys_ddp_dpi_fmt_config +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_mutex_write_mod +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mux_gate_clr_set_upd_ops +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_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_adv_pull_set +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_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_get_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_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_register_reset_controller_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_clearb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_set_peripheral +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_get_pipelined_engine +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mxic_ecc_process_data_pipelined +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_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_decode_ext_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_ecc_choose_conf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_ecc_init_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_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_prog_page_end_op +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_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_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_bbt_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_isbad +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_markbad +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_vlan_rx_kill_vid +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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_sw_irq_coalesce_default_on +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 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_checksum_partial +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 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff no_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nop_mnt_idmap +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_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_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 of_add_property +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_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_css +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_device_compatible_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_controller_register +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_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_gen_pool_get +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_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_get_fb_videomode +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_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_icc_get_by_index +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_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_irq_parse_and_map_pci +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_mpc8xxx_spi_probe +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_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_phy_provider_unregister +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_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pm_clk_add_clk +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_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pwm_xlate_with_flags +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_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_thermal_get_trip_points +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 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_resume +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_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_endio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_reporting_order +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff param_set_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_add_dynid +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_conf_write +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_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_dev_run_wake +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_ats +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_doe_supports_prot +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_rom +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_destroy +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_msi_irq +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_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_stop +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_free_space +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_pri_supported +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_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_test_config_bits +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_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_user_write_config_dword +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_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcim_doe_create_mb +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 percpu_down_write +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_end +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_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_10gbit_full_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_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_led_trigger_change_speed +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_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pid_nr_ns +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_devname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_force_sleep +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_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_get_port +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 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinmux_generic_remove_function +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_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_register +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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_runtime_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_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_thaw_early +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_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_no_callbacks +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 poll_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_acl_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_group_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_am_i_supplied +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_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_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_set_property +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_data_write +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 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pse_ethtool_set_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff psi_memstall_enter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pstore_register +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 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_abort +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_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_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_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff region_intersects +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_btf_fmodret_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_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_pernet_subsys +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_sys_off_handler +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_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_fields_update_bits_base +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_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_voltage_sel_regmap +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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_is_supported_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_notifier_call_chain +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_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_suspend_voltage +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_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff request_free_mem_region +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_register +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_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_write +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_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_local_set_device_id +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_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_read_config_16 +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_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_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unregister_mport +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_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pmu_unblock +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_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff run_dax +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_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_clear +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_resize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sched_setattr_nocheck +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_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_cqe_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_remove_host +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_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_bus_width +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_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_switch_external_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_writesb +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_inode_create +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_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_get_tiocm +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_parity +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_em485_supported +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_primary_fwnode +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_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_parse_port +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_finup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shmem_read_mapping_page_gfp +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_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_psock_tls_strp_read +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_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_scrub_packet +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 +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_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_walk_virt +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_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ac97_reset +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_card_ref +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_compr_stop_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_compress_new +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_register_layer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ctl_request_layer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_device_get_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dma_buffer_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_close_release_chan +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_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_request_channel +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_hw_constraint_eld +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_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_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_bytes_get +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_jack_new_pins +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_trigger +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_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_set_jack +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_write_field +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_active +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_startup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_link_set_capabilities +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_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_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_disable_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_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_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_mixer_update_power +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_controls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dpcm_be_can_update +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_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_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_info_volsw +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_zones +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_new_compress +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_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_parse_tdm_slot +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_strobe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_put_volsw +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_card +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_register_component +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_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_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_register +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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff software_node_find_by_name +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_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_get_device_match_data +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_dirmap_write +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_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_unregister_device +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_notifier_chain_register +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 start_poll_synchronize_rcu_full +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_dev_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff strp_process +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff subsys_system_register +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_bridge_port_unoffload +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 swphy_validate_state +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 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_trace_start +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_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_groups +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_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_unbreak_active_protection +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_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tc3589x_reg_read +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_update_proto +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_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_parse_mss_option +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_unregister_ulp +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_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_transfer_atomic +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 thermal_add_hwmon_sysfs +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_of_zone_unregister +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_register_with_trips +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_slope +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ti_clk_is_in_standby +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ti_cm_get_macid +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 timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff to_of_pinfo +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 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_array_init_printk +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_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_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_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracing_snapshot_cond_enable +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_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_dev_name_to_number +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_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_register_device_attr_serdev +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_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_save_termios +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_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_insert_char +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 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_ftrace_export +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_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_add_gadget_udc_release +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_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_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_enable_ltm +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_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_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_ep_match_desc +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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_urb +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_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_pci_remove +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_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_find_child +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_initialize_gadget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_match_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_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_get_charger_current +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_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_register_dev +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_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_role_switch_find_by_fwnode +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_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_init +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_submit_urb +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_unlink_urb +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_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_wakeup_enabled_descendants +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_read +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 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_add_rule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_chain_id_to_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_copy_rule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_mod_rule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_find_keysets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_get_counter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_set_rule_set_actionset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_set_rule_set_keyset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_check_mem_acc_cb +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_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_add_sgs +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_prepare +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_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_notify +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_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vprintk_default +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 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_create +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_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff watchdog_init_timeout +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 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wbt_enable_default +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_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_reg_lock +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_put_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 xdp_alloc_skb_bulk +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_frame +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_return_buff +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_warn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_policy_add +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_notfound +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_run +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 +FW_CS_DSP EXPORT_SYMBOL_GPL 0x06b7708c cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x100f2ac1 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1062a7bc cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x13931079 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x31c3f04c cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x39fd443f cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x450fe681 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4534ab02 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4c4a5346 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4fa6cd89 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x577d9afd cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x698ac63f cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x79a04b90 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x24e3e81b hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x29130ae9 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 0x25dd3a57 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x7fffffff ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x3e97a6eb ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x449b99b9 ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x615d55c3 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x7fffffff ad7606_probe drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x7fffffff __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x7fffffff adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x51242fbc adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5dada17d __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7ae94bbd __adis_initial_startup 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_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x7fffffff __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x3e0c292f adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x7fffffff devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x06146b9b adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x2d00893e adxl31x_chip_info drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl312_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl312_writable_regs_table 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_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl314_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl314_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4d2f5e0f adxl35x_chip_info 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_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 0x339f7b00 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x4bbd0cb5 adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x69217911 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x08d46bc6 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x589879e4 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6267abdc devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x67bde28f ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x732d5b47 ad_sd_write_reg 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_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sd_init 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_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x7fffffff bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0x7fffffff bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x0e09e965 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x4be696ef bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x774e4caf bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x7fffffff bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x3aeb1df3 bmc150_magn_regmap_config 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_remove drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x053dbf75 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x3c454067 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x10f43259 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x284cdc7c bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x614c7a0c bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x7fffffff bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x7fffffff bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL 0x7fffffff bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0x7fffffff bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x62654003 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x67b12b80 bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x7fffffff bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x7fffffff bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x301b988d bno055_probe drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x7fffffff bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x446a9b56 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x77c037df fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x7fffffff fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x5c59b6ce 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 0x003d98c7 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x0a362114 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x1480b13f hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x1c8d47e9 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x1cd4b558 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x35069b8a hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x459e31c1 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x62f71927 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6cce7300 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7e6c402c hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7fffffff hid_sensor_read_samp_freq_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 0x36d3873c hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x79fb0893 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7bb3c707 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7fffffff hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x40634ba3 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7fffffff hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7fffffff hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x6ab6476e hts221_pm_ops drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0x7fffffff hts221_probe drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x6714693f inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x7fffffff inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x7fffffff inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x7fffffff kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0x7fffffff kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x4ba5b702 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_LSM6DSX EXPORT_SYMBOL 0x38fe0d67 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0x7fffffff st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +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 0x28e7185e 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 0x5ec0dab9 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x6c9766e6 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fcd3293 ms_sensors_tp_read_prom 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_battery_low 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_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x41901906 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x6130e412 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 0x0fd2bbef mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1934a698 mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1e7125ca mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x28476552 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2c97bdfd mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x308ecd66 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x3f219e32 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 0x5d3804d2 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7453265e mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7560279c mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_read_status_byte 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_device_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_word drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0x7fffffff mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x7fffffff mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x18a74826 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x7fffffff inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x76f16b35 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0x7fffffff ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x7fffffff rescale_process_offset drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0x7fffffff rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x5633fcda 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 0x7fffffff scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x7fffffff scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0x42218fe4 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x18916cb4 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_buffer_postenable 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_SSP_SENSORS EXPORT_SYMBOL 0x7fffffff ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7fffffff ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7fffffff ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_ST_SENSORS EXPORT_SYMBOL 0x00cef9b6 st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x070b1870 st_sensors_power_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 0x180d6657 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x19972091 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x19b94263 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x1b4257d1 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x3c73b2b3 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x422d9f36 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x4449b578 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x4eb6a28b st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7a9dcf51 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7ab10f11 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_gyro_get_settings 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_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +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_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +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_axis_enable 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_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 0x7fffffff st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x6b8efbe3 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x5bd32573 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x7fffffff st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x0bb085f6 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x3d6b42cd zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x5362335f zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x65f21a15 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7fffffff zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7fffffff zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IOMMUFD EXPORT_SYMBOL_GPL 0x078bc7ec iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4592efe4 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x6105b0f3 iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fffffff iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fffffff iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fffffff iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fffffff iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fffffff iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fffffff iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fffffff iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x381196a2 iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x09d8a5ca iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0e88bc64 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0eb449bf iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1c0a6942 iwl_write_direct32 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 0x1fff746a __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x20015262 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2035af8b iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x21524f65 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x281dcdcb iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2bc345b1 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2befa992 iwl_phy_db_init 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 0x2c96485e __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2d4b4146 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x31bc542e iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x32ef2c51 iwl_free_fw_paging 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 0x3bd96849 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x414f41d8 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45828d39 iwl_get_shared_mem_conf 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 0x4c5d8a6f iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x543cbfed iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5bc02099 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5ef4a44d iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x68235028 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6a936621 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6b93fd66 iwl_read_direct32 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 0x77657fc7 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78785f82 iwl_fw_dbg_collect_desc 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 0x79fc0247 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7bd94865 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7cbb6ae2 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7d56c9a9 iwl_dbg_tlv_del_timers 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_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_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_force_nmi 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_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_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_init_paging 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_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_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_read_prph 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_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_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_write_direct64 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 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 0x104a14ed mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x14d7f773 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1cb12242 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3916a330 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x462447fd mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5065a9b2 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5a344d4f mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5df725b3 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x62882ba5 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff __mcb_register_driver 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_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_request_mem drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x277cca04 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x42197e3f ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0x4e961243 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2daec943 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7fffffff nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7fffffff nvme_execute_passthru_rq 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 0x05214ab3 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x098dc59e peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x183ad9f4 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1e0d1d26 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2ca5d6df __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x30f9bd81 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x403eb472 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4586a195 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x483bb2b8 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4c0210d0 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5045d94c peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x607c64df peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6acf3795 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_request_data_readq 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_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_pci_cfg_local_readw 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 0x1f194534 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x7fffffff peci_ep_pci_local_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 +PECI_CPU EXPORT_SYMBOL_GPL 0x7fffffff peci_pcs_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x06cc1516 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x098ce2dd pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0dc97887 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x201d3e0e pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4550ed0e pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4f2a2caf pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7988f5ba pmbus_get_fan_rate_device 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_debugfs_dir 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_read_word_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_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_update_fan 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 0x1b953805 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x3230014b sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x60d08126 sx_common_probe 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_proximity drivers/iio/proximity/sx_common +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x234e34a8 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x6c8cb459 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_TABLES EXPORT_SYMBOL_GPL 0x12882f32 cs35l45_spi_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 0x37285d18 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x51b0ee7e cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x44f30168 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x749665f9 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7bb35457 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x1d0e916d dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2f7e750f dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x3ebe19df dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x4302c7d6 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x4a1df3ee dw_spi_resume_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_suspend_host drivers/spi/spi-dw +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x7fffffff firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x03d6822d usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x063633c0 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x08e0eed1 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x109a998a usb_stor_disconnect 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 0x21f2863b usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x255262a1 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x35110cea usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3ad9a1e9 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3b0e0e7a usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3efe8d8b usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x51ee5481 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x55340a99 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6eed427a usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6f8acf9f usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7551d144 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7ca7ace8 usb_stor_adjust_quirks 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_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_clear_halt 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_host_template_init 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_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_suspend drivers/usb/storage/usb-storage --- linux-gcp-6.2.0.orig/debian.master/abi/armhf/generic-lpae +++ linux-gcp-6.2.0/debian.master/abi/armhf/generic-lpae @@ -0,0 +1,26555 @@ +BRCMFMAC EXPORT_SYMBOL_GPL 0x0c5cb940 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0x68b04981 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x4459489f counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x547edb34 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x65efca27 counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x7fffffff counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x7fffffff counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x7fffffff counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x7fffffff counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x7fffffff devm_counter_alloc drivers/counter/counter +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x5f85b423 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7fffffff crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7fffffff crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x0704a8ac cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1471754f cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x16d74d02 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x181f60e6 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2d9b17f8 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x3667f54f is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x374034f6 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x37813129 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x392c94e1 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3a936360 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x40a29620 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x47e8cfaf cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x495df79a cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x54ac7066 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x54e84fbf cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5d1b4b25 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x675a0d7e to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x746ea6f7 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7c7dfac2 is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux +CXL EXPORT_SYMBOL_GPL 0x7fffffff __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_bus_drain 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 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_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_enumerate_cmds 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_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_internal_send_cmd 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_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_switch_decoder_alloc 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_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_add_rch_dport 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 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff insert_resource_expand_to_fit vmlinux +CXL EXPORT_SYMBOL_GPL 0x7fffffff is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff read_cdat_data 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_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff to_cxl_endpoint_decoder 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_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff to_cxl_port drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x1066d6b9 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2877c7f5 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4d6cba34 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x62409714 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6c0619b5 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x715096d0 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7254edb1 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x72e081f4 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x77051f23 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x77721344 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7b758714 dma_buf_map_attachment 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_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_vunmap_unlocked vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x2303b915 efivar_lock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x5a3c9dbb efivar_get_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x7fffffff efivar_get_next_variable vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x7fffffff efivar_set_variable_locked vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0x7fffffff efivar_unlock vmlinux +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 0x1c181bc0 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x3dc5f6f4 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x64e7fc58 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x7a450b44 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x7fffffff crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x7fffffff crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x1393059f crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x7fffffff crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x7fffffff crypto_sha3_update +EXPORT_SYMBOL crypto/sm2_generic 0x687fcffe 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 0x44855564 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x7fffffff 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 0x7fffffff drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x0c28fee8 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x12c6893b paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x46bba6a1 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x71effcb3 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x739771d8 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_init +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_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x7fffffff btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x7fffffff rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x2ae9d2a1 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 0x2fd827dd 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 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 0x030a07a9 kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x07008eba kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x19549608 kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x2b516d39 kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x3b4a469a kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x66fd61f0 kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x72122e73 kcs_bmc_remove_device +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_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0744720b st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5f2ec6ab 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 0x05eec6c4 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7fffffff xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7fffffff xillybus_endpoint_remove +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_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_probe +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 0x161e1f3e caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x22f08f51 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2fa0b335 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7fffffff caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7fffffff split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b0c587f cnstr_shdsc_rfc4543_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b7bcab8 cnstr_shdsc_rfc4543_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 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 0x11dc3c0e fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2685ba8f fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x27e352b3 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x298e21a2 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x365e3461 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x36b5d708 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x50911951 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x537193e1 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x54a73fdb fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x55e87e9c fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5d7e5f64 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62f18bc4 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_remove_card +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_device_enable_phys_dma +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_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_context_queue_flush +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/firewire/firewire-core 0x7fffffff fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x0f5c30d3 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x24036c11 imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x7fffffff imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/fpga/dfl 0x416e3038 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0x7fffffff __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x7fffffff sysconfig_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 0x02b3a831 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 0x0fd23499 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x111e9a13 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12c8494b drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14b31331 drm_dp_mst_get_port_malloc +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 0x16cd8bdd drm_lspcon_set_mode +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 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1aa315e5 drm_atomic_get_mst_payload_state +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 0x1b5edef1 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b9d325b drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1d352214 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1faa3e22 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x204ddb3e drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x207b11b6 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x244a4c7f drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x25c34280 drm_dp_atomic_find_time_slots +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 0x29b9c2d7 drm_edp_backlight_disable +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 0x3266c4ff drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3323470f drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x35f36f4a drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x378986aa drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x38581651 drm_dp_mst_connector_early_unregister +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 0x3c91ad71 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3dc3b5cf drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3e82f59f drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40408bed drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40db3769 drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x411b4a8f drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41eb7975 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42ec18ea drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x440ad9eb drm_hdmi_avi_infoframe_colorimetry +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 0x4711b7d2 drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x472679d1 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x48a2191f drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x49a905bf drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4b94bb1a drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e7fee5b drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x500a3b23 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5144f42a drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5275c2c0 drm_atomic_get_old_mst_topology_state +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 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 0x5996cbd4 drm_scdc_set_high_tmds_clock_ratio +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 0x59fc755e drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a86f411 drm_dp_phy_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5d9748d0 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5daab9b1 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5e9b4a13 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x60fd098e drm_dp_atomic_release_time_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 0x666af272 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x671a6248 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x680380f7 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68ad8bcf drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68cfde33 drm_dp_128b132b_read_aux_rd_interval +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 0x6a622951 drm_dp_mst_atomic_wait_for_dependencies +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 0x6aaf2c56 drm_dp_remove_payload +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 0x6f874231 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x70026bf7 drm_dp_add_payload_part2 +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 0x72b13056 drm_scdc_read +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 0x78835dd6 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7902e785 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7cd22ec5 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_atomic_get_new_mst_topology_state +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_add_payload_part1 +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_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_cec_register_connector +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_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_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_link_status +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_dpcd_write +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_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_vc_payload_bw +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_mst_connector_late_register +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_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_topology_mgr_init +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_convert_rgb_to_ycbcr +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_1 +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_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_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_downstream_info +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_cap +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_power_updown_phy +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_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_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_vsc_sdp_log +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_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_hdcp_update_content_protection +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_lspcon_get_mode +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_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00a27e2e drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0170879c drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02839d0a drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03004021 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e4d340 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05177547 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0559d1fb drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05fc465a drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07115896 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08fe4ba0 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a97fed5 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d1fcfed drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f9ceb58 drm_crtc_commit_wait +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 0x10c91b1a drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11966fb1 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1243bea6 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x125d3693 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1294e430 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x129525db drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12bb1965 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1400c99b drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1448493a drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x149ea82c drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x172b5456 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1809fc6c drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x183f500f drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18c24b9e drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f02db6 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1997d471 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19f2dc89 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c185728 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c71ab2d drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cef7863 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d19948b drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d1bd696 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d7cbe68 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd8bb4e drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f38239e drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ffeb6c6 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20e4071b drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x211753e4 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22b5536e drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24064370 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24627e38 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x248b71f9 drm_crtc_vblank_get +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 0x25330d66 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25714dba drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25e7d4a1 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e6cb16 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2706b491 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c01380 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c4e323 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d6578a drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x284521e7 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28fb6f1e drm_dev_unplug +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 0x2ce39b83 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cedf7a5 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cfab1f6 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d92ed83 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f75209b drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f9599fd drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb90681 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x301102ae drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3011f7c0 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x325f45e8 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a6c6a1 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ac82e4 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33387c61 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3367db3b drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x339e0bad drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a9e2d6 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3739e5f2 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37cceb5c drm_send_event_timestamp_locked +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 0x38a139a2 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093b79 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x399a8892 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a9a473f drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a9e3ae4 drm_gem_objects_lookup +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 0x3c5464d9 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d702572 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e505b75 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e8b487c drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e97ff8a drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4007a169 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40ce87f1 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4116f3db drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x411efcf7 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x424965f9 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x453245ff drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x464c3c0e drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46c25bbf drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x472e6751 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4971a818 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a11c5ec drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a4fe176 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b6ca937 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b6cadbb drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bfff158 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c8fbb9f drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cb4fc03 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cf0cd61 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22c27d drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73b36c drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dca9bf5 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8169e2 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ff7a35f drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5029feb7 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50736a13 drm_framebuffer_init +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 0x52572489 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x530bb8ad drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x536827b8 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x539dea60 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5649d243 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x567f927e drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5683859e drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b2062c __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x570f12cc drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x576fd326 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57aeedf2 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580a42e9 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e7a53b drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f001f5 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a3e6b68 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ae1e12e drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b241c55 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5e4708 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bf47fc9 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bf6f38a __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c97d42e drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e4b7e4e drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f4df7d9 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x606450bb drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6097cf63 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a1ac52 drm_vma_node_allow_once +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60aa5507 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ae54fa drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62b9b889 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6375940a drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ea1b4f drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63f2a97a drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x677a6e25 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67842c09 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x689c3361 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68b27e14 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68b9f90f drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68eec80d drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ff3e3f drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x691c2da0 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a9bbad7 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cb61258 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d26142b drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dceb0b9 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e90938b drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e98e5bc drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e9a3131 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f610e1f drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fe6ce92 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71221d52 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x724c7ae0 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72542318 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x729acfa8 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b54466 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73b1341c drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eaf26b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75626595 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75aa91d8 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b2e593 drm_gem_lru_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7820ebaf drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x784a8b5a drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a0597d6 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a5981fa drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b6cea1c drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7baaf858 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc75ad1 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cb69765 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cc8d3e1 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e70b2f2 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e9c3345 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ed02475 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ee981e3 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f36c0ec drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7feba99f drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ffe0fb5 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff ___drm_dbg +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_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 devm_drm_bridge_add +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_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_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_check_only +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_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_crtc_state +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_bridge_state +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_set_fb_for_plane +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_av_sync_delay +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_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_remove +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_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_framebuffer_delete +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_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_modeset_probe +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_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_scaling_mode_property +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_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_update_privacy_screen +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_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_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_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_put +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_enter +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_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_set_unique +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_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_dup +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_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_event_cancel_free +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_bpp +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_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_map_dma_buf +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_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_put_pages +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_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_invalid_op +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_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_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create +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_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_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_probed_add +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_init +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_lock_single_interruptible +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_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_object_property_set_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_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_panel_prepare +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_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_enable_fb_damage_clips +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_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_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_release +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_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_sysfs_hotplug_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_flush +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_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_writeback_connector_init +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_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drmm_encoder_init +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_get_panel_orientation +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 0x7fffffff drm_buddy_alloc_blocks +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x7fffffff drm_buddy_block_print +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x7fffffff drm_buddy_block_trim +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x7fffffff drm_buddy_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x7fffffff drm_buddy_free_block +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x7fffffff drm_buddy_init +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x16508e43 drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x44cb4e8b drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00014100 drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02912a16 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03022786 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03708d25 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03cb7db7 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03dce757 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x056aa438 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05ae273a drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08a94462 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x091482bb drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a55e48c drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a972ccf drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bf33af1 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c9600ab drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cc6f309 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d9c216c drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12533fc4 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16fe692c drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18916761 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1be4f759 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bec9f6c drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c012f9f drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c02e834 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fe80bd9 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20753812 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20d21189 drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x216b5088 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22fb9a9b drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x232f8e92 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2932f86a drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29430d62 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a1573bc drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a3c95bf drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cff560f drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d22d9a5 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dda3dc3 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ff11f18 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30a0ad51 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32ba647f drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x337de962 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3445f9c3 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3631e583 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x382d48cb drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x389aaf65 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b2dbb93 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bb44307 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c13f1f1 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e1dc730 drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fea3511 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x408463b9 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42fc3654 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47929a46 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4834906a drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49a4cdfb drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aa0b8c6 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b24dbf8 drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x530ae33f drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x538e1553 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5518e6b3 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55b8d0e5 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a6ffaf drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a8b898 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57010e64 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5875ccc2 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aa2e8b9 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cbbb25e drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e193521 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fa75638 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fac9bb5 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6252a699 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626d6258 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64388eaf drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64b47d18 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66ab652f drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68381d9d drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69d513bd drm_atomic_helper_commit_modeset_disables +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 0x6bbdb7fd drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c03eea3 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c26a4ad drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e88c36b drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e96124b drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fd381d3 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70617f36 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71da78be drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72220a56 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72290157 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72b364f9 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73befbba drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77cbf50c drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x797f6984 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a5faf75 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bf7e817 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c2c130e drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cd9be4e __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e016d38 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e737076 __drm_atomic_helper_plane_state_reset +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_destroy_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_connector_state_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_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_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_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 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_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_check_wb_encoder_state +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_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_commit_planes_on_crtc +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_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_dirtyfb +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_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_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_prepare_planes +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_setup_commit +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_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_wait_for_fences +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_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_crtc_helper_atomic_check +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_alloc_info +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_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_cfb_write +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_enter +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_fill_info +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_initial_config +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_output_poll_changed +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_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_set_suspend_unlocked +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_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_xrgb8888_to_mono +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_begin_shadow_fb_access +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_destroy +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_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_simple_kms_destroy_shadow_plane_state +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_hpd_irq_event +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_move_panel_connectors_to_head +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_helper_resume_force_mode +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_destroy +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_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_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_kms_helper_poll_fini +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_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_plane_helper_disable_primary +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_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_simple_display_pipe_attach_bridge +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_kms_helper 0x7fffffff drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x06ee6a33 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x146f8d5b mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x15a43fd0 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x208f6788 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2be8cdc8 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x30ac4481 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6713f6a2 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6a8e6b23 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x72c69ea3 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7dc20933 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_buf_copy +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_enable_flush +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_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x16d42200 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x4e32d91a drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6fdbf082 drm_gem_shmem_vmap +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_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_purge_locked +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_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x09e724ca drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x29b39b9f drm_gem_ttm_vunmap +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_vram_helper 0x0a460a6a drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x58d3c0df drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5c795d97 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6f01308e drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x78bc44c6 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fa532fc drm_gem_vram_fill_create_dumb +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_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_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_vmap +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 0x12867664 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0758732b drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x11c53906 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x13c27d9a drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x13dcdfec to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x19fb7268 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1ceb4418 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1d02f6d3 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1dc626d7 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x22a68b4c drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3100864a drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x393da625 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x522a71d0 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5a389b77 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x68a83154 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6981008e drm_sched_job_init +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_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_fault +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_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01510178 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09a2ecad ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c54f83e ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x137cd591 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15c2d374 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18c79b00 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fb59d4a ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b1141e2 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b4c9ff3 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c0f5120 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cc4c3e7 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x332ed5d1 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33e07e21 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4000f56b ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x441e19e5 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48f35759 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x511138bd ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52183367 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54422bc0 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5819c52e ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c492dfb ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5dac77fb ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6419a69e ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65f9273c ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68147e1a ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b1db798 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_put +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_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_vm_access +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_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_device_init +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_kmap_iter_tt_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_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_range_man_init_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_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_tt_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x090522cd host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0e515d12 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0f2bbd96 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x19e35088 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1b8ec2b5 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2564071d host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x26bd720f host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2d90adfd host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2ea87a76 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3604a38d __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x38d21489 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3c75f667 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x411e5b3f host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x48b5abb6 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4bd34e37 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x501d8104 host1x_client_unregister +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 0x5f60ebce host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x62a5fc88 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x66a79945 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7b8cb2c7 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7c06b472 host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7d7b231d __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7f6fe3c1 host1x_syncpt_request +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_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_device_exit +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_syncpt_get_base +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_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_release_vblank_reservation +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/hid/hid 0x7fffffff hid_bus_type +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x7d3fd896 adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x11879789 ltc2947_pm_ops +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 0x237d3b8c i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x54aaccef i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x75d45703 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x534d41bf i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5f1c5f78 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x6e5b29f7 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 0x2bad4831 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 0x063297cb iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5775e937 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x7fffffff fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x0507d53a iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x15c67fa7 __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x19041bd2 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x238fa378 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x265e31f5 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x341a0975 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x3658539f iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x411dea85 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x4568791a iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x4b68065a iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x4f7816f0 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x694827c7 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x77e3ad2c iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff __iio_device_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_free +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_device_get_clock +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_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x0317a83a iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x3444a54e iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7fffffff iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7fffffff iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7fffffff iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x28461a83 iio_sw_trigger_create +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-sw-trigger 0x7fffffff iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x0b2c6e4c iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x7fffffff iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7fffffff bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x05bbbdf6 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x08a467e8 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x09f9f21e ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2880be2f ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2dda1ab0 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x468e992c ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4aeaceb1 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5666b636 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5f6ec89a ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_send_cm_drep +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_core 0x001df501 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x008b2c4c ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x010229d3 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x022a7d3a rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03710eff ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03919e40 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0396edaa rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x039a6f43 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0498d1fe rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x062a55a0 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06d3e92e ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d34f6ae ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11df5c85 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x121b75e2 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x150214af rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1535e11b rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x155a3b40 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1566945a rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x158ad970 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d0781d ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d259f9 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16653026 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1699231f ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1727b82b rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ac251d1 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1affab04 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d93a881 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1db0c6bc ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dfc74ca ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f3e70b8 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2026a5fb ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25b6036c ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25f1b105 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2609120a ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26139244 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2655e75b rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27d446fd ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28792441 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28ca7109 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cfd62fc rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2eccd49a ib_query_pkey +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 0x31019cf8 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32a8db9a ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3441cc06 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35df4f3d ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3774a61a ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37c00e60 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3865dc2d rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x396ab76a ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a07009c ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a2cb76a ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b6c3126 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c409b87 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e7ac0a8 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f12df84 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41aaab62 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42c0c86b rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x430ae8a9 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43249c9a ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x454ce66d ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45d2c697 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x478aba47 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b36df3e ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b442c52 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c463d13 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d872969 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x535fee56 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53fc9308 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x544e081f rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5458cbff rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57426459 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57d6ed31 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a71f8ff rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e9e39b9 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f023f9d rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60e48574 rdma_read_gid_hw_context +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 0x62683d03 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x643e37e0 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x645c35af rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6828a3d7 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x699a1b3c ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a8a80fb ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b6de56a rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b710df5 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cd4a939 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6de729e8 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ea0a7e6 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ed851ef ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6edab65e ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71857074 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x719c0867 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74679b0c ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77989aec ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x781a1ef2 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bcf1ad2 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fb8c5a8 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ff72199 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_send_mad +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_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_destroy_wq_user +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_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_drain_rq +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_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_find_gid +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_net_dev_by_params +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_from_mcmember +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 +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_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_register_event_handler +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_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_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_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_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff mult_to_ib_rate +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_src_l2_addr +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_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_link_register +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_put_driver_string +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_unicast +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 +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_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_new +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_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_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0008980b ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x06575195 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2fa72516 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x309ec9fb ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x31afbdf6 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x35fd2ad6 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3694d4cf _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x37c37d43 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47241805 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x496e1a03 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5347c038 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x58558365 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5947e48a ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61e81bee ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63b639de uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user +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_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_odp_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_struct_or_zero +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/ib_uverbs 0x7fffffff uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x614e0d2d iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x61a3b9ed iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x64118d34 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iw_cm_disconnect +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 iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a15df16 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a3ccdb8 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f8b7d8c rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27662083 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2a598226 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2a9c3b43 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x393c34f7 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x40dd7b3c rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f3fc9a3 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x57f82c8c rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x582e6a6a rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62a55bc8 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6575a19d rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65c0b050 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69c9ea9d rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72ce1ea6 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x749fd81e rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b06b083 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c469c22 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f6de365 rdma_set_service_type +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_create_qp +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_init_qp_attr +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_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_resolve_addr +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_afonly +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/ulp/rtrs/rtrs-client 0x1e610970 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x26bf9518 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3b2f0684 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x741f41b1 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x790a7587 rtrs_clt_close +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 0x660323f7 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x67029a33 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_ib_dev_find_or_add +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-core 0x7fffffff sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1176fc9e rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x328c3905 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x453c71d2 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7fffffff rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7fffffff rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7fffffff rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1f2ddc0e gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x392a4981 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3a66df79 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x62bf332f gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x66bc78b9 gameport_unregister_port +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_set_phys +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x04e44739 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x3a931e33 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 0x53211c03 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7fffffff ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7fffffff ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x7fffffff cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x7fffffff cma3000_init +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 0x7fffffff rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x17560b07 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fffffff sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fffffff sparse_keymap_entry_from_scancode +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 0x323d5eaf ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7fffffff ad7879_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x4592bc46 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x5b4fde9b qnoc_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1062a247 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x63ba3588 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7fffffff attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7fffffff capi_ctr_handle_message +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 0x47da2f89 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x55812619 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7fffffff mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7fffffff mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1bbc74ca 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 0x0a0da44b mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ae41a46 mISDN_clear_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 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x34057a8b get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a549ce5 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4fa9eb48 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51f7a5ca recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x52bf0e84 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x53e5c6f4 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5f2d2f2f mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x603db113 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66c86998 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6c13e46d mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7808df4e recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f5144f5 mISDN_freedchannel +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 mISDNDevName4ch +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_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff recv_Bchannel_skb +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 0x551da41e ti_lmu_common_get_ramp_params +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_set_brightness +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x29e7989b cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x0681d0d2 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7fffffff omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7fffffff omap_mbox_enable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x751e9854 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_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x7fffffff dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3002c6a6 dm_exception_store_type_register +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_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 0x7fffffff r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x7fffffff raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0468d01d flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1d4f6ce6 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x27ef1fa4 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x37f41ca7 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4fbc6e7f flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_pass_dmx_data +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_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0cb6b327 cx2341x_handler_init +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 0x2a9056ad cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x32f1202c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7fffffff cx2341x_handler_set_50hz +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 0x2f4ef08a 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 0x184e503b tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x0ecafc9a vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x307f32a0 vb2_buffer_in_use +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-dvb 0x5ea4d317 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7ff94324 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_get_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 0x0c13add2 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x024fcc07 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x07448753 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08de0c93 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0b583599 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10ac1a36 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1dd57426 dvb_dmxdev_release +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 0x27d06b61 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f8a2318 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f8241d5 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fd96ba7 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42d15a1b dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4be9df1e dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5054754e dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x566c8ffc dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x59771ffd dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72536a19 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7965fe13 dvb_frontend_suspend +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_ca_en50221_init +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_frontend_resume +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_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 0x0f70b3fa atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x02105c20 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0595e26d au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x167342dc au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x21b329b7 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3e257832 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x52a7dc5e au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x5914e6ee au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x131c1946 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 0x7fffffff cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7fffffff cx24113_attach +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 0x0647021b 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 0x245fdcc3 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7fffffff cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x7fffffff cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x18167fce 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 0x088238a4 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1a2dde98 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4ec9f38e dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70d6ba87 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7160c284 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x75677d6f dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7b41b5ae dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7e1edf58 dib0090_get_wbd_offset +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_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_get_wbd_target +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/dib3000mb 0x7fffffff dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x474754fb dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5265647f dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x78854f72 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x12a353c9 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 0x7fffffff dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x583a8133 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0555d673 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0e291475 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1177208c dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x122ee3d5 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3456da59 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x49441bd6 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4bfd1061 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x68435f3e dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6e8fd1b6 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x790b4ba2 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_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x06cbe564 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x18aa8cb9 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x45b7fa9f dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6c49499e 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 0x7fffffff drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x5acea210 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x7fffffff drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x613065c9 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x7a986720 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x03be7a58 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x42598815 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 0x6a7e5d8e helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x7b4e84a8 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x351a7889 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x7fffffff isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x10917c3c isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x7fffffff isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x7fffffff itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x7fffffff ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x7fffffff l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x561ba9ec lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x38ae69c6 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x7fffffff 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 0x46239229 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x7fffffff 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 0x570f69d3 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x7fffffff m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x7a620fb7 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7fffffff mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x14a13d06 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x41b55063 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x7fffffff mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x3a24153f nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x7fffffff 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 0x7fffffff s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x1bd69fcd s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x094cc0e6 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x26ef04d7 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x1567b211 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x3bda3fd2 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x7fffffff si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x2cfc2447 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x7fffffff stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x2617c37d stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x230a7a11 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x7fffffff stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x5a71f464 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x54d738cf stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x127152c2 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x22814cf8 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7fffffff stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x3898842b stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x7fffffff stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x7fffffff stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x7fffffff stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x757aef89 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x7fffffff tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x05394134 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 0x3b81470f 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 0x267f1b4d ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x7fffffff tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x7fffffff ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x011e0641 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x31e6ca25 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 0x7fffffff zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x7fffffff zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2871a39d flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3f88e3a7 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x56741260 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_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 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_start +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 0x23af31b6 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7eb32826 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 0x16c979b1 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x32bed1ac rdc_reset_state +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_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff dst_wait_dst_ready +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 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3477bc66 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7fffffff cx18_claim_stream +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 0x06196542 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x10400de2 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3a2dfb1a cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4fc8d16f cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5c6838ad cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x678f16e2 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x11ee6f31 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7fffffff vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x43bacfea cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5c916f47 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7fffffff cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7fffffff cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x10bb38b0 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x31c25d95 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x489be4ab cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x63cc27ca cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_get_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 0x165d0df3 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1caa85ed cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d623143 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d925464 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x34e732b9 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x48c640d0 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4a249bbe cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x561cf8e3 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c003d3e cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c2cb8a1 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6009aabe cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6610f5b2 cx88_core_get +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_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_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x36133efb ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x13ab4a18 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1481a47b ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1bd28156 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x28aba621 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4b375032 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x61621d06 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7ee811a3 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_clear_irq_mask +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_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_stop_v4l2_encode_stream +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/ivtv/ivtv 0x7fffffff ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x040a12a8 saa7134_pgtable_alloc +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 0x123776ec saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x25b50ab7 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2ec03fa5 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4293d8bb saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x549650c1 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7167e382 saa7134_pgtable_free +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_dmasound_exit +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 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 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 0x7fffffff csc_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x7fffffff csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x7fffffff 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 0x4a45275e sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x6990370d 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_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x7fffffff sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x01d4c41b vpdma_update_dma_addr +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x07464bcf vpdma_add_cfd_block +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x0e6f07a1 vpdma_submit_descs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x1521a081 vpdma_set_bg_color +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 0x217aea04 vpdma_set_line_mode +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x2b790179 vpdma_hwlist_alloc +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 0x3b3f4afb vpdma_create_desc_list +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x45653514 vpdma_set_frame_start_event +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x49293b26 vpdma_yuv_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x50ec40af vpdma_rgb_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x5723634d vpdma_enable_list_complete_irq +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x64752154 vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x6ea95e2f vpdma_free_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x73ae3d42 vpdma_add_cfd_adb +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7db87702 vpdma_list_busy +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_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_create +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_mask +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_get_priv +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_hwlist_release +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_list_cleanup +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_map_desc_buf +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_max_size +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_unmap_desc_buf +EXPORT_SYMBOL drivers/media/radio/tea575x 0x036293cd snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x374c77cc snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x59ac632f snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x60e08482 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7f4a14d8 snd_tea575x_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 0x005fb5d5 ir_raw_handler_register +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 0x7fffffff ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7fffffff ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7fffffff ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x0e247ea3 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x4916ba2c fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7fffffff fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7fffffff fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7fffffff fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x7fffffff max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x12e75d2d mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x56688929 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x4bf41b21 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 0x26866fe3 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x7fffffff 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 0x7fffffff xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x7fffffff xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x73b12110 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 0x28271a2b dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2fac0228 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x66b97274 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7a7dc8ef dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7af4ca10 dvb_usbv2_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_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x36abc58c dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x40874a32 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4c9a8f0b dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x637bc45d 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 0x7fffffff dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7fffffff dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x212c682f 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 0x23a68ac7 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2f3da7fb dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x46973051 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x470652fe dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x59b86f2a dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x60584731 dibusb_pid_filter_ctrl +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_streaming_ctrl +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 0x4054b461 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x65d91648 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0d5772f4 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x29814b2f go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x44390ccc go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4520e6a6 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4768497b go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5abe5a8b go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6827faa4 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7fa4ed41 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7fffffff go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x028c6b11 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2272e7de gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x776e7562 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_frame_add +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/ttusb-dec/ttusbdecfe 0x13ea0ead ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x382d0f67 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1dadcc75 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x48027e93 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x62b5c834 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7b84ffe3 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_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x401ce4e1 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 0x6bc3834e v4l2_m2m_job_finish +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_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00967a4d v4l2_try_ext_ctrls +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 0x08a823d2 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09de1dab video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x148be88b v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1919fd5f v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19341ac0 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1beca7c2 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28c5f5bd __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c15bbab v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ca6d580 v4l2_ctrl_subscribe_event +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 0x3530aacd __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x370574cf v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x378b5ee7 v4l2_ctrl_poll +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 0x41ab87f5 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45071bf2 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45f74951 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4950e70f v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ec3c84d __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x534b9f5d v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55cdaeb0 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59b0dbd0 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x655d4e0f v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a251242 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c5b2d55 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e008905 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_ctrl_s_ctrl_compound +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_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_auto_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_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_log_status +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_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_type_op_log +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_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_s_ext_ctrls +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_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_ioctl2 +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x3c319d99 rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x4bb62b00 rpcif_sw_init +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/memory/renesas-rpc-if 0x7fffffff rpcif_prepare +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0f3db237 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x17c0bc07 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2fbb1f38 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x43aab293 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x51cb13f8 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x672971b5 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7946e99b memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_add_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_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_set_rw_addr +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 0x04005ac5 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x16ab4aed mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a584bf6 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x310e79b2 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3df465c3 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e552336 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x459b6f59 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4e6ebfbd mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x51802efa mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x578ff738 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5ca93e04 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x64efb14e mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7729babd mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x77849d6a mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_HardResetHandler +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_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_free_fw_memory +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_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_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x09530edf mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17672546 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17f54059 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1aafe68a mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x24249fa8 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3598a5d3 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x370b895d mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a08511c mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3bbe0db1 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x402926e2 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4cf0e7ac mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57f0ac41 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c5004a3 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e52c8eb mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5f5788cb mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x68e065f9 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e20f2c8 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_event_process +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_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/mfd/axp20x 0x338044ef axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x6b9deedb axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x7fffffff axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x7fffffff 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 0x6a6804b3 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x7fffffff pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x00435ab4 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x13753dd4 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x312d2815 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x39d9b395 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6a02403e mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6e6556fe mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_irq_free +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-spmi-pmic 0x7fffffff qcom_pmic_get +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 0x07a59de1 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x3a2617e5 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x508a68b2 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7fffffff wm8958_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 0x072181db ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7fffffff ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x2fb85933 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x0dc3aaf5 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x7fffffff c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x046df02a tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x143b1d69 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x19874ba5 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2dddb633 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x77ca9aa3 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7af1170f tifm_remove_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_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x3b6c5e06 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x45fafec0 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x664082a9 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7fffffff dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x057ad6ce mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x7fffffff mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x274a630c cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x44eac69c cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5f9b0b32 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_send_gen_cmd +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 0x58e4a0ce of_mtk_ecc_get +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/onenand/onenand 0x44308301 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x7fffffff flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x65c25458 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x7fffffff denali_init +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x12ed2496 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x374ab68d alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x38c0e470 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7694cdb6 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x77060984 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7bee0429 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7fffffff com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7fffffff com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x434561b2 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x787cbf77 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x7fffffff ctucan_suspend +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x79feafbd can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x7fffffff can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x02192e10 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07e5818e b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0a6bdf9a b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13f38a26 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d2ea238 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x21e34f63 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2707334b b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27a26197 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2ea843f7 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30a39652 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3228ff77 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a0091ab b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x50253a0a b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x569abed6 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57d59a2e b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a6907f5 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x61e69690 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e3f5cf3 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_set_mac_eee +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_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x32e1b2a6 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7fffffff b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7fffffff b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7fffffff b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x737d95e3 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7e6e6293 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/ksz_switch 0x7fffffff ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x7fffffff ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x7fffffff ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1cdaf484 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1f8679b8 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x7fffffff vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x7fffffff vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x0811261f xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x2b5a66f7 xrs700x_switch_alloc +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_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x25ebd35a ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2cad3a4a ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2dfb248e ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x32641d39 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5e8e2b7d ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7ef48f7c __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/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 0x3fdeaf87 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x7fffffff cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x206c35e6 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x21b91b76 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x281bcad6 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x36e0167c dev2t3cdev +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_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff t3_l2e_free +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 0x0104256d cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0135b52a cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d54341e cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d886dd6 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec208d5 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18eb16d7 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e809353 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2050a712 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x286d9f2e cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ea85f90 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x307dc2c3 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32ed533c cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33efe336 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x354b4c2d cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x376eaf48 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3842f4f4 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a45ac4c cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44f2a8dc cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46c09a33 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x494fc6bd cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4991b803 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d259491 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x51d8f02d cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x617e1c89 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a6de446 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74bee7a3 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x751a52f4 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_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_get +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_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_l2t_get +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_pktgl_to_skb +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_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_smt_alloc_switching +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 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x49dc4f27 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x512fc1a4 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x562245c0 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6e403b49 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7fffffff cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7fffffff cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7fffffff cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0953ab85 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3c2fd21a vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4aae339b vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5a31d886 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/emulex/benet/be2net 0x00ccfa6a 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 0x62ef4acf be_roce_unregister_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 0x15240389 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0cdb358c hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2f3e30e9 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x71678870 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_put_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 0x243ae741 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2803c718 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2ba04767 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x39cb78e0 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x60fe8607 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7295b980 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7903a878 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fffffff hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fffffff hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x347ee170 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 0x383fd4c0 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x532e5a37 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01fdbe36 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c659325 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13efbf89 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16a53582 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1793dbcd mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1eb6c9db mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2502b6e1 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30e62eeb mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30fb3b59 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34b3329e mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x407a0292 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40fed9ab mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42131e8a mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42bed48b mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e038f26 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f57c6ef mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b77bd22 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e28e34f mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65bae582 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x729bf531 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7856fea1 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 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_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_VXLAN +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_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_port_state_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_cpu_rmap +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_roce_gid_from_slave +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_slave_active +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 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x008d912b mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0115fed7 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x013a1a71 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02ce12d7 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02d76941 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x030d7920 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03f91b44 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0663e109 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0706ba32 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ae327d3 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e2a2397 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f2495df __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12eca5e7 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13e08bc3 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15320c0d mlx5_sriov_blocking_notifier_register +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 0x17b87a75 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c1fc492 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c76d053 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ce4ad6e mlx5_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e35e4c6 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e75548f mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fcdcfae mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21a3bc9e mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x223970cb mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23b79e2b mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x240f23b8 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x254b89f9 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29bf7d1e mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29d2c248 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aec0be2 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2be4c631 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c1a9995 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d51020d mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f641259 mlx5_core_modify_rq +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 0x34cdf0fa mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34f43ac8 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36dd3aa6 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x383a944f mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39053e78 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ae5f20d mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b73f823 mlx5_fc_create +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 0x3dda1b5d mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4079b840 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4145a8f3 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x439cc73d mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4476c0ba mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50c538e7 mlx5_qp_debugfs_cleanup +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 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56fbf704 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5876d835 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aeb5963 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e44a4de mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6842059c mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a748f3a mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bade5b6 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ec704a9 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70bfcb69 mlx5_core_create_mkey +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 0x728fe6e9 mlx5_fc_destroy +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 0x76895420 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78ae065f mlx5_lag_is_shared_fdb +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 0x79d3c4c1 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b2fe127 mlx5_core_modify_cq_moderation +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 0x7b864195 mlx5_core_query_mkey +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 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_add_rule +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_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __traceiter_mlx5_fs_del_rule +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_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_cmd_init_async_ctx +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_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_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_create_rq +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_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_destroy_tir +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_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_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_auto_grouped_flow_table +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_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_debugfs_get_dev_root +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_destroy_generic +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_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_vport_metadata_for_set +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_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_vport_match_metadata_enabled +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_id +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_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_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_free_bfreg +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_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_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_roce_netdev +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_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_query_cong_counters +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_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_notifier_unregister +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_query_ib_port_oper +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_add_rate_raw +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_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x0728a89e 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 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode +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 0x16f4221d mlxsw_core_irq_event_handler_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x29052a02 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b998309 mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +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 0x4371009c mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x481e7b30 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4f66b9b1 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get +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 0x53be6f56 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e736af mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x594c36bd mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d5ea38a mlxsw_env_reset_module +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 0x64bc168e mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65eb733d mlxsw_core_traps_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 0x718d28f4 mlxsw_afa_block_append_vlan_modify +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 0x7e08c6e0 mlxsw_core_event_listener_register +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_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_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_ip +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_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_sampler +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_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_driver_register +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_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_irq_event_handlers_call +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_max_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_read_utc_nsec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_res_get +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_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_skb_transmit +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_state_set +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_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_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 0x2825e274 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 0x18125573 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x376f46e0 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05d1644e ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x062ac743 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07a9c282 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10fbf592 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1252b584 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x170f4c4a ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x175f9567 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x192ebd8d ocelot_port_set_maxlen +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 0x19b69d1a ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c74831e ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d094eda ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20c7f07e ocelot_ptp_enable +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 0x37a938d6 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a5197dc ocelot_fdb_dump +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 0x42cd3833 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46dfbbb2 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49672631 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49a23f9c ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b39300a ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d4a3987 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d56d2ed ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51c342df ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5434cda6 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5574e3c6 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x580ebc29 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a965d6d ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ad5b598 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5bb50c57 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5de418fb ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65a6fc99 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65a96041 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68bf2ac2 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a55f3cf ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ab8155b ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6bd061e8 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74d2f85b ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76930bdf ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7919e0fd ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a52bd05 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d8f1923 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ff30b5e ocelot_sb_tc_pool_bind_get +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_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_fdb_del +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_strings +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 +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_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_get_stats64 +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_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_mdb_add +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_txtstamp_request +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_adjtime +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_ptp_verify +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_port_pool_set +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_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 0x01931b91 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 0x659cc380 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7fffffff qed_get_iscsi_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/ethernet/wangxun/libwx/libwx 0x0aa9ecf2 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1a245565 wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1d878d47 wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1e7a70d8 wx_clear_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x30e765e4 wx_set_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x477c8d80 wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4898e024 wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5d928bda wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5e6e8fb4 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x66619c63 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7a406530 wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fffffff wx_reset_misc +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x40593016 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x49802cc6 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6d9c4920 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7fffffff hdlcdrv_arbitrate +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 0x7e8fabde mdio45_ethtool_ksettings_get_npage +EXPORT_SYMBOL drivers/net/mdio 0x7fffffff mdio45_ethtool_gset_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 0x432840d5 mscc_miim_setup +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0cad3e7a lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x7fffffff lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x7fffffff lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-rzn1-miic 0x7fffffff miic_create +EXPORT_SYMBOL drivers/net/pcs/pcs-rzn1-miic 0x7fffffff miic_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x347fa1c5 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 0x5c8dd16d sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x2f93110b team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x3b9938bb team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x658c3595 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x6fd1ecdf team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x7fffffff team_mode_register +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 0x4c91014e usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x557b668b usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x64af6e31 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x107c3062 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3e2b27b6 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x50a68c62 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5ce2b518 unregister_hdlc_protocol +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 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x00ae26e1 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0d9fd24a ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x297ef232 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x37e697b4 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x54113f83 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x74550a62 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7904156d ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_regd_find_country_by_name +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 0x03f88ee4 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06668c1b ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1653d382 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2395c4e5 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b07143d ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ecdca4d ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f6be3f8 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x39b0c472 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3ac47356 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4079f4c7 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42390c6e ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x44f4d110 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4864635e ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49105a9a ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5324405d ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x561aa5b8 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x565f4b85 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5895940a ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c882529 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5eb0c682 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63cfc322 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69a4518f ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6adf664e ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6bb556f2 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c8f4cc4 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a482837 ath10k_core_start +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_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_cancel_send_next +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_interrupt +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_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_enable_interrupts +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_rx_update_write_idx +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_destroy +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_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_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htc_process_trailer +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_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x06d44837 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x081ff4a6 __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0e8619c8 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1448ecaa ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1adcd599 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e29d4a1 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x226a55d2 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2a2fa8c9 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x34dab2f8 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3673e16a ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x38118ef9 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3c99ff61 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x40243250 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x42a8ce19 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5325c3d6 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5d984d80 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6407ba76 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6af190cd ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6fea4afb ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7caed7a2 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7d34337b ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fe33ac3 ath11k_pcic_init_msi_config +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_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_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_init +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_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_config_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_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x084f04ed ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x090ad30b ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1befc5e6 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2f0e77d4 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x42f6cdcd ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6384eaeb ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_core_cleanup +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/ath6kl/ath6kl_core 0x7fffffff ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x09acce38 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10b78c91 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x129648e9 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x210bd3e5 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x240fa2d3 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3a06efd5 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 0x49b37788 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x545090c2 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x57b47f0e ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5be8a123 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x62b8d161 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c73eaf5 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_base_eeprom +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_process_rssi +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_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_spectral_scan_config +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 0x0053b491 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03e6c614 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x088dee29 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0aeffb3c ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bb82616 ath9k_hw_set_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 0x168c7185 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c1176ba ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e3a4b5d ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fc9882e ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2443adcc ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x247a40f5 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25db2479 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x260d84d2 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x277b451b ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b34710c ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e57dba6 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x316603d3 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x340570fe ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x342cc4f4 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3434f545 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3577a59e ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36905b3f ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x382bd60f ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d917c29 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x411c26a0 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43416b33 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45072139 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x495e25b8 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a96f606 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4afd89b6 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b61b3b1 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d8c14b8 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fb0278f ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51f9264b ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x520a3bbf ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54500711 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5490b78f ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x551c2aa5 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x559c62c2 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x562c26fa ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56c0a2c9 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57322f90 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x585e01a4 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bbbadf7 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dc0c1bd ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e548024 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f18110a ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x639ae2a3 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6478a7b2 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6509e0cc ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66492ddc ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68cbc0a8 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b3ffbd2 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e622636 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x700c0cc4 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72f7e99c ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7500d13f ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75eafcb0 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a1b5548 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a1e5772 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b735d47 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c5f27e9 ath9k_hw_wait +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_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_paprd_is_done +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_btcoex_bt_stomp +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_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_init_3wire +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_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_check_alive +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_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_getnf +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_gpio_get +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_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_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_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_reset_calvalid +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_tx_filter +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_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7d7e16af 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 0x0d99b639 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x13947aaa brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x16dcf218 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x16e001f4 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 0x4171d151 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x448e174f brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x550e8af1 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5def87bf brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5f2d9382 brcmu_pktq_flush +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_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x01d27166 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x09cb2c51 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x25ef4797 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x399bc3ae libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x44f50803 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x531c58e1 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7ef81144 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff 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_channel +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_rx_mgt +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_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x005687b3 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05d38c53 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08103087 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d04a85d _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11e06c0e il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14193c91 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14eb6d2c il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1625c223 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b0c0539 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d511824 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ecf72ed il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f559f21 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22ef6ae0 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22ffd024 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23936767 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23c2d006 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x243aa88d il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24663a7e il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x254afb68 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x259b38c0 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29b5eaf2 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2db55722 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f1a1323 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2fb68e85 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3887b20d il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3dccebb9 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40ae37e8 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41b78599 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x446ea8b5 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4769c043 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x483995c4 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a3417c1 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53d50819 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5423f433 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54a41772 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56d13576 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b78ed4f il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cb5a198 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e8a6426 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x603aab77 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x614819d4 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61d7cd0f il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6456541f il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x654a54d7 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66c15197 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x674fa8f9 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67fa2303 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x695d164e il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b93667c il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ba5722e il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d3e1212 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ff20075 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x735a3b85 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79e0591a il_set_tx_power +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_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_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_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_free_geos +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_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_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_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_flush +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_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_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_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_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_lq_cmd +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_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_setup_watchdog +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_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/iwlwifi/iwlwifi 0x14d901e8 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c5036c0 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ff0d5fc __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x721062ae iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77118c75 __traceiter_iwlwifi_dev_ucode_wrap_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 __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 0x1c939cbd hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x23683901 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x26c9afbb hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2ba4e49d hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3005418e hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x33dea9ba hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x411f5923 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4c62ac62 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6107d8a2 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x641b3b9f hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x69e41365 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 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_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_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_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_hostapd_sta +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 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x18002a86 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1d248173 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3a3c77cd orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x56adb6ee __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x58534c3e orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6a915d16 orinoco_init +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_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_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_up +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x5ff0b268 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x4c95f4d6 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x020b60c9 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04b18a26 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08bd71e1 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17de9cc3 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x229d2cbb rtl92c_dm_init_edca_turbo +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 0x2938b9b4 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x298c780d rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3468a5e3 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35d22993 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f29073c rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ffc9487 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41642aba rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x453dd77c _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x473176c6 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4df7b756 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f8247bf rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x595a1f32 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c2f24d4 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d35b6b4 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5fa08b77 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65cb94e7 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6cd83858 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x706722f6 _rtl92c_phy_rf_serial_read +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_set_rf_sleep +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_bt_rssi_state_change +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_rate_adaptive_mask +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_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_lc_calibrate +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_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_set_txpower_level +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_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7a906fbb 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 0x1862c049 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5063e2e8 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7347cc23 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7fffffff rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x095f5350 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b1a5c65 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11855cbe rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16a584f1 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17a02e40 rtl_cam_empty_entry +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 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3188c93e rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33e8b28a rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39d4e306 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a241cb8 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c736341 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5aed457f rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64397e54 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_c2hcmd_enqueue +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_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_collect_scan_list +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_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_rfreg_delay +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 0x3306f397 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x7fffffff rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x7fffffff rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x3724e21b rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x010377ba rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x013c48f1 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x021d96e1 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x07cb4576 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0a9ba782 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x129e94b3 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x13940a5a rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17968f74 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c987921 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d44ac22 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2035bf4d rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c85a7f2 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x35eecac1 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36267844 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x48cff8e1 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4aeb9342 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4bc07568 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50cf3955 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x52093070 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x564a5ba1 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58c808f9 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59fdb1d1 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60952467 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x61f385dc rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x62c42aa6 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x634efe9d rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x68dc6d50 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73f8fd18 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75f8dc14 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7789b280 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7bdfefbd rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7cc33763 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d47ab95 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d4d2428 rtw_coex_write_indirect_reg +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_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_core_deinit +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_phy_cfg_agc +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_cfg_rf +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_init +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_thermal_changed +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_set_tx_power_level +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_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_rx_fill_rx_status +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_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_pci 0x0fc3e9bc rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x37ba00e9 rtw_pci_remove +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/rtw88/rtw88_usb 0x7fffffff rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x7fffffff rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x7fffffff rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x7fffffff rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x6720dd87 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0399e855 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x06fe6fbb rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a623b70 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0d45d64b rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0eed7365 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x160bded3 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1aa047d9 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1c60f6e3 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x209620ed rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2e9006cb rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x327440d5 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x327af6b9 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x343cf582 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x37845ac2 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a1ac9b4 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3c71a729 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3fc5c777 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x41df32c8 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x439492e9 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4ec31d24 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5105d543 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x524c1750 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x565e63f9 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5e8ff40e rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x63d79377 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6697fb82 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x683b898d rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6ba99cd0 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6ea79198 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f91eab1 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75c64eae rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x77230960 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x78e14b85 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x793d2c96 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_alloc_ieee80211_hw +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_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_napi_deinit +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_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_read_xtal_si +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_stop_sch_tx_v1 +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_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_set_txpwr_offset +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_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x09068a8c rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x45d1fe75 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5cef1c14 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5d23e702 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x764db4ee rtw89_pci_probe +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_fill_txaddr_info +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_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 0x7fffffff rsi_config_wowlan +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_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x01d92714 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x7fffffff fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x448ed122 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7fffffff microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7fffffff 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 0x02e0c49a pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x156da318 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3eac3145 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7a802dcd s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7e23531c s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x143559ec ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x15b50731 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1b16d226 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x42dd669d st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x436a7929 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x53c5b11a ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7ffaf034 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff 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/st21nfca/st21nfca_hci 0x0432530b st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x05389786 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a2bf634 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x199131e1 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1e681dd1 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x34d68cb6 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x41846368 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x43384dc9 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b3b8505 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7efab982 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_hci_discover_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_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/ntb/ntb 0x03f6f881 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x07c8b3b8 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x1b3428d4 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x2a6159e2 ntb_unregister_device +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_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_peer_addr +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_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3de20744 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x7fffffff nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x00357b30 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x047e21e7 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x0895bc8b parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x0da64f27 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x0e4b3db1 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x1969380d parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x19a499d9 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x38bad6ec parport_release +EXPORT_SYMBOL drivers/parport/parport 0x3b67f42e parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x3ef22c13 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x45910e62 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x47095e2c parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4a40d3e8 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4fb995da parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x52344211 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x5ccd4d5f parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x61a5a665 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x6650b368 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x674e0418 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x7640634a parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x7678c974 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x788c1a05 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x7d9dd192 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_announce_port +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_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_read +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport_pc 0x1f550405 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x515066e5 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x06191187 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x06b0d3ef pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1816f787 pcmcia_socket_class +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 0x253751d1 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x47647234 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4e3878a0 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x578c0ef5 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x58d323cc pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x60979c92 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x4d1ca9cf pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x03372718 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x057e94f6 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1fca5688 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x72d86ed6 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7fffffff cros_ec_irq_thread +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 0x4f532b06 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x70774d3e rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x00cdaf36 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0d1ed283 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x14cde32a rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x154a9e55 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1869a9c1 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x399814fd rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4d0c56eb rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5bc144fa rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x658a3aca rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6d710460 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7a3a5efb rpmsg_send +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_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x11bdf524 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x2bb62e2f ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1ce37501 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x22873846 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x498d458d scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4992082f scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1766462e fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x24998565 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2d9f98ed fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x328dfbac fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x369268a7 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5ab048d7 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x785deafc fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7a509ad2 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b0f0881 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x115ae35f fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11642cf0 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12cd5eff fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16280322 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17c5c753 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ff63a68 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x214cb05f fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23fd824e fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2404f6b4 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24a9f7d6 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x395b9f90 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a291fd4 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a86ee69 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b763b6c fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d336638 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42285511 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4526f071 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ec6ee17 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x515ca972 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57c28bd9 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5aae7ef4 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b7811ed fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61c9cc55 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x656bef17 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a6b7fc4 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ab24a52 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6caccc5c fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fa2865c fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x709a40bc fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75c2e164 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b4fd85f fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7be90eed fc_fill_hdr +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_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_linkup +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_iterate +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_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_queuecommand +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_lookup +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_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x616dbee7 sas_resume_ha_no_sync +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 0x08ee1d13 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 0x0add21fa qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x752ba60f qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7abe3779 qlt_enable_vha +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_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_lport_register +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/qla2xxx/qla2xxx 0x7fffffff qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/raid_class 0x13c7c0ab 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 0x05cdef62 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x08749355 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x12aa9bcb fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x26b721b9 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a0dbdb6 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a37c759 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x38ec40d6 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x483413a8 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4ac50feb fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x78777aa6 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06554935 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07476f1b sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10db3027 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1c52a90a sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x263a43ac sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x27da1a1f sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b29beab scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49573809 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4cf43daf sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4de68279 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4fc6c876 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x513a8231 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x548de9fd sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x59521e67 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a927560 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6eb775d1 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6fccd59b sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ad05b6a 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_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_delete +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_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2b8b77d8 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4cdf1736 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6bcede34 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7189c5de spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7fffffff spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x28cb0436 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x47a1d83a srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_timed_out +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x07c67545 cmdq_pkt_write_s_mask_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0cafe582 cmdq_pkt_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0db96152 cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x150e62d4 cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1fbbd154 cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x47372f33 cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5dc77432 cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7a7a5aea cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_assign +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_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_finalize +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_poll_mask +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 +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_write_s_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_write_s_value +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 0x06b9d53b geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x188c9969 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x21f1a175 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2e985aed geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x37f7a2c6 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x47b7aa04 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7a84b4d8 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7aab6d9b geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_icc_set_bw +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_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_se_init +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_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x69bef496 qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x7fffffff qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x34c150c0 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4699192d qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4b59eb83 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4c945660 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5232498f qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6fc5cdd7 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_add_lookup +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_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_txn_cancel +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 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 0x063e4227 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x102c6dce sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1f5258f4 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x206ebaff sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x26b4179e sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4bd718cb sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5f0d1e9f sdw_read +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 0x7b16e3e0 sdw_compare_devid +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_clk_stop +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_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_cols +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_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_nwrite +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_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_stream_remove_master +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/soundwire/soundwire-bus 0x7fffffff sdw_write_no_pm +EXPORT_SYMBOL drivers/ssb/ssb 0x0113bcdd ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x17a119df ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x4c60e5bb ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x579f3556 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x64a63aa6 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x6c496327 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x77e61ce3 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7ad83d03 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff __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_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_chipco_gpio_control +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_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_dma_translation +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_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_set_devtypedata +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07eefbc9 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0cbaacfc fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0d4a5d28 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x16f0a716 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1dcc3cab fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f699bb6 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x275e11f9 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2c6c9fc2 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2e2f6174 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3b0412c9 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48232e84 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ca67257 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x60161bb8 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_dbg_hex +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_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x5786bda6 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x76c1aee9 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7b40e2cc gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x7fffffff adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x0352c81d ade7854_probe +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x19180d77 nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x52ed1605 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x022b8442 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x025c350e rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x036e6bc6 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08e52e3f rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1964fb27 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2149fcf2 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29dd77e5 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x385fba0f rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b72b4af rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e345a99 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f544545 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x488db3ad rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50dd178b rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b47c2cd rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62a9c691 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x65c55464 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66cae619 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b07d8fc rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b782e8a rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x718f29f4 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71a3320c rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7511c0a8 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79822f0d rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79eaed7f rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ddbc8f8 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7eda0890 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f2c3cdf rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff RemovePeerTS +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_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_reset_queue +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_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_encode_ext +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/rtl8192u/r8192u_usb 0x05cebfb2 ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0eb7ae9a ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1073b174 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x165b81ff ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x17049836 ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x178c1c38 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2634dd4e SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38ead5bf dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ab25e7a ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d0a968d ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x481f2cf4 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4974281a ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52f31822 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56f12eff ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5849e8dd to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e9bbab3 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6025de35 ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60f484f0 ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66979591 ieee80211_is_54g +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67d989cb is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b71963f notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6bfa356e dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77a8b36f ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_is_shortslot +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07ad938b iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x088706f0 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a7af8a9 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10f746dc iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d6ccdd7 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x240fa38e iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f958dfa iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x335cf8ec iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x358530f8 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35c6f404 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b599a48 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b8c84c4 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e6684e1 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4118f3c5 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4817fc29 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5443c4dc iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x57791dc3 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a5c0d66 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b87b16e iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5dd37f18 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x60c80e25 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x60cb23bd iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e692ff0 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7171f89e iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x785ea3ea iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c320e4e 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 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 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_rsp_pdu +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_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_handle_logout_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_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_register_transport +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_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_tmr_post_handler +EXPORT_SYMBOL drivers/target/target_core_mod 0x01a4ee1d transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x03c578c4 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x0505d578 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d47766c target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x0fb1bfd7 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1743fd59 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x1800c666 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ae2c795 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d092156 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x20554aaf transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x21fd7c37 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x24b68dd0 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x270d7a3d target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c4f2544 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x2da25a74 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e741d23 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x30a8b13a target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x328904f4 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x37bd9296 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x50eb2381 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x518bea12 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x60c7cde9 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x620204b3 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x68105062 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x69d4a8ed transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a134c23 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f6cde43 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x777b9f6e target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a42ed11 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a63965d target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x7bd627bb sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c80d2ed sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d0c6a99 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ee9caa3 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff __transport_register_session +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_deregister +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_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_dif_verify +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 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_depend_item +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_setup_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_tpg_has_node_acl +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_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_generic_handle_tmr +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_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x0a9af2ca ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x1d2c8862 ufshcd_system_resume +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_resume +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_suspend +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x6257b4f8 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x7fffffff tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x7cec8d8f 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 0x7fffffff usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x2a7c3415 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x7fffffff sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2e32aab4 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x55e0cde8 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x56c4c081 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x588c8ecc usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6efc509f usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_open +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_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7fffffff usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7fffffff usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x7fffffff vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1141672e mdev_register_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7fffffff mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7fffffff mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7fffffff mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/vfio 0x05b8cfda vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0x0f655355 vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x4226e5c9 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x7fffffff vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x7fffffff vfio_unpin_pages +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 0x41fc717a lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4d53e90e devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x6a4a16b9 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7fffffff 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 0x1ed896b2 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1f596c15 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x518bc46b svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5735af42 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x62a0f0b8 svga_get_tilemax +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_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_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x58ef7ce2 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x7fffffff 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 0x14e62a0a 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 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 0x0cecf200 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x3410233f g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7fffffff matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x56417b7d matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x70ecb4c2 matrox_mystique +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_Ti3026 0x661c9cf4 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x7fffffff matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x00a37c17 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0d394704 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4bd5d560 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7fffffff matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x3d71229d matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x7fffffff matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0097c964 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2b58449b matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3db7840e matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x58a65876 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7fffffff matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7fffffff matroxfb_vgaHWrestore +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 0x065746f3 omap_dss_put_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x07f8573d omap_dss_get_next_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x09d0405e dss_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x116235fc dss_mgr_connect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x29735799 omapdss_output_unset_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2d9772e5 omapdss_unregister_output +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 0x353d22b8 omap_dss_get_overlay_manager +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3a50573f dispc_ovl_check +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d36d54d dispc_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 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 0x48e69f80 dss_mgr_disconnect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x49b7bf44 dss_mgr_start_update +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 0x4e3d8a0b dss_mgr_unregister_framedone_handler +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 0x5800081f omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x59d64c6e dss_install_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x653aca39 omapdss_find_mgr_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x653df865 omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6572fabf dss_mgr_register_framedone_handler +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 0x75348e64 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x792952a5 omap_dss_find_output_by_port_node +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7eee0af2 dss_mgr_enable +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_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_mgr_set_timings +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 +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_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_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_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_set_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 0x2c63a058 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7fffffff is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7fffffff virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7fffffff virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x2aec00f4 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x7fffffff w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x0110a949 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x7fffffff w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x558824e7 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x67dc149c w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x7fffffff w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x7fffffff w1_unregister_family +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1a8f1709 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x2e62fba8 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x2f3ca576 fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x30cec389 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x33af2fc4 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x3d48f649 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x40c67495 __fscache_begin_read_operation +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 0x4b2e4abf fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x67d564d7 __fscache_acquire_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 0x7532dbe2 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x770a7876 __fscache_use_cookie +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_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_resize_cookie +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_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_get_cookie +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_put_cookie +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_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_wq +EXPORT_SYMBOL fs/netfs/netfs 0x2caed2ab netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x2fb5b5a7 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x43580b72 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x7fffffff netfs_stats_show +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 0x55b44d2c qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_release_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 0x16a8e2ca lc_put +EXPORT_SYMBOL lib/lru_cache 0x2257d5b6 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0x2838dcbd lc_create +EXPORT_SYMBOL lib/lru_cache 0x2ff949a9 lc_reset +EXPORT_SYMBOL lib/lru_cache 0x3dcbf915 lc_get +EXPORT_SYMBOL lib/lru_cache 0x4fbe8be4 lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x5fd4497c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x659c6327 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x72122451 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x7d905c59 lc_del +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_committed +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_find +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_try_get +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 0x30cd707a lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6d1d52aa lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7626f1a8 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x31bbffd6 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x7fffffff register_8022_client +EXPORT_SYMBOL net/802/psnap 0x3361da20 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x7fffffff unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x02f026a9 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x0941115e p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x0ab5c933 __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x0d4873cf p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x13cf9a1a p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x1ce54b13 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1e69cb4d v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x210e7281 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x270b5cf4 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x2c9e56db p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x3253ccaa __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x39a10f29 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3a3fadae v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x401cc187 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x410b5980 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x44d54828 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x46baf750 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x4abd4818 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0x4b9c9b7c p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x56bf59dd p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x685ca85b p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x6db7033e p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x6de3409c p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x6e1fc556 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x714de214 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x78b06740 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7e3e45b8 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff __SCK__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff do_trace_9p_fid_get +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_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_fcreate +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_open +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_readdir +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_setattr +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_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_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/appletalk/appletalk 0x13473349 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x4733b705 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x7fffffff atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x7fffffff atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x02cbd843 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x0aa95076 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x273f8967 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3c03ca39 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x5dfcd419 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x76209578 vcc_insert_socket +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_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 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x7fffffff register_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_release_async +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x16bbe393 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x45580c65 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x759fd303 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_header_ops +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_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 0x0456bf74 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0979841e hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d98f7c2 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0dc17a7d hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1630867b hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b0725d3 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ea557e9 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2607c755 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x41bd76bc bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x42f4470b hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4367e0de hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x44a1970a hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58c3e197 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b27db23 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x602c8c4c hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x66cfd508 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b4c8d88 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b5a21fd hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6fafb2a0 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x722e5e27 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a994744 hci_alloc_dev_priv +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 0x7bd9427a bt_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c62c9db __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff __hci_cmd_sync_status +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_enqueue +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_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_stream_recvmsg +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_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_mgmt_chan_unregister +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_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff l2cap_unregister_user +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2624314a ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x28426b8b 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 0x0fccc337 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x29a7fbc1 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 0x65de8a09 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x76193b61 get_cfcnfg +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_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x7fffffff cfpkt_set_prio +EXPORT_SYMBOL net/can/can 0x200e3185 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x3fe12164 can_rx_register +EXPORT_SYMBOL net/can/can 0x513e73b3 can_proto_register +EXPORT_SYMBOL net/can/can 0x7fffffff can_rx_unregister +EXPORT_SYMBOL net/can/can 0x7fffffff can_send +EXPORT_SYMBOL net/can/can 0x7fffffff can_sock_destruct +EXPORT_SYMBOL net/ceph/libceph 0x00c67ca9 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x0114683d ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x0454f8b3 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x081d29b4 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x09a0a54e osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0x0a6209ef ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0b77cd7a ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x0c336641 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x0cedf01f ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x0d05e80b osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x1019aafe ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x163828a9 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x1646766b ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1843ccbd ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x1943a22e __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x19b23d2f ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x1b5072ed osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x1d9f7ab0 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20b5d765 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x213b98b5 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x2217fbdb ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x29b6e9e0 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x29f44c22 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x2c80fc06 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x2e2691f2 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x303e1d3a ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x30ef5978 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0x33e7fe75 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3450c0ac ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x35fa7674 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x36e4f26f ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x38079358 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3ab05966 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x3b5440ee ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x3ff25697 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46b908e9 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x491be461 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x4a57b9c5 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4f9518ef osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x5224bd55 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5d6cf246 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x5e471c4c osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x604ff5fc osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6072d9f1 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x60f7eb46 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x62c0d49e ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x62dcb51d ceph_zero_page_vector_range +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 0x662cd020 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x694a4682 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x779fd099 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x790fee7f ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7916a7a8 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x79becda1 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7d624ca6 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x7f98a0f3 ceph_release_page_vector +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_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_verify_authorizer_reply +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_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_compare_options +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_user_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_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_validate_auth +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_bvecs +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_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_wait_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_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_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_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_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/ceph/libceph 0x7fffffff osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x31c60f86 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7fffffff dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x7fffffff hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x7fffffff is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x61edbcfe wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6c089a90 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7fffffff wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7fffffff wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7fffffff wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7fffffff wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x7fffffff __fou_build_header +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 0x08ed02a9 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x162356cf arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x50143a96 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x67229850 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7fffffff arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6b4bfa90 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 0x3be17343 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x40c85f9b xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x6da34327 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x12351736 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4123b3be ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x480d72fd ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_encap_add_ops +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/ip6_tunnel 0x7fffffff ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3855907e ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x41949191 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5f098411 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7cea020e ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x2f67ff57 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x49b128a9 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x26aee34c xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7fffffff xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x0da626bb lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x225f0a19 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x43aa1e65 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x5b56dbff lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x14f25de6 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x185289b1 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x39d2a281 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x737c094e llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x7888454f llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x7fffffff llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x7fffffff llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x03361ea2 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x04c7d0da ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x058ffd06 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x07f514b0 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x08352bb0 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x0a25a4c9 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0e22528e ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x102efd2e ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x10f60a7d ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x15159940 ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x1651d316 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a83e4ee wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1af0cef1 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x25f9ee9b ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x293d87a3 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x296a509a ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2a22b10e ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x2bdd4754 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x2dd6975b ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x2e676110 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x30f05205 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x33e2d6b3 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x344d18af ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x38081956 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x389c89e6 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x392ccb20 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3a8179d5 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x3bfe35ce ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x3c86ef1a ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x405c811b ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x4147eb6d ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x4324dbbb ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x4a63a77b ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x4ec389d4 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x54eaada2 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x562c68bd ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x5d3cb4b8 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x5d3ef9f1 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x5e444df5 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x5eb4ee73 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x5f47fd57 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x60dc6c9b ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x6aaa5575 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6c504a98 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6c90ce59 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x70c388b7 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x70ca92b5 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x73a715dd ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x76508cfc ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x7813766c ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x78cf0d30 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x7a5c5c7f ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x7ab3f2d5 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7bd48f0e ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x7e432b82 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x7e79dfd5 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x7eb63051 ieee80211_txq_may_transmit +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_beacon_get_tim +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_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_free_txskb +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_key_rx_seq +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 +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_pspoll_get +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_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_send_eosp_nullfunc +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_queues +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_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff rate_control_set_rates +EXPORT_SYMBOL net/mac802154/mac802154 0x21a94787 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x352428a1 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5129e106 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_alloc_hw +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_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_xmit_hw_error +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x00f64252 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x222124b7 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x29486747 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3c35eff7 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4d8648df ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7581cbc1 ip_vs_conn_out_get +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_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_proto_name +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 +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 0x39db5251 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 0x100b78af nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x625e7214 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7fffffff nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x7fffffff nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x089a8fa6 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x0bb1810f xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x1ef4f53b xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x48025819 xt_register_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_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_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_unregister_target +EXPORT_SYMBOL net/nfc/hci/hci 0x2a5b4037 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x2f424036 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x3a16186f nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3e9892fd nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x423f5215 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x5d498ff4 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x655964dc nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x6936bd87 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x6cc4286e nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +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_free_device +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_recv_frame +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_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_llc_stop +EXPORT_SYMBOL net/nfc/nci/nci 0x15d7a2a2 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x1754d707 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x17fa2a87 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x300ef7b9 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x3017cd95 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x35eb2619 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x36ddf548 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x3accdd50 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x3b1d1a89 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x3fa56489 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x41e68844 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x4a5fd5e3 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x4c67240b nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x58136615 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x59cd458b nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x6e8d97be nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x747a6cfb nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x7d27da81 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_clear_all_pipes +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_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_to_errno +EXPORT_SYMBOL net/nfc/nfc 0x0bcff731 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x2326abdf nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x28869239 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x2f1dfcca nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x330493cf nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x3b67f80c nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x3d2b8717 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x40f14e8d nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x4692fa07 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x4ae0e4ef nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x58772765 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x5bfdaf62 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x5df8db74 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x7616e9c5 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x7b778595 nfc_target_lost +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_driver_failure +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_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc_digital 0x7e48540f 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/nfc/nfc_digital 0x7fffffff nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x0388a3e2 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x081900fa pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x101fa461 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x1955bb79 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x380626f4 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x4a9e6f3b phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x7fffffff phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x7fffffff pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0a96a263 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2a31cd73 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x46ed837d rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x48d47b16 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4eab3a36 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c2a1382 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x61de1f59 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x631dea40 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x77e7a85b rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7e1e4221 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_get_srtt +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/rxrpc/rxrpc 0x7fffffff rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/sctp/sctp 0x7fffffff sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x0928c4d7 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x2377fce6 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x2b05789b __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +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 0x56faed64 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6eb25820 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7fffffff 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 0x14372767 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x42d8c44f tipc_dump_start +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 0x03420571 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0380d221 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x04f98ac3 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x062d4097 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x0767ea99 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x0c916699 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x0c934223 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0f5a3f3d wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x13723058 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19f0358e wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x1c1fa269 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1e35f839 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x25335ded regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x28636727 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x286aae42 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x28a6b02c cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x2b6e8045 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x2c449a64 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x2e9642e9 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x2e9c16fa get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x30dfe981 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x347c45a5 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x352c838e cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x3698a5c2 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x39910b7c cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x3e6c55fc wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x3f879388 cfg80211_sched_scan_results +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 0x456a8bb1 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x46f92e90 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x47b32748 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x4bcc65d0 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4da8e619 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x4e7a5dec cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x5607bb06 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x5634c3ba wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x5acb20be cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x5d534e7b cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x5e19123f cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5e4805f7 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x60e678a5 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x618c64a3 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x631879a3 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x64b72814 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x65c1c5bb cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x66afa332 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x69d517ec __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x7086ab77 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x722acc39 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x758cc92d cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x769f7c7e cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7a0bb845 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7b6c3bc0 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x7bb8d56e cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f8fb27b cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_assoc_comeback +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_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_station_change +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_pktloss_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_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_p2p_attr +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_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_notify_new_peer_candidate +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_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_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_rx_unprot_mlme_mgmt +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_stop_iface +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_update_owe_info_event +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_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 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_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_register +EXPORT_SYMBOL net/wireless/lib80211 0x13cbcc9d lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x28147238 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 net/wireless/lib80211 0x7fffffff lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x6e7ebfc0 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 0x59c34381 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 0x7f03db7b snd_seq_kernel_client_write_poll +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_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 0x11bad955 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x02312752 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f9f8168 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x31e37eba snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3e5b3b14 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5913eb86 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x60544c66 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x79b9bacf snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7e031a2e snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_drop_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_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_transmit_empty +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 0x0281b90b snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0b2217fe snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x33527a3b snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x52c85bb7 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6ef30757 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7ddc7169 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7e6acc38 snd_opl3_create +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/vx/snd-vx-lib 0x0c4c635a snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x17a77f66 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x23cac2a0 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2cae592e snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3d2a5161 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x606a84ea 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_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_resume +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x053063a2 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a653ad0 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c53ea2f amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e03d47f avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1056e5bd fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2d3f0426 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f809a9d cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x331506e2 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4cea2ce1 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4edf59f7 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x54acb0bd cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x556dd85e fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x55c98d0f iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5751d0b2 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6a4aefe4 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x75920fbd amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x77f98c09 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79cb5faa cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_stream_get_max_payload +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_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff snd_fw_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x184c76a4 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2018c11c snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x241cded6 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x243fbf55 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x273901cc snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2cbac070 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x339ee648 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3b42eaf8 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5d2f825b snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6d2dfed6 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x35aaaf49 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x36e4eb16 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x75ecb0bd snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7fffffff snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x36d9f43c snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6b7698a9 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0647d2a9 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x711643df snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7fffffff snd_cs8427_iec958_active +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 0x09ad8e8a snd_i2c_bus_create +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/i2c/snd-i2c 0x7fffffff snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7fffffff snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0d92615f snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f5dbc0a snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x24c61ef5 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2ef37717 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x49e42e73 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x75822814 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_bus +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_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_read +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/ac97/snd-ac97-codec 0x7fffffff snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1d8aca3c snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x30881da5 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x38c31fd2 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6f430101 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fffffff snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fffffff snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fffffff snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fffffff snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fffffff snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x27dbda33 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x63248b27 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7fffffff snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0857115c oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0dadc6de oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x12c8d8c6 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x13dc8a8f oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1c129c01 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x25bd7081 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x37956cbf oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5a491a29 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x62670605 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x67856d01 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6e25e19e oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x748dff3d oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x76a25a98 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_pci_shutdown +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_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0ebee3dd snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x21cd17c0 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x36deba30 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5620dfa9 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7fffffff snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0x7fffffff acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x34be5616 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x72e79ddc 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 0x7fffffff adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x5ce2240b wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x79a5a9a6 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 0x54dbb73e tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x7fffffff tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0625858f aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7fffffff aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7fffffff aic32x4_remove +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 0x08f00ee4 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 0x5b1cc980 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_stop +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x159b7c0b fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x7500ddc4 fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x7fffffff fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x26e153a9 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x4f15e063 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x19a0b177 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x7fffffff q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x13e9cb37 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x41320f42 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x545e7e99 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 0x7fffffff snd_emux_free +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 0x79faf8bd __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 0x00027a17 cpu_user +EXPORT_SYMBOL vmlinux 0x0006ddc2 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x000f1f8a xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x001b970d pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base +EXPORT_SYMBOL vmlinux 0x00201f47 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x0022bbb8 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x002c3047 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x003b08bf zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x004167fe blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x005aab3b sock_wake_async +EXPORT_SYMBOL vmlinux 0x005c6ea7 file_remove_privs +EXPORT_SYMBOL vmlinux 0x005ee66c udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x006f671d xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x00788091 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x007a3e68 phy_device_register +EXPORT_SYMBOL vmlinux 0x0080fdaf init_task +EXPORT_SYMBOL vmlinux 0x008dbca6 scsi_host_get +EXPORT_SYMBOL vmlinux 0x00a584f0 get_vm_area +EXPORT_SYMBOL vmlinux 0x00ab8624 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x00b0c6e7 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x00b1fad4 md_write_end +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00ba7889 nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00dc13d2 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x00dd5a7b mii_nway_restart +EXPORT_SYMBOL vmlinux 0x00e8a76c backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x010023b0 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x010d2f32 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x01171daf tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x0117f26b cqhci_pltfm_init +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x01281a55 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012d62bc inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x01353088 skb_copy +EXPORT_SYMBOL vmlinux 0x01389ef2 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x0169b7e2 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x018107f2 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01a66ff3 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x01aa00ca phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x01cbf640 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x01ed7079 inode_init_owner +EXPORT_SYMBOL vmlinux 0x01f8ce63 phy_detach +EXPORT_SYMBOL vmlinux 0x020847d4 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x0222e634 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x023afef2 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x024abb4e snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x02599074 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a0aec9 page_pool_create +EXPORT_SYMBOL vmlinux 0x02a0b4ef tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c77cff md_write_inc +EXPORT_SYMBOL vmlinux 0x02d40c4e pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02f14c0f generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x030f685f tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x0311ec4d of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x033393c3 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0338ba42 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x033b69e4 dm_table_event +EXPORT_SYMBOL vmlinux 0x033e595f tcp_read_skb +EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror +EXPORT_SYMBOL vmlinux 0x03564f31 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036bb111 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x03754d4c kill_pgrp +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037b26c3 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x03839e25 component_match_add_release +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x039818c0 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x03a758b0 register_shrinker +EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03dffe2e devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x03f14658 pci_request_regions +EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x03fbd681 phy_attached_print +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0428dd92 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x043421d5 iget_locked +EXPORT_SYMBOL vmlinux 0x04426f14 mem_section +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 +EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock +EXPORT_SYMBOL vmlinux 0x0453de42 open_exec +EXPORT_SYMBOL vmlinux 0x04629000 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x0487daf4 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x048aff9f blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x049132b2 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x04ab6d09 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x04d9ea98 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x04edd8ed padata_do_parallel +EXPORT_SYMBOL vmlinux 0x050384d1 netlink_capable +EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0523c987 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052df3a1 udp_ioctl +EXPORT_SYMBOL vmlinux 0x052e8301 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x0533c057 of_lpddr3_get_min_tck +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0564effb vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x05803e21 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x058ddbbf tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x05a5258c dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x05bc00f9 dst_destroy +EXPORT_SYMBOL vmlinux 0x05cd617e gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x05e7d710 vm_map_pages +EXPORT_SYMBOL vmlinux 0x05e872bf jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x05f27ee2 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x05f3b46d inetdev_by_index +EXPORT_SYMBOL vmlinux 0x0608184c xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x0615d187 elv_rb_add +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0618fce1 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x061c29f8 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x0622d37a tty_register_device +EXPORT_SYMBOL vmlinux 0x062f7a82 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064dd111 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x0689fdd1 kill_anon_super +EXPORT_SYMBOL vmlinux 0x069ca22e fqdir_init +EXPORT_SYMBOL vmlinux 0x06a17084 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x06a3d1f0 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x06ae267e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x06b8dbf8 sock_no_getname +EXPORT_SYMBOL vmlinux 0x06ba7724 phy_read_paged +EXPORT_SYMBOL vmlinux 0x06bbe2e3 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x06bd2b43 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06eb392c put_cmsg +EXPORT_SYMBOL vmlinux 0x06f33b57 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x0705571c dm_io +EXPORT_SYMBOL vmlinux 0x0707c664 of_device_alloc +EXPORT_SYMBOL vmlinux 0x0708d544 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x070fffc8 vga_put +EXPORT_SYMBOL vmlinux 0x0717eb31 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072ba2d0 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074bdd6a snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x0759c807 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x07705da6 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x077708d5 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev +EXPORT_SYMBOL vmlinux 0x079c4261 read_cache_page +EXPORT_SYMBOL vmlinux 0x07a41140 kill_pid +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07ab18a6 input_flush_device +EXPORT_SYMBOL vmlinux 0x07af2cd8 filemap_fault +EXPORT_SYMBOL vmlinux 0x07c718fb register_sound_mixer +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07fa3b1e mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x07fea3fc __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0800919c register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0811db22 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0882de69 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x08864582 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x088bc9df seq_file_path +EXPORT_SYMBOL vmlinux 0x088f446e finalize_exec +EXPORT_SYMBOL vmlinux 0x0896e2bb phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x089e9ba2 setattr_copy +EXPORT_SYMBOL vmlinux 0x08bb0034 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x08d7740f __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x08dea6fb udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x090b9a4e seq_path +EXPORT_SYMBOL vmlinux 0x091772e9 simple_lookup +EXPORT_SYMBOL vmlinux 0x092e7783 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x09338c64 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x094bd1a6 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x094c1b87 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x0970cdd9 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x0975a338 param_ops_charp +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098d8ce3 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d78843 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x09d8cddb inet_sendmsg +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a10c602 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x0a18c40e __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a276b93 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x0a2fbce1 __kmap_local_page_prot +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a44fb79 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x0a554303 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x0a71b8e4 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x0a855291 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x0a8733e8 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x0aa0fcea _dev_alert +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad5af79 filemap_get_folios +EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update +EXPORT_SYMBOL vmlinux 0x0aec18d8 mdio_device_free +EXPORT_SYMBOL vmlinux 0x0aecfac8 devm_clk_get +EXPORT_SYMBOL vmlinux 0x0af8d95d sk_capable +EXPORT_SYMBOL vmlinux 0x0b00ad46 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x0b01855d rtnl_notify +EXPORT_SYMBOL vmlinux 0x0b17d51b udp_gro_receive +EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b49230e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x0b5f0075 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x0b617fea input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x0b6394a1 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7be8bf skb_eth_pop +EXPORT_SYMBOL vmlinux 0x0b7c5e06 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x0b7d8081 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x0b80a0b6 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x0b80dbf1 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x0b9117ab dump_page +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc85e25 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x0bdde590 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x0bdec356 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c4ce3a8 snd_unregister_device +EXPORT_SYMBOL vmlinux 0x0c5f10ed uart_register_driver +EXPORT_SYMBOL vmlinux 0x0c618e85 tty_lock +EXPORT_SYMBOL vmlinux 0x0c9199a0 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x0ca1e6f1 __register_binfmt +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0cace7e1 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cbfa86e fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x0cc77776 vfs_getattr +EXPORT_SYMBOL vmlinux 0x0cc89f89 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x0cc8ca56 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cf1f283 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x0d040f47 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d1d8def from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d4d892f mmc_retune_release +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dcfbefb sk_dst_check +EXPORT_SYMBOL vmlinux 0x0dd2b17c blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x0dfcda06 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x0e0c48da invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x0e1f85ef uart_match_port +EXPORT_SYMBOL vmlinux 0x0e2635ae blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x0e2bd131 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x0e5da8f0 utf8_normalize +EXPORT_SYMBOL vmlinux 0x0e61ee72 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x0e6d060b folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x0e7684bb phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x0e8904fc fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x0e8ffcba devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x0e939017 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x0ea36a4c scsi_ioctl +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eaa8eb9 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x0eaab56e __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ebe75c6 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec5cea1 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0eef9d2f pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x0ef5ec01 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x0ef7e77a sock_i_ino +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f10b0f3 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f21901e security_path_mknod +EXPORT_SYMBOL vmlinux 0x0f3ccd8a inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x0f4ea6f3 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x0f54270b netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x0f601205 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x0f6ef049 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0x0f823125 rawnand_sw_bch_correct +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f9cbd0d pneigh_lookup +EXPORT_SYMBOL vmlinux 0x0fa062c0 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x0fad9b93 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x0fb04c62 cqhci_deactivate +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb307b1 d_obtain_root +EXPORT_SYMBOL vmlinux 0x0fd0398e max8998_read_reg +EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock +EXPORT_SYMBOL vmlinux 0x0fd5f7ba sock_alloc +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff1d467 cqhci_init +EXPORT_SYMBOL vmlinux 0x0ff63a52 netdev_state_change +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset +EXPORT_SYMBOL vmlinux 0x1016b061 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x10184841 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x101bfa73 rproc_boot +EXPORT_SYMBOL vmlinux 0x102445a0 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x103ba32b of_phy_connect +EXPORT_SYMBOL vmlinux 0x105a9537 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x105ab518 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked +EXPORT_SYMBOL vmlinux 0x10775a16 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108982b3 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x109446ba pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x109bef3b ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x10c828ff netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x10c8762c devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x10c8edb7 snd_info_register +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10eada4f sk_error_report +EXPORT_SYMBOL vmlinux 0x10f68118 phy_init_hw +EXPORT_SYMBOL vmlinux 0x10f7be46 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11168acb vfs_mknod +EXPORT_SYMBOL vmlinux 0x1116d076 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x1127c6c6 to_nd_btt +EXPORT_SYMBOL vmlinux 0x113a60fd pci_enable_msi +EXPORT_SYMBOL vmlinux 0x1143defd iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x114b6c6c vc_cons +EXPORT_SYMBOL vmlinux 0x1157e355 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x115d00d1 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x115fad4c mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118e1333 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x1195e28d pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x1197ef8d jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a91343 sock_create +EXPORT_SYMBOL vmlinux 0x11c19b59 netlink_ack +EXPORT_SYMBOL vmlinux 0x11d075cc twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x11e07eaa tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e21701 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x12062088 tty_port_init +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x121303bd snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x121b1ffc d_tmpfile +EXPORT_SYMBOL vmlinux 0x122991b7 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x122bf9c2 snd_ctl_notify_one +EXPORT_SYMBOL vmlinux 0x12394197 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x124037dc ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x12794a81 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down +EXPORT_SYMBOL vmlinux 0x1281f4d5 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x12827367 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x12914541 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x1295e7af deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x12a28cb4 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x12b3c6ab xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x12ca0018 file_path +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fa593b __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x1301b237 mii_check_media +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1327ab2e mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x132f0c7d flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x13336760 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x1358071d unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x13622a2e mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x138b85c9 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x138ba8d8 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x138d54b5 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x13c392be d_alloc_anon +EXPORT_SYMBOL vmlinux 0x13cca7ea ip_options_rcv_srr +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 0x140cef8e cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x1411dbac kobject_del +EXPORT_SYMBOL vmlinux 0x141bbc17 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x141d166e tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x14205027 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x14249c3a vme_bus_num +EXPORT_SYMBOL vmlinux 0x142bc0ac skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x1443bef5 set_binfmt +EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x1456850f rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x14586433 generic_update_time +EXPORT_SYMBOL vmlinux 0x145c4dd0 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1486978a gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x14a51058 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x14a6cd18 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x14b5f0cb mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x14c8d3bd tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x14cd924c jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x14cde273 pci_enable_device +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock +EXPORT_SYMBOL vmlinux 0x1503e5c9 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x151b2034 nd_btt_version +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1534952e sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x15412496 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x156cfc0d skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x15780e8d i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x1586cb07 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x15b1ab37 mntget +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c045e6 get_fs_type +EXPORT_SYMBOL vmlinux 0x15cfb2b3 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0x15e8476d snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x15f36836 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x15f3ea88 audit_log_start +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x15fe6268 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x1621cc12 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163a82e0 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find +EXPORT_SYMBOL vmlinux 0x165fc97c fc_mount +EXPORT_SYMBOL vmlinux 0x1660ff8b pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x166679d2 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x166a12d9 phy_get_pause +EXPORT_SYMBOL vmlinux 0x169e2564 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable +EXPORT_SYMBOL vmlinux 0x16bf4dd5 get_task_cred +EXPORT_SYMBOL vmlinux 0x16ca0ec7 dqput +EXPORT_SYMBOL vmlinux 0x16de6ef3 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e9cd16 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x16ec948a crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x16eeacaf cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x170475d6 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x171655d2 pci_find_bus +EXPORT_SYMBOL vmlinux 0x1718ca8c sock_no_accept +EXPORT_SYMBOL vmlinux 0x172592d2 kernel_connect +EXPORT_SYMBOL vmlinux 0x17397661 dma_set_mask +EXPORT_SYMBOL vmlinux 0x174978c5 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x175a177a jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x1798f0db genl_register_family +EXPORT_SYMBOL vmlinux 0x17b26c82 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x17b35f1e ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x17bde25b ip_options_compile +EXPORT_SYMBOL vmlinux 0x17cdd118 nf_log_trace +EXPORT_SYMBOL vmlinux 0x17d03338 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x17ebb21a mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x17f8fb30 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x181c5672 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x1823543e snd_timer_stop +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1847439f mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x1853a15e request_key_rcu +EXPORT_SYMBOL vmlinux 0x185a5fc8 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x18835387 mr_dump +EXPORT_SYMBOL vmlinux 0x188691f9 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189b45da snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0x189d821a kill_block_super +EXPORT_SYMBOL vmlinux 0x18c3777a ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x18d37637 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x18e2d379 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f3c5c8 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x18f879c7 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x1901a398 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x19125f36 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x194cd16d nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x1962ee70 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x19729b51 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x1981e90c tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x1998bcad dev_addr_mod +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cc890a pcim_iomap +EXPORT_SYMBOL vmlinux 0x19d63f59 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x19d74c1e vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x19e6feb9 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x19f4f95f mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x1a0b938c sock_alloc_file +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a7abc02 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim +EXPORT_SYMBOL vmlinux 0x1acf742a simple_transaction_release +EXPORT_SYMBOL vmlinux 0x1ad02fd7 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1aebcf57 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x1afcbd0b inet_shutdown +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b085ebe __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x1b08ce16 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x1b0f0182 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store +EXPORT_SYMBOL vmlinux 0x1b4fdc5a snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0x1b5bb091 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7d815f jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x1b7dd710 module_refcount +EXPORT_SYMBOL vmlinux 0x1b98376a ppp_input +EXPORT_SYMBOL vmlinux 0x1b985ac2 of_get_parent +EXPORT_SYMBOL vmlinux 0x1b98ae38 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x1ba66b98 __invalidate_device +EXPORT_SYMBOL vmlinux 0x1bc12370 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x1be08c2e netif_skb_features +EXPORT_SYMBOL vmlinux 0x1be502b9 nand_read_page_raw +EXPORT_SYMBOL vmlinux 0x1bfd1a61 vm_event_states +EXPORT_SYMBOL vmlinux 0x1c24bcfd inet_add_offload +EXPORT_SYMBOL vmlinux 0x1c2bfbfb sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x1c2c65b6 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x1c304dd0 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x1c3969ae input_open_device +EXPORT_SYMBOL vmlinux 0x1c559c8c snd_jack_new +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c6610db kobject_add +EXPORT_SYMBOL vmlinux 0x1c6e6809 sound_class +EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x1c9034eb register_sound_dsp +EXPORT_SYMBOL vmlinux 0x1c9fe693 fs_bio_set +EXPORT_SYMBOL vmlinux 0x1ca46c4a netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x1ca9d5b8 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x1cadab9d snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x1cb02b61 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x1cba3f0c blk_put_queue +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cdd06e7 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x1cf57755 cad_pid +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d2a044b start_tty +EXPORT_SYMBOL vmlinux 0x1d329626 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x1d37eeed ioremap +EXPORT_SYMBOL vmlinux 0x1d384ab8 pci_find_capability +EXPORT_SYMBOL vmlinux 0x1d3b74f6 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x1d3bbef1 inet6_release +EXPORT_SYMBOL vmlinux 0x1d40bb4c __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x1d483404 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x1d50060e tty_port_close_start +EXPORT_SYMBOL vmlinux 0x1d656e69 pci_iomap +EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x1d98a311 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x1da100ea phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dcb5218 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x1dce4bce fb_find_mode +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd7d8b9 devm_request_resource +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de5826d jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key +EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0x1dfa3fe1 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x1dfaa4dd efi +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0dd3a9 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x1e2f908c udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x1e482934 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x1e4cb0b6 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x1e51fe96 inet_frag_find +EXPORT_SYMBOL vmlinux 0x1e5284e4 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x1e5d149c nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL vmlinux 0x1e5de3d1 mii_check_link +EXPORT_SYMBOL vmlinux 0x1e64ce13 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x1e64d58f pci_choose_state +EXPORT_SYMBOL vmlinux 0x1e679d65 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1e9ee534 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x1ea9f42e unix_detach_fds +EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 +EXPORT_SYMBOL vmlinux 0x1eb67d21 set_blocksize +EXPORT_SYMBOL vmlinux 0x1ece2103 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x1ed4dd2a mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format +EXPORT_SYMBOL vmlinux 0x1ef47291 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x1efbe689 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x1f0019f7 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x1f1788d1 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x1f1d1ef5 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x1f1d8b01 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x1f50e9ac pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x1f78d993 simple_release_fs +EXPORT_SYMBOL vmlinux 0x1f792177 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x1f83a795 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x1fb2a41f inet_select_addr +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc29c2c mfd_add_devices +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fdf511b tcp_timewait_state_process +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 0x2041a3e9 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x204ace1e kthread_bind +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x205b0ee8 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x206907e4 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x206f1249 dget_parent +EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x2076de82 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x20830aa4 d_splice_alias +EXPORT_SYMBOL vmlinux 0x208a561c rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x20929698 snd_ctl_rename +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20bcfa6a xp_can_alloc +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e32818 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x20e9216b input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x20f6e42f inet_stream_ops +EXPORT_SYMBOL vmlinux 0x21004bd4 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x21031d35 sock_rfree +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x21206aff seq_hex_dump +EXPORT_SYMBOL vmlinux 0x212c512d posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213bb534 udplite_prot +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2152ed3b phy_error +EXPORT_SYMBOL vmlinux 0x215667b2 zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x215697d5 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x215f3749 devm_release_resource +EXPORT_SYMBOL vmlinux 0x2162d621 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21b5984f simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x21b7ab9e of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x21bd93ec __module_get +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c5e518 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x21c6c2cc i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x21d282e0 param_get_ullong +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21f39762 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq +EXPORT_SYMBOL vmlinux 0x21f8563b snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x21fe2ed7 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x22080309 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x22235371 vme_master_request +EXPORT_SYMBOL vmlinux 0x2227f872 path_get +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2232a2fe skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x223c8f62 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x224a03ad file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x2251fc9d rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x2254d485 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x22630f74 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x22717ae5 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision +EXPORT_SYMBOL vmlinux 0x22780ab5 dma_fence_describe +EXPORT_SYMBOL vmlinux 0x227da902 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x229ae2c6 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x229e3d4e security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b555dc jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x22c4f736 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x22d605a5 locks_free_lock +EXPORT_SYMBOL vmlinux 0x22df8005 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x22ea3ea2 add_to_pipe +EXPORT_SYMBOL vmlinux 0x22ed5a1b iov_iter_discard +EXPORT_SYMBOL vmlinux 0x233647dd kill_fasync +EXPORT_SYMBOL vmlinux 0x234607dc tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x23496343 skb_copy_header +EXPORT_SYMBOL vmlinux 0x2362ba9b get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x2365401a set_page_dirty +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x239e4d0f sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x23a204c2 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x23a87dcd pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x23aee11a truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bbf945 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x23caddeb mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x23dac456 vm_mmap +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24014262 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x24059e6f xfrm_register_km +EXPORT_SYMBOL vmlinux 0x240784ec lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x2426a7db udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x243cb12d param_set_short +EXPORT_SYMBOL vmlinux 0x243f52bd locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2452e0e6 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245b6399 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x246790df idr_for_each +EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update +EXPORT_SYMBOL vmlinux 0x247d466a mmc_can_discard +EXPORT_SYMBOL vmlinux 0x249baeb1 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24b800ef dev_get_by_index +EXPORT_SYMBOL vmlinux 0x24c0a63c of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d6f877 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x24da5f2c get_inode_acl +EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x24e4f513 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x24ecd7ed iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x24faa56f generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x2525a938 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x25282236 freeze_bdev +EXPORT_SYMBOL vmlinux 0x253b258d scsi_block_requests +EXPORT_SYMBOL vmlinux 0x25410d5b sock_no_listen +EXPORT_SYMBOL vmlinux 0x256318a5 blkdev_put +EXPORT_SYMBOL vmlinux 0x2564c17e blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x2574b05f netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25959dd8 dqget +EXPORT_SYMBOL vmlinux 0x2597ec1a end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x25a9b92e neigh_update +EXPORT_SYMBOL vmlinux 0x25bda3b1 input_register_handle +EXPORT_SYMBOL vmlinux 0x25cb75f5 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x25d57d17 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f1658c unix_attach_fds +EXPORT_SYMBOL vmlinux 0x25f2c4e3 inode_insert5 +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x261ec8a4 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x262e4095 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263ef60a devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x2659a1e3 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x26747be6 phy_device_create +EXPORT_SYMBOL vmlinux 0x26784361 find_vma_intersection +EXPORT_SYMBOL vmlinux 0x2680fbf3 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26d53914 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x26dc9988 of_device_is_available +EXPORT_SYMBOL vmlinux 0x26e889c6 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x26fbccdd jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x26fc7c0f unlock_page +EXPORT_SYMBOL vmlinux 0x2704314f devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x271b04af tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x2730ca33 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273aef90 dput +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 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27830e82 pci_restore_state +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278b0a66 ip_defrag +EXPORT_SYMBOL vmlinux 0x279de142 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x279ef368 set_cached_acl +EXPORT_SYMBOL vmlinux 0x27a0df39 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x27a3ef5d snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x27b10767 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c360a5 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x27cb055b i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x27ccdc1b tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27d0fafb tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x27d9bedb sockfd_lookup +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281e5033 rproc_add +EXPORT_SYMBOL vmlinux 0x28266ea3 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x283000c0 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x2872c395 d_add_ci +EXPORT_SYMBOL vmlinux 0x2873438a zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy +EXPORT_SYMBOL vmlinux 0x289671e9 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x289c314c fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x28adab0f dma_resv_fini +EXPORT_SYMBOL vmlinux 0x28c41b92 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x28d1ba68 regset_get +EXPORT_SYMBOL vmlinux 0x28e82c24 dev_load +EXPORT_SYMBOL vmlinux 0x28f788ba setattr_prepare +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x29205785 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x292d3a6b tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x293394fe vfs_setpos +EXPORT_SYMBOL vmlinux 0x29438f39 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x296d5948 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x296ef2f9 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x297f7928 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x2984e487 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x2989bcaa sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x29a49324 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x29a52cfd crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x29b2bbb6 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x29c63b91 ping_prot +EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x29e9dd78 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x29f80451 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x2a0a3083 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x2a2a03cb param_set_invbool +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a4ede15 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable +EXPORT_SYMBOL vmlinux 0x2a704d6f security_sb_remount +EXPORT_SYMBOL vmlinux 0x2a725bb5 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a97a44c inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aaec033 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x2ada9c90 skb_ext_add +EXPORT_SYMBOL vmlinux 0x2ae304dc dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x2b1f67ca devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x2b221143 ip_frag_init +EXPORT_SYMBOL vmlinux 0x2b28acca tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x2b30ce49 tcp_check_req +EXPORT_SYMBOL vmlinux 0x2b330d2f xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x2b529203 seq_release_private +EXPORT_SYMBOL vmlinux 0x2b74f678 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x2b7b9199 __fput_sync +EXPORT_SYMBOL vmlinux 0x2b7ba207 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x2b7bc73a tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x2b807930 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x2b8cb32f cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x2b900d37 seq_pad +EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bb1aea4 serio_interrupt +EXPORT_SYMBOL vmlinux 0x2bb3d5a6 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x2bb5f64d mmc_get_card +EXPORT_SYMBOL vmlinux 0x2bc9c96e qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x2bd28ae2 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2be52841 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x2bf9a9de inet_addr_type +EXPORT_SYMBOL vmlinux 0x2bfe5672 block_commit_write +EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy +EXPORT_SYMBOL vmlinux 0x2c1c7168 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x2c252e0c iw_handler_set_thrspy +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 0x2c4c2625 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x2c570eb1 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x2c6b4bb8 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c7d1fa7 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2cb03714 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x2ce1ad9c blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x2cf9c08c ppp_unit_number +EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x2d04cc12 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d2269c7 udp_set_csum +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d40b456 arp_tbl +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 0x2d4e0525 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x2d6290df clk_get +EXPORT_SYMBOL vmlinux 0x2d67e864 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x2d69145d make_bad_inode +EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc +EXPORT_SYMBOL vmlinux 0x2d790e2c read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x2d798e2e tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2db081a9 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x2db68317 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x2db869e5 genphy_resume +EXPORT_SYMBOL vmlinux 0x2dbbc9d5 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x2dd0edc8 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x2dd32f84 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x2ddff561 skb_checksum +EXPORT_SYMBOL vmlinux 0x2ddff855 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2de4df98 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x2e123789 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x2e15d8cb blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e404f7f clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e48f776 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x2e6ef198 noop_fsync +EXPORT_SYMBOL vmlinux 0x2e8f47df __scsi_add_device +EXPORT_SYMBOL vmlinux 0x2e987b74 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x2ea8f348 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x2ea909a5 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecd55cc rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x2efea2c6 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x2f03c438 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f1eba13 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f3ca14b kernel_sendpage +EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x2f5ae254 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2f612fae tcf_action_exec +EXPORT_SYMBOL vmlinux 0x2f6957bd zstd_end_stream +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f8ec91e inode_set_flags +EXPORT_SYMBOL vmlinux 0x2f9dac04 pci_map_rom +EXPORT_SYMBOL vmlinux 0x2fa7d330 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x2faa16cd alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x2fdf98b4 vfs_get_link +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ffdcf87 pci_release_regions +EXPORT_SYMBOL vmlinux 0x2fff27c5 locks_init_lock +EXPORT_SYMBOL vmlinux 0x30081468 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x3008e13f pci_disable_device +EXPORT_SYMBOL vmlinux 0x300fad6e d_path +EXPORT_SYMBOL vmlinux 0x30132404 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x301e0c1d tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x3056eed2 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x305a1a3a vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x305faf50 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x307935e2 snd_compr_malloc_pages +EXPORT_SYMBOL vmlinux 0x308539cf security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x3087368a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x308bc6d6 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x308bcbd0 __icmp_send +EXPORT_SYMBOL vmlinux 0x308f0106 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309a66c1 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30ba72c6 snd_ctl_add +EXPORT_SYMBOL vmlinux 0x30bf9d2c udp6_set_csum +EXPORT_SYMBOL vmlinux 0x30d0fdff snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x30d5de5d dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create +EXPORT_SYMBOL vmlinux 0x31016374 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x3111a65f netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x3115fc55 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x311607c8 begin_new_exec +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x31295913 snd_sgbuf_get_addr +EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info +EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf +EXPORT_SYMBOL vmlinux 0x314b59f7 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x314e36e0 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x315d143d mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x3160c4fd genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x31674e92 dst_alloc +EXPORT_SYMBOL vmlinux 0x3173d664 key_alloc +EXPORT_SYMBOL vmlinux 0x318511a5 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x31a176c4 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31a9f6be blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x31b31f93 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x31bff817 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x31de3e57 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x31fdf072 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x32018c5f xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x322f8e3a vme_irq_request +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages +EXPORT_SYMBOL vmlinux 0x3245df9b eth_header_parse +EXPORT_SYMBOL vmlinux 0x325ae6a1 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop +EXPORT_SYMBOL vmlinux 0x3276c0ca folio_wait_private_2 +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 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x3293dde3 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32fb56da flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x32fb8a1c sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x3309f721 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x3333b265 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x333cdbd9 vc_resize +EXPORT_SYMBOL vmlinux 0x333cfb2e filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x333f1f99 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x3344bd4e sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x3348cb28 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x3350e875 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x335bb6b0 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x3365834c scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x3368d5e7 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x336ce246 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x3379cf8c flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x337e659a blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x33872b8f tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x338ae87a tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x339ba3f1 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x33ae5fbc tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x33b576e6 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x33c4f920 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e9543c unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33feceb5 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x340ba6a6 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x341938a9 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x343be382 xfrm_input +EXPORT_SYMBOL vmlinux 0x3458971a eth_get_headlen +EXPORT_SYMBOL vmlinux 0x345a3a6d nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x34a41a8b unregister_cdrom +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x34f20f95 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351e3994 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x352d6105 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x352d6e6b empty_zero_page +EXPORT_SYMBOL vmlinux 0x3532c116 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x3534a3ba neigh_table_clear +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3576fe06 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x357a08c0 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x35879f24 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x359dc6ed pci_pme_capable +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c7ba27 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x361c364f file_open_root +EXPORT_SYMBOL vmlinux 0x362a4d05 pci_release_resource +EXPORT_SYMBOL vmlinux 0x3630df6e __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x3633506d page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x36397e27 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x363c6f94 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x364949eb uart_add_one_port +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36632140 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x366ae57f blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x36779142 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x368e95ff mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x36a4b4dd del_gendisk +EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x36b50caf jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x36b892dc devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x36bced63 __snd_pcm_lib_xfer +EXPORT_SYMBOL vmlinux 0x36ce5a3e try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x36ee04ed md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x3705d8c2 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x37085148 param_set_hexint +EXPORT_SYMBOL vmlinux 0x370c45f4 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x37221761 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x37235832 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x3731e460 clear_nlink +EXPORT_SYMBOL vmlinux 0x3738a86f seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x3760f952 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x377310ed unregister_qdisc +EXPORT_SYMBOL vmlinux 0x377498e4 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x37769b05 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x377ada9e crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x378d0e0f find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x37b022f9 sg_split +EXPORT_SYMBOL vmlinux 0x37bd5fff snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c2f2fd proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x37d5af48 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37f4d1c5 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x3808b9e5 filemap_flush +EXPORT_SYMBOL vmlinux 0x38158fe6 deactivate_super +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382664e3 set_disk_ro +EXPORT_SYMBOL vmlinux 0x382934c8 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x38301f6e scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x384a33bc tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x386a8941 snd_card_file_add +EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389c23ea __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x38a00243 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38bebb02 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x38cf5580 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x38d6797c revert_creds +EXPORT_SYMBOL vmlinux 0x38d7859d blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x38df57fe tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x38e32aba vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x38ffa5af d_set_d_op +EXPORT_SYMBOL vmlinux 0x3905f4a7 sync_blockdev +EXPORT_SYMBOL vmlinux 0x390ed639 dup_iter +EXPORT_SYMBOL vmlinux 0x391e239f dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x3945bf5a skb_copy_bits +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x395691af kthread_stop +EXPORT_SYMBOL vmlinux 0x396b2eb4 iget_failed +EXPORT_SYMBOL vmlinux 0x396b407d simple_getattr +EXPORT_SYMBOL vmlinux 0x396d66e5 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399bee3b sk_wait_data +EXPORT_SYMBOL vmlinux 0x39b75e89 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x39bb870c __vcalloc +EXPORT_SYMBOL vmlinux 0x39bebed3 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work +EXPORT_SYMBOL vmlinux 0x39d3b96c flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x39da12a4 vme_slave_request +EXPORT_SYMBOL vmlinux 0x39e5b535 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x39e9da22 snd_timer_close +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a2be83a __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a5238db reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x3a542b7b snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x3a615f6c inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x3a70449c dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x3a76e7c5 mdiobus_read +EXPORT_SYMBOL vmlinux 0x3a84fed3 utf8_casefold +EXPORT_SYMBOL vmlinux 0x3a8617fd xfrm_register_type +EXPORT_SYMBOL vmlinux 0x3a8cb026 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x3a90b188 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x3aab6c39 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x3aab78aa scsi_remove_target +EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ad06d51 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0x3b029491 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x3b075e4a task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x3b0976a8 scsi_done +EXPORT_SYMBOL vmlinux 0x3b126c6f edac_mc_find +EXPORT_SYMBOL vmlinux 0x3b12b68e skb_trim +EXPORT_SYMBOL vmlinux 0x3b168876 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x3b1e8da8 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x3b246b4c devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x3b2704ea pid_task +EXPORT_SYMBOL vmlinux 0x3b28341f input_set_abs_params +EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b2c97da snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x3b2ef0d8 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x3b35de79 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x3b391aa5 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x3b3bc299 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user +EXPORT_SYMBOL vmlinux 0x3b415395 md_error +EXPORT_SYMBOL vmlinux 0x3b5326ee __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3b55c319 dst_init +EXPORT_SYMBOL vmlinux 0x3b5d2a4b security_sctp_assoc_established +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 0x3b78e85c dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x3b979efe dev_set_mtu +EXPORT_SYMBOL vmlinux 0x3bbc8b3a locks_delete_block +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bcd9688 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x3be630be dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x3beb1235 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x3bfd175d snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x3c064726 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x3c0abb12 bio_free_pages +EXPORT_SYMBOL vmlinux 0x3c116be5 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1dd748 mpage_readahead +EXPORT_SYMBOL vmlinux 0x3c2e5639 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c35428e security_path_mkdir +EXPORT_SYMBOL vmlinux 0x3c365c30 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x3c3a517b uart_suspend_port +EXPORT_SYMBOL vmlinux 0x3c3e05ea cdrom_open +EXPORT_SYMBOL vmlinux 0x3c3e7be4 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c442d45 elv_rb_del +EXPORT_SYMBOL vmlinux 0x3c5086fc neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x3c60315c ioremap_cache +EXPORT_SYMBOL vmlinux 0x3c62e074 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x3c71bc3b pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x3c8b25dc vfs_mkobj +EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert +EXPORT_SYMBOL vmlinux 0x3c936f45 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x3caa9e60 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cc071a2 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x3cc14506 dquot_resume +EXPORT_SYMBOL vmlinux 0x3cc31727 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x3cc3babb sock_i_uid +EXPORT_SYMBOL vmlinux 0x3cc449b1 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x3cc9eeda sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x3cd0058b snd_device_register +EXPORT_SYMBOL vmlinux 0x3cded1cb of_device_register +EXPORT_SYMBOL vmlinux 0x3ce36723 tty_devnum +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce92584 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x3cff2bb9 of_device_unregister +EXPORT_SYMBOL vmlinux 0x3d2e1434 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d404ceb __vmalloc_array +EXPORT_SYMBOL vmlinux 0x3d5902ed pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x3d8782c2 nand_write_oob_std +EXPORT_SYMBOL vmlinux 0x3d8e89ff of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x3db5b82b scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x3db63c6b vfs_rmdir +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd1056b genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x3de05126 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x3df67960 write_cache_pages +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfe4fcd t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x3e009de0 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x3e09e18e generic_read_dir +EXPORT_SYMBOL vmlinux 0x3e1ca7b5 snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x3e1e8768 skb_seq_read +EXPORT_SYMBOL vmlinux 0x3e1fb0be dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e3d1d5c simple_write_begin +EXPORT_SYMBOL vmlinux 0x3e55a46c ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes +EXPORT_SYMBOL vmlinux 0x3e9f3459 tty_hangup +EXPORT_SYMBOL vmlinux 0x3eaa29c4 mmc_add_host +EXPORT_SYMBOL vmlinux 0x3eb5a4b3 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x3eb8e0e3 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x3ebca4ac tcp_init_sock +EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit +EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark +EXPORT_SYMBOL vmlinux 0x3ed8ca0d snd_seq_root +EXPORT_SYMBOL vmlinux 0x3ef00d3c inet_offloads +EXPORT_SYMBOL vmlinux 0x3ef03fef xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0a97f0 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x3f0d3fc2 update_devfreq +EXPORT_SYMBOL vmlinux 0x3f2622de i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x3f36f0b3 iterate_dir +EXPORT_SYMBOL vmlinux 0x3f40c984 elv_rb_find +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init +EXPORT_SYMBOL vmlinux 0x3f637c8b param_get_bool +EXPORT_SYMBOL vmlinux 0x3f6d1a87 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x3f7506b0 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x3f7780ff snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f8f0141 send_sig_info +EXPORT_SYMBOL vmlinux 0x3f91c3a2 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc82aff dev_mc_flush +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe8c120 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3fed09ad folio_mapping +EXPORT_SYMBOL vmlinux 0x4000b7af __block_write_full_page +EXPORT_SYMBOL vmlinux 0x401daa7e mr_table_dump +EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x403f4417 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x4059693f iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x4062831f dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x407cf74c dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x408402c3 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409b7233 phy_connect +EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string +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 0x40d9dd59 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x40ec98a9 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x4107e48e devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4112582c fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41398d3c xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x416f2c9b gro_cells_init +EXPORT_SYMBOL vmlinux 0x4177bea1 netif_tx_lock +EXPORT_SYMBOL vmlinux 0x417b9c4d blk_mq_alloc_tag_set +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 0x41b751e6 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x41d08fa7 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x41d9e820 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x41f8125d md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x421c2418 proc_mkdir +EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc +EXPORT_SYMBOL vmlinux 0x42278544 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x422f50c6 dquot_transfer +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x423283f7 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x423d4496 cpumask_next_wrap +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 0x4273a01f nand_ecc_sw_bch_calculate +EXPORT_SYMBOL vmlinux 0x4284b16d msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x429c595c blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x42acf349 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x42b2a8ab mtree_erase +EXPORT_SYMBOL vmlinux 0x42bc2841 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x42d6096a from_kuid_munged +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4314d093 dev_trans_start +EXPORT_SYMBOL vmlinux 0x43204faf pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x4321a228 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x4334094d commit_creds +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x4337f1dd folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x433ba8bc tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x4345156b cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x434e150d mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43625183 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x437333a0 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x43806df6 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x4383ca28 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x438483c0 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4396c359 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x43a69bdb do_clone_file_range +EXPORT_SYMBOL vmlinux 0x43b2c96d prepare_creds +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43db9381 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4401a620 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x44047526 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x44315e21 __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x4446625f fb_blank +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x44552968 amba_device_register +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 0x447772c5 dev_get_stats +EXPORT_SYMBOL vmlinux 0x447dcf1f ppp_input_error +EXPORT_SYMBOL vmlinux 0x448959b5 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44bdbeb3 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x44c74ade udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x44d29a01 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x44d85108 __put_user_ns +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ea1061 param_set_ullong +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4509c984 tcp_poll +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x452745b1 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x45316185 send_sig +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453d0341 sk_free +EXPORT_SYMBOL vmlinux 0x454f3199 snd_timer_new +EXPORT_SYMBOL vmlinux 0x45535b1c dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x45611daa d_rehash +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45819822 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x4594761d fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45cf55dd flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x45d95ed0 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x45f64eab folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x45f9b993 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x464270da cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x465901c8 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x46669d36 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x467640f1 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x46767832 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x468c5b4d snd_dma_buffer_mmap +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46a68c1d generic_setlease +EXPORT_SYMBOL vmlinux 0x46b36607 simple_setattr +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46d9a80f ps2_begin_command +EXPORT_SYMBOL vmlinux 0x46e13817 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x46f3861c md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x470b2cb5 page_address +EXPORT_SYMBOL vmlinux 0x470e35eb ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x47245560 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x4726f7f2 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x4727c494 fb_pan_display +EXPORT_SYMBOL vmlinux 0x47350876 nand_ecc_finish_io_req +EXPORT_SYMBOL vmlinux 0x473e1cad t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x47454598 sk_net_capable +EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy +EXPORT_SYMBOL vmlinux 0x476240a5 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477ea77e ip6_output +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47a75501 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x47aea631 udp_seq_next +EXPORT_SYMBOL vmlinux 0x47b23068 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c77761 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x47dc0543 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47f20a75 param_get_int +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48301d06 snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x483f63f0 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x4844144f of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484eb066 would_dump +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485a58a3 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x48661eae register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0x4876661c pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x4888b9df ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x488d40e1 mtree_insert_range +EXPORT_SYMBOL vmlinux 0x489b5071 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x48a0a663 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b1a0b5 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x48b5f7dd mmc_register_driver +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bdc400 d_instantiate +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d7bdee watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x48de950c devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x48f27363 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x490257d2 __f_setown +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4916289d eth_header_cache +EXPORT_SYMBOL vmlinux 0x491d8caa filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x4928ac0d nand_scan_with_ids +EXPORT_SYMBOL vmlinux 0x49368c01 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x493e45c8 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x49544cd2 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x4954e7fa bioset_init +EXPORT_SYMBOL vmlinux 0x495f7dc2 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits +EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x4988d922 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x4989df6a md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a96e24 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x49d38430 scsi_host_put +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup +EXPORT_SYMBOL vmlinux 0x49f74b82 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x4a14d093 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x4a1b0d02 _dev_printk +EXPORT_SYMBOL vmlinux 0x4a27d63f of_translate_address +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a414978 param_get_string +EXPORT_SYMBOL vmlinux 0x4a6d07b1 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x4a7b3235 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x4a8b53e8 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a969768 genphy_read_status +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4acd52e9 mdiobus_write +EXPORT_SYMBOL vmlinux 0x4ad9fdeb blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0x4ae5fce5 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x4ae87efb input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x4af1b055 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afc48e3 param_get_short +EXPORT_SYMBOL vmlinux 0x4b02eaa4 try_module_get +EXPORT_SYMBOL vmlinux 0x4b27cfe2 _dev_notice +EXPORT_SYMBOL vmlinux 0x4b30a3a4 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x4b30ee92 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x4b52b1c1 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4ba02b57 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x4bbce959 dquot_disable +EXPORT_SYMBOL vmlinux 0x4bc6072e vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x4bcb6787 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x4be74887 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4be9d816 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf2f742 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 +EXPORT_SYMBOL vmlinux 0x4c0c0771 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x4c22af80 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c3817da nf_log_register +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c416ecf bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x4c5db34b inet6_add_offload +EXPORT_SYMBOL vmlinux 0x4c5dcb6a init_special_inode +EXPORT_SYMBOL vmlinux 0x4c5e3283 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x4c66dcdf cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x4c9980d4 has_capability +EXPORT_SYMBOL vmlinux 0x4caa70ba devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x4cc9d7a4 snd_sgbuf_get_page +EXPORT_SYMBOL vmlinux 0x4cda4f8f mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x4cdad3b8 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x4cde85c7 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x4ce14d71 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x4cf0b6a3 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x4d0664c2 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x4d0ccef4 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d436d35 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x4d44307d rproc_detach +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d514485 xa_store +EXPORT_SYMBOL vmlinux 0x4d735c7b fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x4d81115d genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x4d931dde netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4dbe3bbd invalidate_bdev +EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node +EXPORT_SYMBOL vmlinux 0x4e05dac0 mfd_remove_devices +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 0x4e3e80ac netdev_emerg +EXPORT_SYMBOL vmlinux 0x4e40a9d3 inet_listen +EXPORT_SYMBOL vmlinux 0x4e4622a9 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x4e503c1a mntput +EXPORT_SYMBOL vmlinux 0x4e5af9be km_state_expired +EXPORT_SYMBOL vmlinux 0x4e63621a neigh_lookup +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6a7be5 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e798382 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL vmlinux 0x4e822d80 touch_atime +EXPORT_SYMBOL vmlinux 0x4ea2dd86 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eaf8c21 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x4ec5dcf9 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x4ecadfe1 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x4ed0e241 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x4edbd312 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x4edf9dc3 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc +EXPORT_SYMBOL vmlinux 0x4f120734 mmc_request_done +EXPORT_SYMBOL vmlinux 0x4f144334 xfrm6_protocol_register +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 0x4f228657 I_BDEV +EXPORT_SYMBOL vmlinux 0x4f4b95ec tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x4f71bee4 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x4f7410fb configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x4f797be6 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x4f79856c of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x4f7a5fac backlight_force_update +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f8e88dd mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x4fabd586 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x4fb30ea6 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x4fb31585 of_node_get +EXPORT_SYMBOL vmlinux 0x4fc84d6b blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x4fd068dc phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x5005b02c of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x501b1172 qdisc_put +EXPORT_SYMBOL vmlinux 0x50239cd7 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x5038e3bd register_quota_format +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x503c273b mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x504916ea vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x50537fc5 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x50652dc2 lock_rename +EXPORT_SYMBOL vmlinux 0x50672f2f tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x5068e65a of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x506962d6 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x506b187b scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507d2cea generic_permission +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509583a6 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50aae635 truncate_inode_pages +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 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x51013ab2 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x5136ee63 nand_monolithic_write_page_raw +EXPORT_SYMBOL vmlinux 0x513708d7 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock +EXPORT_SYMBOL vmlinux 0x51553498 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x51567cf2 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x5156ad5e peernet2id +EXPORT_SYMBOL vmlinux 0x515b43af xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51752370 kernel_bind +EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x51bd232d neigh_connected_output +EXPORT_SYMBOL vmlinux 0x51db36e3 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51eb54f8 nonseekable_open +EXPORT_SYMBOL vmlinux 0x51f43e9f eth_type_trans +EXPORT_SYMBOL vmlinux 0x51ffd426 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x52175790 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0x5232c240 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x5246d3d7 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x524fc0f8 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x526be39f security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x526c3a6c jiffies +EXPORT_SYMBOL vmlinux 0x526d7754 proc_create +EXPORT_SYMBOL vmlinux 0x528350fd qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x52836ae1 __bh_read +EXPORT_SYMBOL vmlinux 0x5287d6cb dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52a07f1b kunmap_high +EXPORT_SYMBOL vmlinux 0x52bf3c29 buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x52d4d155 dquot_acquire +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dec7ec md_integrity_register +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x52f31476 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x52f86650 netif_rx +EXPORT_SYMBOL vmlinux 0x5307136b of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531d3306 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x53378baf seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x533c600d of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x535984ed __skb_checksum +EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x5379918f rio_query_mport +EXPORT_SYMBOL vmlinux 0x537b9d04 file_ns_capable +EXPORT_SYMBOL vmlinux 0x53939a02 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x53b81a43 vm_insert_page +EXPORT_SYMBOL vmlinux 0x53bfd2e2 inode_permission +EXPORT_SYMBOL vmlinux 0x53d61120 sock_no_linger +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x53f99dbc pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x5403ba74 rw_verify_area +EXPORT_SYMBOL vmlinux 0x5419a442 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x541c9ab0 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x541f0281 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x542dbcdb writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x543a1b93 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x543adbd3 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5458086e jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x5458a068 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x5461d8fe dquot_commit_info +EXPORT_SYMBOL vmlinux 0x546dcb03 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x546e586b copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x548aac96 stop_tty +EXPORT_SYMBOL vmlinux 0x548d73a4 fsync_bdev +EXPORT_SYMBOL vmlinux 0x549779e9 pci_clear_master +EXPORT_SYMBOL vmlinux 0x54a2d868 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x54b10fae xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54ce3b57 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x54d072b2 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x54e2746b param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f21fdb remap_pfn_range +EXPORT_SYMBOL vmlinux 0x54ffe608 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x55086bd5 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x550e744e scsi_dma_map +EXPORT_SYMBOL vmlinux 0x55174c36 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x551879ec blk_rq_init +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55247a8c generic_write_end +EXPORT_SYMBOL vmlinux 0x55264751 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x553ba0c5 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x5544a6b0 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x5546588e pci_save_state +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554f84e0 sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x555b6f5b devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x5583b973 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559fc038 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x55ad4cb0 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x55b9f548 fasync_helper +EXPORT_SYMBOL vmlinux 0x55e0dee5 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e56f94 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x55efdf89 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x562787da security_path_rename +EXPORT_SYMBOL vmlinux 0x562a727d inode_needs_sync +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x565bc591 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x566dc097 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x5672c1ea get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5675a11a skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56887e3f __kfree_skb +EXPORT_SYMBOL vmlinux 0x5699106a submit_bio +EXPORT_SYMBOL vmlinux 0x56ae865c netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x56ae8771 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x56b8391e alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x56c7ce79 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56dfa389 napi_complete_done +EXPORT_SYMBOL vmlinux 0x56f5308a input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x5708a616 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x57097a22 rt6_lookup +EXPORT_SYMBOL vmlinux 0x570ff078 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x5746ec58 dma_resv_init +EXPORT_SYMBOL vmlinux 0x57488482 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5772426f mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x5786080f inet6_offloads +EXPORT_SYMBOL vmlinux 0x57bb8807 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x57beb3d3 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x57c64edd tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57d0bf1d rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x58021dbd ip6_frag_init +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581cde4e up +EXPORT_SYMBOL vmlinux 0x581de81f __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x586555a5 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x58903c26 snd_device_new +EXPORT_SYMBOL vmlinux 0x58aa1281 generic_writepages +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c9447a jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x58ca3624 skb_pull +EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58eb599e __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x58edf08e rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x58fdb094 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x5908111c tcf_idr_search +EXPORT_SYMBOL vmlinux 0x590e1872 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x5919c725 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x591e345f get_user_pages +EXPORT_SYMBOL vmlinux 0x59238ca8 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x5953ea72 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x595ed69d of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x5963b85a phy_device_free +EXPORT_SYMBOL vmlinux 0x596f48cf input_grab_device +EXPORT_SYMBOL vmlinux 0x597d76a8 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x599048fb xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x59991290 unregister_nls +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high +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 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x5a1d2671 __devm_request_region +EXPORT_SYMBOL vmlinux 0x5a340357 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a67c3cd pcim_pin_device +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9cad14 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x5aa383c7 register_cdrom +EXPORT_SYMBOL vmlinux 0x5ab7caa8 vfs_statfs +EXPORT_SYMBOL vmlinux 0x5aba5fe2 ps2_end_command +EXPORT_SYMBOL vmlinux 0x5abe6049 fwnode_iomap +EXPORT_SYMBOL vmlinux 0x5ad353ca devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x5adc4383 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5afbf6aa skb_checksum_help +EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5b267929 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x5b299ff9 proto_register +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b6a3dbc pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x5b6cd65f mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x5b6e0e32 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x5b75dd3b fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x5b8a76a3 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x5b997007 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x5b9bf70d ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x5ba7e135 mtd_concat_create +EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be4b3a2 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5c0feb6e pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x5c19488f invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x5c1bd9cd write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5c3693fd __getblk_gfp +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c450908 bpf_map_get +EXPORT_SYMBOL vmlinux 0x5c51bb2f flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x5c5a8471 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x5c654244 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 +EXPORT_SYMBOL vmlinux 0x5c867893 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c9c9ce4 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5cb20dc5 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL vmlinux 0x5cbb6dfa rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le +EXPORT_SYMBOL vmlinux 0x5cc9a6d8 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x5ccdcc3e clk_add_alias +EXPORT_SYMBOL vmlinux 0x5ceebd9e pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d0009b2 sg_miter_start +EXPORT_SYMBOL vmlinux 0x5d299ff4 vfs_rename +EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d4a10fd devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x5d648dc4 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x5d76ff6a tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x5d7864f1 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x5d79761b param_ops_hexint +EXPORT_SYMBOL vmlinux 0x5da64bac pci_dev_driver +EXPORT_SYMBOL vmlinux 0x5da70af1 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x5db26312 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x5db7513b skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x5dc4bbf9 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5ddf97c7 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e13faa3 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x5e1d1b17 inet6_protos +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e453363 mount_nodev +EXPORT_SYMBOL vmlinux 0x5e4990aa mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x5e5ffd4e freezer_active +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e7d0a36 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x5e7e03a9 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e89eaeb of_get_next_parent +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec0a557 reuseport_detach_sock +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 0x5ed80a75 snd_timer_open +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5edb0f45 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x5ee688ba ppp_dev_name +EXPORT_SYMBOL vmlinux 0x5eedfddf __skb_get_hash +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f10159f sk_stream_error +EXPORT_SYMBOL vmlinux 0x5f137103 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f2e7eff unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x5f3a10ed phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f551040 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x5f66cf1b __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f7d33a1 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x5f9ea5f8 param_ops_int +EXPORT_SYMBOL vmlinux 0x5fa14675 set_groups +EXPORT_SYMBOL vmlinux 0x5fa37e7a pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x5fa51b3e netdev_features_change +EXPORT_SYMBOL vmlinux 0x5faa2e63 softnet_data +EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fb925e3 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x5fe34fdb kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x5feaed10 pskb_extract +EXPORT_SYMBOL vmlinux 0x5fee52c4 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600d68cd netpoll_setup +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x60305f9e netif_device_attach +EXPORT_SYMBOL vmlinux 0x603144c2 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6035ba4b rpmh_write +EXPORT_SYMBOL vmlinux 0x60440483 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6068c2a6 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x60887fc2 mount_subtree +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b4a2bf nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x60b8e46d vmap +EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e8309f genphy_update_link +EXPORT_SYMBOL vmlinux 0x60f98c7e __block_write_begin +EXPORT_SYMBOL vmlinux 0x60fd3404 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x6104c4f1 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x610870b2 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x610def91 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6129d6c1 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x613e796f imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615d073d drop_nlink +EXPORT_SYMBOL vmlinux 0x617dc283 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x6180d128 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x61a162a0 sock_set_priority +EXPORT_SYMBOL vmlinux 0x61a26e7a request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x61a4cbec __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x61aa3b52 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x61aaba0a xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x61b62386 blk_start_plug +EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bb7fc7 security_sock_graft +EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61ec43b9 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x61edfe5e dm_get_device +EXPORT_SYMBOL vmlinux 0x61f92744 snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x620122e5 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6218be2d mt_find +EXPORT_SYMBOL vmlinux 0x621bb753 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623f97ed d_set_fallthru +EXPORT_SYMBOL vmlinux 0x6240bd87 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x624d4b57 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x62515a27 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x625680dd nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x625df921 generic_file_open +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62834d13 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629e88fa blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x62b49724 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x62b6380a pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x62bfd3a4 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x62c3926b dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x62c7889f nla_put_64bit +EXPORT_SYMBOL vmlinux 0x62e48d57 skb_queue_head +EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x6310a826 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x63202413 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0x632ba40a rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x63518b7f phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x6351ac42 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0x63554699 zap_page_range +EXPORT_SYMBOL vmlinux 0x6359b4dd in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x6361865f scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x63662d57 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x637493f3 __wake_up +EXPORT_SYMBOL vmlinux 0x63788b7f snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x6385ea21 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x638e59fe fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63bd5cec sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x63c31b11 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x63dace2d __dquot_free_space +EXPORT_SYMBOL vmlinux 0x63e4a4b7 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f29eda mtree_alloc_range +EXPORT_SYMBOL vmlinux 0x63fee67b flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64154340 tty_name +EXPORT_SYMBOL vmlinux 0x641c72b9 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x6428db17 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x6432223e pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x643d3afd configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x643fb20a register_qdisc +EXPORT_SYMBOL vmlinux 0x6450e1e7 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x64636dd3 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x6479806c ip_route_me_harder +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 0x64c09b7d scm_detach_fds +EXPORT_SYMBOL vmlinux 0x64c44afa pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x64d9ebb8 genphy_loopback +EXPORT_SYMBOL vmlinux 0x64daf9da fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x650fbc69 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x6510bd61 nvdimm_namespace_common_probe +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 0x6520f734 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x653172d6 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654c9c09 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x654d2f70 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait +EXPORT_SYMBOL vmlinux 0x65787471 skb_tx_error +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x659bfc88 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x659f3125 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x65a8766d unload_nls +EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next +EXPORT_SYMBOL vmlinux 0x65d478c7 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e05ece gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x65e552ed framebuffer_release +EXPORT_SYMBOL vmlinux 0x66036744 fb_class +EXPORT_SYMBOL vmlinux 0x66209360 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x66312e4b inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x663cc07c lookup_one +EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x6658a7a9 nand_ecc_is_strong_enough +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66677c38 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66889a9f pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x66b71ca8 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x66b95ea0 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x66dd6d42 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x670cb454 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x6734fe3c devfreq_update_status +EXPORT_SYMBOL vmlinux 0x67382fa9 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x67422cf3 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x6745be92 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x674b5d1f __skb_pad +EXPORT_SYMBOL vmlinux 0x675b6a4e eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x676bba6c km_state_notify +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x677b7c55 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67de49a2 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x67e0b3c6 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x67f174e3 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x6801c9bb proto_unregister +EXPORT_SYMBOL vmlinux 0x68053c01 eth_header +EXPORT_SYMBOL vmlinux 0x6809c951 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x680d565b configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x683e5626 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x68470e18 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x6857d06c simple_rename +EXPORT_SYMBOL vmlinux 0x68614c6a of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x68709c7a generic_file_fsync +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687bc5d5 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x6893476d tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x689c6f31 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68a70502 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x68aa3312 key_unlink +EXPORT_SYMBOL vmlinux 0x68d2f552 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x68fa7f97 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x68fab083 proc_remove +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69018110 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x691938f8 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x69230824 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x692e1f27 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x693b23f5 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x694b76d3 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x69730bdf rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x6984c06f put_fs_context +EXPORT_SYMBOL vmlinux 0x6984c22d dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x69882c34 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x69a443e5 wireless_send_event +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e4aec8 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x69e80593 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a04d3a2 touch_buffer +EXPORT_SYMBOL vmlinux 0x6a139a0e devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6a2d1594 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x6a40847d input_match_device_id +EXPORT_SYMBOL vmlinux 0x6a40f971 zero_user_segments +EXPORT_SYMBOL vmlinux 0x6a45658b processor +EXPORT_SYMBOL vmlinux 0x6a45d825 param_get_byte +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a69da17 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a747f49 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x6a7887b6 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x6a793b7f udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x6a8831e0 jiffies_64 +EXPORT_SYMBOL vmlinux 0x6a8db38a import_single_range +EXPORT_SYMBOL vmlinux 0x6a924618 skb_condense +EXPORT_SYMBOL vmlinux 0x6a9803c2 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x6a9917eb security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x6a9d667e touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6ab121a6 param_set_uint +EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6ad6debe security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae747e4 cqhci_resume +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af7b21a packing +EXPORT_SYMBOL vmlinux 0x6afb98a7 file_modified +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b5513d3 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6b6f8404 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x6b70e7e3 dquot_release +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6ba634b6 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x6baa7b60 sock_release +EXPORT_SYMBOL vmlinux 0x6bb93d9e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc6eebd __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x6bcf9402 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x6be0b9b8 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x6be9c14f current_time +EXPORT_SYMBOL vmlinux 0x6bed3a60 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x6beed981 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x6bf0a5d7 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x6bf72d2a snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0x6bf7d3c2 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x6bfab9ea page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x6c09a9f8 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c38d38f nand_ecc_get_sw_engine +EXPORT_SYMBOL vmlinux 0x6c3b2aab tcf_block_get +EXPORT_SYMBOL vmlinux 0x6c4c8f13 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6401cb sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x6c7e4473 skb_pull_data +EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x6c82b520 cred_fscmp +EXPORT_SYMBOL vmlinux 0x6ca161ed fb_get_mode +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cba1cc0 register_netdevice +EXPORT_SYMBOL vmlinux 0x6cbb5a9d component_match_add_typed +EXPORT_SYMBOL vmlinux 0x6cd3c36a current_in_userns +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cf3ffd4 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x6cf8e777 seq_write +EXPORT_SYMBOL vmlinux 0x6cfefb1f default_llseek +EXPORT_SYMBOL vmlinux 0x6d14a64f ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x6d1c5b11 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2a4bd0 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x6d348ccd qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x6d34e7aa dev_open +EXPORT_SYMBOL vmlinux 0x6d45ceb9 param_ops_byte +EXPORT_SYMBOL vmlinux 0x6d4d2648 make_kprojid +EXPORT_SYMBOL vmlinux 0x6d673081 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x6d6aa711 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x6d6f8f33 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6d991bbf netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x6d9fffd3 set_anon_super +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dc27327 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd2ed57 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x6dd85ba0 param_get_ushort +EXPORT_SYMBOL vmlinux 0x6ddcb0dd con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x6ddf145e dev_addr_del +EXPORT_SYMBOL vmlinux 0x6dea0380 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dfda6a5 lookup_one_len +EXPORT_SYMBOL vmlinux 0x6e18a928 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x6e196b69 __napi_schedule +EXPORT_SYMBOL vmlinux 0x6e20b8ce security_unix_may_send +EXPORT_SYMBOL vmlinux 0x6e350e3f tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x6e407aee generic_file_llseek +EXPORT_SYMBOL vmlinux 0x6e498110 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x6e5df701 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x6e6099b6 sock_register +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e800fe8 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x6e8383ec d_move +EXPORT_SYMBOL vmlinux 0x6e96f86e nf_log_unset +EXPORT_SYMBOL vmlinux 0x6e9c57ea md_cluster_ops +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea2ab1f dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x6ea7e6c8 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ebf35bc tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x6ebf9bd9 kmalloc_size_roundup +EXPORT_SYMBOL vmlinux 0x6ec62b5f ip_do_fragment +EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x6ee1ece8 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6f007314 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem +EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock +EXPORT_SYMBOL vmlinux 0x6f176537 mt_find_after +EXPORT_SYMBOL vmlinux 0x6f196977 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6f31a49f csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x6f552328 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x6f60a403 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x6f659b64 notify_change +EXPORT_SYMBOL vmlinux 0x6f6fd13a md_update_sb +EXPORT_SYMBOL vmlinux 0x6f74a7f0 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x6f7cef42 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin +EXPORT_SYMBOL vmlinux 0x6f8ed5a8 kobject_get +EXPORT_SYMBOL vmlinux 0x6f90a869 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x6fa24612 nf_reinject +EXPORT_SYMBOL vmlinux 0x6fa70346 netdev_err +EXPORT_SYMBOL vmlinux 0x6fa8f1c7 __d_drop +EXPORT_SYMBOL vmlinux 0x6fab2fc2 omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable +EXPORT_SYMBOL vmlinux 0x6fbc5c06 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd02ce6 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdc5a89 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x6ff31015 key_task_permission +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7004fa9e seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x700623ba __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x700c2fc2 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x7015df73 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x701a5f40 init_net +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7035c5ce pci_find_resource +EXPORT_SYMBOL vmlinux 0x703f991b mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x70437e90 tty_do_resize +EXPORT_SYMBOL vmlinux 0x7047f06b folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x70544f1a kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x70570c07 tcp_prot +EXPORT_SYMBOL vmlinux 0x705d758d dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7087b5f0 vfs_symlink +EXPORT_SYMBOL vmlinux 0x708d94c5 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x70a8fba3 scsi_print_command +EXPORT_SYMBOL vmlinux 0x70ac5578 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x70ce7530 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x70dd3181 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x70e35f9e pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x70f9c918 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x70fb6e70 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x70fd821c rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x711cfe1f seq_bprintf +EXPORT_SYMBOL vmlinux 0x711de134 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712c7ea9 seq_putc +EXPORT_SYMBOL vmlinux 0x71375bc3 vme_dma_request +EXPORT_SYMBOL vmlinux 0x713bdc52 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x713ea41c freezing_slow_path +EXPORT_SYMBOL vmlinux 0x71501d7e register_key_type +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7163324f padata_free_shell +EXPORT_SYMBOL vmlinux 0x716bdabc devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717c4752 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x717c5cee tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71c9fe6c jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x71fc86e9 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7207cb51 simple_open +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x72285409 drop_super +EXPORT_SYMBOL vmlinux 0x72290129 set_nlink +EXPORT_SYMBOL vmlinux 0x72405bf8 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x726f41a3 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x7290825c mtree_store_range +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72b90702 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d5489e get_tree_single +EXPORT_SYMBOL vmlinux 0x72e94292 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f86c0b jbd2_journal_force_commit_nested +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 0x73266e2d tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x73381ab7 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x734eb163 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x735b0601 __fs_parse +EXPORT_SYMBOL vmlinux 0x737511b4 snd_pcm_set_managed_buffer +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x738f3c6b i2c_verify_client +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739f4756 udp_disconnect +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73a259f0 map_destroy +EXPORT_SYMBOL vmlinux 0x73a3592f ilookup +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73ae8a4a pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x73bacdb9 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x73dddfb4 seq_open +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73ef89a2 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x73f13fe3 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742fc1e7 fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0x7434b68c fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x744f197d __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7454fc6a elevator_alloc +EXPORT_SYMBOL vmlinux 0x7468b4a0 rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x74777c23 path_has_submounts +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7486d069 param_array_ops +EXPORT_SYMBOL vmlinux 0x749466a3 mmc_command_done +EXPORT_SYMBOL vmlinux 0x74ac7b1e ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74bc5c72 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c222fd tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x74c9c39a snd_pcm_new +EXPORT_SYMBOL vmlinux 0x74d9ab0d of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer +EXPORT_SYMBOL vmlinux 0x74e54951 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fa9191 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x7503cd3e devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x7510fc2e dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x75140c62 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x7527a485 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x7528cc04 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x7534800d page_mapping +EXPORT_SYMBOL vmlinux 0x75386233 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x755c2a40 nand_ecc_sw_bch_correct +EXPORT_SYMBOL vmlinux 0x755d0820 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x75856eef snd_register_device +EXPORT_SYMBOL vmlinux 0x75986c39 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x75a433cf netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x75b3648f dma_sync_single_for_cpu +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 0x75e2994b qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x75e4fb34 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x75fdb774 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760a51cf inet_put_port +EXPORT_SYMBOL vmlinux 0x7614681a snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x76548a0a md_done_sync +EXPORT_SYMBOL vmlinux 0x7660f6b2 simple_empty +EXPORT_SYMBOL vmlinux 0x7663e929 vfs_fsync +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x767b4d90 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x7698e00c param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x769bfaa5 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76ad9d86 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x76c289d3 nand_ecc_init_ctx +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d2c7b0 PageMovable +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d60254 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x76df2eeb _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0x76e658b9 skb_append +EXPORT_SYMBOL vmlinux 0x76e90679 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x76eaeffe insert_inode_locked +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x77511ccf snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x77676e31 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77b5617f snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bc6096 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x77c42df7 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f0c550 seq_read_iter +EXPORT_SYMBOL vmlinux 0x77f9a0d0 misc_register +EXPORT_SYMBOL vmlinux 0x78059a88 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x781e3c58 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x78503cf7 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x7854a2b3 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x78556006 amba_release_regions +EXPORT_SYMBOL vmlinux 0x785b6042 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x7868d70a unlock_new_inode +EXPORT_SYMBOL vmlinux 0x7870e871 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler +EXPORT_SYMBOL vmlinux 0x78798e1c md_reload_sb +EXPORT_SYMBOL vmlinux 0x787d44c6 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789d841c regset_get_alloc +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78cd1e91 dump_skip +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e5499a ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x78fa9127 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x79026ab8 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7913c450 vme_lm_request +EXPORT_SYMBOL vmlinux 0x791babe8 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x791cee12 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x7926350d kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x79280751 __seq_open_private +EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free +EXPORT_SYMBOL vmlinux 0x798f313f tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x799c51e6 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x79a21427 sock_wfree +EXPORT_SYMBOL vmlinux 0x79b62f51 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x79c77ee4 build_skb_around +EXPORT_SYMBOL vmlinux 0x79cc87bd __nla_reserve +EXPORT_SYMBOL vmlinux 0x79e5117c ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x79e5fec2 register_framebuffer +EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x7a172042 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a1f16af sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a354186 register_netdev +EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0x7a509a06 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a540000 pps_event +EXPORT_SYMBOL vmlinux 0x7a5b5603 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x7a5fe306 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x7a642ad0 inode_update_time +EXPORT_SYMBOL vmlinux 0x7a82cb16 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aae5cc0 tcf_block_put +EXPORT_SYMBOL vmlinux 0x7ac5fec6 input_release_device +EXPORT_SYMBOL vmlinux 0x7ac8fb1d input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x7ae16b92 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x7ae42df8 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7af98c3f ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b075a8c twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x7b08147e dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x7b103b63 phy_resume +EXPORT_SYMBOL vmlinux 0x7b1edda5 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7b3b9b1d flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x7b4a5642 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x7b5a32f2 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b5f4673 vfs_readlink +EXPORT_SYMBOL vmlinux 0x7b6e6acc console_stop +EXPORT_SYMBOL vmlinux 0x7b83575e pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7b996907 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7bace3bc dec_node_page_state +EXPORT_SYMBOL vmlinux 0x7bc4437d bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x7bd260fa tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x7bda4977 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x7bdfa7bc sock_kfree_s +EXPORT_SYMBOL vmlinux 0x7c11bf63 dma_map_resource +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c27f2ae freeze_super +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c81447b unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update +EXPORT_SYMBOL vmlinux 0x7c9777af mdio_driver_register +EXPORT_SYMBOL vmlinux 0x7c9ae44e scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ca5090e security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7ccdc47f bio_add_page +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf24845 mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfa18e9 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d078bd6 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d22f6a6 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x7d315062 seq_read +EXPORT_SYMBOL vmlinux 0x7d405842 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d66131d read_cache_folio +EXPORT_SYMBOL vmlinux 0x7d70382e scsi_scan_target +EXPORT_SYMBOL vmlinux 0x7d7ccd82 irq_set_chip +EXPORT_SYMBOL vmlinux 0x7d8f9e40 ps2_drain +EXPORT_SYMBOL vmlinux 0x7d94d64b blk_get_queue +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db72669 kobject_init +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dd68354 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e05de41 netlink_set_err +EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write +EXPORT_SYMBOL vmlinux 0x7e10fee8 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x7e1fd80d tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e517499 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x7e6c774a fb_set_cmap +EXPORT_SYMBOL vmlinux 0x7e6cc54a pskb_expand_head +EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info +EXPORT_SYMBOL vmlinux 0x7eab5dae tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x7eb5ce87 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x7ec7f1a7 kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x7ecbb9f2 user_path_create +EXPORT_SYMBOL vmlinux 0x7ecf5795 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7ed01363 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x7ee8db3e netdev_info +EXPORT_SYMBOL vmlinux 0x7ef1dfae tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x7ef914ec tty_port_put +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f042503 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x7f151a40 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f275aef skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x7f349c90 param_ops_bint +EXPORT_SYMBOL vmlinux 0x7f36f57e fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x7f387734 request_key_tag +EXPORT_SYMBOL vmlinux 0x7f3adeff __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x7f464eb6 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f65d5dc sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x7f69ae58 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x7f775230 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f9dd81a phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x7f9e9900 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x7fb87fe1 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x7fc06708 request_firmware +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fdd445d udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe220dd configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff9c32a clk_hw_get_clk +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 ___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 __bforget +EXPORT_SYMBOL vmlinux 0x7fffffff __bh_read_batch +EXPORT_SYMBOL vmlinux 0x7fffffff __bio_advance +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_and +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_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x7fffffff __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x7fffffff __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x7fffffff __bread_gfp +EXPORT_SYMBOL vmlinux 0x7fffffff __breadahead +EXPORT_SYMBOL vmlinux 0x7fffffff __break_lease +EXPORT_SYMBOL vmlinux 0x7fffffff __brelse +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 +EXPORT_SYMBOL vmlinux 0x7fffffff __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x7fffffff __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __ctzsi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __dec_node_page_state +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_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x7fffffff __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7fffffff __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7fffffff __devm_release_region +EXPORT_SYMBOL vmlinux 0x7fffffff __do_once_done +EXPORT_SYMBOL vmlinux 0x7fffffff __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0x7fffffff __dquot_transfer +EXPORT_SYMBOL vmlinux 0x7fffffff __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x7fffffff __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x7fffffff __fdget +EXPORT_SYMBOL vmlinux 0x7fffffff __find_get_block +EXPORT_SYMBOL vmlinux 0x7fffffff __find_nth_and_bit +EXPORT_SYMBOL vmlinux 0x7fffffff __find_nth_andnot_bit +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_put +EXPORT_SYMBOL vmlinux 0x7fffffff __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff __free_pages +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_random_u32_below +EXPORT_SYMBOL vmlinux 0x7fffffff __get_user_2 +EXPORT_SYMBOL vmlinux 0x7fffffff __get_user_8 +EXPORT_SYMBOL vmlinux 0x7fffffff __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0x7fffffff __hw_addr_init +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 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x7fffffff __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x7fffffff __inet_hash +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 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_dev_find +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_options_compile +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_select_ident +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_node_track_caller +EXPORT_SYMBOL vmlinux 0x7fffffff __kmap_to_page +EXPORT_SYMBOL vmlinux 0x7fffffff __lock_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff __lshrdi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __mark_inode_dirty +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_start_locking +EXPORT_SYMBOL vmlinux 0x7fffffff __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x7fffffff __mod_lruvec_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 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x7fffffff __neigh_create +EXPORT_SYMBOL vmlinux 0x7fffffff __neigh_event_send +EXPORT_SYMBOL vmlinux 0x7fffffff __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x7fffffff __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x7fffffff __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x7fffffff __netif_napi_del +EXPORT_SYMBOL vmlinux 0x7fffffff __netif_rx +EXPORT_SYMBOL vmlinux 0x7fffffff __netif_schedule +EXPORT_SYMBOL vmlinux 0x7fffffff __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x7fffffff __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_parse +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_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 __of_parse_phandle_with_args +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_resume +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_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 __quota_error +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_chrdev +EXPORT_SYMBOL vmlinux 0x7fffffff __register_nls +EXPORT_SYMBOL vmlinux 0x7fffffff __request_module +EXPORT_SYMBOL vmlinux 0x7fffffff __request_region +EXPORT_SYMBOL vmlinux 0x7fffffff __scm_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff __scm_send +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_execute +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7fffffff __serio_register_port +EXPORT_SYMBOL vmlinux 0x7fffffff __set_page_dirty_nobuffers +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_reclaim +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_ext_del +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x7fffffff __sock_create +EXPORT_SYMBOL vmlinux 0x7fffffff __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x7fffffff __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x7fffffff __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x7fffffff __sw_hweight8 +EXPORT_SYMBOL vmlinux 0x7fffffff __sync_dirty_buffer +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 +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_mmap_lock_acquire_returned +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_kmem_cache_alloc +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 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x7fffffff __umodsi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7fffffff __vfs_getxattr +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 _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_emerg +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_err +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_info +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_warn +EXPORT_SYMBOL vmlinux 0x7fffffff _find_first_and_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x7fffffff _find_last_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_next_and_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x7fffffff _find_next_zero_bit_le +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 abort_creds +EXPORT_SYMBOL vmlinux 0x7fffffff ac97_bus_type +EXPORT_SYMBOL vmlinux 0x7fffffff add_device_randomness +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 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_buffer_head +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_fddidev +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x7fffffff allocate_resource +EXPORT_SYMBOL vmlinux 0x7fffffff always_delete_dentry +EXPORT_SYMBOL vmlinux 0x7fffffff amba_device_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff amba_driver_register +EXPORT_SYMBOL vmlinux 0x7fffffff amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff amba_request_regions +EXPORT_SYMBOL vmlinux 0x7fffffff aperture_remove_conflicting_devices +EXPORT_SYMBOL vmlinux 0x7fffffff aperture_remove_conflicting_pci_devices +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_zone_size +EXPORT_SYMBOL vmlinux 0x7fffffff arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0x7fffffff arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x7fffffff arp_create +EXPORT_SYMBOL vmlinux 0x7fffffff arp_send +EXPORT_SYMBOL vmlinux 0x7fffffff arp_xmit +EXPORT_SYMBOL vmlinux 0x7fffffff ata_print_version +EXPORT_SYMBOL vmlinux 0x7fffffff ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x7fffffff ata_std_end_eh +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_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_type +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_device_unregister +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_check_media_change +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_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x7fffffff bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x7fffffff bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x7fffffff bio_chain +EXPORT_SYMBOL vmlinux 0x7fffffff bio_copy_data +EXPORT_SYMBOL vmlinux 0x7fffffff bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x7fffffff bio_endio +EXPORT_SYMBOL vmlinux 0x7fffffff bio_init +EXPORT_SYMBOL vmlinux 0x7fffffff bio_init_clone +EXPORT_SYMBOL vmlinux 0x7fffffff bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff bio_kmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff bio_put +EXPORT_SYMBOL vmlinux 0x7fffffff bio_reset +EXPORT_SYMBOL vmlinux 0x7fffffff bio_split +EXPORT_SYMBOL vmlinux 0x7fffffff bio_split_to_limits +EXPORT_SYMBOL vmlinux 0x7fffffff bio_uninit +EXPORT_SYMBOL vmlinux 0x7fffffff bioset_exit +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_integrity_register +EXPORT_SYMBOL vmlinux 0x7fffffff blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x7fffffff blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_destroy_queue +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_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x7fffffff blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x7fffffff blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff blk_pre_runtime_resume +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_clear +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x7fffffff blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x7fffffff blk_sync_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_issue_secure_erase +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_read_full_folio +EXPORT_SYMBOL vmlinux 0x7fffffff block_truncate_page +EXPORT_SYMBOL vmlinux 0x7fffffff block_write_begin +EXPORT_SYMBOL vmlinux 0x7fffffff block_write_end +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_link_put +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 build_skb +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_usermodehelper +EXPORT_SYMBOL vmlinux 0x7fffffff call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x7fffffff call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x7fffffff can_do_mlock +EXPORT_SYMBOL vmlinux 0x7fffffff can_nice +EXPORT_SYMBOL vmlinux 0x7fffffff cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x7fffffff cancel_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_add +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_del +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_device_add +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_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_get_media_event +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_fillrect +EXPORT_SYMBOL vmlinux 0x7fffffff cfb_imageblit +EXPORT_SYMBOL vmlinux 0x7fffffff clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x7fffffff clear_inode +EXPORT_SYMBOL vmlinux 0x7fffffff clk_bulk_get +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 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 complete_request_key +EXPORT_SYMBOL vmlinux 0x7fffffff con_copy_unimap +EXPORT_SYMBOL vmlinux 0x7fffffff con_is_bound +EXPORT_SYMBOL vmlinux 0x7fffffff con_is_visible +EXPORT_SYMBOL vmlinux 0x7fffffff config_group_find_item +EXPORT_SYMBOL vmlinux 0x7fffffff config_group_init +EXPORT_SYMBOL vmlinux 0x7fffffff config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x7fffffff config_item_get +EXPORT_SYMBOL vmlinux 0x7fffffff config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x7fffffff config_item_put +EXPORT_SYMBOL vmlinux 0x7fffffff config_item_set_name +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 console_blank_hook +EXPORT_SYMBOL vmlinux 0x7fffffff console_blanked +EXPORT_SYMBOL vmlinux 0x7fffffff console_conditional_schedule +EXPORT_SYMBOL vmlinux 0x7fffffff console_force_preferred_locked +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_ecn_ok +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_atomic +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_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_distribute +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_local_spread +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_query_all +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_sha256_update +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_sha512_finup +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 +EXPORT_SYMBOL vmlinux 0x7fffffff d_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff d_alloc_name +EXPORT_SYMBOL vmlinux 0x7fffffff d_delete +EXPORT_SYMBOL vmlinux 0x7fffffff d_drop +EXPORT_SYMBOL vmlinux 0x7fffffff d_exact_alias +EXPORT_SYMBOL vmlinux 0x7fffffff d_find_alias +EXPORT_SYMBOL vmlinux 0x7fffffff d_find_any_alias +EXPORT_SYMBOL vmlinux 0x7fffffff d_genocide +EXPORT_SYMBOL vmlinux 0x7fffffff d_invalidate +EXPORT_SYMBOL vmlinux 0x7fffffff d_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff d_make_root +EXPORT_SYMBOL vmlinux 0x7fffffff d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x7fffffff d_obtain_alias +EXPORT_SYMBOL vmlinux 0x7fffffff d_prune_aliases +EXPORT_SYMBOL vmlinux 0x7fffffff da903x_query_status +EXPORT_SYMBOL vmlinux 0x7fffffff datagram_poll +EXPORT_SYMBOL vmlinux 0x7fffffff dcache_dir_lseek +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_setapp +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_setapp +EXPORT_SYMBOL vmlinux 0x7fffffff dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x7fffffff debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x7fffffff default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7fffffff default_wake_function +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_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_change_flags +EXPORT_SYMBOL vmlinux 0x7fffffff dev_close +EXPORT_SYMBOL vmlinux 0x7fffffff dev_deactivate +EXPORT_SYMBOL vmlinux 0x7fffffff dev_disable_lro +EXPORT_SYMBOL vmlinux 0x7fffffff dev_driver_string +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_by_name +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_flags +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_iflink +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_global +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_del +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_init +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_sync +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x7fffffff dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x7fffffff dev_printk_emit +EXPORT_SYMBOL vmlinux 0x7fffffff dev_remove_offload +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_alias +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_add +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_del +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_init +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_sync +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x7fffffff devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff device_add_disk +EXPORT_SYMBOL vmlinux 0x7fffffff device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x7fffffff device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x7fffffff devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x7fffffff devm_backlight_device_register +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_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_free_irq +EXPORT_SYMBOL vmlinux 0x7fffffff devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x7fffffff devm_ioremap +EXPORT_SYMBOL vmlinux 0x7fffffff devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x7fffffff devm_iounmap +EXPORT_SYMBOL vmlinux 0x7fffffff devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x7fffffff devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x7fffffff devm_memremap +EXPORT_SYMBOL vmlinux 0x7fffffff devm_memunmap +EXPORT_SYMBOL vmlinux 0x7fffffff devm_of_iomap +EXPORT_SYMBOL vmlinux 0x7fffffff devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x7fffffff devm_register_netdev +EXPORT_SYMBOL vmlinux 0x7fffffff devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x7fffffff devm_rproc_add +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 discard_new_inode +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_put_device +EXPORT_SYMBOL vmlinux 0x7fffffff dm_read_arg_group +EXPORT_SYMBOL vmlinux 0x7fffffff dm_register_target +EXPORT_SYMBOL vmlinux 0x7fffffff dm_table_get_size +EXPORT_SYMBOL vmlinux 0x7fffffff dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_async_device_register +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_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_free_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_pool_create +EXPORT_SYMBOL vmlinux 0x7fffffff dma_pool_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x7fffffff dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x7fffffff dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7fffffff dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x7fffffff dma_sync_wait +EXPORT_SYMBOL vmlinux 0x7fffffff dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x7fffffff dmaengine_get +EXPORT_SYMBOL vmlinux 0x7fffffff dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x7fffffff dmam_alloc_attrs +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_map_probe +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 dqstats +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_commit +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_drop +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_file_open +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_free_inode +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_get_state +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_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_operations +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_quota_off +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_quota_on +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_scan_active +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x7fffffff drop_reasons +EXPORT_SYMBOL vmlinux 0x7fffffff dst_default_metrics +EXPORT_SYMBOL vmlinux 0x7fffffff dst_dev_put +EXPORT_SYMBOL vmlinux 0x7fffffff dst_discard_out +EXPORT_SYMBOL vmlinux 0x7fffffff dst_release +EXPORT_SYMBOL vmlinux 0x7fffffff dump_align +EXPORT_SYMBOL vmlinux 0x7fffffff dump_emit +EXPORT_SYMBOL vmlinux 0x7fffffff dump_skip_to +EXPORT_SYMBOL vmlinux 0x7fffffff ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x7fffffff ecc_sw_hamming_correct +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 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x7fffffff elv_bio_merge_ok +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_page_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff errseq_sample +EXPORT_SYMBOL vmlinux 0x7fffffff eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7fffffff eth_gro_complete +EXPORT_SYMBOL vmlinux 0x7fffffff eth_gro_receive +EXPORT_SYMBOL vmlinux 0x7fffffff eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7fffffff eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7fffffff ether_setup +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_notify +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_rx_flow_rule_create +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_cvt +EXPORT_SYMBOL vmlinux 0x7fffffff fb_get_buffer_offset +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_modesetting_disabled +EXPORT_SYMBOL vmlinux 0x7fffffff fb_register_client +EXPORT_SYMBOL vmlinux 0x7fffffff fb_set_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff fb_set_var +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 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x7fffffff fd_install +EXPORT_SYMBOL vmlinux 0x7fffffff fget +EXPORT_SYMBOL vmlinux 0x7fffffff fget_raw +EXPORT_SYMBOL vmlinux 0x7fffffff fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x7fffffff fiemap_prep +EXPORT_SYMBOL vmlinux 0x7fffffff fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x7fffffff fifo_set_limit +EXPORT_SYMBOL vmlinux 0x7fffffff file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x7fffffff file_update_time +EXPORT_SYMBOL vmlinux 0x7fffffff file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x7fffffff fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x7fffffff fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_map_pages +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_page_mkwrite +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 filp_open +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 find_vma +EXPORT_SYMBOL vmlinux 0x7fffffff finish_no_open +EXPORT_SYMBOL vmlinux 0x7fffffff finish_open +EXPORT_SYMBOL vmlinux 0x7fffffff finish_swait +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_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x7fffffff flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x7fffffff flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x7fffffff flush_dcache_page +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_end_private_2 +EXPORT_SYMBOL vmlinux 0x7fffffff folio_end_writeback +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_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff folio_wait_bit +EXPORT_SYMBOL vmlinux 0x7fffffff folio_write_one +EXPORT_SYMBOL vmlinux 0x7fffffff follow_down +EXPORT_SYMBOL vmlinux 0x7fffffff follow_down_one +EXPORT_SYMBOL vmlinux 0x7fffffff follow_pfn +EXPORT_SYMBOL vmlinux 0x7fffffff follow_up +EXPORT_SYMBOL vmlinux 0x7fffffff font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x7fffffff forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x7fffffff fortify_panic +EXPORT_SYMBOL vmlinux 0x7fffffff fput +EXPORT_SYMBOL vmlinux 0x7fffffff fqdir_exit +EXPORT_SYMBOL vmlinux 0x7fffffff free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x7fffffff free_buffer_head +EXPORT_SYMBOL vmlinux 0x7fffffff free_cgroup_ns +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 free_task +EXPORT_SYMBOL vmlinux 0x7fffffff from_kgid +EXPORT_SYMBOL vmlinux 0x7fffffff from_kgid_munged +EXPORT_SYMBOL vmlinux 0x7fffffff from_kprojid +EXPORT_SYMBOL vmlinux 0x7fffffff from_kuid +EXPORT_SYMBOL vmlinux 0x7fffffff fs_overflowgid +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_fd +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_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_encrypt_pagecache_blocks +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_has_permitted_context +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 full_name_hash +EXPORT_SYMBOL vmlinux 0x7fffffff fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_mdiobus_register_phy +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_fadvise +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_mmap +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_readonly_mmap +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_perform_write +EXPORT_SYMBOL vmlinux 0x7fffffff generic_ro_fops +EXPORT_SYMBOL vmlinux 0x7fffffff generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x7fffffff generic_write_checks +EXPORT_SYMBOL vmlinux 0x7fffffff generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x7fffffff genl_notify +EXPORT_SYMBOL vmlinux 0x7fffffff genl_unregister_family +EXPORT_SYMBOL vmlinux 0x7fffffff genlmsg_put +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_abilities +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 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x7fffffff get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x7fffffff get_cached_acl +EXPORT_SYMBOL vmlinux 0x7fffffff get_default_font +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_random_u8 +EXPORT_SYMBOL vmlinux 0x7fffffff get_thermal_instance +EXPORT_SYMBOL vmlinux 0x7fffffff get_tree_nodev +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_ifreq +EXPORT_SYMBOL vmlinux 0x7fffffff get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x7fffffff get_watch_queue +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_app +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_start_copy_compat +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_find_receive_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 hchacha_block_generic +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_infoframe_log +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 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x7fffffff hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x7fffffff hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_clients_command +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_write_byte +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_write_word_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_xfer +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 icmp6_send +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 iget5_locked +EXPORT_SYMBOL vmlinux 0x7fffffff ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x7fffffff igrab +EXPORT_SYMBOL vmlinux 0x7fffffff ihold +EXPORT_SYMBOL vmlinux 0x7fffffff ilookup5 +EXPORT_SYMBOL vmlinux 0x7fffffff import_iovec +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_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 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_node_state +EXPORT_SYMBOL vmlinux 0x7fffffff inc_zone_page_state +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 inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x7fffffff inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x7fffffff inet_accept +EXPORT_SYMBOL vmlinux 0x7fffffff inet_addr_is_any +EXPORT_SYMBOL vmlinux 0x7fffffff inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x7fffffff inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x7fffffff inet_bind +EXPORT_SYMBOL vmlinux 0x7fffffff inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_reqsk_queue_add +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_del_offload +EXPORT_SYMBOL vmlinux 0x7fffffff inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x7fffffff inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frags_init +EXPORT_SYMBOL vmlinux 0x7fffffff inet_getname +EXPORT_SYMBOL vmlinux 0x7fffffff inet_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x7fffffff inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x7fffffff inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x7fffffff inet_protos +EXPORT_SYMBOL vmlinux 0x7fffffff inet_pton_with_scope +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_sendpage +EXPORT_SYMBOL vmlinux 0x7fffffff inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x7fffffff inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7fffffff inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x7fffffff inet_sock_destruct +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_pseudo +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_get_bytes +EXPORT_SYMBOL vmlinux 0x7fffffff inode_init_always +EXPORT_SYMBOL vmlinux 0x7fffffff inode_init_once +EXPORT_SYMBOL vmlinux 0x7fffffff inode_io_list_del +EXPORT_SYMBOL vmlinux 0x7fffffff inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x7fffffff inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x7fffffff inode_owner_or_capable +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_allocate_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_close_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_copy_abs +EXPORT_SYMBOL vmlinux 0x7fffffff input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x7fffffff input_event +EXPORT_SYMBOL vmlinux 0x7fffffff input_free_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_get_keycode +EXPORT_SYMBOL vmlinux 0x7fffffff input_get_new_minor +EXPORT_SYMBOL vmlinux 0x7fffffff input_get_timestamp +EXPORT_SYMBOL vmlinux 0x7fffffff input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x7fffffff input_inject_event +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x7fffffff input_register_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_register_handler +EXPORT_SYMBOL vmlinux 0x7fffffff input_reset_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_capability +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_keycode +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 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x7fffffff int_sqrt +EXPORT_SYMBOL vmlinux 0x7fffffff invalidate_disk +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 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_advance +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_init +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_revert +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_zero +EXPORT_SYMBOL vmlinux 0x7fffffff ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_frag_next +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_xmit +EXPORT_SYMBOL vmlinux 0x7fffffff ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0x7fffffff ip_frag_next +EXPORT_SYMBOL vmlinux 0x7fffffff ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x7fffffff ip_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff ip_local_deliver +EXPORT_SYMBOL vmlinux 0x7fffffff ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7fffffff ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x7fffffff ip_output +EXPORT_SYMBOL vmlinux 0x7fffffff ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7fffffff ip_setsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x7fffffff ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x7fffffff ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x7fffffff ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0x7fffffff ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x7fffffff iptun_encaps +EXPORT_SYMBOL vmlinux 0x7fffffff iput +EXPORT_SYMBOL vmlinux 0x7fffffff ipv4_specific +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_setsockopt +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_irq_wake +EXPORT_SYMBOL vmlinux 0x7fffffff irq_stat +EXPORT_SYMBOL vmlinux 0x7fffffff is_bad_inode +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_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x7fffffff is_subdir +EXPORT_SYMBOL vmlinux 0x7fffffff is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0x7fffffff iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0x7fffffff iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x7fffffff iterate_fd +EXPORT_SYMBOL vmlinux 0x7fffffff iterate_supers_type +EXPORT_SYMBOL vmlinux 0x7fffffff iunique +EXPORT_SYMBOL vmlinux 0x7fffffff iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x7fffffff iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x7fffffff iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_fc_end_commit_fallback +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_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_flush +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_jbd_inode +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_wait_inode_data +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 kern_unmount +EXPORT_SYMBOL vmlinux 0x7fffffff kern_unmount_array +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_accept +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_cpustat +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_getpeername +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_getsockname +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_read +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_write +EXPORT_SYMBOL vmlinux 0x7fffffff key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x7fffffff key_invalidate +EXPORT_SYMBOL vmlinux 0x7fffffff key_link +EXPORT_SYMBOL vmlinux 0x7fffffff key_move +EXPORT_SYMBOL vmlinux 0x7fffffff key_payload_reserve +EXPORT_SYMBOL vmlinux 0x7fffffff key_put +EXPORT_SYMBOL vmlinux 0x7fffffff key_reject_and_link +EXPORT_SYMBOL vmlinux 0x7fffffff key_revoke +EXPORT_SYMBOL vmlinux 0x7fffffff key_type_keyring +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 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x7fffffff kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x7fffffff kill_litter_super +EXPORT_SYMBOL vmlinux 0x7fffffff kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x7fffffff km_new_mapping +EXPORT_SYMBOL vmlinux 0x7fffffff km_policy_expired +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 kmalloc_large +EXPORT_SYMBOL vmlinux 0x7fffffff kmalloc_large_node +EXPORT_SYMBOL vmlinux 0x7fffffff kmalloc_trace +EXPORT_SYMBOL vmlinux 0x7fffffff kmap_high +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_size +EXPORT_SYMBOL vmlinux 0x7fffffff kobject_put +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 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_create_on_node +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 kunmap_local_indexed +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 +EXPORT_SYMBOL vmlinux 0x7fffffff load_nls_default +EXPORT_SYMBOL vmlinux 0x7fffffff lock_sock_nested +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_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x7fffffff locks_remove_posix +EXPORT_SYMBOL vmlinux 0x7fffffff logfc +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_constant +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff loops_per_jiffy +EXPORT_SYMBOL vmlinux 0x7fffffff make_kgid +EXPORT_SYMBOL vmlinux 0x7fffffff make_kuid +EXPORT_SYMBOL vmlinux 0x7fffffff mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x7fffffff mark_buffer_dirty_inode +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_bulk_write +EXPORT_SYMBOL vmlinux 0x7fffffff max8925_reg_write +EXPORT_SYMBOL vmlinux 0x7fffffff max8925_set_bits +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_update_reg +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_write_reg +EXPORT_SYMBOL vmlinux 0x7fffffff may_setattr +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_end_sync +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_free +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_sync_with_cluster +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_register_thread +EXPORT_SYMBOL vmlinux 0x7fffffff md_unregister_thread +EXPORT_SYMBOL vmlinux 0x7fffffff md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x7fffffff md_write_start +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_bus_type +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_device_create +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_device_remove +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_device_reset +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobb_read +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobb_write +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_free +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_scan +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_unregister_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 memory_cgrp_subsys +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 migrate_folio +EXPORT_SYMBOL vmlinux 0x7fffffff mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x7fffffff mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fffffff mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fffffff mii_link_ok +EXPORT_SYMBOL vmlinux 0x7fffffff mini_qdisc_pair_block_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_compression_mode +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_get_power_mode +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_display_brightness +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_set_display_on +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_driver_register_full +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_host_unregister +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_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x7fffffff misc_deregister +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_can_erase +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_can_trim +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_detect_change +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_erase +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_free_host +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpio_get_ro +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_ro +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_of_parse +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_of_parse_clk_phase +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_pause +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_start_request +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x7fffffff mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x7fffffff mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x7fffffff mod_timer +EXPORT_SYMBOL vmlinux 0x7fffffff mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x7fffffff module_layout +EXPORT_SYMBOL vmlinux 0x7fffffff module_put +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_parent +EXPORT_SYMBOL vmlinux 0x7fffffff mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x7fffffff mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x7fffffff mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x7fffffff mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x7fffffff msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x7fffffff msleep +EXPORT_SYMBOL vmlinux 0x7fffffff msleep_interruptible +EXPORT_SYMBOL vmlinux 0x7fffffff msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x7fffffff mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0x7fffffff mtree_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff mtree_insert +EXPORT_SYMBOL vmlinux 0x7fffffff mtree_load +EXPORT_SYMBOL vmlinux 0x7fffffff mtree_store +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_create_bbt +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_get_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_prepare_io_req +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_correct +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff nand_monolithic_read_page_raw +EXPORT_SYMBOL vmlinux 0x7fffffff nand_read_oob_std +EXPORT_SYMBOL vmlinux 0x7fffffff nand_write_page_raw +EXPORT_SYMBOL vmlinux 0x7fffffff napi_build_skb +EXPORT_SYMBOL vmlinux 0x7fffffff napi_consume_skb +EXPORT_SYMBOL vmlinux 0x7fffffff napi_disable +EXPORT_SYMBOL vmlinux 0x7fffffff napi_enable +EXPORT_SYMBOL vmlinux 0x7fffffff napi_get_frags +EXPORT_SYMBOL vmlinux 0x7fffffff napi_gro_flush +EXPORT_SYMBOL vmlinux 0x7fffffff napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x7fffffff nd_btt_probe +EXPORT_SYMBOL vmlinux 0x7fffffff nd_device_notify +EXPORT_SYMBOL vmlinux 0x7fffffff nd_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff nd_integrity_init +EXPORT_SYMBOL vmlinux 0x7fffffff nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x7fffffff ndisc_ns_create +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_changeaddr +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_event_ns +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_for_each +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_lookup_nodev +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_next +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_seq_start +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_table_init +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_get_private +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_alert +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_change_features +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_crit +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_max_backlog +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_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_get +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_set_num_tc +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_update_features +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_carrier_on +EXPORT_SYMBOL vmlinux 0x7fffffff netif_device_detach +EXPORT_SYMBOL vmlinux 0x7fffffff netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x7fffffff netif_receive_skb +EXPORT_SYMBOL vmlinux 0x7fffffff netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x7fffffff netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x7fffffff netif_set_xps_queue +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 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_broadcast +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_net_capable +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_unicast +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x7fffffff netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x7fffffff new_inode +EXPORT_SYMBOL vmlinux 0x7fffffff next_arg +EXPORT_SYMBOL vmlinux 0x7fffffff nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x7fffffff nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x7fffffff nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff nf_ct_attach +EXPORT_SYMBOL vmlinux 0x7fffffff nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_packet +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_set +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x7fffffff nf_register_queue_handler +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 +EXPORT_SYMBOL vmlinux 0x7fffffff nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x7fffffff nla_reserve +EXPORT_SYMBOL vmlinux 0x7fffffff nla_strcmp +EXPORT_SYMBOL vmlinux 0x7fffffff nla_strdup +EXPORT_SYMBOL vmlinux 0x7fffffff nmi_panic +EXPORT_SYMBOL vmlinux 0x7fffffff node_states +EXPORT_SYMBOL vmlinux 0x7fffffff noop_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff noop_qdisc +EXPORT_SYMBOL vmlinux 0x7fffffff nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x7fffffff ns_capable +EXPORT_SYMBOL vmlinux 0x7fffffff ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x7fffffff ns_capable_setid +EXPORT_SYMBOL vmlinux 0x7fffffff nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x7fffffff nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x7fffffff nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x7fffffff of_chosen +EXPORT_SYMBOL vmlinux 0x7fffffff of_clk_get +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_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_matching_node_and_match +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_opts_by_path +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_property +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_min_tck +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_nand_ecc_user_config +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_next_child +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_property +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_next_endpoint +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_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_parse_endpoint +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_match_device +EXPORT_SYMBOL vmlinux 0x7fffffff of_match_node +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_n_size_cells +EXPORT_SYMBOL vmlinux 0x7fffffff of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x7fffffff of_node_put +EXPORT_SYMBOL vmlinux 0x7fffffff of_pci_range_to_resource +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 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x7fffffff of_platform_device_create +EXPORT_SYMBOL vmlinux 0x7fffffff of_root +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 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x7fffffff overflowuid +EXPORT_SYMBOL vmlinux 0x7fffffff override_creds +EXPORT_SYMBOL vmlinux 0x7fffffff padata_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x7fffffff padata_do_serial +EXPORT_SYMBOL vmlinux 0x7fffffff padata_free +EXPORT_SYMBOL vmlinux 0x7fffffff page_frag_free +EXPORT_SYMBOL vmlinux 0x7fffffff page_get_link +EXPORT_SYMBOL vmlinux 0x7fffffff page_offline_end +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_ethtool_stats_get +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_release_page +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_get_page +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_get_charp +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_hexint +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_invbool +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_long +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_uint +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_ulong +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_bool +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_long +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_short +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_string +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_uint +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_ullong +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_ulong +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_ushort +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_bint +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_bool +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_byte +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_charp +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_copystring +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_int +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_long +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_ulong +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_ushort +EXPORT_SYMBOL vmlinux 0x7fffffff parse_int_array_user +EXPORT_SYMBOL vmlinux 0x7fffffff passthru_features_check +EXPORT_SYMBOL vmlinux 0x7fffffff path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x7fffffff path_is_under +EXPORT_SYMBOL vmlinux 0x7fffffff path_put +EXPORT_SYMBOL vmlinux 0x7fffffff pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x7fffffff pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x7fffffff pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x7fffffff pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x7fffffff pci_assign_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_alloc_resource +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_size_bridges +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_claim_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pci_dev_get +EXPORT_SYMBOL vmlinux 0x7fffffff pci_dev_put +EXPORT_SYMBOL vmlinux 0x7fffffff pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x7fffffff pci_disable_msi +EXPORT_SYMBOL vmlinux 0x7fffffff pci_disable_msix +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_ptm +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_find_next_bus +EXPORT_SYMBOL vmlinux 0x7fffffff pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pci_fixup_device +EXPORT_SYMBOL vmlinux 0x7fffffff pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x7fffffff pci_free_irq +EXPORT_SYMBOL vmlinux 0x7fffffff pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x7fffffff pci_get_class +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_iomap_range +EXPORT_SYMBOL vmlinux 0x7fffffff pci_iounmap +EXPORT_SYMBOL vmlinux 0x7fffffff pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x7fffffff pci_irq_vector +EXPORT_SYMBOL vmlinux 0x7fffffff pci_match_id +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_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x7fffffff pci_reenable_device +EXPORT_SYMBOL vmlinux 0x7fffffff pci_release_region +EXPORT_SYMBOL vmlinux 0x7fffffff pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_irq +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_region +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff pci_resize_resource +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_mwi +EXPORT_SYMBOL vmlinux 0x7fffffff pci_set_power_state +EXPORT_SYMBOL vmlinux 0x7fffffff pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x7fffffff pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_config_word +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_vpd +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x7fffffff pcibios_fixup_bus +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_word +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_get_mps +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_get_readrq +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_set_mwi +EXPORT_SYMBOL vmlinux 0x7fffffff pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x7fffffff percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x7fffffff percpu_counter_sum_all +EXPORT_SYMBOL vmlinux 0x7fffffff percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x7fffffff pgprot_kernel +EXPORT_SYMBOL vmlinux 0x7fffffff pgprot_user +EXPORT_SYMBOL vmlinux 0x7fffffff phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x7fffffff phy_attach +EXPORT_SYMBOL vmlinux 0x7fffffff phy_attach_direct +EXPORT_SYMBOL vmlinux 0x7fffffff phy_attached_info +EXPORT_SYMBOL vmlinux 0x7fffffff phy_connect_direct +EXPORT_SYMBOL vmlinux 0x7fffffff phy_device_remove +EXPORT_SYMBOL vmlinux 0x7fffffff phy_disconnect +EXPORT_SYMBOL vmlinux 0x7fffffff phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x7fffffff phy_driver_register +EXPORT_SYMBOL vmlinux 0x7fffffff phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x7fffffff phy_find_first +EXPORT_SYMBOL vmlinux 0x7fffffff phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x7fffffff phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x7fffffff phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x7fffffff phy_init_eee +EXPORT_SYMBOL vmlinux 0x7fffffff phy_loopback +EXPORT_SYMBOL vmlinux 0x7fffffff phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x7fffffff phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x7fffffff phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x7fffffff phy_print_status +EXPORT_SYMBOL vmlinux 0x7fffffff phy_read_mmd +EXPORT_SYMBOL vmlinux 0x7fffffff phy_register_fixup +EXPORT_SYMBOL vmlinux 0x7fffffff phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x7fffffff phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x7fffffff phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x7fffffff phy_set_sym_pause +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_start_cable_test_tdr +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_trigger_machine +EXPORT_SYMBOL vmlinux 0x7fffffff phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0x7fffffff phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x7fffffff phy_write_mmd +EXPORT_SYMBOL vmlinux 0x7fffffff phy_write_paged +EXPORT_SYMBOL vmlinux 0x7fffffff pin_user_pages +EXPORT_SYMBOL vmlinux 0x7fffffff pipe_lock +EXPORT_SYMBOL vmlinux 0x7fffffff pipe_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x7fffffff pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x7fffffff pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x7fffffff pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x7fffffff pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x7fffffff pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x7fffffff pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff pmem_sector_size +EXPORT_SYMBOL vmlinux 0x7fffffff pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x7fffffff poll_freewait +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_lock_file +EXPORT_SYMBOL vmlinux 0x7fffffff posix_test_lock +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_channel_index +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x7fffffff pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x7fffffff pps_register_source +EXPORT_SYMBOL vmlinux 0x7fffffff pps_unregister_source +EXPORT_SYMBOL vmlinux 0x7fffffff prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x7fffffff prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x7fffffff prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff probe_irq_off +EXPORT_SYMBOL vmlinux 0x7fffffff probe_irq_on +EXPORT_SYMBOL vmlinux 0x7fffffff proc_create_data +EXPORT_SYMBOL vmlinux 0x7fffffff proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x7fffffff proc_create_single_data +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_set_size +EXPORT_SYMBOL vmlinux 0x7fffffff proc_set_user +EXPORT_SYMBOL vmlinux 0x7fffffff proc_symlink +EXPORT_SYMBOL vmlinux 0x7fffffff profile_pc +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_command +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_handle_response +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_init +EXPORT_SYMBOL vmlinux 0x7fffffff psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0x7fffffff psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_clock_event +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_clock_index +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_find_pin +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_disk +EXPORT_SYMBOL vmlinux 0x7fffffff put_pages_list +EXPORT_SYMBOL vmlinux 0x7fffffff put_user_ifreq +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_grow +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_offload_graft_helper +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_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_watchdog_init +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_dt_parse_gpio_cs +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_bch_cleanup +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_bch_init +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_uncharge +EXPORT_SYMBOL vmlinux 0x7fffffff read_code +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 redirty_page_for_writepage +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_filesystem +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_personality +EXPORT_SYMBOL vmlinux 0x7fffffff register_module_notifier +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_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_restart_handler +EXPORT_SYMBOL vmlinux 0x7fffffff register_sound_special +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 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7fffffff registered_fb +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_pages +EXPORT_SYMBOL vmlinux 0x7fffffff release_resource +EXPORT_SYMBOL vmlinux 0x7fffffff release_sock +EXPORT_SYMBOL vmlinux 0x7fffffff remove_arg_zero +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_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x7fffffff request_partial_firmware_into_buf +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 retire_super +EXPORT_SYMBOL vmlinux 0x7fffffff reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x7fffffff reuseport_alloc +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 reuseport_stop_listen_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_write_async +EXPORT_SYMBOL vmlinux 0x7fffffff rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_coredump_using_sections +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_load_segments +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_free +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_put +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff rps_needed +EXPORT_SYMBOL vmlinux 0x7fffffff rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x7fffffff rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x7fffffff rtc_add_group +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_kfree_skbs +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_link_get_net +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 sched_autogroup_create_attach +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_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_get +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_put +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_resume +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_done_direct +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_eh_finish_cmd +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_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_is_sdev_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_result +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_rescan_device +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_target_quiesce +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_target_resume +EXPORT_SYMBOL vmlinux 0x7fffffff scsilun_to_int +EXPORT_SYMBOL vmlinux 0x7fffffff sdev_enable_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 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x7fffffff security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x7fffffff security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x7fffffff security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x7fffffff security_d_instantiate +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_established +EXPORT_SYMBOL vmlinux 0x7fffffff security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_init_security +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x7fffffff security_ismaclabel +EXPORT_SYMBOL vmlinux 0x7fffffff security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x7fffffff security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x7fffffff security_path_unlink +EXPORT_SYMBOL vmlinux 0x7fffffff security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0x7fffffff security_sb_set_mnt_opts +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_skb_classify_flow +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_attach +EXPORT_SYMBOL vmlinux 0x7fffffff security_tun_dev_open +EXPORT_SYMBOL vmlinux 0x7fffffff security_xfrm_policy_alloc +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_validate_skb +EXPORT_SYMBOL vmlinux 0x7fffffff seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x7fffffff send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x7fffffff seq_dentry +EXPORT_SYMBOL vmlinux 0x7fffffff seq_escape_mem +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_lseek +EXPORT_SYMBOL vmlinux 0x7fffffff seq_open_private +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_release +EXPORT_SYMBOL vmlinux 0x7fffffff seq_vprintf +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_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_close +EXPORT_SYMBOL vmlinux 0x7fffffff serio_open +EXPORT_SYMBOL vmlinux 0x7fffffff serio_reconnect +EXPORT_SYMBOL vmlinux 0x7fffffff serio_rescan +EXPORT_SYMBOL vmlinux 0x7fffffff serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x7fffffff serio_unregister_port +EXPORT_SYMBOL vmlinux 0x7fffffff set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x7fffffff set_bh_page +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_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x7fffffff set_page_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff set_posix_acl +EXPORT_SYMBOL vmlinux 0x7fffffff set_security_override +EXPORT_SYMBOL vmlinux 0x7fffffff set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff set_user_nice +EXPORT_SYMBOL vmlinux 0x7fffffff setup_arg_pages +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_next +EXPORT_SYMBOL vmlinux 0x7fffffff sg_miter_skip +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 shmem_aops +EXPORT_SYMBOL vmlinux 0x7fffffff show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x7fffffff simple_dir_operations +EXPORT_SYMBOL vmlinux 0x7fffffff simple_fill_super +EXPORT_SYMBOL vmlinux 0x7fffffff simple_get_link +EXPORT_SYMBOL vmlinux 0x7fffffff simple_link +EXPORT_SYMBOL vmlinux 0x7fffffff simple_map_init +EXPORT_SYMBOL vmlinux 0x7fffffff simple_nosetlease +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 simple_unlink +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_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0x7fffffff sk_common_release +EXPORT_SYMBOL vmlinux 0x7fffffff sk_filter_trim_cap +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_kill_queues +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x7fffffff skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x7fffffff skb_clone +EXPORT_SYMBOL vmlinux 0x7fffffff skb_clone_sk +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_datagram_iter +EXPORT_SYMBOL vmlinux 0x7fffffff skb_dequeue +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_push +EXPORT_SYMBOL vmlinux 0x7fffffff skb_expand_head +EXPORT_SYMBOL vmlinux 0x7fffffff skb_find_text +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_free_datagram +EXPORT_SYMBOL vmlinux 0x7fffffff skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x7fffffff skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x7fffffff skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x7fffffff skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x7fffffff skb_push +EXPORT_SYMBOL vmlinux 0x7fffffff skb_put +EXPORT_SYMBOL vmlinux 0x7fffffff skb_queue_purge +EXPORT_SYMBOL vmlinux 0x7fffffff skb_queue_tail +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_try_coalesce +EXPORT_SYMBOL vmlinux 0x7fffffff skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x7fffffff skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x7fffffff skb_unlink +EXPORT_SYMBOL vmlinux 0x7fffffff skb_vlan_push +EXPORT_SYMBOL vmlinux 0x7fffffff skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x7fffffff skip_spaces +EXPORT_SYMBOL vmlinux 0x7fffffff slab_build_skb +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_free +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_new +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_register +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_set_id +EXPORT_SYMBOL vmlinux 0x7fffffff snd_component_add +EXPORT_SYMBOL vmlinux 0x7fffffff snd_compr_free_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_boolean_mono_info +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_remove +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x7fffffff snd_device_free +EXPORT_SYMBOL vmlinux 0x7fffffff snd_dma_alloc_dir_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x7fffffff snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_info_get_str +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_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_integer +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_minmax +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_constraint_pow2 +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_param_first +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_param_last +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_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_period_elapsed +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_all +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_timer_continue +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_instance_free +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_instance_new +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_notify +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 snprintf +EXPORT_SYMBOL vmlinux 0x7fffffff sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x7fffffff sock_bind_add +EXPORT_SYMBOL vmlinux 0x7fffffff sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x7fffffff sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x7fffffff sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff sock_create_kern +EXPORT_SYMBOL vmlinux 0x7fffffff sock_create_lite +EXPORT_SYMBOL vmlinux 0x7fffffff sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x7fffffff sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x7fffffff sock_edemux +EXPORT_SYMBOL vmlinux 0x7fffffff sock_efree +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_init_data +EXPORT_SYMBOL vmlinux 0x7fffffff sock_init_data_uid +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_connect +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x7fffffff sock_pfree +EXPORT_SYMBOL vmlinux 0x7fffffff sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x7fffffff sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x7fffffff sock_recvmsg +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_rcvbuf +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_reuseport +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 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_bh +EXPORT_SYMBOL vmlinux 0x7fffffff submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x7fffffff submit_bio_wait +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_file_create +EXPORT_SYMBOL vmlinux 0x7fffffff sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x7fffffff sync_filesystem +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_type3_crc +EXPORT_SYMBOL vmlinux 0x7fffffff tag_pages_for_writeback +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_setup_cb_add +EXPORT_SYMBOL vmlinux 0x7fffffff tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x7fffffff tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x7fffffff tc_skb_ext_tc_enable +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_tree_dump +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_change +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_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 +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_queue_work +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_register_action +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_child_process +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_close +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_conn_request +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_connect +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_filter +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_inbound_md5_hash +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_make_synack +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_needed +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_mmap +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_parse_options +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_read_done +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_release_cb +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_req_err +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_seq_start +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_splice_read +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_time_wait +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_v4_md5_hash_skb +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_dfll_register +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_dfll_unregister +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_init +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_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_prepare +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_register +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff thaw_bdev +EXPORT_SYMBOL vmlinux 0x7fffffff thaw_super +EXPORT_SYMBOL vmlinux 0x7fffffff thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x7fffffff thread_group_exited +EXPORT_SYMBOL vmlinux 0x7fffffff timer_delete +EXPORT_SYMBOL vmlinux 0x7fffffff timer_delete_sync +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 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 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x7fffffff truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x7fffffff truncate_setsize +EXPORT_SYMBOL vmlinux 0x7fffffff try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7fffffff tso_build_data +EXPORT_SYMBOL vmlinux 0x7fffffff tso_start +EXPORT_SYMBOL vmlinux 0x7fffffff tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff tty_check_change +EXPORT_SYMBOL vmlinux 0x7fffffff tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x7fffffff tty_kref_put +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_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_hangup +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_open +EXPORT_SYMBOL vmlinux 0x7fffffff tty_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff tty_termios_copy_hw +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 tty_write_room +EXPORT_SYMBOL vmlinux 0x7fffffff twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x7fffffff twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_power +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_set_bits +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_get_baud_rate +EXPORT_SYMBOL vmlinux 0x7fffffff uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x7fffffff uart_resume_port +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 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_lib_get_port +EXPORT_SYMBOL vmlinux 0x7fffffff udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff udp_poll +EXPORT_SYMBOL vmlinux 0x7fffffff udp_pre_connect +EXPORT_SYMBOL vmlinux 0x7fffffff udp_prot +EXPORT_SYMBOL vmlinux 0x7fffffff udp_read_skb +EXPORT_SYMBOL vmlinux 0x7fffffff udp_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff udp_seq_start +EXPORT_SYMBOL vmlinux 0x7fffffff udp_seq_stop +EXPORT_SYMBOL vmlinux 0x7fffffff udp_table +EXPORT_SYMBOL vmlinux 0x7fffffff udplite_table +EXPORT_SYMBOL vmlinux 0x7fffffff udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x7fffffff unix_get_socket +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_rename +EXPORT_SYMBOL vmlinux 0x7fffffff unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x7fffffff unpin_user_page +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_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_key_type +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_md_personality +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_mtd_chip_driver +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_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_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_revoke +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 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x7fffffff vcalloc +EXPORT_SYMBOL vmlinux 0x7fffffff vesa_modes +EXPORT_SYMBOL vmlinux 0x7fffffff vfree +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_create +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_fadvise +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_get_tree +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_link +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_unlink +EXPORT_SYMBOL vmlinux 0x7fffffff vga_client_register +EXPORT_SYMBOL vmlinux 0x7fffffff vga_get +EXPORT_SYMBOL vmlinux 0x7fffffff vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x7fffffff video_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0x7fffffff vif_device_init +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_for_each +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_vid_del +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x7fffffff vm_brk_flags +EXPORT_SYMBOL vmlinux 0x7fffffff vm_insert_pages +EXPORT_SYMBOL vmlinux 0x7fffffff vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x7fffffff vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x7fffffff vm_map_ram +EXPORT_SYMBOL vmlinux 0x7fffffff vm_node_stat +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_bus_type +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_free_attribute +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_generate +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_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_slave_free +EXPORT_SYMBOL vmlinux 0x7fffffff vme_slave_get +EXPORT_SYMBOL vmlinux 0x7fffffff vme_slot_num +EXPORT_SYMBOL vmlinux 0x7fffffff vme_unregister_bridge +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_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_state +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_key_construction +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_process +EXPORT_SYMBOL vmlinux 0x7fffffff wake_up_var +EXPORT_SYMBOL vmlinux 0x7fffffff walk_stackframe +EXPORT_SYMBOL vmlinux 0x7fffffff woken_wake_function +EXPORT_SYMBOL vmlinux 0x7fffffff write_inode_now +EXPORT_SYMBOL vmlinux 0x7fffffff writeback_inodes_sb +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_rcv_encap +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_find_acq_byseq +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_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_add +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_delete_tunnel +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_state_walk +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x7fffffff xp_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x7fffffff xp_dma_map +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_set_rxq_info +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_tx_release +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 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 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 0x1cd7edbc sha1_update_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x7fffffff sha1_finup_arm +EXPORT_SYMBOL_GPL crypto/af_alg 0x01f0e5e9 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x18d33792 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x1b1e7f1f af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x2e2188f8 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x300e41a9 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3ebb91a7 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x49f375ce af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x5aa042e1 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x6c50a9c1 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_get_rsgl +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_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0x5a6c88ab aria_set_key +EXPORT_SYMBOL_GPL crypto/aria_generic 0x7fffffff aria_decrypt +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x7fffffff async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7fffffff async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7fffffff async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x752f790d async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7fffffff async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6ec13fc5 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x78beefa0 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 0x1ffd3949 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5dcf34ac async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7fffffff async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7fffffff async_xor_val +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 0x500d425b 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 0x098081c8 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x14661744 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x30223dab cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x464b5e9d cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x6fe87349 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_aead_queued +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_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2be8a1d2 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x365c9ba8 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x50592d9a crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6bfb529b crypto_transfer_akcipher_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_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_finalize_aead_request +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_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x16230d67 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x2d267e1b simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4c4bbd7b simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x5610b081 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_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/polyval-generic 0x1936413e polyval_mul_non4k +EXPORT_SYMBOL_GPL crypto/polyval-generic 0x42c78b47 polyval_update_non4k +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x494970c8 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 0x4bb3192c twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x7fffffff __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x00b8b17d spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x03ad3a03 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1adf6370 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x29e1064a spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2e7e21d7 speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x37c8732b spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x45eda959 spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4a29a88b spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x52ef976c spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x66672b52 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6b516158 synth_remove +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_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_get_var_header +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_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_var_store +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 0x6217c9f5 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x66d9d8ab 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 0x7fffffff linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x7fffffff linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x1f91d5c2 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x7f301c85 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x7fffffff __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x214b01b9 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x0e584604 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x18ae9394 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x7ce22ea1 __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 0x086dcf20 __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 0x2e924efc __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x353779e6 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x7fffffff __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 0x242326fb __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x7773425d __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x03ce7933 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0497d0b4 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x06f0a129 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0be42a21 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25b6d049 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x36881362 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x36ffb0d5 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38aac670 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x520b8e0e bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x53f31af0 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x56d4909d __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5913b9e6 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5bd2c522 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x63e08d2c bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x691605f7 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e481f10 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_core_is_enabled +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_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0a4f9f96 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x65a98c17 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x679b98a1 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x67b12637 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff 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 0x0496343d btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0670a9ce btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4727d1dc btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67997b57 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6c1cc081 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x77cef352 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ccbb546 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7e5f0565 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_set_event_mask_mfg +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 0x14e4aba7 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1c0512ae btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2bce60a8 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4d2517b5 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6d9856f0 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_add_card +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_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x48088737 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x7fffffff btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x7fffffff btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0088f2d6 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x09e6c77e qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1cf9ae7e qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7fffffff qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7fffffff qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0214ff10 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1dfe84ba btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x64112bab btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x29fb4b7a hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x68c0312a 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_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0eaefaa2 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x47580606 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4787ffe6 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4de4c610 mhi_ep_register_controller +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_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0070f3c8 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x04b05955 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0b87b1cb mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x16ee1908 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1da7d2a3 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d3146a9 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d59f734 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x38c19397 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3aa3d0e5 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3b3b20dc mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4aa6811f mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x51533616 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x517970f7 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5d0a0610 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x68e225d2 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7b918fb6 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_prepare_for_transfer +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_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x2a0c66c2 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x2e2dea2b moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7fffffff __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7fffffff moxtet_device_read +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03351dae clk_rcg_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07935d8b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ae351c4 clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0bb849d9 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ed823f3 clk_alpha_pll_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x19ff7380 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1d0f06af clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1de81c63 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ea782c8 clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f83275f clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f88365f clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2131b6c3 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x233e5373 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2bf885e6 clk_rivian_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d293905 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30622203 gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3610a768 qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x38229fba clk_alpha_pll_reset_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3a31ce9e clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3bd39c60 clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3e333ae6 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x420755eb clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45180f77 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45226263 clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x468b22ce clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46eb964b clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4a930432 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5721724b qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x59eabda5 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c035f38 clk_alpha_pll_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c3e75ee clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64b8755d clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66580ca3 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x69e0d16a qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6b8e2aa0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6d308251 clk_alpha_pll_fixed_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x70156ec0 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x708a435d clk_alpha_pll_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x71b860b8 krait_div2_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7319e51c clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73748d88 qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x774c85e7 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7b87fe3e clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dfa4f12 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e69e953 clk_alpha_pll_postdiv_trion_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_agera_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_fixed_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_hwfsm_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_rivian_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_zonda_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_lucid_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg2_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_lcc_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_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_regmap_phy_mux_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_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x03a48933 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x04685fd8 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x075afc25 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x08bb6bc2 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0b686339 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x16466017 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x26487232 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x288916d2 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2b388c34 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x35db8a05 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x433a4ed5 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x544793da comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x555ffc0a comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x60423433 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6847512c comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6f1f6ab7 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x70de1830 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x74c957c3 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_is_subdevice_running +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_nscans_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 0x019a0f20 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x33a12c80 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4b2261ce 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_disable +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_usb 0x2a21f87e comedi_usb_auto_unconfig +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_config +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 0x3cf951e9 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x7fffffff 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 0x7fffffff amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0fdea271 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x201fb24d comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x249d4d5f comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2f3c9a6d comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5a541e8c comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6d47e3d5 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x733374c8 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x76905a4e comedi_8254_load +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_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_set_mode +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 0x1a302cf2 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1ace2807 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1cfe0f7d mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2e949378 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c90fc35 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7e7dbd11 mite_prep_dma +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_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x4bfa4e01 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x7fffffff 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 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 0x0c68a312 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1308ea3f ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1a2f9380 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x27b0a66e ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x39a89410 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3b420782 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x525fa70c ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x674497b7 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x71a8a666 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7d4e6fa4 ni_tio_set_bits +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_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3a0c08c9 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7d9dac41 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7fffffff ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7fffffff ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7fffffff ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7fffffff ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1dfd5f94 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x24142405 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7fffffff 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_get_n_channels +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/crypto/qat/qat_common/intel_qat 0x053f49de adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x06ce8f38 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x09d990c8 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1218af8c adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x134891f8 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x19af9194 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x20e9cb9c adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x20f40e9b adf_devmgr_add_dev +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 0x3e707f37 adf_gen2_get_admin_info +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4eadcd1c adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4f2a5edb adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x550f1b63 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55434f9d adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5684be89 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60ca8f2e adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x666a5359 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68413841 adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x70ae1577 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x755c0728 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7c4ccf37 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fbd4ee9 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen4_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fffffff adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x7fffffff dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x20f277b4 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 0x23666d68 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5199248d do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5e5e6e8a dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x69696f83 idma32_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_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7fffffff idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x093c6ebb fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1197939f fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1bfd5faa fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x290286c3 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3365d23b fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x60f41741 fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x663a0e9b fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7dc4a0a2 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7f8d222d fsl_edma_cleanup_vchan +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_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_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_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x4134fc75 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 0x5c20405f get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x527837e4 mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x7fffffff alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x10ae256c dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x235ef2ba dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x248cfc01 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3e583a50 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x43c003a1 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4e798e72 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x714aa903 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7482c2ac dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7487cdaa dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x783e01d5 dfl_fpga_port_ops_add +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_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_dev_feature_init +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_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_feature_devs_remove +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/dfl 0x7fffffff dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x016e646f fpga_bridge_enable +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 0x2f52e2ab fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6a1e6270 of_fpga_bridge_get +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_put +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_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x10687088 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2b0e088b fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x59e95163 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7f7ecf2e fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff 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_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 0x31922c68 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x441403df fpga_region_register_full +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 0x00f5dc4a fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1e723d5a 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 0x60a97912 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x676ec1c5 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x6cfe797e fsi_get_new_minor +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_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 0x7fffffff fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x6fef883b sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x7fffffff sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x34ff6f9a gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3901c65e gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7fffffff gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7fffffff gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7fffffff gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1663a654 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7d39a080 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7fffffff gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7fffffff gnss_serial_pm_ops +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 0x73d3698d aspeed_gpio_copro_grab_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x7fffffff aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x19564f02 idio_16_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x40780f24 idio_16_state_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x7fffffff idio_16_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x7fffffff idio_16_get_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x7fffffff idio_16_set_multiple +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 0x03b6bd8e analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x41ac9e44 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4f2ea998 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5e73e3ab analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x63e4badb analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff analogix_dp_bind +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 0x143824f0 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 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_high_tmds_clock_ratio +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 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 0x7fffffff drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x50000d35 devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x65da5303 of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7fffffff __dp_aux_dp_driver_register +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_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x040b1d8a drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x04c0c3e6 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0eae25de drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x10607f37 drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x20df2821 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2c8dfc26 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x36290d06 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x459440e4 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x47878935 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5e3997f2 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5f637165 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71c44e72 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_bridge_get_modes +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_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x19ee9ff2 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x2ddd6921 drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x49892626 drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4c2120dc drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x748ccac4 drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7fffffff drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x032cb609 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x051af954 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x45eaf682 drm_gem_fb_afbc_init +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_bridge_connector_init +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_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_get_obj +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 0x3b63dc83 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5424a369 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_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x7fffffff 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 0x0e20a1b2 mcde_display_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x18040c6d 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 0x43e76569 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 0x7fffffff 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 0x0373eb4b rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x46d67468 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7fffffff rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7fffffff rcar_cmm_init +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/rcar-du/rcar_lvds 0x7fffffff rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7fffffff rcar_lvds_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0x18fad12a rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0x6501446d rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x5bc1a304 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7fffffff rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7fffffff rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7fffffff vop_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/host1x/host1x 0x0b330229 host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x7fffffff host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x7fffffff host1x_memory_context_put +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 0x054e12ec ipu_prg_channel_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07c53132 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x08c9d364 ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0a28f782 ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0a46e2bb ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0d12a4dd ipu_fsu_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0d1a8ffb ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x10e02b9d ipu_dc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x144c1959 __ipu_ic_calc_csc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x17129f8a ipu_di_get +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 0x1d9157e8 ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e29feae ipu_set_csi_src_mux +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 0x1f8c876b ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x206b6fe1 ipu_cpmem_get_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x211e471a ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x213ea159 ipu_ic_task_init +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 0x26980b3a ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x274d8601 ipu_cpmem_skip_odd_chroma_rows +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2778ffb4 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2b6bca4c ipu_idmac_channel_irq +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 0x2fae0aef ipu_prg_channel_configure +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 0x3443e805 ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x358c6bc9 ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x35d27d82 ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x37ec16cc ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x38712101 ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3921421f ipu_idmac_unlink +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 0x3f432323 ipu_dump +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 0x42b570bd ipu_cpmem_set_axi_id +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 0x4ab14ee1 ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4eb0b899 ipu_image_convert_prepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x506c1fda ipu_cpmem_set_stride +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 0x5433daf9 ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 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 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 0x68661290 ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x68841b64 ipu_cpmem_set_image +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6b9982d6 ipu_prg_format_supported +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6dec66ef ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x70de6b55 ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7682166e ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x79f20344 ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7bf91308 ipu_prg_channel_configure_pending +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7e847f4a ipu_dp_get +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_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_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_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_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_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_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_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_calc_csc +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_idmac_channel_busy +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_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_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_wait_busy +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_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_prg_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_prg_enable +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_set_ic_src_mux +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_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 0x05a1a6ff gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0ace92b3 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b839961 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10bbf1d8 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1285a038 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14564300 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x158a8186 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19c8e4e0 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1a2ff8b9 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1d7b762c gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2057346b gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x246f7008 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2821e34d __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ab3a6f5 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3bd11d0d gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ca33924 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x43062efa gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x496b2f8f gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d0a9e34 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52c1a68e __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x572d342f gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x573673fe gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62c29ed2 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x661f42d8 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b836c52 gb_connection_destroy +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 0x7e6beccc gb_operation_unidirectional_timeout +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_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __traceiter_gb_hd_release +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_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_enable_tx +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_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_cancel +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_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_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0061685b hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07c5e0dc hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09423c0c hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x16de227d hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x245312bc hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x267dbcdb hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x27bd8cfb hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x28de35ff hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a19120c hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a8f24e0 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d8a6824 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ddaa5dd hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x31ea8226 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x32290337 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x343850d9 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x38976a4c hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x38998418 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3def86b7 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a600af0 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4becd61a hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5abd1c23 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x63e34131 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6dd077da hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72c02b5e hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c48c70a hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_hw_open +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_input_report +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_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_report_raw_event +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_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hidraw_connect +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 0x041e34f6 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1dfe281d roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2f272926 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x41d8cc29 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x57b67161 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fffffff roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0765d1bc sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x19168614 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x211be6d8 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2b43b532 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x58a246d5 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x63a3387e hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7fffffff sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7fffffff sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7fffffff sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x7fffffff vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x7fffffff vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x06966d9c i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x199fd4bf i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x5ec97b90 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6b56e88b i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7e0fc684 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x7fffffff uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x5203c4e8 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7fffffff hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x09c8c2f9 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2088d025 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2114132d hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x29c2db23 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x47a6cc66 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x47ef633d hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4d050589 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5ea30b5f hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6d6880eb hsi_add_clients_from_dt +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_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_free_msg +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_register_port_event +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/nct6775-core 0x1566af0b nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x177c0921 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x74ba566d nct6775_store_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/hwtracing/intel_th/intel_th 0x2a2f006c intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4995d92c intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5099b0b0 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 0x73888ce9 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7a98c056 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/stm/stm_core 0x164e0f2d stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x16a69c5f stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x358f2a0b stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x547676ec stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5935a2fd stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fffffff stm_register_protocol +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/hwtracing/stm/stm_core 0x7fffffff to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x7fffffff i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x3a481359 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-mux 0x7fffffff i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1addb3b7 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1b11b09c i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1c477280 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7f09fe5d i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0106ec04 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b26c9ef i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x399397af i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3a2e783a i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3be62a34 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4024dd49 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4ea18933 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4ed80d05 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x54c91cd3 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x55f5a83b i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x575e806e i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5ca78124 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6563f83d i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x72c272e3 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7a5d3c30 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_request_ibi +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_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3cdev_to_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 0x54addbc8 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x6a92b098 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7fffffff iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7fffffff iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x203a50c8 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x51bb1ffc iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5760165b iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6685cfa4 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6b3140c6 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6e3bac0e iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_block_done +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_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_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x7fffffff devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x0832f7cc 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 0x7fffffff 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 0x7fffffff devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x226b41d2 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x425fe1ab cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x70e7cc56 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_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_core_read_avail +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_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 0x3b2dee85 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x60a5bfff bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7fffffff bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x7fffffff fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x008ab3a1 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b168cc5 devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x236ff812 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x268b67d2 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x294670b6 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2cb62d12 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2eeade3b iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33be3627 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x367d4b76 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36846727 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3713da25 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3d014c08 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e0f371a iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e6e9436 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56c93e02 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5df61a2c __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6014ada4 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66abb546 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7082ccba iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79e10412 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79e223af iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff devm_iio_channel_get_all +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 fwnode_iio_channel_get_by_name +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_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_release_direct_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_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_push_to_buffers +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_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_processed +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_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_validate_scan_mask_onehot +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 0x11f6453d rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1a89dda3 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2527414c rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x28bc3bb3 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x54899ca9 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x677dbcbd rtrs_cq_qp_create +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_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_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_post_recv_empty +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 0x7a53227a 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 0x21f4763c rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x267aa5a5 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3ab0dc06 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3c820515 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3eb4d4bf rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7a71c2dd rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff __rmi_register_function_handler +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_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x20e29c7d cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6cb98b7d cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7fffffff cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7fffffff cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7fffffff cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x5e38b491 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7fffffff cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x1916bd06 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 0x05a5c6a8 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x164f8e77 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1b67438d wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4078cddc wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4dee5476 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6c984b72 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x71265628 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7a3ecd36 wm97xx_unregister_mach_ops +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_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x316f59e5 imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x7fffffff imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x2f573302 qcom_icc_bcm_voter_add +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x7fffffff of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x16852fdc qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x65546616 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_pre_aggregate +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-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 0x07516333 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x17f79ab9 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x23cf8684 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x47041608 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x58ef4b5b ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6b708cca ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x77f9d883 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fffffff ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fffffff ipack_put_device +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x14133a9f devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x481bff96 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7c51d083 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_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-flash 0x7fffffff led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x37a6bc68 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x461b953d devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x64d14c5d 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_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0a3c5f27 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x318f7b5b lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x31b0ba20 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4ac16810 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x53c30401 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_read +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/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 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 0x1a4d0198 __traceiter_bcache_read_retry +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 0x21ec1cd1 __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 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 0x279784b6 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28494fe6 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b54533f __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 0x39ea867e __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x472cfb7c __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a227cbf __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e4351ee __traceiter_bcache_request_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 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 0x71dd8b4c __traceiter_bcache_btree_node_alloc_fail +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 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_alloc_fail +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 +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_bypass_congested +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_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_write +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 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1dd21a0a dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x281baef2 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x29b8fce3 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2f4ee824 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x434208d5 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4b3c9e7e dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4b9b5b64 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x63fb5fc4 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x780fad47 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7840abd2 dm_cell_release_no_holder +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_v2 +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_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_cell_lock_promote_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_quiesce_v2 +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-bio-prison 0x7fffffff 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 0x7fffffff dm_bufio_client_create +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 0x1b59148c dm_cache_policy_unregister +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-multipath 0x5c8d5b77 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x7fffffff 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 0x6221f18b dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7a42f177 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7a4315f5 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_bio_to_region +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 0x1da9c860 dm_block_manager_create +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_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 0x0c4850f9 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1a7349c5 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2b3233c2 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3264580c cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x32c33edb cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4f0b092c cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6390fa0a cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x68ba40d7 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6d0067d8 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x75eae171 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_delete_adapter +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_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_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_s_log_addrs +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_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x09cbca2f sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x10638354 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x130b7119 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1940c48b smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x370bba83 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4a2d8059 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5ec8d694 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5f359f05 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x612f8680 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 0x784a3d8d smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c44a5c6 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_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_onresponse +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_set_board_id +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 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4a738cc1 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7e83543f tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_alloc +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_fill_plane_buffer +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_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_log_status +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_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_update_mv_step +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 0x26cc5a18 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2800ec4d vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x280d8b64 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b6e6db4 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x38c9d903 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3adb876c vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f305fa4 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4642e0c7 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x481a29be vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x523ca625 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5e1c1f35 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5ef4addb vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f9e9fbf __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x652c5583 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x664a558d vb2_core_qbuf +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_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __traceiter_vb2_dqbuf +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_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_core_querybuf +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_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_plane_cookie +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_read +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_stop +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 0x3f36b967 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x780c3d23 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x7fffffff 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 0x03e7832e vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0782c391 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0ceea2e9 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0e0a33bd vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18ae766b vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1ae9776b vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21fcf1c7 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2650757e vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x286787ed _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x381975fb vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3c548e96 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3f3166c0 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x401b17d4 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40eec9a2 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x44aec280 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x47c5bd05 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5a7d21e7 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5bae7854 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x65b52e4f vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x787fb296 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_dqbuf +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_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_expbuf +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_ops_wait_prepare +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_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x7fffffff vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x6d368cf3 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 0x46637f1c cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x3b61ba3e gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x094f38f9 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x711a0a01 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x7aef5e9d stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x7289b979 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x7fffffff aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x752e634b ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x139fffcc max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x37bb5181 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x62862f48 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x75dfdfaf max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x78de6a89 max9271_wake_up +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_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x02960fcc media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x046462b3 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x120d9f7d media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1eb77876 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2272c280 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23be3ae5 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x28c14888 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2ec64fb3 __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b269720 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d4fe0ad media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d9dabc1 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3eeaed11 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x54a70c09 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5b0354bd media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5b0de8e0 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5bc342aa media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x610efd8e __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67e4d030 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x75382aa0 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x793bf17f media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x799cdf40 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b8eddc8 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_device_usb_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_start +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_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_init +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_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_remote_pad_unique +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_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_pipeline_start +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_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_request_object_init +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 0x3f4ad7f5 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x04b2f1f2 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0c41b08e mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0cddd9ba mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x13fb1b8b mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1cff8937 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x25e8fa9f mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x37e7861b mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x418487be mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6103b743 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x74af392a mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7acf8c99 mantis_dvb_exit +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_power +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_init +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 0x0065ca80 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0842e4c9 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0c1e80b3 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0c208d29 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x29e15345 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2d1b653b saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x371a066f saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3849c335 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4fb228c4 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_g_frequency +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_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x0ffc4856 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x20d1de30 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x387fbae8 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x409cedc0 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x7fffffff mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x04caf8d7 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x07eb360b vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x3030a11d vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x4bfcb56d vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x54e39c3e 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_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 0x3df404d3 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x5f7afb31 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/renesas/vsp1/vsp1 0x7fffffff vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2dcea76f xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3042816a xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x71d4332f xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff xvip_clr_and_set +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-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 0x7fffffff xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x7fffffff xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x0001d4d1 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x67a62719 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x40c8e461 si470x_ctrl_ops +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/radio/si470x/radio-si470x-common 0x7fffffff si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7fffffff si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x05bc71f1 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0e1da177 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x11e63e4a lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x15412cda rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x173481f5 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28af3c3f rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x43a6ec67 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5226a5ca ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5e5f36e2 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b2ce86d devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff ir_raw_event_handle +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 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_keydown_notimeout +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_repeat +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x4c298b1c mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x4e3b4cc0 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 0x7fffffff tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x2f80bdf1 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x63db7942 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7fffffff tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x7fffffff tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x0120d0e7 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7fffffff tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x1af17296 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7fffffff tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x70489764 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x016a7f41 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x12776021 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1b9bb43a cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x39697851 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a959f1b cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4aabad36 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5f980ef6 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6173a48d cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x640ccc19 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x643d27d0 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6ca5928d cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_dev_uninit +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_get_i2c_adap +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 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_uninit_vbi_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 0x32efbe0d mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x11756078 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x36ae851f em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x59274e15 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x79a4e179 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7de8b0bd em28xx_write_ac97 +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_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_gpio_set +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_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_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x41f89178 v4l2_async_nf_cleanup +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_i2c +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 0x1b4af4a6 v4l2_hdmi_rx_colorimetry +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_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 0x1009ce8e v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x4cea8b50 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x5558d455 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x153abe71 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x54988853 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7569b354 v4l2_fwnode_device_parse +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_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 0x00bc4675 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05855503 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0651e683 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b272e71 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x171eb649 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21cc2f1f v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22b78059 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d31ace0 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33d73b35 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a6fe95c v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3bc3d2c4 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x452faf51 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x45cc16b0 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47efa2f1 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4862bc83 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x494fc24b v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4abe7f52 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4fd7a1c1 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x52d70b98 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5806175c v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6192b911 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ae78616 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 0x742f0068 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x781fcb5c v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x78ede345 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7abb4824 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7aea8b77 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c45c50c v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ecc91db v4l2_m2m_buf_remove +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_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_fop_poll +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_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_streamon +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_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_prepare_buf +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_request_queue +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-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 0x07fd052b videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19fccdfd videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2e937a73 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34b50568 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x46a2d1ec videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4a0f8f39 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4ca5bb0b videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x500c049b __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66436efa videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x679cfdb4 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7bdcb5d9 videobuf_iolock +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_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_next_field +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_core_init +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_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0ff3d526 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x34dfaf34 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x53b9814f videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x750413f8 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7fffffff videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0aa98891 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1de75da7 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7fffffff videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0053cf68 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x075b9cd8 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x076bfb27 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x086461e8 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 0x15003b55 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ca2f02b v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20ece970 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21f39cc0 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x224a1d3b v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x23cff202 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28ad9409 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c7c2ba0 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed9acd3 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f7a741d v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3159eb97 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x354ebd55 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x356e07c1 video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35eef353 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37327f77 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a8c640f v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3d6dc954 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fc356d9 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x426b3142 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44829aae v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4680834b v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47d45d47 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x514f49dd video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b61651a v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x652f5838 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x659837ad __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x667ab764 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66c4a256 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x682e857d v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e2a69c6 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f4b243a v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f5ed23a __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b885ce6 v4l2_device_set_name +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_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 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __video_device_pipeline_stop +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_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_unregister_subdev +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_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_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fill_pixfmt +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_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_simplify_fraction +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_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_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_notify_event +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/media/v4l2-core/videodev 0x7fffffff video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff video_device_pipeline_start +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_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7fffffff pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01221c63 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x109a2662 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x10f2af27 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2e2fe91e arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2e46f9e1 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4057b8ef arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x53a2e72e wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6256b97c arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x63e2545a arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x708d5c70 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x709d508d arizona_pm_ops +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 cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x5c4d9d39 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7fffffff atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x14aedc98 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1e531ce6 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2318a2fb da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x709ea107 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_set_bits +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 0x1c73504a kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2c6b1e30 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3bf22b54 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3c7736b9 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5152fe96 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7fffffff kempld_get_mutex +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 0x19748db4 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x6624a4d6 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7fffffff lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x028f3689 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2c7b9db1 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x46491ab7 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5d835f24 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7fffffff lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7fffffff lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7fffffff lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x409e0b72 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x46c1d62b lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7fffffff lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x00d57b4f cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x00d8a70f cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0113c661 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x02318435 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1df38c7a cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1dfe503a cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2a729787 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2a7f4bc7 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x32a7e037 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x32aa3c77 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3d8f284d cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x43e06643 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x43edba03 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5e44e3e1 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5ec69176 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5ecb4d36 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x69478a8b cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x694a56cb cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7192fd3b cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x719f217b cs47l85_32bit_i2c_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 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0e7e11e7 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x290b8cde mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2db1455e mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6d0b0e7e mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7597b996 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7f04fb16 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0x7fffffff cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x03b75c6e pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0cb645b4 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x39a7d09e pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4ef3626b pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x615f7c46 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x61920d98 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6efcbef3 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_free_irq +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_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x59151788 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7fffffff pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x45c7f1e9 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5fa7cd94 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6dbadbf8 pcf50633_gpio_invert_get +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/rave-sp 0x46159e29 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 0x19cf96a7 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x206b53ef si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2103a78c devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e8350be si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x431fe4a6 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4374cc38 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c74e032 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x521019cd si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x52bdafc0 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5623f511 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x66f7b961 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x688a588a si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d4bc93c si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_agc_status +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_phase_diversity +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_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_func_info +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_down +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_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_is_a_secondary_tuner +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_start +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x7fffffff ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x7fffffff ssbi_write +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 0x22401af7 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2316fc33 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7fffffff am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7fffffff am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x1fa065df tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6f89fa59 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7fffffff tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x583959cc ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3e5d6071 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x62fbb50e alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fa9b34b alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x069349f6 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1bf28524 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3054f081 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3826e7bf rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4b41774f rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b213289 rtsx_pci_read_ppbuf +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_exist +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_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_card_pull_ctl_enable +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_map_sg +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_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_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_stop_cmd +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_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x241ba36a rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x48ce64f4 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5484162b rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x62a40707 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6309a173 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6acd3f29 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7d15e38e rtsx_usb_write_register +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_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4e3db985 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7fffffff cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7fffffff cb710_set_irq_handler +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 0x09b30d77 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3c92ecef enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7626f246 enclosure_component_register +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_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fffffff enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x623fe80d lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6ccd8df0 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x734a219f lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x797f839e lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7fffffff lis3lv02d_init_device +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_poweron +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x7fffffff devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x0342e0ca st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x406a74a1 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x0462db93 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x5ffeb0ee uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x7fffffff uacce_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x3f0a0f4b dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x4e0d388a 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 0x679b5814 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 0x09bdf59c tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3004eaf0 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 0x3fb503ac tmio_mmc_enable_mmc_irqs +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_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4137e79b most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4642823b most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x59893793 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5a4328cd most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6841b698 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff channel_has_mbo +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_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_resume_enqueue +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_submit_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1a18dfb5 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2531fa5d cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7fffffff cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3aa568a9 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x44f72379 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7fffffff cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x7fffffff cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x33806053 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x5466fb47 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x74269f70 cfi_qry_mode_on +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 0x127d8504 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x7fffffff onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x0e75e4d0 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 0x58d7ba98 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x344eed3b sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x7fffffff spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x7fffffff spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x291eb5c1 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4da49cb8 ubi_open_volume +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_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_is_mapped +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_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_leb_read +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_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_open_volume_nm +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 0x119efed9 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1cc2d6c6 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2c6fd57d devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x43669cf1 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5ba749e9 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x64d0b149 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_control_deselect +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_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x56daff17 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 0x061de6eb c_can_power_up +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/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 0x6541d5e1 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7fffffff 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 0x0e6c5eda alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a410a68 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x33e67bcb unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5aea9edc 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 0x63f6e868 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x647c2917 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x66e325b8 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x672c5b52 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6873d6bb can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d031773 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b1b2dd9 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7dfc07d6 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_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_dropped_invalid_skb +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_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_finish +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_irq_offload_timestamp +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_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff register_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0a60a6aa m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x48c35e5d m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4e8c0c5c m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x68abbfbd m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x748386d2 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7c8804f3 m_can_class_get_clocks +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_register +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1de6e395 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2a31f397 free_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 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x7fffffff lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x7fffffff ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x3bbc1d59 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x05d56fc8 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2d85b194 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x69ad2875 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x712cffa4 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_set_pvid +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 0x44e67488 ax_NS8390_reinit +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x278e71c6 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x7fffffff arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x44fff7eb 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 0x3e17ea09 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x46d32099 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x480de7d8 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x585c48e9 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x60f7815e fun_bind +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_cq_create +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_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x1d4fa23b i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x7fffffff i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0b4f2302 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x731f939f ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7be78a97 ice_rdma_request_reset +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_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02320e16 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02595c0c mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x042d08e8 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x062510b9 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06dc961b mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09265991 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a47d2f2 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b508459 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b6ef2a9 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c929c80 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d5b8554 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x138d7959 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14a758b6 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16216606 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x163fbf3b mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17a58970 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17f7ca7a mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x195583c5 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c3e8dc0 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d571449 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1deef88f mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e9bc2b2 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2052e314 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x206ecc35 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21d9bfcb mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24b0fe00 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x254491b8 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x258f3424 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x303a6077 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32f15fd9 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3395a62d mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34375dd5 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37c15afb mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38c563f7 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39113bb7 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b238830 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4174d8e6 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43d307c9 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4402044f mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x448539fe mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44889122 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4499414e mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b88e84e mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ebd54b5 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f919116 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51c2a81a mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5968f11b mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c6607c2 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fcd3e58 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63ca0422 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64435bb7 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64c95c46 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64dd103f mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x671b6405 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67e17060 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68274ca2 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x690361bd mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x698db4e4 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c035215 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c1b3f27 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7286d489 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72de0b8a mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76a7ba80 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a2925aa mlx4_db_alloc +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_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_ACCESS_PTYS_REG +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_bf_alloc +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_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_counter_free +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_flow_detach +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_free_cmd_mailbox +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_base_gid_ix +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_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_internal_clock_params +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_hw_rule_sz +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_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_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mtt_init +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_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_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_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_qp_release_range +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_read_clock +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_register_vlan +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_spoofchk +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_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_srq_lookup +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_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_unicast_detach +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_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02e74cf9 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08df0f48 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c6fa275 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1256b471 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14d49e34 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ce8bf3a mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f4100cb mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33a2024e mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c7b5878 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cf235e3 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e0f17ed mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ea5e6c5 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42116f08 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43affee1 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4473281f mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x472e7075 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ac3c26e mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x562b30d1 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57822e21 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59d30a56 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a0fb0c2 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fe5c588 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x607a33e8 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61c39287 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62e8f9d3 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x646a6a66 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x689c8818 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68c8bbb9 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x694b205e mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d289eed mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e7d8f99 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a83c25 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x744ed5c1 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78b4c086 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78e8d095 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d142ac5 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f16eb7b mlx5_query_nic_vport_mtu +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_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_dm_sw_icm_dealloc +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_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_modify_nic_vport_mac_list +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_vlans +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_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_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_hca_vport_node_guid +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_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_node_guid +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_pfc +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_caps +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/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x133201b4 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x68a21789 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6bfde8a9 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7fffffff ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2695f52f regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4be2f862 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5aceb972 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x015ef313 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05f91969 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bb8283e ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x284839cc ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x287d209b ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d1d7567 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ffd673c ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x323120f0 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39b48c77 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46842a9d ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a66fa55 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4af9999b ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4affa9a1 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b439a9a ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x576e5fad ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6dabe970 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x738b38e8 ocelot_port_mirror_add +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_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_bond_get_id +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_replace +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_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_migrate_mdbs +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_get_default_prio +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_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_setup_dsa_8021q_cpu +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/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 0x5c0d6272 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x66619101 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x66cfe4ce stmmac_init_tstamp_counter +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 0x7ab17853 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 0x39354b71 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4d2fa87b w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x56a465c0 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x597b754a w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x7fffffff geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1929331c ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3ea5d8df ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x67365136 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fffffff ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fffffff ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0x51e7647c macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0df4e8e2 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x46e4b1fd macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7fffffff macvlan_common_setup +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 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-altera-tse 0x1dfeae13 alt_tse_pcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x08a22317 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x26c8a128 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x78d0e9d8 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_create +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 0x0fd722cf __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16860e8f bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x18dd47cb bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2862c018 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2a2411db bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3cbc7184 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ecc71dc bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4535792e bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a42ce58 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x54bb141c bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x578693c5 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5be825bb bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5eaf0c2f bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x66fbab51 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x70b1f276 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x78e6992b bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fe28fda bcm_phy_write_misc +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_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 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_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_downshift_set +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_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_set_eee +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-ptp 0x7fffffff bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x7fffffff bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x7fffffff bcm_ptp_stop +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 0x22ba38c9 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2bdc25aa 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 0x3f3a174a phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x45ed086c phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x64a1a5ce phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x64f4d9b6 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x66e8b5b0 phylink_caps_to_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x67d53ae6 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7ef0e0f1 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_create +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_get_capabilities +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_decode_state +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/phy/phylink 0x7fffffff phylink_validate_mask_caps +EXPORT_SYMBOL_GPL drivers/net/tap 0x0852f02d tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x1e42b85f tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x360666a4 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x7235f757 tap_get_socket +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_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x294f5f2c usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2a228f8e usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2ec1445b usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5b4ae2bb usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x749620e3 usbnet_cdc_zte_rx_fixup +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 0x079e6406 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x15001b74 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2219c2bf cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6f59eded cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x78a442a4 cdc_ncm_fill_tx_frame +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_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_rx_verify_nth32 +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 0x1a2ed490 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x73da0378 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fffffff generic_rndis_bind +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_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fffffff rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1353b5a8 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x136a258d usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e14df4d usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28f6c5d4 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x314fcf6e usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38fd7780 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x39ccf133 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4542eef6 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x454663d2 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4733d3b8 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49311b30 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e94f58d usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c558941 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d1f2046 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6fa4c62f usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7c869f89 usbnet_open +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_disconnect +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_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_resume +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_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x0ca137a0 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x37745265 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5b46761b vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7fffffff vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x4cf7fdbd libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c4c2b5b _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b9dc6c5 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64b56104 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 0x06d23b3c p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0f58e39d p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x36fa92e3 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x50fe059b p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x64568fca p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7219817d p54_rx +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_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x07725eca lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x12410a6c __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1d81d499 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2082d311 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x51927c2d lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x56c1e3ec lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6fd7ec1d lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x774ad65d lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_cmd_copyback +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_get_firmware_async +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_queue_event +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 0x2abaffbe lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3daa0c6f lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x492b75bb lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x57d4e500 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_cmd_copyback +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_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 0x009ff88f mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x02d77076 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0905b66e mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0d82a1a3 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x11e65017 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1478bbe2 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1a30dad1 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x40850d58 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x480f94e5 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x57d1a2e7 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58d6009a mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x655edeca mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6e75c877 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x74719d95 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x76844892 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79cf5178 mwifiex_add_virtual_intf +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_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_process_hs_config +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_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0712b98b mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d088797 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x133c1e4a mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13dce440 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x191dcad6 mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1de82049 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23b5c61c __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x24a29328 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x24de3b44 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d656c64 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2dfb41e5 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e1418eb __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e4fc1f3 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f633e4b __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f7488d0 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f74fde7 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x302e7961 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x307961d6 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x363f4c75 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3773ad97 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f54e08a mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42c83150 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4bfcc553 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c4e5709 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5221879f mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x53914ab5 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56d9ad76 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x588dce82 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5dd30a11 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f41c881 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x680495c1 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68af8a62 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68b64861 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69d1f60a mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e444dec mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x703dc30f mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7250af13 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74fcb525 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76d50732 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77479f96 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77dba917 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79842899 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f9b0be8 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7faef0a3 mt76_skb_adjust_pad +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_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff __mt76_sta_remove +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_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_csa_finish +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_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_ethtool_worker +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_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_get_of_eeprom +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_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_get_survey +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_queue +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_send_and_get_msg +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_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_register_device +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_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_seq_puts_array +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_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_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_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_status_check +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_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x02883154 mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x06bcedb4 mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d5c60a7 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f7a9148 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x156e9b32 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x163547ea mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ede7c32 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x20345180 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x20ec93d1 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x24bbc521 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2895e99f mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a883ea2 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x363b8b83 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3749bf63 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x41a8f8c4 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x495632ab mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4e1cf7e2 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4e7c798e mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55b4a427 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x601c006d mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x68fbf570 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6a402af3 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6bc6e590 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c4aadb3 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6f309607 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x711e1701 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x71becb16 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7484ed2a mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76d1f9e3 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f3423b0 mt76_connac2_mac_add_txs_skb +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_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac2_mcu_fill_message +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_init_tx_queues +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_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_cancel_hw_scan +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_get_nic_capability +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_reg_rr +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_restart +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_sched_scan_req +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_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_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_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_start_firmware +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_update_arp_filter +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_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_wtbl_smps_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_pm_queue_skb +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_tx_complete_skb +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-connac-lib 0x7fffffff mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0ddb9bc4 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x347c2a8b mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x386a75ba mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x446fd55a mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x56d2b367 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5917f45d mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5b1d0b25 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x75db66fe mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x789cf21e mt76s_read_copy +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_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_rd_rp +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-usb 0x049b025b ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1ae18be2 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x20f8bb91 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3096273e mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x31901c44 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5a5b15c1 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5d188dd7 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x63338604 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6adc98b2 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_init +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_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x049b9400 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x14613cf1 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1703384c mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x28c2331b mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ce43e38 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x41443f8c mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x48d03b3e mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5250cf9a mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5ffe7a62 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x60f4b6d4 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64a1c97d mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x662379ed mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x670a2af7 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x75d523ef mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x776871d5 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7f576cf9 mt7622_trigger_hif_int +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_mac_enable_rtscts +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_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_mac_write_txwi +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_ops +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_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/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 0x3615f6b1 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3769b912 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 0x009299dd mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0124246f mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x20159944 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x789c68a6 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7fffffff mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7fffffff mt76x0_register_device +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 0x01090699 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0718aa0b mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d3692ac mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0dd18fc0 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0de80dea mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1e8bb3f1 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f35c3e8 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x207e99fc mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24a84ff9 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x288ab2c1 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2930e0bd mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3031c75a mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34565c7c mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2ef40 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x38a5d8ca mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d2b0a60 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4cc66e17 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52ec0941 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52f88243 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x542c2e9b mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x556ecf28 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5830a1e4 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5be50142 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64b85af9 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70a9735a mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7409ecae mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x772d8498 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x774afaf2 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7e34c5f8 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7e961808 mt76x02_phy_set_bw +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_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_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_get_max_rate_power +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_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mac_reset_counters +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_mac_wcid_setup +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_function_select +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_mcu_set_radio_state +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_rxpath +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_phy_set_txpower +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_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_rts_threshold +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_ps +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_sta_remove +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_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x14ffc867 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3ad95a88 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x77f0d7df 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_mac_start +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_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x32bab506 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x55abb84c mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6a11c3bf mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x72b03615 mt76x2_read_rx_gain +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_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_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_get_temp_comp +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_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_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/mt76x2/mt76x2-common 0x7fffffff mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x04359dd7 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0c9978b5 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0fd3e205 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1cbd7eea mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x22e56046 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2a9b46f4 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x30021d16 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x366f2020 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x36e2849a mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x380ff672 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3d815130 mt7921_check_offload_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x79c58f52 mt7921_mac_sta_assoc +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_mcu_drv_pmctrl +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_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_ops +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_rx_check +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_stop +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_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x376d4a0a chip_wakeup +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/microchip/wilc1000/wilc1000 0x7fffffff wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0a858a95 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x21437407 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4b5e2284 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7fffffff 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 0x01d3b876 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x03a29d9d rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0f46da2d rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x134ab469 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x16e561f2 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x221b197b rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2fc88677 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x324bfbc9 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x32906b67 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x374ba026 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3dd8d7e8 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e4d53ed rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x502c60dc rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x50b6f748 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x58cb427a rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5e1ea031 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6483551d rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6dc9c4a8 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x717bf1d8 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7ac1659f rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_clear_beacon +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_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_efuse_detect +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_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_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_mcu_request +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_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_wait_csr_ready +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/rt2800lib 0x7fffffff rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x06715af9 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x21ba13ec rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x25ac28c8 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x31450434 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x355794c8 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 0x5aab781f rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7a1ff95a rt2800mmio_toggle_irq +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_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_get_dma_done +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_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_start_queue +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 0x06fcaacb rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x114b30c8 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x169b0ab0 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17ef4e65 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1809afe3 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x26ac277d rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2baf4594 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33383649 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x34f77870 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3dff3021 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48d87d84 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x49b8f95e rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5688f61f rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x56c87049 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61f44ddf rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x664ac75b rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x70457251 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7983e2d6 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7d580575 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_dmadone +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_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_set_mac_address +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 rt2x00lib_txdone_noinfo +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_config +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_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_tim +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 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_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x006577da rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1e3b22bc rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x76be7d09 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7fffffff rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7fffffff rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5ca091c9 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7fffffff rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7fffffff rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x05cf0c8d rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0a84f42e rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x27f434db rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x339ea8a3 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4081396e rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4d4f93e0 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5b1f6e81 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7da03308 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_flush_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_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_resume +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 0x44c45dda dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4dc81535 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75b40756 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x03eb93a8 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07a0a45e rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14072a90 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ad89b2d rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x253510da rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x310dc514 rtl8723_phy_reload_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 0x43efea31 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x474cd001 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6a4c7587 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6aa35be2 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f5f7d58 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x73552558 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x78a83b03 rtl8723be_firmware_selfreset +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_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_fw_free_to_go +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_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_pi_mode_switch +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_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10172724 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1215acac rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1321e6b5 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15ae2c01 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x174576cf rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b691163 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1fe17e0b rtl_tx_report_handler +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 0x2a30fcec rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3345c624 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a5fe6e9 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43064314 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x474d99e8 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56f244cf rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x572d210d rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bee6d00 rtl_init_core +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_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_efuse_ops_init +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_rx_config +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_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_ops +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_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x367cca0a rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6c34547a rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x75f16366 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fffffff 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/st/cw1200/cw1200_core 0x063332c4 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x3c515d97 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x59e644dd 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 0x10bbc6c6 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x10d1449a wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7fffffff wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00d8cebe wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06fde11d wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x187c6b81 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a349807 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c11b54d wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2779e110 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f11a7bb wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43cc46d0 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b01997c wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x50215678 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57d7edf5 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d7ec511 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5fc38863 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62e65d3d wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6962eb06 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ac4b484 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ad950d9 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c6d354e wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e8131d6 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6faf1413 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7dfca425 wlcore_set_key +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_acx_set_ht_capabilities +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_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_tx_flush +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 wl12xx_acx_mem_cfg +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_boot_upload_nvs +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_nosync +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_beacon_loss +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_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_remove +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_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4434c5f2 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x567027f2 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x66b5c8a1 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7fffffff nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1b8c2a9b pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1f69cd3c pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5bff0ef8 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7fffffff pn533_finalize_setup +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/pn533/pn533 0x7fffffff pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7fffffff pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1a1b67ef st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2cf26938 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x446e7728 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4bb8c56f st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x72b4c96d st_nci_remove +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_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x07749e2a st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7fffffff st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7fffffff 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 0x7fffffff 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 +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 0x11dc875b async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x2b48ccd6 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1f0da484 nvme_auth_augmented_challenge +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x27443c4b nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x37a166fe nvme_auth_extract_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x573fd6cf nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_dhgroup_kpp +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_dhgroup_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_free_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_generate_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_hmac_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7fffffff nvme_auth_transform_key +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0246d748 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x079b58e2 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0ce66f6e nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x10da1385 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x16bda292 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17f77182 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x189f1a4e nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24316304 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a12035e nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d25378b nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e85ab28 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3309eeb9 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x358ceb7f nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c71c84a nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43278510 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x489f3b0a nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f2728b2 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5294b915 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x52ce837a nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a5d9e7a nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f517ac3 nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7289a605 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79cc2e89 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fe3c259 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff __nvme_check_ready +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_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_auth_negotiate +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_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_remove_admin_tag_set +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_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_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_unfreeze +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 0x0b2fae66 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0cff9b4d nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x176b8d46 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x33306d8c nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x60a47929 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x651ff324 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x75dbfb89 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7fffffff nvmf_connect_io_queue +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 0x2a21dfe9 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 0x1f5b7e36 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2b9acfa1 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x33925382 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3f1839dd nvmet_unregister_transport +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_register_transport +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 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 0x7fffffff nvmet_fc_register_targetport +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 0x1026e8ab tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1bd9d782 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2306ac00 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x35f8ac0a tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4509d8d9 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5f43adf4 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x601ce463 tegra_phy_xusb_utmi_pad_power_on +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x73ff51ef tegra_xusb_padctl_enable_phy_sleepwalk +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_pad_power_down +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_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_put +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 0x0381c103 omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x0f5b1930 omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x59a91a40 omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x0eec7a13 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x3e97defc mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7fffffff mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x7fffffff 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 0x2b5279e3 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 0x4364ac5d reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x4a438809 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/supply/bq27xxx_battery 0x44b6587d bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7fffffff bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7fffffff bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x0c4748ee pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7fffffff pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7fffffff pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x034fda50 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0ecf884f ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x648c8924 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6d4fa457 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1be23828 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2b0bfb0c mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x670534d4 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7fffffff mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7fffffff mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x6c5a9f0b rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3e1183fc wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x74f99b41 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_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7fffffff wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x12e9c976 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x0ee93bf7 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x4b14804d scp_mapping_dm_addr +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 0x7fffffff scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7fffffff scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x203f3240 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x2a9c0fcb scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x4f218bd3 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x64d6ce49 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7fffffff scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x064ad63f qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x2f384a73 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x5a60aeaf qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x65eb3382 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x69c4effe qcom_remove_glink_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_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 0x04bc1d86 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6b09f1a2 qcom_q6v5_panic +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_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fffffff qcom_q6v5_unprepare +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 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 0x383fa6bf 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 0x04d7581e cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x061cfe19 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b71a7ad cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x150c6b5d cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15a47e2f cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31fb2a02 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x399b1ea1 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ad8d6ce cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f9cd622 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41a1a53a cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4994f8f3 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4eb9f14c cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ccfdaa3 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e9b7e5e cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c6dc33f cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6cc88c05 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e8f74ab cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f23671a cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c610f61 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c6b926f cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f8b2639 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ffed0be cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_conn_alloc_pdu +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_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_device_find_by_netdev +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_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_get_host_param +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_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_purge_wr_queue +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_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0a0fd579 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3d3105dd fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x430dde0d fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6c78c4d7 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_device_delete +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_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_libfc_config +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 0x70276712 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x7fffffff fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0069629d iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2f636e74 iscsi_boot_destroy_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_host_kset +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 0x7fffffff fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x124532a2 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21644afb iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ab2b3bd iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x332c015b iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x354aedb0 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x361988ac iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x422cc19b iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x448e5c10 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48c7b098 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4dd033f8 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5126d107 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x555a95fd iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c9c638d iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e8a3c92 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d0ad991 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e4b64a5 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fcf750f iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74fe77fa iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78bc0fd9 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ec0b146 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ee8c031 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_stop +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_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_requeue_task +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_setup +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 0x181526d0 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x258fdc44 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55906aa3 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55ae73ad iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5855e7d4 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70d2c9fd iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7a1791ce iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7c329912 iscsi_tcp_task_init +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_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x09bb9cc3 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18c26986 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x191e1d77 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e595dd0 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22e7fadd sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28c51115 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2bedc744 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37ba95d6 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f7a576b sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x50046290 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x521b69f6 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x58d5e02c dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b2c0188 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x605791e1 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65e71048 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x72cdab34 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_ata_device_link_abort +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_drain_work +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_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_lu_reset +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_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_slave_configure +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/libsas/libsas 0x7fffffff smp_ata_check_ready_type +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 0x036bfaae iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x09a69059 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c158a3c iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e71f010 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x200641ea iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27ed3b8d iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29602881 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b6c63da iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bba180b iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4978dee8 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bbfecf9 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bf4fa20 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c8331e5 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d8d268e iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f0906e8 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 0x5cc0941b __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64c95112 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b252ab9 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e3989f8 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f77cdf8 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x724887c7 iscsi_ping_comp_event +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 __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_alloc_conn +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_create_flashnode_conn +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_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_free_session +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_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_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_remove_conn +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 0x04347c83 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x40fd205a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7d6abb31 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 0x320d70d0 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 0x3a6a0512 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6c565d24 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/scsi/scsi_transport_srp 0x7fffffff srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x278b6943 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2dcb9905 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x63bfd070 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7fffffff siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7fffffff siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7fffffff siox_master_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0f293fd0 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x15874de9 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x161f8088 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x19931eb4 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x23325d13 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x33f1f85c slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x376a6e04 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3f9b319e slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x42b88c35 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x55da6855 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x568e0940 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x710ce97f slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_device_report_present +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_readb +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_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slimbus_bus +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x1a807973 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 0x1e856ff4 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x32068cd6 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff apr_send_pkt +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 0x116d1e2f qcom_mdt_pas_init +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_read_metadata +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x52209bbd __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7fffffff sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x32b26661 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x7fffffff altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x64df2ea5 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7720cd3c spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7fffffff spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7fffffff spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7fffffff spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7fffffff spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2c66e551 spi_test_run_tests +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_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x068f95de spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11e152b7 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x13f260bf spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x18178a71 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2af560f5 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2e953c8c spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3312c843 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3f713e2d spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b8074d7 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x69d5a1f7 spmi_command_sleep +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_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_ext_register_read +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 0x301e4cf5 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1c8f0074 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x28c9bc28 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2d4ce211 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2e8a21fc anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3e7422dd anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4fd6d673 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5130a1b3 anybuss_send_msg +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_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_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x23017304 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x499c9d99 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x68edf526 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7fffffff fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0862fb41 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x09660ff3 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x12c5535b gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2525bbb2 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x499a9899 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x57c72119 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7415e6b5 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7a40a691 gb_audio_apbridgea_start_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_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_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x045de2eb gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x16dc8058 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2b5ee038 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3309f3c5 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x37055292 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5c076573 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7cf22981 gb_audio_gb_activate_rx +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_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_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 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 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-audio-manager 0x7fffffff gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x5d1e4acf 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 0x182b0d81 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x6fd4099f gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x7fffffff adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0f6902b1 imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x167bb1c0 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x19443070 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1a6a84ec imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1b537e64 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x22c4e1cd imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x23ba1383 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 0x4c4d5046 imx_media_capture_device_error +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 0x5a2e3f21 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6a4b7208 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6d23c793 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x715e2f9b imx_media_capture_device_unregister +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_init +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_remove +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_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_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_set_stream +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 0x0375a1da 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 0x1a219b8b amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1d2871ce amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2b40eb6d amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x356fc488 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3ae099c1 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3c3ddcb0 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3c5f7f0f amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4045cd67 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4328deb0 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4a9e55a7 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x65960bb8 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x659ebadd amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6c5012cd amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x787d0885 codec_hevc_free_fbc_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_set_par_from_dar +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_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_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x265bcd70 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7fffffff nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7fffffff nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1cd969f2 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7fffffff target_init_cmd +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 0x00d43fc7 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x093da622 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1e80d9be tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2a239f5a tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2be1a396 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x37416016 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x67253b94 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6907049f tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6f43e3fb tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x740a89e5 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_client_open_session +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_get_from_id +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 teedev_close_context +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x09e5008c tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0e5cea52 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x154b5f18 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1c65d419 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1c7e9070 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21a31526 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21b76569 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x255e1b68 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x277260e8 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2c5bd3d4 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x36521060 tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3771083d tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3ceb6c51 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x40510e7f tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x439910fc tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4755b58c tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5b65216a __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ceee74b tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x75bd3cd9 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7a099d21 tb_register_service_driver +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_poll_complete +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_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0b538edb ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0e1052b5 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x10989a56 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x283acbe1 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2d4b86ce ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x36221e93 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3e11ec68 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x466fc272 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4a7e8b00 ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x59e9139b ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x679a9dd9 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6acbbc1e ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x73c8c83a ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7ab14966 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7ef12269 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_fixup_dev_quirks +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_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x70cb6d80 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff 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 0x7fffffff __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7fffffff __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7fffffff uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7fffffff uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7fffffff usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7fffffff usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1f9785cd cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x606f9d5b 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_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_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7fffffff cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7fffffff cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x252aa1f4 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4cb4a274 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7fffffff ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7fffffff ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x200958b8 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2161196a imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x58a1c320 imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7893d20a imx_usbmisc_init_post +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_suspend +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x15c5fba0 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x18ae6f50 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x376739f6 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x50921fd0 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1b0ffd91 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2dec3531 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x30dc3cc9 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3739a2c2 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4507f485 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4d3c2da3 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6cf46624 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6d6e409c u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7a4ca9a9 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_get_capture_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_playback_srate +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_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0bbbe84f gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x25b70e48 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2f4d02b2 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3973dcce gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4dba37ec gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x521d6ddf gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5d06a4bc gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x74028cd1 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x75ed08dd gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7edbaad6 gether_connect +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_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_set_dev_addr +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_serial 0x13531d8d 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 0x207ba1ea 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 0x108859aa 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 0x1af22d92 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x409b383f fsg_common_remove_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 0x4332b89a fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4464eb0f 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 0x597b58ba fsg_show_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 0x74e43a1e 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 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_show_cdrom +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_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_forced_eject +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_nofua +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 0x04bb1e7b rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x19c0ad09 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2818fab8 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2acbf895 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x32b903f1 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66a0a7c4 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f87623d rndis_borrow_net +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_rm_hdr +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_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/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e007223 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x11346ae5 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17edcc56 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x23cbbe70 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2eb5ca4a usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x369adc0e config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ed1c148 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x408c08bc usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54f5619f usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x633f84d1 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6890cb4b usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6cad76da usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x71c0e188 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff alloc_ep_req +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_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_composite_setup_continue +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_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_register +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_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_otg_descriptor_alloc +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_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x05cad57a udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1a9a9bd7 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 0x7fffffff empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff init_dma_pools +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_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff udc_probe +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x6b69a3bf 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 0x19e90e5d usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x25ce333b usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3776dd5e usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3956db81 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/misc/ftdi-elan 0x7fffffff usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fffffff usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x7fffffff 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 0x02cbca3d tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x4c987fb6 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x7bb89941 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x7fffffff tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x70f0b52c usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x03b8e811 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x063966e1 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x078cfac6 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x209946a1 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x256fea83 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3bc89231 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3ffb9de9 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x405b858c usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x47a30e93 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x56c37c5c usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5ab71e80 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7443443a usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x78d31786 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_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x6ec26cfd dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x7fffffff dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x44baae21 tcpci_register_port +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_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 0x01bfefa4 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x02b55607 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x03db97f0 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x093c8799 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0c1462e7 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0d1fc74a typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0d35ae57 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x170ae9e1 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1e335977 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21ad4eb4 usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x23a30858 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x28f2f4ce typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a2f7402 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2c0b5d82 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x31126010 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x31721a4c typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x329395e9 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x32d804c3 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3dfbd225 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x42ec9f9b typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x432c662e typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x481c5957 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49f3ab5b typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4a4118b9 usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4a982623 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f7473fd typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57a20514 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5899fa28 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e60f192 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x65151c1f typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68f29881 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6e4aedec typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f340b96 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x737691bf typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x79a62165 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7a0a9b2f typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7f1f1383 typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff fwnode_typec_retimer_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_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_unregister_driver +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_cable_set_identity +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_drvdata +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_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_mux_set_drvdata +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_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_set_pwr_opmode +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_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6a160d2f ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6ca56bc2 ucsi_get_drvdata +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_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x03c6b68a usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x30807c78 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4779e0c1 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x57d0304b usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_dump_header +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_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_recv_iso +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 0x02ac5dfb vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x03c96e05 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x23349284 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x414aec75 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5adb5ac3 vdpa_unregister_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_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x03d04fe7 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x07bd8663 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0959b693 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0bada07c vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1cbd9ea2 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3d12e817 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4b8f4014 vfio_pci_core_register_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 0x4e14a9a4 vfio_pci_core_write +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_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_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_release_dev +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_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x419971eb vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x546d951f __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_write +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x049e3a94 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0af74284 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x17833418 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1f272e48 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2a49786e vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2c16077f vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2fcc6b56 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3370293a _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x381b7778 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x41d0d5bc vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4cc5fd12 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x510f12db vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6116d96d vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6cc4bdcb vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff iova_bitmap_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_device_set_open_count +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fffffff vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x089e38fd vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0aba8c88 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0fc1af68 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x17e14ded vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x199130bd vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21a6a772 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2280a20c vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3175426a vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32cab5ba vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x39719630 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3fc14f5c vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40ca6349 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e09373a vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6688e238 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6742b162 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6e84098f vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x716e7334 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78d59d4f vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fca36c4 vhost_has_work +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_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_init +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_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_signal +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 0x7fffffff vq_meta_prefetch +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 0x2f7316a3 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6e40c672 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x785ff31d ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7c39f415 ili9320_shutdown +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/backlight/ili9320 0x7fffffff ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x7fffffff fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x55293479 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7fffffff fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x0d9d5baf omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x21fb291f omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_of_get_first_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 0x37bff2b3 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7fffffff sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x215fdd3a w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x59d09623 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5d871768 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5ecd1c7e w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x65e69ee5 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7159e33a w1_reset_resume_command +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_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_touch_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x36ba7d81 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7fffffff 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_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7fffffff dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00bb39e1 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0ea255a2 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x18cee33e nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5c65a424 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_ip +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 0x083f5b7d nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08f63689 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0981345c nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0efa2b12 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f1db8a8 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x104825ec nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1392426a nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1703b548 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x186564b5 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1db50d55 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fca57c4 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x200c106f nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25909dd7 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2702f326 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28be672b nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x296be59d nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c6124ca nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2eda16cd nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x301768cb nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30c723e5 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34543523 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35afc053 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b2a9017 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c990d3c nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e23e687 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e4fe8e5 nfs_may_open +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 0x434507a4 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4651ef25 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46fe21e1 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x472911a2 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4879d4c7 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48da1a88 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48f4c25b nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x497df440 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49dffd37 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a7a41dc nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d33a27e nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d98f8b3 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e7c93da nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ecaf44d nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4effe400 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x521026f7 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53241d61 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x555be225 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56e22458 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b6ac494 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c5c2792 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5da4daef nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f8dd847 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f8ea7a9 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x652371f5 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x667a9f6d nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x678228fb nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68c6e3a9 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cf8ba34 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ef6be06 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fb59c47 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72a148a3 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x738b9e7f nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x744fa738 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75ce8455 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7644fd7d nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76f99d0d nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77b051fa nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79ae87d6 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c908b97 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d967b7b register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e1f3193 nfs_invalidate_atime +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_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 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_dentry_operations +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 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_access_set_mask +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_fattr_with_label +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_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_create +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_dentry_operations +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_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_flock +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_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_init_client +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_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_lock +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_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_permission +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_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_put_lock_context +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_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_request_remove_commit_list +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_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_server_insert_lists +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_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_show_options +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_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_unlink +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_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 0x040d62f9 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04cbaf3c pnfs_error_mark_layout_for_return +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 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 0x11a98618 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12503c6f nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18871ab9 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18a47911 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18d71df3 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d71a841 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fa3a08f nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28ea86e1 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b295cc4 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bc81121 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x323509ca pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34d82afe pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35c59249 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37eea725 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b0bb0a6 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41039315 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4128e1bd pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41cfe8f0 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44525fae pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e75ad4e nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e8eaef0 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51a0fe3c pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53e223a9 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5554448b pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55614b67 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55f8c850 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56f16327 nfs4_init_ds_session +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 0x5b005290 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63068d95 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c9d4de4 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d5a6f1a nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d6f44a1 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ec878a3 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7256ae49 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x777ef2df nfs4_mark_deviceid_unavailable +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 0x7b0d11ba __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c3afde7 nfs4_test_deviceid_unavailable +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_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_nfs4_pnfs_commit_ds +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_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 nfs4_delete_deviceid +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_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_setup_sequence +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_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_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_pg_cleanup +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_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_ld_write_done +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_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5c3c8894 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7fffffff locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7fffffff opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x017b6a4a nfsacl_encode +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/nfsd/nfsd 0x7d3ff367 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0a9ddfb5 o2hb_unregister_callback +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 0x42f6efea o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4951410c 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 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +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_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_setup_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_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2nm_node_get +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 0x557871b4 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x709fa458 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 0x7bedc13f dlm_register_domain +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_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/dlm/ocfs2_dlm 0x7fffffff dlmunlock +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 0x62446add ocfs2_kset +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 0x19c1766a 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 0x478e8095 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x5d9b5658 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 0x49364aea notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7fffffff notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/polynomial 0x7fffffff polynomial_calc +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 0x3572b591 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7fffffff lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x4aebe7c6 garp_register_application +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_request_leave +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 0x1b831cc5 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x1c370020 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x36144ff3 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x4e668b13 mrp_unregister_application +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/stp 0x7fffffff stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x7fffffff stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x26ab5809 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x3e3b8d26 p9_client_xattrcreate +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 0x1b25ee83 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x29f9d2b6 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3689ec80 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3c8cab31 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x45c44917 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5434fd69 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_chan_connect +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 0x005b092d nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1f200f81 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x23f85698 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x28c9f843 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x29d76d92 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3520f2cd br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x374e2716 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4571336b br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x47ac3c60 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x57ff398c br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x641a054e br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x737a9a75 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x74347685 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x757bf080 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_forward_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_has_querier_adjacent +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_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_vlan_enabled +EXPORT_SYMBOL_GPL net/core/failover 0x792e380c 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 0x02200c87 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x027cd580 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0843b6b8 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c334192 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x10c9654f dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1952310d dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28610d17 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3814f052 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x478ac804 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c169474 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d422112 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x61a78fc0 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x62459b85 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x64019fce dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6751ae1d dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b73aa86 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x75670673 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f4470c8 dccp_insert_option +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_child_process +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_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_hashinfo +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_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_reqsk_init +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_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 0x0aa1723e dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7d4e78e0 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7fffffff dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7fffffff dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7fffffff dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7fffffff dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x01ac05ad dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x023d54d2 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fa0f96c dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x12a16b73 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1fb04588 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x204b29f7 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2899bcd7 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x28f78a43 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a893ff9 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d89634e dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x38eebb71 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x470fc6bd dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4e65386d dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x55d87bcd dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69607d5c dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69a31b98 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6e0f25af dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6f47bf5c dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x703b44d7 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x726c85b1 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x77011c00 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ace89de dsa_switch_resume +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_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_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1e69f8cd ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x51c40836 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x571b266d 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/ieee802154/ieee802154 0x7fffffff nl802154_scan_event +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 0x73f5149f ife_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 0x271f376f esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7fffffff esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7fffffff esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x2508d3bf gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7fffffff gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x242bc529 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x32393701 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3240b655 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3404d490 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x57a53efb inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x672973d5 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7a55c282 inet_diag_msg_attrs_fill +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 0x5d02dd68 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x157e2d3a ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x41f283ee ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x42717767 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4a9ec83d ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5db488c1 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6d496bd7 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7238f6b8 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x786cf18e ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7f1ec4f4 ip_tunnel_setup +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_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x35a0c439 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x7fffffff 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 0x18977544 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x21e03202 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x224ae3a2 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5297d82c nf_send_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_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7fffffff nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x355d884c 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 0x54e729bf nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6bd51dfa nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0b03c74c tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x43805e9c tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5c7e22f4 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x65546ab7 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7fffffff tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x05774b18 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x36547418 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x589e64e0 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x61d487d6 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x64eeaa82 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_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fffffff udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x095c36e8 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x3f59b588 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7fffffff esp6_output_head +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 0x00bf323a udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7e109bce udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x7fffffff ip6t_alloc_initial_table +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_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x7fffffff nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x5927c376 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2cea8e26 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3719e17b nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x67f7fbd1 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7fffffff nf_reject_ip6_tcphdr_get +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_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7fffffff nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x7fffffff nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x70d7142e nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x75ff56b6 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/nft_fib_ipv6 0x313fa193 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x4f07a243 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x072c3b19 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1178e646 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1188099b l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x14b67525 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x43730f22 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x483374ab l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4b0efbd1 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65d7ad5b l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ac47590 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77201beb l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_recv_common +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_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x69b84b6a 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 0x07c81c13 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x13c31347 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x198ee5fd ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f96bae8 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x22ebedc9 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3bcd353f ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4b2d83d7 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x51cb1dc0 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5610cfa2 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x734c6be2 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x77a3f314 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_gtk_rekey_add +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_mic_failure +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_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_set_active_links_async +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 0x7bf8ceed mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7fffffff mpls_dev_mtu +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/mpls/mpls_router 0x7fffffff nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7fffffff nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x18c3da75 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2195105c ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x24efc2d5 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2da7beb6 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c669bf9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e9d5bb2 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46570a18 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6df4d299 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6fe70cb3 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 0x7a3f14e3 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7b00a005 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7cdc72c2 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_del +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_ip4_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_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x09a2dae3 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7fffffff unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x16eabbb5 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3c3885a0 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5496ef06 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_conntrack 0x02d870ca nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a829611 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10ee5519 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12f1ec35 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12facc4b nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x197a6010 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x217f8793 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21bf5c23 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2694d2df nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28befdb1 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c5b7059 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ecb4e32 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3167261b nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31c8a64b nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3396faac nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38e15a00 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3983e9b4 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39fe3680 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a02638e nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ce68055 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dc119e5 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f07fb9e nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f68634c nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f9b9782 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x474f3e35 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b659c91 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d38473f nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e6e972c nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f22a2fc nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5012fad8 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x544f7dc2 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x552e1c2a nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55af6263 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a8aa763 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ba3ee12 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d7c9eff nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60fc7ee8 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x620075a8 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62a70ace nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x631ac676 __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67947b9f __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68c3ca19 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e2aedae nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e5ec65f nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75c74aa7 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7687b618 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ca63f19 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_confirm +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_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_helper_try_module_get +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_in +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_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_delete +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_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_get_id +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_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_netns_get +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_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_seq_adjust +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_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7dfacb6a nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x25c641d2 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 0x7fffffff get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fffffff nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x4098c583 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0a32171e nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0f2f03dd ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x107a0825 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6e9034ea ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_get_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_snmp 0x306bc63b nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5aa1bcb6 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x47aca678 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7fffffff nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7fffffff nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x06509c83 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x28c6b808 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3638b312 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x415223db flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4207b0d8 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4e05904e nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x54611cca nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x629ba1bc nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x686cec67 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x75f9b29b flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff nf_flow_offload_ipv6_hook +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 0x09885b91 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x18614aaa nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x27dab393 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x362caa3e nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3b9c040d nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4a908d20 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6d01df75 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b3fa068 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_inet_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_ipv6_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_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x08e4db09 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x134b7d7a nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1468fa9d 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 0x2c498adf synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x46ad1d90 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5b078c15 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x71679d4e 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 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00bf3039 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b7ad2be nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18a43b4e nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1dbd407d nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x201bb297 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20d462e0 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24bfc965 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x250a3429 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 0x3e2071b7 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43b55ffe nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f63ae06 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x524c3996 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x538407b7 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e3e3c87 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x673ef5dd nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x67652e7e nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6864dbb7 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c796c73 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x738cc175 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78bec34f nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c24ab37 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d8103e8 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nf_tables_bind_set +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_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_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_inner_eval +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_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_cancel +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_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_set_catchall_lookup +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 0x4382b498 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6511ca9c nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6bc28295 nfnetlink_subsys_register +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_subsys_unregister +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 0x78c0de5b 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 0x05e879d7 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7fffffff nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x1c7be177 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4c0de5ee nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4d2583b7 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7fffffff nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7fffffff nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x43bdf419 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6bfaea09 nft_reject_validate +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/nft_reject 0x7fffffff nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x09a94e54 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x10bfa2b9 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1d2c6c7e xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20b4fbff xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3aa77db7 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5931b53d xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d8adcdb xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6f69c53d xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7eb0afe4 xt_check_match +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_match_to_user +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_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_table_unlock +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 0x21fdade5 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7fffffff xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x50bb4289 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7fffffff nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7fffffff nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7403d574 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7fffffff nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7fffffff nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x26ca7042 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x7fffffff nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x02a50e7c ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0cd23962 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x44af5dad ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x59c5e6c5 ovs_vport_alloc +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 0x17d08eca psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x7fffffff psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x7fffffff psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x7fffffff psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x27285ad4 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x4f622ff4 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7fffffff qrtr_endpoint_post +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 0x0d4ffeb1 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x13336680 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x1624558a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x2906fef3 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x31772202 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x3445b9b7 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x42cc4853 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x4b50ace2 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x54ad505d rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x558593bc rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x70182aa9 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x7354f9a3 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x76e65742 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x76eb181c rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7edaa310 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_for_each_conn_info +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_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_message_unmapped +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_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_trans_unregister +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x388e4402 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x5fb2a2f8 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x0b86e245 taprio_offload_get +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x387d86f4 taprio_offload_free +EXPORT_SYMBOL_GPL net/sctp/sctp 0x04e21f57 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x431b195a sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7fffffff sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7fffffff sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x0c7fbb64 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x0d7ac3a6 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x23566d80 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x30f4e494 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x5070f3b0 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x62bfb61c smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x6c767e43 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7190e550 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smcd_free_dev +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x425984e5 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 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 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01a3bb15 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x024fad7e xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x031108b5 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x044d440e xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x048c1872 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06566989 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x068f8107 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07f9bae8 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09035528 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0973b997 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c27e9a cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ad57d6d svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b6753fe xdr_set_pagelen +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 0x10bf2461 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1149473b xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11fb4da1 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1277a6a7 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12f87fed svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13adc3ec xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14375639 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15db8d37 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x168d9007 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16d60942 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17cc1b6b rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1848cc96 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1974cf59 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ab5bd64 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d6138e1 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ef684a2 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f6efcba sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f97a8e4 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2002c30f svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24341056 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24847a1f rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25bd740d rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25fcbe21 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x266c9fd3 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27136ac6 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27142b7b svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x287750a1 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2893137f xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28fedc2b xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c7df034 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2da3932a rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dc45306 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed34d5d rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f31cfe4 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30768820 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3076cac3 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314710f3 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3248cf6c svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x328b0d97 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3364f62e xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x340806a5 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35603a03 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x369a1c52 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37576d22 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37bc45fa xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a8fa9e7 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c1e7775 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dc8c156 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dd9e03c svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e41cecb xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ee7f1d5 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f4463c6 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f58f6df svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42477023 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x430bc300 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44998255 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45b364f9 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4683cf2a svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x475e32fa rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49e1d71f write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4abca6db sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8dc6a3 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f76b09b svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x510ff307 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52539102 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52fe99ed svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53ce54a0 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55eb36f8 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56434c15 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57060120 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57b63d62 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59d1f286 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a37733d svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b94d0a6 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bb52989 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c7eb2af rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cf9ab6a sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d50733f rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e3968b9 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eabc175 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60efab96 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x617d51a4 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64138d7f svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c56087 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64fe099c rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x661442dd rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x675a3b53 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68d64ece rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6978654b rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d58c95c svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e234bc1 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f0b94a3 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f59bbf1 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7107edb7 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x711b11ff rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7228619d cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x734722b7 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73b072c9 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7541c42c xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77c19ed9 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7817a066 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7817be50 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7963ab16 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c9297cb cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d32d3db rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e485fb7 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff auth_domain_put +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_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff csum_partial_copy_to_xdr +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 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_disconnect +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_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_exit +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 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_init_pipe_dir_head +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_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_pton +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_run_task +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_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_task_release_transport +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_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_init_credcache +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_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff sunrpc_cache_unregister_pipefs +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_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_generic_init_request +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_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_close +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_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_decode_array2 +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_init_decode +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_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_shift_buf +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_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_alloc +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_disconnect_done +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_free_slot +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_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_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_setup_backchannel +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_reply_request_rtt +EXPORT_SYMBOL_GPL net/tls/tls 0x4ec074bd tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x78549e9f tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x7fffffff tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x7fffffff tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0180f8b4 virtio_transport_notify_recv_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 0x0e44cba4 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e5dfd25 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1391931f virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x232d6436 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x254d98dd virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a29e5ab virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2df3bf93 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e7b1165 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x31b6a30a virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38a47c00 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f5ca1a7 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41341aa2 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x473ed038 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e44b121 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ebbfce1 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f7c6a87 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68977735 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x699bd2f4 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78958b40 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_connect +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_bind +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_inc_tx_pkt +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_poll_out +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_send_init +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/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x08533739 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x19c3cad9 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x214050ab vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x236b35a4 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2391b919 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c7961f7 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x41583c58 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44f8d777 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f2d661d vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53cd343e vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5a54d5cd vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x76c383f3 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_add_pending +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_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_data_ready +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_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_remove_tap +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x02e974ca cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x054775b7 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x42659ba8 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x48e08ecf cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b327f31 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x57ec46fb cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x623badbb cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x714d9d37 cfg80211_wext_giwscan +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_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_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_siwmode +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 0x444739b7 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x447efb19 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x56d964ad ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7fffffff 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 0x4783b61a snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x7fffffff __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x067f846c amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2fa87f1f amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x35fc62cb amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3ee27dbb amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x425201c3 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4c87b532 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x711bb1d3 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x00a69735 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0ea3b824 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x180e812b snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1912537f snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1a861ed3 snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1c10b742 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x25a338b0 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x363495db snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x469085a2 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5f0b431a snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6648bfdd snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x761504a9 snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fffffff snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x044e6693 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 0x07a3709d snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12c343d7 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15903839 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d1aba01 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d5690d2 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fcc2e5a snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x219b4e20 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x232d8248 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24ef840e snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x255f25ee snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2af89e0b snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30659401 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38477b7e snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a18d190 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c5a0585 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4090061e snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44002b0a snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46888af6 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x469529c3 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46f9236b snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4916d5c3 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x585edc36 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c58b15a snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d2d81ac snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5eaa2e4f snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f5b940c _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6069fbba snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65db87cb snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6647e15c snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x666a3eb7 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69f13fbf snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c31c8d7 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ca6f2eb snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d22b690 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d29d096 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e6dd34f snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70aa66d8 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71017e14 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71ebba89 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74985c35 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e0b285b snd_hdac_stop_streams +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_hdac_acomp_exit +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_acomp_register_notifier +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_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_get_response +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_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_send_cmd +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_stop_cmd_io +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_down +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_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_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_dsp_cleanup +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_power_down +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_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_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_regmap_exit +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_sync +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_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_setup_channel_mapping +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_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_set_spib +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_spbcap_enable +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_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x40648171 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 0x327a824e snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x45a1b017 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x78ad4db6 snd_ak4113_create +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_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01058933 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04908f70 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04b8544c snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04c05dac snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05774ded snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0604b8e5 snd_hda_get_hint +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 0x067b0a50 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07f45043 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08bfac2d snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08c1e909 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cbf11a0 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fe9065b azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x120e05e7 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1480f6e5 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x164f4c70 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d0fc35b snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e23c07c snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x205d985c snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2376163e snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x252ea232 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2705fcf5 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dc91fe9 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ff82e69 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30f2d8dc hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35eefc94 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x397e83e9 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42067607 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42b72808 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47b6457c snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47e014c2 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49004525 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a0fb16a snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d20abfe snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d4ccb3f snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e13491a snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f5f2e50 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51367b62 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52bfee16 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x537a345a azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5530349c snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x562112d3 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5657c3a7 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x579a4c9f snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59233dda azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a6357fd snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5afa6292 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c440eb7 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f7ec04a snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x608c22d2 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60af8e90 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6214ffea snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62a7bfa0 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62d0039d snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63e5d291 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x659379c8 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x670675fd snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6963d736 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bffee46 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e592ad0 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x711a435b snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7384e9b6 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73edcd6a snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x746e8d94 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x755d201d azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x757a8fc6 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79cf31cf snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79f88e9b snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7af7c6d1 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0c6af9 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c2756e2 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e4b09e3 snd_hda_jack_pin_sense +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_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_codec_configure +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 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff is_jack_detectable +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_apply_fixup +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_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_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_device_init +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_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_register +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_update_widgets +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_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_default_vref +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_input_mux_info +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_report_sync +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_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_mixer_amp_switch_get +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_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_multi_out_analog_cleanup +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_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_pick_fixup +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_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_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_sync_vmaster_hook +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 0x0df6a531 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x17f40696 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2f661608 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3399e2e0 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3b37fae7 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x448143c1 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x551f8105 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6a72c621 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6bf2ff13 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 0x7dc2ea47 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fe13cd9 snd_hda_gen_add_mute_led_cdev +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_gen_add_kctl +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_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_parse_auto_config +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_spec_init +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/soc/codecs/mt6359-accdet 0x340179e9 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 0x7fffffff adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x3053de87 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x7fffffff adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x091c16f6 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0c8a1bef adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x11e97b48 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x20dc0a1a adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2fdc0ed8 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3145a823 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x457d6f31 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x5279306e cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x7fffffff cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x7fffffff 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 0x106d0704 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2b994721 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2db5d653 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3dacaeb5 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4469348e cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4f87f10b cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x672d11ce cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7e3964a6 cs35l41_regmap_i2c +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_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_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x13cd6ee1 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 0x0264208a cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3cfd2799 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6bf60699 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6e9c83e6 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7fffffff cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3fc51b23 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7daea39a cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7fffffff cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7fffffff cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2b403929 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7fffffff es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x7fffffff hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x7fffffff snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x7fffffff soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x228b1da4 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 0x2757de0e 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-max98373 0x7fffffff soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x5746a340 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-mt6358 0x7fffffff mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x7fffffff mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x106667ca 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-mt6359 0x7fffffff mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7fffffff mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x7fffffff nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x4d7040b3 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 0x0ef79199 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x20088c1d pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x6bef17a4 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x4bb54e02 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x6c5fbb8c pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x4e2682bd pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x7fffffff pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1a6a6d4f pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x31f418b3 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_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3f86273d pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5a6a3684 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 0x00a0f107 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x11ac6560 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x32b2aa63 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3e9d7ac2 rt5640_sel_asrc_clk_src +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 0x4549133f 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 0x0d18594a rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x12274f52 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1b8ed8e9 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1fa23daa rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2cf926a5 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x48e83dc7 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x53d60f7a rt5682_aif1_dai_ops +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_apply_patch_list +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_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_reset +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 0x1dd063ce sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x302a45f5 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x641c848d sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7fffffff sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7fffffff sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x5b32209c 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-src4xxx 0x30793bdc src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x7fffffff src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x5d9f2ec8 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x7fffffff ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x01033cb1 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x746652b0 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x7fffffff 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 0x2b6f9faa wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7fffffff 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_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7fffffff wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x04d00735 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x19e3502b wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1d191859 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x437b6005 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4a0a913e wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4c3008ee wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x56a39856 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x71b43ca3 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x79dd039d wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7d8ca2ae wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff 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_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_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_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_compr_pointer +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_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_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 0x03988292 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 0x5f235908 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 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-wm-hubs 0x7fffffff wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7fffffff wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7fffffff wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7fffffff wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x05737741 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x430e7e57 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2a7ea4a5 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3b3da0c6 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6730f022 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7526444b wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x7fffffff wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x64a56a57 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x2b3f0672 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 0x46f11cd4 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x55711380 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x1a6c4444 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x42780c3f audio_graph2_link_dpcm +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_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x11d03350 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1546e982 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1ed0281b asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1f957a7b asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x252b41ff asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2769fce9 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3a11e5da asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x463adf1c asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5932e797 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x66afb5de 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_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_hw_params +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_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_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 0x0f5c8d57 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x14be4169 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1f5dc7d8 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x31989add mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x391d668b mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3a8fb2ad mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3b238998 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x524be4d1 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x524d188f mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5bb21774 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6d1b2f4a mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_afe_fe_ops +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_fe_trigger +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_resume +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_memif_set_addr +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_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0x7fffffff mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x621b6aab mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x686cab4f mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x7fffffff mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x7fffffff mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x7fffffff mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x2fb191b0 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x39eb94c5 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x090c0cab axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x14d7d4f3 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x273ab74e axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4e9f8568 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x74621e2c g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fffffff axg_fifo_pcm_hw_params +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 0x019c2bcd axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x0d6e6fa1 axg_tdm_formatter_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 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_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 0x0967b692 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x218290b6 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x27c67bde meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x35e781f0 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5971a757 meson_card_i2s_set_sysclk +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-card-utils 0x7fffffff meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x3734fe2b meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x3f87c50f meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x4a7f29fa 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_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 0x059aa5b4 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x07d1cd70 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x7fffffff 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 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_set_lpass_clock +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 0x4c5e887f 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 0x0099b9f5 q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x09e1cf7b q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x38f8ac34 audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3cbc9a2c q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3cbf43c4 q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3ea0084b audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x46f689f4 q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4f782c08 audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x53e00f01 audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x567ce4b3 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5e185f87 audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x735b2b55 audioreach_shared_memory_send_eos +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_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_get_rx_shmem_module_iid +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_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x13ec6cd6 q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x7fffffff q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x7fffffff q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x7fffffff asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2fcdefdd asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x65fc8194 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x6b11ac55 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-hdmi 0x7fffffff asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x1fd56e60 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x7fffffff qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x7fffffff qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x1d2df895 qcom_snd_sdw_hw_free +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x2f18e937 qcom_snd_sdw_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x735af999 qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x25c29627 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x7fffffff tegra_asoc_machine_init +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_construct +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_open +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_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7fffffff tegra_pcm_pointer +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 0x7e678efe omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x11c16f8d edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x640f45bb 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 0x0b2264bb line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x110997cd 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 0x20ac8e9b line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2b099323 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x36d82dea line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x57804670 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6a8c695e line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x70c519c6 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x715b0019 line6_version_request_async +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_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_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_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_write_data +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x7fffffff irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x7fffffff irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x0001fd66 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x0004a385 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x000c9b28 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x001b72f9 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x002af407 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x00326628 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x004116b0 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0053e821 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x005aafff devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x007a91bb nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x007b6863 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x007df278 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x0081ab26 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x008b85b4 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x008eeda6 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x009cb9b1 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x00a03fd8 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x00a68f85 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x00c02366 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x00c10e1c tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d99925 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x00dd95af irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x00e15b0e snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x00e6b09d mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x0105e18a dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x01117fef reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0122b10e pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x01352252 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0163c53c get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x016fcfa5 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x0178344f devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x01857df5 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018ab15c PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x019cf27c mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL vmlinux 0x01b8ad58 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x01c1ef41 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01ca8c88 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x01d4f6b6 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e2520e device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x01e6fac1 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x0212b764 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x02187d4c gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x022e1fb9 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023de970 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x02515e4d devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x0259f086 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x026f9d40 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x02908dbc amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x02a470b3 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x02a741ce crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x02a8e4c8 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x02b82984 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02d5ea99 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x02d9744d tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x02df73bf blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x0306e02e debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03146728 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033d6f69 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x033e00bb snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL vmlinux 0x034020b9 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x0342a050 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03515b0a gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x03533a33 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x0354e6f7 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x03565b5e alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x0367fcf6 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x0371b879 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x03827561 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x03f10f93 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x03f3a8a3 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr +EXPORT_SYMBOL_GPL vmlinux 0x041695f7 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x04178de1 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x04206c1a devres_get +EXPORT_SYMBOL_GPL vmlinux 0x042964c0 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0438c76c gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x04391e35 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x0456e92f dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x045b414e vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046c3b0d sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x04734255 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x047c92f9 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x047cc2e8 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04955691 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x049cb4ea kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x049f0337 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x04a61646 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x04bf5512 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c5d805 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04cd4865 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04dc6d9f devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04edaf9f icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x050efd36 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x051ed688 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x051f5987 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x0528c5cd sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x052f415c irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x053ffb32 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055fb9eb register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x05600cb1 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05670810 nand_decode_ext_id +EXPORT_SYMBOL_GPL vmlinux 0x0574c13e pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x057c4411 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058f2b24 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x0591494f bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x05a05b97 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x05a06d5a pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05b9faf9 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x05bb1504 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x05c93cab __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x05cdcd58 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x05e334be add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x05e34897 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x05e7ff37 mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x05ef2313 null_dailink_component +EXPORT_SYMBOL_GPL vmlinux 0x05f25c32 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x0604f5c8 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x06100712 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x062296a3 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0644b574 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x066930e5 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL vmlinux 0x0681117c pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x068a75c6 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x0697886f dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x069acbc8 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x069b1d42 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x069f18cb wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x06a2aed9 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x06a3562e mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x06a5a3a8 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x06b1ab13 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x06b4be05 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x06b88fe7 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06ccd63b lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x06cd1fc6 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x06def5c8 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x06e152e7 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x06e4e9d1 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x06e97352 component_add +EXPORT_SYMBOL_GPL vmlinux 0x06ed6508 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x0713645c hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0716e3b0 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072d5f50 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x075f2c4a ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x0762acd9 vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x077560c2 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x077f805e snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x07824f65 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x0788be61 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07bf90ca sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x07c04ccd host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x07c958fb nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x07d17953 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x07e5b6d7 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x07e60d7a sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x07ed23c6 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x07f41bf7 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x08039e3e clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x080d4695 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081d790c disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x081e6a75 regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x081ef4ae dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x08239cf5 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x08292bd3 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x0838011f security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0838a47f aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x084a92e8 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x08746e6a md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08919704 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x089ec43e cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x08a32d46 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08ac6d90 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x08e98c39 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x09182e75 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x091c5eaf usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09347a26 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x093b7ece device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x094833db ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x096a2921 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x096d9618 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x097a7c3c mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x097f921a usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x0988fd33 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x099c48e1 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x09aa0343 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b76052 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x09c099f5 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x09e32296 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x09e9dfbd sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x09f95a27 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x09f9c8f1 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x09fdee02 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x0a0a02a5 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0a2a8ab1 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x0a2b51b1 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x0a2ec820 dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x0a3ae895 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x0a3f140b __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x0a489f04 pci_doe_submit_task +EXPORT_SYMBOL_GPL vmlinux 0x0a52a7b0 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x0a565041 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0a6ca4bc sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0a723e40 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x0a8228c1 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0a8a303b sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x0a8c3b4b usb_ep_set_halt +EXPORT_SYMBOL_GPL vmlinux 0x0a8dcb3b ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x0aa22d98 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x0ac4be03 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x0ac8a31f i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x0acfe2e7 usb_ep_set_wedge +EXPORT_SYMBOL_GPL vmlinux 0x0aea9230 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x0aebf7ad debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x0af16cae transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x0afc8808 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x0b05b8cf acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b131cf8 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0b253f85 tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b2edff6 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0x0b4bbe2f tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x0b53a851 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b720b51 nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0x0b740801 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0b78570a pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x0b78c4a2 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x0b7cde85 snd_devm_card_new +EXPORT_SYMBOL_GPL vmlinux 0x0b98c1a1 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x0ba5f142 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x0babe3f3 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb41b64 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x0bb84bb4 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0bb9c5db __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x0bbe82b3 sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x0bd5adab __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x0bda0f85 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x0beab600 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfe822a elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x0c0edad6 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x0c150684 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x0c1c7f57 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x0c255f4a mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c335485 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x0c45a79e irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x0c532575 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x0c668a33 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x0c6bfa40 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0x0c715a97 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x0c7d0b9f fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x0c8129f0 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8adaf2 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x0ca2f813 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x0ca44d2d ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x0cc815df snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ccd35aa fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x0cd86710 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x0cdf4884 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0ce3ca8b wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x0d02e5a4 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x0d09285a clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d1213b8 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x0d1ef83a thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0d244025 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x0d246d58 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free +EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d49c9d4 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x0d50f393 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x0d583f43 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x0d593610 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x0d59c65f crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d7dea6d snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0x0d82f82f pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x0d8623d3 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0d8d6a31 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d9c10a1 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0daeb489 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x0daf8ef3 clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x0dc7a5a6 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x0dc8b3b9 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x0dcffca4 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x0dd191d7 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0df6209e scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x0df96921 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0dfc20ab pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x0e09eafd shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e14b5dd snd_card_disconnect_sync +EXPORT_SYMBOL_GPL vmlinux 0x0e1c64fd clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x0e29f9a7 topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x0e2f87b3 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x0e3454bc snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x0e47b1d0 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0e48f21a powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x0e49d94f gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x0e5278de pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e85f062 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0e8c3b4f devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0e967bb0 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x0ea5d859 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x0eaf0e68 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0eb2ca0d of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x0ebf6933 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0ed2e6ec hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x0ed7bf32 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x0eda495b meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x0ef6838f device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f00025b phy_init +EXPORT_SYMBOL_GPL vmlinux 0x0f0a6b89 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x0f0bfc9a fuse_request_end +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 0x0f39c904 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x0f498fa8 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x0f4c928c kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x0f4fa381 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x0f503081 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x0f6181b3 mmput +EXPORT_SYMBOL_GPL vmlinux 0x0f76e7ac ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8175a6 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x0f867667 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x0f8b91af of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0f9732d4 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x0fa8e4bb mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd59af1 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x0fd829fe shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x0fe52d3d dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x0ff185b4 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x1004552d tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101a9aae pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x1039f3a1 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1043b3f9 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0x10539ddf devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x1060c3df class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x107bbbe9 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x1083f2b9 mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x10869f3c vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x10a8df95 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x10b3516f rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10c45701 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10e1884c ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x10eb209c mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x11033ead unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x110891fd clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL vmlinux 0x110bf59c devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1114cdb8 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x111683e8 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x114610d0 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x114fc65a md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x115a2938 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x115b0009 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x115ba00c l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x116a8187 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1170a6e8 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x1171c909 ZSTD_getErrorName +EXPORT_SYMBOL_GPL vmlinux 0x11778c8f usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x117dc1da vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x1190b2a4 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x11a44ab7 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x11b5ff1c ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x11c6d1f6 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x11d2a028 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x11d89227 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11ea0cc1 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x11f1d194 ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x11f32910 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121de648 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x121fdc5e snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0x122ee6c1 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1266b1f6 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x126800e5 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x126d5ccd cpts_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x126dda39 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x12763b81 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x1280e104 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x128135d7 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1293876b dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x12b93e65 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x12b9c5d3 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x12bd1c39 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x12bf1a3a posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x12d776c2 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x12da0448 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x12da6aa7 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x12dcf63e class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12dfba91 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x12fea4df blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x13085afe dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x130a036f cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x130cfb92 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132858cf HUF_readStats_wksp +EXPORT_SYMBOL_GPL vmlinux 0x132dfc1a regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x13315485 devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x13411437 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x1354926d snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x1359f495 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x136020d8 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x13815497 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13a46508 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x13dcfcb4 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x1411c723 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x1417256b led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x1419068f usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x1428d67d nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x14627ead pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x1475cf75 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x14884acc perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x148b5c68 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x148efe6a __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x14939fda snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0x1498081c posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14afabfa dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x14bd0321 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x14d31d06 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x14f39108 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x1506fd6e fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x15077f97 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x1514c7dd pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x1527c865 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x152ac537 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x1531a699 vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x1538874f fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x1538bbbe PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15440f5b device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15659942 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x156e3106 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x157b15ba cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x159c312e relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15a90108 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x15ab2790 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b14106 cpts_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave +EXPORT_SYMBOL_GPL vmlinux 0x15c9123b raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x16048c48 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x160fccf0 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x16133972 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x161c36b6 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x16379a6a mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x16622efc component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x1668f525 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x1669e149 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x1670efd9 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x16711afb nanddev_bbt_init +EXPORT_SYMBOL_GPL vmlinux 0x1675bf6e virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x16845893 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168a6965 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169877c3 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x16cae799 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x16d60424 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x16d98c9d icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x16d9f9ff pci_remap_cfgspace +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e1e88c sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x16e1f417 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x16e58041 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x16efb409 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x16f1a949 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x17044f22 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x17178f5e mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x172a593b snd_soc_component_compr_open +EXPORT_SYMBOL_GPL vmlinux 0x173d3a7d usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x173e2eea do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x17402823 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x1743c1dd hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174fcdc6 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x1755fa6e of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x175de67f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x1767c951 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x176c1ded blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178731cb subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x1793511c dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x179e41ef snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x17a55729 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x17ab9c03 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x17b3676a rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x17b5f3a9 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x17b757e0 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x17cfb200 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x17d9ec30 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x17e5a455 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x17e6deef ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x17ebb36a fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x17f1c074 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x17fe8eb0 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1812197c relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x181cfe57 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x18251be5 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x18308dc2 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x18309432 sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x18484513 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186a4286 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x188018ac meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x1882be51 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x18897420 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x18b51638 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x18beb768 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x18d9cabe regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x18da1e2c lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18ea6523 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1904ed32 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x19072db3 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x190c8e11 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x190e0112 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x19145e50 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1914d14e adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x191a0d09 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x191ff086 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19262737 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x1937e053 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x19585993 nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x1977bd72 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x197806f4 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x19978f71 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a3e0a0 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x19b0f992 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x19b302ff musb_root_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x19bad8ce bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x19bc1059 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c22101 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x19c2eb17 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x19d3a894 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x19e4dadf fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x19faeb70 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL vmlinux 0x1a05c249 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x1a073a45 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x1a103dbc badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x1a104dff ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a10dae4 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a171c47 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x1a178f15 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x1a1d916d __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1a266232 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL vmlinux 0x1a364b7b usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x1a3a0775 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x1a41d5dc fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x1a5cdf75 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x1a5fac38 of_device_compatible_match +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a79830d espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x1a86e636 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x1a9348ad __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x1a952f40 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x1a9770a0 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x1a97a244 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x1aa35062 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x1aad8846 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1ab2ae8d bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x1ac6d18f device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x1b07aeb1 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1b0970a0 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL vmlinux 0x1b098741 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1b15daff snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0x1b33ee6f ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x1b498f02 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x1b4ff154 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x1b638dd7 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1b63d90a iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x1b6498e6 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x1b67e4e2 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x1b6d1784 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x1b844ec3 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b960d63 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1bade7c6 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x1baf8fe3 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1bbae7dc mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bd29890 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf7f28a nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x1bf86cf8 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1c05f45e crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x1c1fec8c dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c2ddf56 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1c30b537 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x1c317b80 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x1c3ad417 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1c4e70b1 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c57495d ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x1c5931c1 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5c76aa of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c67fc47 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x1c6f4d76 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x1c7280af debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c7a6a2e mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x1c7e9685 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c88f130 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x1c8cda83 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x1cad8a59 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x1cb4160e iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x1cb665c6 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x1cb8edab musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cca5eaa stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x1cd29af8 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral +EXPORT_SYMBOL_GPL vmlinux 0x1cdf0a82 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x1ce58a5c phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x1ce67980 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x1cea3104 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x1cf1e3e7 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL vmlinux 0x1cf728a5 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x1d0e4da3 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x1d194a2d power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d22dc91 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x1d254cfb led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x1d332b48 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1d3e7b0c netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x1d51b9d9 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x1d52d22b devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1d53a29b regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x1d563e4d kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0x1d616e78 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1d668ee0 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d876d4a snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0x1d885c09 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x1d8d84f2 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1db979eb usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x1dba54d1 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1dc672f8 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x1dcc9a6d xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x1df1d42e rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x1df681f0 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfd77e3 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x1e016857 nand_prog_page_end_op +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0d1d4c mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x1e168d26 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id +EXPORT_SYMBOL_GPL vmlinux 0x1e2bac48 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1e2bb111 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x1e3c57bd umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x1e4e92ba extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e549c29 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x1e56b7bf cpts_release +EXPORT_SYMBOL_GPL vmlinux 0x1e7a5442 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e8de6c8 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e91d550 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x1e99c8be user_read +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1eb025dc devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebc5a42 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ebc83ab phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed2b316 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x1ed82965 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x1edbe8c6 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x1ee57a41 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x1ee75875 dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x1f0188d3 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1f09f028 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1f0f90cc dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x1f18f10c sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x1f24b1e7 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x1f26c498 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x1f27d3a1 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x1f2e1a15 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f32045b fat_get_dotdot_entry +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 0x1f5fc4a5 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x1f610914 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1f6f4b5e iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x1f763464 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f7da953 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f93ecf7 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x1f956662 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x1f96826b watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x1f987966 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x1fe10a93 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe8554c genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1febb8b2 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x1febc3cb mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0x2007de21 of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200efddf mt_prev +EXPORT_SYMBOL_GPL vmlinux 0x201516a4 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x201b44d4 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x202ae397 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x203e31e6 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x2050863e da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x2068efcc pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x20742292 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x20766775 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x2076e8bf xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x2099020b init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x20a51af0 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x20b133eb ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x20b27de6 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x20b607b1 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x20b7550e gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x20b7dcea genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x20cdeb9e virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x20dfd110 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x20e6ff32 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x20f1b00e crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x21018917 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x21081cdf raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x21087621 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x2123e5ca snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy +EXPORT_SYMBOL_GPL vmlinux 0x212a9dad ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x213a2314 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x21494650 mvebu_mbus_get_dram_win_info +EXPORT_SYMBOL_GPL vmlinux 0x21516387 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x21563e68 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0x215f564a devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x2167f793 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x21763036 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x2193dfd0 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x219d26c4 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x21a43a12 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x21a43f94 gpiochip_irqchip_add_domain +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 0x21b52946 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21c8ea8f inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d98d63 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x21fc1509 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x222b7540 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x22350929 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x2237d3f4 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x22399887 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2250e5b8 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x2255acbb crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x22560794 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x2263e315 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22689f71 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x2272fdea rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x2277cf14 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x227a04e0 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x22955f14 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x22990d8b dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x22a55d6f crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22abf8ed mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x22cc760e generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22eabe0f usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x22fe0dbc regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x2303ea36 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x2305580c mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x23166849 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2329374b of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x23353016 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x234dbfb8 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2356a7cc bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x235ddcdc i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x236d7701 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x237623e1 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x2376b40b of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x237ed82c snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23935d9d __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x2393e395 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a8c5e4 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x23ac4d8a ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x23aeed6a i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x23b7ef84 xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x23ba62c7 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x23bad46d genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x23d04c6e fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x23f76172 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x2421af71 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x242afeee irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x24309fe1 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x24481a87 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x2448a32d bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x244a8d72 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x246b84a4 r9a06g032_sysctrl_set_dmamux +EXPORT_SYMBOL_GPL vmlinux 0x246e5171 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x2486c29d devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x2488c84b gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x248a7745 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x24924d00 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x24935cd5 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b86ccc pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x24bcc336 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x24c08ba0 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x24c385fe tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x24c82133 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x24ccaa51 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x24d0cdec snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24ea81f2 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2509be3e mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0x250a843a inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x250bf2a7 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2513b880 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x2516bbe8 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253b4b86 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x2546ab60 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x254b7e44 balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x256e5a42 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x25740313 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x257b6964 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x259febe9 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x25d18ef5 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x25ddb4e6 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x25e0b488 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x25f72629 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x26220c34 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x262793b4 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x262ace12 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x26315010 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x2634872a pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x2642b2b7 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265a7766 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2666efb0 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266ed7d1 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x26720e80 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x267cff00 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x268d378e bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x26982b7c __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c3aee6 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ca9979 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x26e94e94 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26ff6c7d msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x2709b163 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x270f7b4e crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x271d42a9 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x272d5c50 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x2753bbd2 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x275e90e7 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x27a7ef34 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x27ac1fcc __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x27c6d8d9 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x27c75cee __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x27d0dc2a dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x27dde711 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x27e0487e kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x27e8c836 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280279be mnt_idmap_owner +EXPORT_SYMBOL_GPL vmlinux 0x2812cddf __srcu_read_lock_nmisafe +EXPORT_SYMBOL_GPL vmlinux 0x2823ff52 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x283dd743 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28468dca snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x284d6bfb dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0x284eca5c tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x28568a03 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x2863aef6 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286679d7 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2878562c usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x288798fd synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x28a590e2 __traceiter_devlink_trap_report +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 0x28b2a6de ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x28b6e28d wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28bf0b70 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x28e30426 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x28e54840 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x28e5c822 mas_store +EXPORT_SYMBOL_GPL vmlinux 0x28f1f793 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x28faf984 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2903baf8 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2904b138 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x291123ea __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x2913ed66 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x2914caa0 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x29157809 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x292702d5 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x292aa1b0 mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x292cbee1 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x2960556c pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x29717446 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x29757dbf trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x297e05ec rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x297fad9e fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x2982ce2a pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x29867811 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x29a3b030 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x29b677d0 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x29b6e8aa usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x29b95892 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x29c21a0f power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x29c23715 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x29c31a04 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x29c7a496 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x29d164fe regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x29dd55ad receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x29e4f27d tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f39d4b fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x2a06163a device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x2a2ab222 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2a2d92c1 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms +EXPORT_SYMBOL_GPL vmlinux 0x2a344cb6 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x2a421d55 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x2a4a1c5e platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a4a55ab wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x2a62918a gpiod_set_transitory +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 0x2a84fbb5 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x2a8ece53 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x2a971d65 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a99cf69 cpts_register +EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2aa2a6b9 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ab12b5f crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2ac103cb cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x2ac7cc96 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x2ac850fc ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x2acb84d6 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x2acfef39 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x2adf930e regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2ae2d1c2 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2aeba780 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x2af29844 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x2af81860 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x2af8dad2 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x2afba396 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x2b17b722 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x2b3fa5fb pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x2b425368 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b602b4d vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b7433af task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x2b758d18 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x2b843da5 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x2babaaec crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x2baeeffa dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x2bd42168 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x2bfbdb79 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c000275 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x2c00865a extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x2c0ed0db __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x2c15cdd3 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c22062f snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3ba608 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x2c48514e xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x2c4b17dd usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x2c4c0bb5 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2c5efbe9 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6c42b1 blk_mq_freeze_queue_wait_timeout +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 0x2c8e4153 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x2c910a04 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2caa97db devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x2cb2314d mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2cbb2c92 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x2cc7941f fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ccc8989 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x2ce5958a ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d0de179 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x2d148754 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d3036fc crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL vmlinux 0x2d36f5ec crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x2d3f7999 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d516273 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d69c2ed led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x2d77c391 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x2d833cc4 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x2d8b84db usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x2d8bd3b6 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x2d9bd589 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dbcf545 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x2dbd7e74 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x2dcba2fb kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x2dcdd3fc fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2dcfc6c3 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2dd719a2 mtk_clk_simple_remove +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2ddf5f58 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x2dfe6411 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2e002868 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e3ed325 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0x2e63dd19 mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e6ba502 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x2e826ea5 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x2e8fc7be fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x2e94ab51 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x2e9a1caa __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2e9ad19d serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ebe530e ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x2eca3396 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ecc1cfa spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x2ed2a32e rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x2ed8db78 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x2edb72e4 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x2ee9deef srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2efbb0b1 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x2f03ef7f rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2f06a665 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1410cd sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0x2f1ad82a blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f1f6781 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x2f229f13 nand_reset_op +EXPORT_SYMBOL_GPL vmlinux 0x2f30368b sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x2f30c20c dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x2f3e704f tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x2f441c8d trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x2f5cd3dd mvebu_mbus_add_window_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2f5f1abb devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2f6dfbdf vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x2f7ab0bb dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x2f8592c4 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x2f8ad3b3 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x2f8bb288 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x2f8ff9fc inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x2f995d45 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x2fa45eda edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x2faab801 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x2fb7ca6b sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x2fb9faa1 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x2fbbce84 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x2fc13fe3 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fd47035 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x2fdde47e debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x30038faa of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x3013ec5b __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x30237e13 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x30250288 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x302d9ee8 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL vmlinux 0x30372d50 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x304e97c6 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x304f3672 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x305bd0fb ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x3079e6e9 mvebu_mbus_add_window_remap_by_id +EXPORT_SYMBOL_GPL vmlinux 0x307b9fed evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x308b8db8 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x30982d75 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30becfc0 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x30c0f561 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x30c2c554 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x30d13d47 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x30e3beb0 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x310b698a __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x31215c5b sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x3146f689 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x31488fcc tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x3155ee90 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x31597f06 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x31641242 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x317202bc nf_route +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 0x3198f895 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x31a40acb __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b1da04 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x31b43185 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x31b61b0e dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x31c42401 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cd02b8 mas_walk +EXPORT_SYMBOL_GPL vmlinux 0x31d23d74 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x31d8f6a5 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x31d98cff da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3200d9cf blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x32231480 io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config +EXPORT_SYMBOL_GPL vmlinux 0x3229bb5b xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x32324811 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x3233e7a2 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x323747d1 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x323de0e5 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x324a0368 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x326cd767 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x326e4601 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x327349e0 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x328165b5 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x3292f93c l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bbb262 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cfa537 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x32d92a72 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x32f4c0a2 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x331952c2 sdhci_end_tuning +EXPORT_SYMBOL_GPL vmlinux 0x331d2050 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x33392b14 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x333f56d2 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x334383e2 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x3353341c wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33645433 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x336636bb clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x3371826a gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x338e7bd0 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x33904a1c sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x33a1f8d5 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x33ba46f4 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x33c64087 usb_gadget_check_config +EXPORT_SYMBOL_GPL vmlinux 0x33c7e37d gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x33ccf42c of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x33cf4c13 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x33e10e0b bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x33eec9ff mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f85a41 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x33fd5ead da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x3423124b crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x34245078 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x342c45b2 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x343ac5f2 cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0x343c4c25 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344bd03b devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x3457e04b bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x34794272 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x349011b7 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x34930a44 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x349e1cb8 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x34a3b6f3 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34a9ed67 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34ae35e6 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x34c175ae ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x34ccc1c5 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x34d017d2 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x34d0bcdf led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x34d43d24 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x34dae4e3 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x34dbc133 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x34e76764 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34ebc22d dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x34f686ed snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x34fbefd2 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x34fd46bd __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x351a0659 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x3523b5ee vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x3525b025 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353207c0 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x353a0b2c clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3543d685 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x355c0fe8 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x355d1b94 snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x35657b25 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x356c08e0 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x357135b0 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35829af6 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x35855099 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x35877829 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a26fb2 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x35a5c964 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x35dca8d2 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x35df23fa of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x360657f4 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3634537b fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x36356eda tegra124_clk_set_emc_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x364826ae led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x364d49f1 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x365438ee gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x3664adf9 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x36660b1b debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x3666cec8 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x367d9648 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x369a3f13 fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36abba9a pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x36abf7a3 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x36cbac07 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x36de3154 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x36df1a82 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x36e70824 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x36e77798 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x36ea1936 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x36ed6904 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x36f1e569 mas_pause +EXPORT_SYMBOL_GPL vmlinux 0x36f8a233 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x37120c71 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x371aa83f gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x372ef1c6 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x372f1b7d __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x374855e8 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0x3772192a xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x378254eb i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x3786b6f1 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37a6986b snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x37b0d9ba usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x37ca4c38 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x37d01df8 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x37da77dc lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x37dbd49c hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37dcf822 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x37eccb23 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x37fb6269 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x380318d0 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x3809e5e7 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x3821cfa2 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x3822ab68 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x38266c37 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382f8304 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x3836c97e simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3853307b fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x38533835 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x385c4ef0 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x3861fb92 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x38681215 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x3878937e fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x388cb919 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x389b5afc sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x38a43445 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38aa89a2 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x38b991b9 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x38bcd95b mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x38d1dffe __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x38d298ed rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x38dd982e dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x38e1deb0 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ef1fe9 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x390694f7 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x39152225 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x3915ea4b clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3917f9c4 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x393b4d41 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3958ca91 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x396c66cf i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x39717efd pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x397a1108 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39888f44 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x39938f90 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39ade127 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x39af17c8 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x39bdcfbc scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c39a14 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x39d628cd dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x39f0bbd0 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x3a14f027 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x3a153f67 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x3a29105b __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3a31ab02 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x3a35b9d6 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x3a3dc674 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x3a3e38a3 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x3a442b46 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x3a4cb46c usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a544c8c irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3a584d02 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x3a648a6a fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x3a6df65a tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x3a7b4824 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x3a7f784c ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x3a960b2b xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab70944 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x3ac9a02a mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ace4f48 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3acf34d2 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3ada41f3 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x3ae0112c irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x3afc520c crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x3b0714f7 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3b07f8da pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x3b08a01d rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x3b1458bf __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x3b216a54 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x3b475209 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b62227a vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x3b6695d6 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3b74c064 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x3b913903 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x3b97cbef xas_find +EXPORT_SYMBOL_GPL vmlinux 0x3b999f26 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3bacf00b mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x3bb09074 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x3bb4e3ba mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3be325f8 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf55856 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x3bf88c64 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3bf98f43 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x3c005cdf __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x3c0938c6 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3c1ac2f4 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c215279 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c45d434 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3c4b15f5 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x3c511b56 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x3c5e2516 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3c94d3ec mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0x3cac4488 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x3cd0323a __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cdd2e9b dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x3ce02c9c vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x3ce1afda usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3ce2b8fa snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL vmlinux 0x3cf88d22 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x3d052c96 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x3d0d1373 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3d1fa034 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x3d2e80da sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0x3d2fe466 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x3d31e9e3 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3c6cfa __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x3d4196f1 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5a7195 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x3d5b5fde fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x3d714301 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x3d769be8 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x3d79577f synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x3d8277f2 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x3d852d6d inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d87b98d regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3d98b9c9 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3d98ded2 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3d99d9cc __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3d9c44cd tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x3da6830b tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x3db48a49 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3dc4f13a __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3debbd14 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x3e03b697 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL vmlinux 0x3e0759c2 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3e199b89 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e32d683 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3e34e96d mtk_clk_unregister_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x3e3d6b63 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x3e3fc154 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x3e464537 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3e4dd9f3 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3e659b91 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x3e66ebd3 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule +EXPORT_SYMBOL_GPL vmlinux 0x3e7aa814 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3ea27391 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3ea3c77c icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x3ea71a5f fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3ead6e3b led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x3ebf618f mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3ed7243a mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put +EXPORT_SYMBOL_GPL vmlinux 0x3eee6b4a omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f1ae786 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x3f206296 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x3f338ea7 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4b596e __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x3f523fe3 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x3f527143 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x3f735646 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x3f849b0b netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8fb95a sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x3fa0cc96 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x3fa5499a create_signature +EXPORT_SYMBOL_GPL vmlinux 0x3faa5cc5 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x3fb7f4e0 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x3fbca6ca blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x3fc02682 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x3fe15544 cpuidle_get_cpu_driver +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 0x3ff7da31 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4013a7e7 musb_queue_resume_work +EXPORT_SYMBOL_GPL vmlinux 0x40143c3c inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x40161b73 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x401a1bfe of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x40320586 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40402352 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0x405ad3a9 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406718a3 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x406854d3 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4070b2e5 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x4071587d usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4076d3c6 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x4077d6cf vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x407dead7 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x408525a3 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x408fcd70 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x4090462f snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x40973975 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a9579f strp_init +EXPORT_SYMBOL_GPL vmlinux 0x40aabecd pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x40b72532 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x40b9c656 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x40c22472 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x40c8b8a6 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x40dc5946 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x40e8cb35 crypto_alloc_shash +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 0x410cd378 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4116144c virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x412ae15c snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x413f354a usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x41483af3 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x414b7dfd usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x41524e28 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x415319c8 __kmap_local_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x415504f2 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x41580488 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x4170ca88 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x417a1cc6 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x417f43f6 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418616f2 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x41916154 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x41939eda nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41b21624 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x41c7c065 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x41cf23bf qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL vmlinux 0x41d8fb4b sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x41e11b54 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f2abde percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x41f388c9 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4208e40c sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x420bc539 device_move +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4222cf99 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x42255861 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x4226704c dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x422dea79 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x424e80ba tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x42543ab5 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429216fc usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42c648a1 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x42d651ac firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fe238b rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42fe66c5 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x4306a9f5 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x4309629f crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x430bb69e fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x43261d25 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x434e2832 sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0x435d1411 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x4362e563 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x4363e3f6 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x436d6916 sdhci_adma_write_desc +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 0x43817a61 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x438b851e sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x438fe0c3 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43b2daec clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x43c6a81f kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x43c8ad56 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x43c995ef crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear +EXPORT_SYMBOL_GPL vmlinux 0x43d1939b irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x43d40e63 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x43dc648e device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x43dce622 __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0x43dfd261 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x43e1dc5c handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x43e3be5c tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x43e557d1 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x43ef6382 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x43f10c28 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fd4d61 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x440c6330 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x440ec073 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x441fdec9 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x442b84ef fat_free_clusters +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 0x444274d1 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x44474b22 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445e6a95 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x4475db31 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x4481b4db pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x4482569b scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x44836bd5 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448ee311 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x449ca038 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x44b9aaa4 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c50e9e pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x44c78c0e __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44ecc757 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x44f0373c do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x44f19bfa pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x44ff5b7f sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450a3611 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x450e2a88 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4510e98c gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x45150b46 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x45264c8e fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4526ac63 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x45318846 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x4535593e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455cc5da ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4563e864 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x456b81af snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x4570ba12 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x457f5f09 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x45828cc5 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x4598c497 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x45a89600 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x45b10e9d security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x45b7c28d ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x45cbaf70 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x45d07221 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0x45e44242 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x45e96051 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x45fa638a dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4614363a dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x46159895 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x462540f5 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x462821e3 thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x462cda03 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x462d2d0d bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x4652fc9d iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x465aaaf6 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x466c744f __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x466d6b78 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x467fbff2 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4688b1a1 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468d8b83 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x46b25053 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x46bc24e5 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x46d68dcc bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x46f636c0 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0x46f6ceba virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x47004225 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x47078130 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x470a4631 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472e7f46 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x473d733c dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x473fde0e snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x4742a989 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x475eb203 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4783715b of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478910aa regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a2624c mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47acc3d0 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x47b35e92 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x47bd9f41 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x47c890a9 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x47cf2faa dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x47dbf0b1 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e6cd74 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480ba477 spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x4815c1ca watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x4819214f iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x48193e47 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x481968af spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x481f3904 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x4831bbc7 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x484c0d38 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x48508f04 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4853a541 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x485f7b24 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x48632d15 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x486ba5c2 crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0x486f9047 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x4874d222 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x48790992 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x4879acc6 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48aa6a18 vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x48ae1f6d devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x48b2055b __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x48bad516 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x48bed58f pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x48bfd84a mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0x48c288fb attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c705ec spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x48d1fc71 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x48e6be28 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x48f20715 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x490613ea devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x490e7424 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0x4918c4fd relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4932bb8e devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x4932d80f ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x495bebe6 usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496656fe snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x496b055b dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49949fc2 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x49989ff6 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x49a4d00f __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x49af1788 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x49cb9de4 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d3209d input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x49d9f030 usb_ep_fifo_status +EXPORT_SYMBOL_GPL vmlinux 0x49db4510 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x49e39078 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49eeab98 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x49f3b75c rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x49f4a70c pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x49fb08da snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x4a029b93 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a2c9ad8 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0x4a30ac47 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x4a3ab3df fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x4a4f7f7a find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x4a5edd29 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x4a7095cc snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x4a73b557 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x4a80e9eb usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4a848e36 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x4a8729e1 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x4a8af9a2 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x4a98713a devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x4aabbbaa led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x4ab9ef4a blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x4ac660c9 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x4aca13b9 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x4ad34b18 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x4aec56e1 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x4af1944d clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4b15083b gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4b261145 sdhci_start_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4b2ef6e4 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x4b47a78a vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x4b4dc6e3 get_device +EXPORT_SYMBOL_GPL vmlinux 0x4b537001 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x4b5e35b3 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4b6139d4 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x4b65f4f8 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4b6b0e4d ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x4b725205 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x4b8a21f0 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x4ba32a48 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x4ba6cab3 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4ba9b4b2 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x4bb6a0a4 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x4bbb97de __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4bc345ed dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x4bc5b023 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4bdae9d2 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4bf4fdfe rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x4bf94b97 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4bfb983d __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4c358ccc del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x4c3744f3 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x4c426751 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x4c457dc4 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x4c4a9eb1 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x4c4ce1c1 sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c5a3a2d kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb29a65 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cbf486f netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x4cbfcd13 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x4cca07b8 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4ccb8a37 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x4ccdb2f7 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x4ce0fae9 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x4cf40b24 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d01154a gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x4d09d12f usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x4d0f179c vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x4d218025 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x4d2a84c0 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d3d56af power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x4d4d3a18 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x4d5c37a4 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x4d60b731 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d764473 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d7bdc45 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x4d80d5e3 ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x4d8ca51d clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x4d8f6141 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4d995f35 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x4d9cd871 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d9d543f devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db81579 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4dc51621 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x4dc56b88 ZSTD_customMalloc +EXPORT_SYMBOL_GPL vmlinux 0x4dc665d9 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4dc852cb udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x4dcd486a mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4dd34388 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x4dd49fea dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4de8357d phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x4def2bf6 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x4df8cce1 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e0363a5 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x4e068955 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x4e07bee9 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x4e0c9db8 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4e1541c1 ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x4e1b8b7a check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x4e1f0864 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x4e2f3c90 mtk_mutex_enable_by_cmdq +EXPORT_SYMBOL_GPL vmlinux 0x4e356206 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e59b020 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4e5f398e usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x4e6931b4 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x4e815cc7 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x4e8badde genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x4ea6c480 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x4eaaa35e ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb4e354 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x4ed5ce12 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4eda0986 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x4eda4a0e nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x4edfae0c gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x4eea67fe page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4eed713a sdhci_cqe_disable +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f09ac24 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x4f09e97c __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x4f11df6e phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x4f17c5ad acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f31ce7a snd_soc_unregister_dai +EXPORT_SYMBOL_GPL vmlinux 0x4f359469 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x4f3928af usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x4f4370cf mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL vmlinux 0x4f52c5e8 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x4f54aa02 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4f592a97 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x4f5bce22 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f5c63cd virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x4f65d1c4 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f827a28 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x4f855c82 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0x4fc6f1f0 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x4fcfb45d cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4fd89f29 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fde8d74 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x4fe091c3 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe22f9e gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x4fe62a7b crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x4fe8cfcb regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x4feca6f7 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x4ff3ad94 put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x4ff4345b __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x50209e24 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x502c31c3 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x5042464c skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x5057c133 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50683a10 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x506ab3a9 usb_ep_queue +EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x508f8a77 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50959bc2 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x509816d4 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x509d3f4e securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50c9fa78 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x50cfee04 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x50d54f88 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f14ee6 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50f905c5 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50feb777 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x5104b538 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x5114064a snd_soc_get_dai_id +EXPORT_SYMBOL_GPL vmlinux 0x51153b89 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x5126c2c7 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x512ec7d3 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x513e5717 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x516e1302 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x517e7951 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x518443c9 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x518c47ef snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x518fa4bc __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x519fe7ce snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51b21c7f ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x51b90e5c cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x51bfd26b ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x51c32b65 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x51cf4482 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x51d36485 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x51dcd29e sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x51df8619 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x51f32946 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x51f815f4 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x51fe129d __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x520dc643 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x520dd1dc nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x5217c7f5 devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0x5218e619 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522cbc58 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x523a6566 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x524bcfa2 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x524eb170 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x525be52e devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x526092a5 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5261322c rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x5261a418 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x5264d505 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x527fe876 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x528ec9e1 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5297f0d0 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x52a9aff1 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52bd9f2e ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52d29168 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x52d2ed60 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x52d4f1eb spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52dd979b dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x52de9c4b cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x52e646cb gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x52ffbeb2 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x53131349 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x5313ee1d soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x5316f3fb __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x532b8c41 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x53302e91 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x534c3566 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x534ee8ef devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x536924ad gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x5380dea8 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x538a57f4 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x53a53b71 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x53a7da75 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x53c45f3f phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x53cf0bbc ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53e0f397 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x53e53587 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x5405b391 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x540b5d87 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0x54177207 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x542956dd __register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x5430208d ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x543fdde7 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x5445dbbd ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x544a07d2 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x544ab9bf fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x544d6243 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x5463d806 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x546ccb52 mtk_clk_register_gates_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x5491b3a3 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54b2a5ab skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x54c069ca power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x54c18fdb wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x54cb2bec samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x54eaed7b sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x54eb2aa6 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x550abe7e nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x550dbb0f pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x551f180e switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x552349d8 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x55322ac4 sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x5540a41f ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554fdc91 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x55556764 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55854f83 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x55876a76 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x559c183e usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x55bb2b09 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x55bc7383 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x55bede72 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c94d89 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x55cc61eb akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x55cf1bc9 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x55d79bec mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL vmlinux 0x55df8c81 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5602f156 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560c6855 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x560f3835 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56172034 of_reset_control_array_get +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 0x56264331 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x562b65e0 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL vmlinux 0x56389601 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56460525 snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x56504bd3 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x5662c0ff ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x56708e88 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x567918ce sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x567f0767 shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5680c583 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x56851c8b ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x568cc59b snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x5690e107 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x569d1a43 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56cc40f9 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x56db1332 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f544e6 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5703d243 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x57077ffc __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x570ce7e0 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x57198b49 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x571e3d0c device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5720ae69 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x572a411e device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x57339406 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x573e4141 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x575533ca devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x57857d3d fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579626af irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x57992ae7 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x57a42c0e devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x57a47acb devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d94020 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f601c3 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x580828f4 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x582c1df4 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x58392bd2 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x584147e0 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x5847f162 component_del +EXPORT_SYMBOL_GPL vmlinux 0x584c9cb5 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x58506561 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x5863c0ad pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x5864e1cf fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x58690071 device_register +EXPORT_SYMBOL_GPL vmlinux 0x587313e6 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x587cf43f __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x587ed853 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x588e742b pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x58a03db8 mtk_mmsys_ddp_dpi_fmt_config +EXPORT_SYMBOL_GPL vmlinux 0x58c1b838 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x58c30f18 snd_soc_component_read_field +EXPORT_SYMBOL_GPL vmlinux 0x58c370db ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x58cea7df ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x58d1f5a7 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x58d537ee debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58db9f00 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e587d3 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x591fc317 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x59244209 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x59298048 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x5935cd17 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x5947ca28 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x59532dfa dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x59551cc1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index +EXPORT_SYMBOL_GPL vmlinux 0x5973d14a component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x59810409 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x5985cf44 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598914b4 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x599666c8 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x599fefe6 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x59ab16b0 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x59b12d77 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x59ba34c1 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59db9a26 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x59e569a6 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x59e6218c pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str +EXPORT_SYMBOL_GPL vmlinux 0x59ef714e of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59fac05c usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5a03e648 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5a0b3b22 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5a0fd603 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a1bd3c9 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a1ef09f pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x5a2ad0ba ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x5a303a4c blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x5a39a0f5 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a6846a2 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a6f517c power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a873d79 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x5a93d3b0 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x5a94bbb8 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x5aa11980 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5aa743a5 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab27fd4 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x5acf7335 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x5ae92cf1 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL vmlinux 0x5b1f6ae9 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2661da crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x5b3739e4 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5b38545f snd_card_ref +EXPORT_SYMBOL_GPL vmlinux 0x5b3a031b init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5b4e88ed ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x5b6018bd anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x5b69012a nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b7fb975 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x5b82d911 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b8f1d97 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x5b9be880 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x5ba0cc75 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5baf349c snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x5bb654f1 nexthop_for_each_fib6_nh +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 0x5bdaa93c fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdb9123 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be202ce handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x5be55c21 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x5bf481b0 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x5bfbf195 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x5bff2be6 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x5c0a29be clk_hw_is_enabled +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 0x5c5b3bd8 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x5c61eca8 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x5c6af512 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5c71babf tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c84d1f6 mvebu_mbus_get_io_win_info +EXPORT_SYMBOL_GPL vmlinux 0x5c855b27 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5c99edbc devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x5ca01320 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cae6f8f snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x5ce59cc5 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cfb0506 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5d0d5569 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x5d124560 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x5d24456b __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3b0c66 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d4d2cc6 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x5d624424 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5d630f9a governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x5d643a26 snd_fasync_helper +EXPORT_SYMBOL_GPL vmlinux 0x5d6a1750 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x5d6b10d9 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x5d7b0634 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5d804ce0 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5d82a5b8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d89ef8b sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0x5d8d69d6 devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x5d8d8c24 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x5d955f1a pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5d98399b device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5daa6aa2 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x5dab03b2 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x5db2ed43 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x5dc7fb15 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x5dc943c2 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x5ddbbb0b iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x5def32ff dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0071dc hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x5e10ae97 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5e18f846 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x5e2098cc root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e31297e devres_release +EXPORT_SYMBOL_GPL vmlinux 0x5e36bd28 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x5e4106b8 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e59ae4d iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e7179b9 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5e7347ca regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e92d2b8 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x5ea4e960 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5eacd6b5 pci_device_group +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 0x5ec384f7 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x5ed33677 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x5ed811c8 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x5ee50fb2 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x5efac31f pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x5eff94ce of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x5effa5ef crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x5f0e4fad blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f3058c1 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x5f4ea0f7 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x5f607761 nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f73fd5e __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x5f82d42f dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3796 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f90d35f badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x5f9564fb mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x5f95db36 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x5f9f0ad8 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x5fa00a8d devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb31328 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x5fb539f9 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x5fb58e4e imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0x5fbcd808 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x5fc3f999 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x5fce905b anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x5fd85ed4 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x5fecb780 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x5ff8d9b1 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x60064f99 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6009c29c vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x6011eb03 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x601ef1ff edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x602535ec __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x602dac04 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x602fa239 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x60342c5e tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x603b2717 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL vmlinux 0x6060ee96 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x6063a2e9 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x60670b5a ping_common_sendmsg +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 0x60828a8e blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x608b0411 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609538a3 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60b9062d phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0x60c3f129 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x60c4dc0c devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x60d72677 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x60db0796 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x60dbd310 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x60df3760 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x61006a4c iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x610f5cfa ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x611f8725 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x61200c1c pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612b1904 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x6132061d bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x61425f7f wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x616e5c00 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x61774cd4 mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x6177c84f debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x617dadb7 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618f502c meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x61965035 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x61a51798 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x61a9e47c max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c2c172 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0x61d254e3 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x61d89efd stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x61d8ad48 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x61dc1974 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x61f2cca6 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0x6208ef85 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x62134035 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x621710ff sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x621bd165 snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x621eb946 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x62237374 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62342d58 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623a6dfc snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x6248429b rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x624fc230 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6258fcfe dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x6279126f of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x62805d0e pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bd1c1d snd_soc_dai_action +EXPORT_SYMBOL_GPL vmlinux 0x62ca2d85 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x62cf05f7 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x62ead30b nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63005f9b skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x630fe883 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x6314a8ab device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63166b8f blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631d1be6 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x63281f98 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x632888ea set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x632a224c __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x632fdad7 __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x63327528 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x63504d9f simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x636a7c27 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x63805939 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0x63808708 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0x638be588 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x63aa0160 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x63af1310 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x63bd123f dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x63be3af3 vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c4b455 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x63d42942 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x63e276e4 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x63f04a18 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x63f944d0 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x64000702 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x6411ad5f edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x6427bb37 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x6445b8d3 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x645f8b36 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x64624132 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x646323ac xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x64696e62 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x64698caa fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x646a62ae thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x647550e9 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x64842bba of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x64a6afeb led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x64b25ae8 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x64bcefbb pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x64d472be register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x64d5b6cb devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64f469fc genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x64f64d80 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x64f75c25 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x650c1f89 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x650df29c extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6521a27b vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x652701f6 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x654c954c perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x65506d3f dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x65520d5d snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x655644ad kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x655bb13e devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x656924f0 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6576d2dd policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x6585ae53 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x65861bef noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x65897d17 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6599394d icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x65a8a2db msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x65b0c1e4 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65c1c284 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6623b338 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x662d82df nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x665a4c51 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x665f910f perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x666e8643 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x66823d48 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668e2106 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6691d35c snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL vmlinux 0x669878d6 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x669d5f78 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x669dc2c8 mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x66a94286 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x66ac2155 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x66b202b3 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bf70a7 rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66ece530 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x66f4f49e sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x66fc2bc0 badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x671376d9 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x671d76f3 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x672bd33b spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x673f176f __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add +EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x678a09c8 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x678ddded replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0x679239dc usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679cfdfa __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x67a06a0a ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x67a4aa7a edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x67b258b9 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x67c627de ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x67cbdfad vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0x67d793c3 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67e4bdd2 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x67e79d49 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x67e822a6 devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x6804cd8e wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x68099411 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x6819428b of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x6826d28b unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x682ed198 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68315956 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x6835fc4e __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x683e2b0c paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x6848fee8 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6862dbf2 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used +EXPORT_SYMBOL_GPL vmlinux 0x6880cae3 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x68847eb2 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x6896eda7 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x689eb61b register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x68ab5c03 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x68c41056 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x68c73e84 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x68cc7969 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x68d91268 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x68f38491 nanddev_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x691472b4 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x6920a732 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x693625e5 perf_event_read_value +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 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x6974106e phy_put +EXPORT_SYMBOL_GPL vmlinux 0x697434c9 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698402de sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x6991fb45 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x69a99ab9 rockchip_register_softrst_lut +EXPORT_SYMBOL_GPL vmlinux 0x69b1745e FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69ddd454 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x69dfa81e devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x69e40fb4 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x69e5ee5d device_wakeup_disable +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 0x69fb6e5a driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x69fd28fe of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a1008a1 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6a2be261 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a46ad88 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5c0887 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a5ff764 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x6a877a59 __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0x6a8b3728 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x6a8ff989 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6ab54f9a perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x6ab5b587 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x6ad40921 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6ad86d4f hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6ada60ca power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x6afc32b3 sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0x6aff90dc mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x6b097e30 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x6b110d40 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x6b203f1d usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x6b2b4738 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x6b362426 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b3ca739 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b4e3641 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x6b506872 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x6b5cb969 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x6b6d5e2a scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b81fa02 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x6b82dacc pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x6b84de50 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x6b945dfe sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x6ba5c713 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x6ba8fd2d ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x6bb04338 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x6bc313cb pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x6bc46bcc vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL vmlinux 0x6bf1c2fa snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x6bf97600 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6c49e76e sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c702af3 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c7f12ee irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca0613a xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca4fd74 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x6ca54071 fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x6caaa24b spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x6cbe4fb4 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x6cc5ce47 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x6cc8250e thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x6cd18bab alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x6cd4f943 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6cd6867a uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x6cd95570 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x6ce4d41f virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x6cfa3006 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x6d03de60 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x6d046fb3 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d252f50 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d48ccdd eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x6d610571 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x6d68e7f5 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x6d6c669c thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d82e46a addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x6d900acb iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x6d984f11 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x6daaf074 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6db6ea2c irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbfeda7 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused +EXPORT_SYMBOL_GPL vmlinux 0x6dd1b8a7 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6deda6f7 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x6df8f236 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e16fc59 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6e19fbac blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x6e293960 crypto_grab_skcipher +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 0x6e4da990 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x6e5073d9 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x6e55f17d seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x6e62ecd0 clk_hw_register +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 0x6e7192ce wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea1dd01 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6ea37212 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x6ea3b7e5 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec28ab0 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x6ec498b6 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x6ece5c3d __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x6ed29efa set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6ee990d1 lpddr2_jedec_manufacturer +EXPORT_SYMBOL_GPL vmlinux 0x6eeda12a of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efad060 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x6f0f9cb3 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1a4c5b ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f2f20fe cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0x6f34fc02 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x6f42aafd kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0x6f5a7b84 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x6f60ecfa blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f79d1bc __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6f7c34d4 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f884a98 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa99f10 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x6fca8054 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x6fca9e20 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6fcb5fb7 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd9f879 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x6febb4e9 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70041466 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7009a0c6 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x702e4128 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x704b2d9d pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x7057c567 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7058d696 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x70624754 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7081a04b fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7090facc rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x70b86bd5 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x70b8bd90 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x70beabb7 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70c6f159 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x70cba935 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d21709 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x70d5e146 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x70d9bb95 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x70e0d78f fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x70eb350d cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x70ed4e44 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x70ef1ed9 snd_card_free_on_error +EXPORT_SYMBOL_GPL vmlinux 0x70f85dbc gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x7102919f pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7110a8cc percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x7117e03a mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x711e7b13 scsi_autopm_get_device +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 0x7163ef22 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7168e1af bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x7169cd31 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x716d6f4b input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x71785d8e pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x719d79fc fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a13546 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a56336 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71cf085c dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x71d34525 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x71efb404 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x7204c3ca kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x72079245 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x72149c1f balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x721d1705 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x7228387b __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x723b14d9 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x72416628 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7242d2f2 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x72621e8d iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x726d0a83 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727cbc7e tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x7293b40d debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x72b70165 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x72c153a0 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x72cbafe7 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x72d4a14e trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x72db6ce2 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x72dec0f9 usb_del_gadget +EXPORT_SYMBOL_GPL vmlinux 0x72fc6ef1 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x73046682 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x730f3962 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x73159afa __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x731a2c6d tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x73203a0e blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x73229ac6 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x73233c11 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x7343b971 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x734d2dba __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x73503fd0 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x73524ffa iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x735aaf37 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x735f5e0d gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x73683f07 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x736a17b1 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x736e54fa skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x73a1fda6 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x73a2a8cc rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73bc8916 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL vmlinux 0x73c8543e ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d7ddf1 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x73def597 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x73e4e6c0 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x73e5b967 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x73e64d99 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x7404a67d __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x7414e376 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x742082d8 sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x74221f9e sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x74293d45 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x742f8785 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x7467a6a9 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x74734fba max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x747538d4 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x749537f8 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x749f81ee snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0x74aab8ae snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baa8ee snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c18b87 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x74c65611 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x74ca1068 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x74ceda15 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x74db2e6a inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x74df49aa snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x74e282b2 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74ee7181 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x74f5d54b snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x74feb0af vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0x74ff73d6 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x750db9ea __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x75173da2 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x751b60d6 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752778fb fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x7528a91e serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x752d29af show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x752e7084 nand_reset +EXPORT_SYMBOL_GPL vmlinux 0x752fc819 snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0x7534596b mtk_mutex_write_sof +EXPORT_SYMBOL_GPL vmlinux 0x75400c7f __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x754cba33 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x75557f11 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7569fb59 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x756b9deb platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x756ebb54 snd_soc_add_component +EXPORT_SYMBOL_GPL vmlinux 0x75790ee2 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x757976f8 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x758bdc8e rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75ab7449 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x75baf09a usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x75bb57f3 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x75d846e3 devm_hwmon_device_register_with_groups +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 0x75e9c9f6 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x75ea898c attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75efe540 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x75f24ff1 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x75fbd791 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x75fc87d9 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x75ffac54 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7603e07c __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x760739b7 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x7608f3cc bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x76226591 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x763a3c60 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x763aa313 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x763d5c07 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x76496b05 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x7651e51c hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x76560928 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub +EXPORT_SYMBOL_GPL vmlinux 0x7663cee2 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7664f675 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7667f9f7 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x766f4de5 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x76772a1b devm_thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x767d3cdf gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7692c400 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x76b845f5 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x76bddbe6 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x76c2baf4 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 +EXPORT_SYMBOL_GPL vmlinux 0x76d27414 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e10a88 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x76ea8e6c dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x76edad15 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x770095c2 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x771e197b of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x7724fb9e sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x772b5e9b dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x7745da83 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7749cd4f __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77661423 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x777bf953 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x7791d732 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x77a16253 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x77a444f8 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x77a7263d regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77affd25 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x77bcb0ab uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77d23f30 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x77d37abb blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x77e415db __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77fa7f9a task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x77fddb08 __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0x781a0830 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x78224b09 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x782e7dc6 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x783255cd dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x78330e5d usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x783af5a7 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x787c5691 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x788c93b5 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78b3f737 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x78b7b0be bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x78c499da meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x78c8188b sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x78d130fb __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e378a8 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x78ee8b6f rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x78f85038 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x79000681 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x7909c6f4 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x790dab02 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x7927bdbe xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x79406b88 bpf_prog_inc +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 0x794f49ac mas_destroy +EXPORT_SYMBOL_GPL vmlinux 0x79509a41 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x7954e683 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x79623976 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x79684607 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x796e3580 nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x796e6b0e subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x79765492 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x7982047e mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0x79934de8 snd_soc_component_write_field +EXPORT_SYMBOL_GPL vmlinux 0x799441d3 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x7997fa8b regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x79a83c67 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x79cc0cac __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x79d087b7 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x79d3e6c5 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ea017a irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x79f06e65 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a22eafd mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x7a244f73 input_class +EXPORT_SYMBOL_GPL vmlinux 0x7a2cf325 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a3231c4 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a41b9f2 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7a4c46f6 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x7a6640ae tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x7a672233 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7aa63d regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a852662 fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x7a861d12 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7a8c54f3 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x7aa457bc irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x7ab4d76b crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x7ab99184 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ae020a4 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x7aeb60de devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x7aedcdc0 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x7af07948 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7af0c858 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7af45e64 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0x7aff96bf of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x7b065f25 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x7b077633 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x7b0d3211 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x7b172338 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x7b17f795 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x7b1c3e02 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x7b234ced dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x7b3078c5 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x7b33a30f pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7b3d3a8f icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b77b4ff device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x7b7bd5ca stmpe_dev_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b7c2c8a fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b925017 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bcc93c2 irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x7be89624 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0x7bf0a7b2 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x7bf34229 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x7bf83f0c add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x7c16975e imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c341020 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c4fa6e4 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x7c586b4f __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7c6cdf8e usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x7c71778f blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x7c7a1fe2 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7c871861 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x7c91e5a6 ncsi_start_dev +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 0x7cb32136 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7cb35ed1 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7cc494a9 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x7cc4b6fb pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x7cd6ea5f snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cde3b07 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x7ce851aa iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceb400d led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d086dca register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x7d0ba560 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7d125140 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x7d3069b1 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x7d35fd54 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x7d388bd7 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x7d3aa0fe snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x7d3d83a6 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x7d43d9f1 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d48bd29 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x7d4ae792 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x7d4e5e16 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7d501026 snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x7d56774c platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d6ecf46 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x7d7113eb edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7d74a9ed xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x7d7e1135 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x7da21fc4 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7daad0cf ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x7dab529d sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7db74000 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7dc69317 get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x7dd4afd0 of_css +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de6c789 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x7deb31bc ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7deee30d mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x7df38f5b devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x7e0036f6 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7e040083 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x7e045eb4 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x7e186e75 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7e1f101c snd_soc_component_set_jack +EXPORT_SYMBOL_GPL vmlinux 0x7e295cda ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7e335bed screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x7e384ba7 sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x7e3a625f component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e43e049 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x7e4dc1f2 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e624d29 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6e61ad da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x7e78fe56 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e809671 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7e817c86 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x7e8caefe devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7eb84f46 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x7ed08ad7 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7ee60e2f extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f0545a5 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x7f078fdc vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x7f086e27 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x7f0c1259 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x7f12494a debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x7f2ad1be __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x7f2d4a9a extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x7f3de5ef __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x7f5172c7 nanddev_isbad +EXPORT_SYMBOL_GPL vmlinux 0x7f5e95ed pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x7f6acf08 devm_tegra_core_dev_init_opp_table +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 0x7f9a32fb ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x7fc6af6e sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x7fca84b0 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x7fd02c6b smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ZSTD_customCalloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ZSTD_isError +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_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __class_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __class_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_is_enabled +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 __dev_forward_skb +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_mux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_pci_epc_create +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_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fscrypt_encrypt_symlink +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_parent +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 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_alloc_domain_generic_chips +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 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mt_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __netpoll_cleanup +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 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __phy_modify_mmd +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_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __rio_local_write_config_32 +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 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __srcu_read_unlock_nmisafe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __stack_depot_save +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 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_ata_bmdma_setup +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_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_block_rq_insert +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_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_fib6_table_lookup +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_event_send_done +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_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_rpm_idle +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_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_wbc_writepage +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 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __virtio_unbreak_device +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_rxq_info_reg +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 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff acomp_request_alloc +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_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_dev_classify +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_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_disable_regulators +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_find_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_start_fis_rx +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 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff arm_check_condition +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_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_ops +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_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_change_queue_depth +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_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_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_alloc_pinfo +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_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_qc_complete_multiple +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_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_port_stop +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_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_slave_config +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_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_exec_command +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_prereset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_qc_fill_rtf +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_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_wait_after_reset +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_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_std_qc_defer +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 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_xfer_mode2mask +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 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_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badblocks_show +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_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bch_decode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_has_capabilities +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_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_start_stopped_hw_queue +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_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_set_fc_appid +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_rwstat_exit +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_log +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_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run7 +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 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bsg_remove_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 buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_sort_breadthfirst +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_probed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cdrom_read_tocentry +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 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_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clean_acked_data_flush +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_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_name +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_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_init_rate_request +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_fixed_factor_parent_hw +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_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_multiplier_ops +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_mux_val_to_index +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_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_regmap_gate_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 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_bind_all +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 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff console_list +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpts_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpts_misc_interrupt +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_topology +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_cooling_register +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_start +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_resolve_freq +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_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_freq_transition_end +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_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_register_governor +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_get_driver +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 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 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_aead_setkey +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_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_sync_skcipher +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_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_default_rng +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_drop_spawn +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_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_instance +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_scomps +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_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_aead_decrypt +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_compress +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_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_type_has_alg +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_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ct_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_writes +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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_holder_notify_failure +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 debounce_time_mt6765 +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_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_u32 +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_file_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff deregister_mtd_parser +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_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_forward_skb +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_disable_wake_irq +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_detach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_genpd_get_next_hrtimer +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_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_genpd_suspend +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_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_enable +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_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_max_volt_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_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_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_remove_table +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_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_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_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_em_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_disable_edev +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_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_get_child_node_count +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_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_match_of_node +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_read_string +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_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_wakeup_enable +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_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_trylock +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_prepare +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_match_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_table_counter_enabled +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_create +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_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_info_version_running_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_info_version_stored_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_activate +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_param_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_param_unregister +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_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_fini +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_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_type_ib_set +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_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_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_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_put_array +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_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwspin_lock_free +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_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_ioremap_uc +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_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_mbox_controller_register +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_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_icc_bulk_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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pci_epc_destroy +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_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pinctrl_unregister +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_set_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pse_controller_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_del_irq_chip +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_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_bulk_register_supply_alias +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_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_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_thermal_of_zone_register +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_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_free +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_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_audit_log_bio +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_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_get_reserved_bio_based_ios +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_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_report_zones +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_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_fence_unwrap_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_run_dependencies +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 dmaengine_desc_set_metadata_len +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_tcp_sendpages +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_end_walk_at_be +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_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 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_destroy +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 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_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_read_dbi +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_alloc_ctl_info +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_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_create_generic_ctl +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_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 efi_status_to_err +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff elv_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff elv_rqhash_add +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_alloc +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 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 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_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_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_deferred_io_mmap +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_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_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_info_nh_uses_dev +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_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_rules_unregister +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_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff firmware_request_cache +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 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff flush_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff folio_mkclean +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 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff free_io_pgtable_ops +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 free_uid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff free_vm_area +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_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_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_ioctl_remove_key +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_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsstack_copy_inode_size +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_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 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_dev_alloc +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_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_do_open +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_send_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_sync_release +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_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_get_phy_mode +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_next_endpoint +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_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_read_string_array +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_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_pma_baset1_setup_master_slave +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_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_completed_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_governor_parent_kobj +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_net_ns_by_fd +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_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gov_attr_set_put +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_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_get_data +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_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_relres_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_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_array_value +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_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_level_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_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 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_init +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_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_kick +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwmon_device_register_with_info +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_unregister +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_client_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_new_client_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_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_unregister_device +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_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_set_tag +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_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx8ulp_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx93_clk_gate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_pernet_hashinfo_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_rs_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_user_ns +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_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_ff_upload +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 interval_tree_span_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff io_cgrp_subsys +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 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_file_unshare +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_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_attach_group +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_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_get_domain_for_dev_pasid +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 +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_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iov_iter_get_pages_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_datagram_connect_v6_only +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_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_update_pmtu +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_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 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv6_stub +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_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_set_type_parent +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_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_disconnect_hierarchy +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_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_generic_chip_ops +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_get_irq_data +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_setup_generic_chip +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_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff is_virtio_device +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_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_type_encrypted +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 kill_dev_dax +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_init_and_add +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 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kstrdup_quotable_cmdline +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_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_parkme +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 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff l3mdev_table_lookup_unregister +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_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_put +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_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_remove +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 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 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 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_input +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_empty_area +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_empty_area_rev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_erase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_expected_entries +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_find +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_prev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_store_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mas_store_prealloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_request_channel_byname +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_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_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_run +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mdio_bus_exit +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_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff metadata_dst_free +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 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmput_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmu_interval_notifier_insert +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_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mod_delayed_work_on +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_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_mul +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_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_get_reset_option +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 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mt_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_check_expert_analysis_mode +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_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_pairing_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_point +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_read_fact_prot_reg +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 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_dividers +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_muxes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_unregister_dividers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_devm_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mmsys_ddp_disconnect +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_mutex_write_mod +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mux_gate_clr_set_upd_ops +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_adv_pull_set +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_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_register_reset_controller_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_clearb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_set_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_set_peripheral +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 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_ecc_choose_conf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_ecc_init_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_erase_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_gpio_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_prog_page_begin_op +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_oob_op +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_readid_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_status_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 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_write_data_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_bbt_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_markbad +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_vlan_rx_kill_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_out_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nd_region_provider_data +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_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_walk_all_lower_dev +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 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_checksum +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 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff no_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nop_mnt_idmap +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_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_add_cell_table +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_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_device_cell_read +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 +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_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_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_hw_onecell_get +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_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_gen_pool_get +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_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_genpd_remove_subdomain +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_phy_mode +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_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_i2c_get_board_info +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_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_msi_get_domain +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_dma_range_parser_init +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_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pm_clk_add_clks +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_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pse_control_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_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_regulator_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reserved_mem_lookup +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 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_iommu_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_reporting_order +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff param_set_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_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_cfg_access_trylock +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_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_doe_supports_prot +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_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_add_epf +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_msix +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_mem_free_addr +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_raise_irq +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_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_probe_reset_slot +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_set_cacheline_size +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_stop_and_remove_bus_device_locked +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_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_vfs_assigned +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_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcim_doe_create_mb +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 perf_aux_output_flag +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_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_disable +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_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_pm_runtime_allow +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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_speed_to_str +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_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_get +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_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_unregister_mappings +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_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinmux_generic_add_function +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_remove_function +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_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_no_callbacks +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_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 poll_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_acl_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_group_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_am_i_supplied +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_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_get_by_phandle +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_notifier +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_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_unregister +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_data +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 pse_ethtool_set_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff psi_memstall_enter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pstore_unregister +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_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_set_chip_data +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_abort +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_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 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_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_btf_fmodret_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_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_nvdimm_pmu +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_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_trace_event +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_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_fields_update_bits_base +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_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_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_reinit_cache +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 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_enable_regmap +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_error_flags +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_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_is_supported_voltage +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_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_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff report_iommu_fault +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_get_count +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_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_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_add_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_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_inb_pwrite_handler +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_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_read_config_16 +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_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_register_scan +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_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unregister_scan +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_armclk +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_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pcie_get_phys +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 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_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff run_dax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sampling_rate_store +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_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_clear +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_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sch_frag_xmit_hook +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_setattr_nocheck +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_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff screen_pos +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_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_dh_set_params +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_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_unregister_device_handler +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_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_register +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_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_switch_external_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_claim_irq +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_readl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_retune_crc_enable +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_writel +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_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff security_kernel_post_load_data +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_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_open +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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_do_get_mctrl +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_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_em485_supported +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_set_defaults +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_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_register_socket +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_digest +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_free_nocharge +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_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_copy_ubufs +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_morph +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_alloc_instance_simple +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 sm501_unit_power +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_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_card_rw_proc_new +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_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_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_device_get_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_devm_alloc_dir_pages +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_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_trigger +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_format_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_hw_constraint_eld +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_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_power_ref_and_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_bytes_get +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_card_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_disable_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_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_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_compr_get_metadata +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_startup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_tdm_slot +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_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_disable_pin_unlocked +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_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_free +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_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_update_dai +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_runtime_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_free_ac97_component +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_strobe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_info_volsw_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_zones +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_limit_volume +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_nolocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_parse_audio_simple_widgets +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_pin_switches +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_parse_tdm_slot +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_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_runtime_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_unregister_card +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_register +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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_map_close +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_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_finalize_current_message +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_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_unregister_device +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_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff srcu_notifier_chain_register +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 start_poll_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff strp_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff swphy_validate_state +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 synchronize_srcu_expedited +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_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff syscon_node_to_regmap +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_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_groups +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_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_remove_link +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 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_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_bpf_update_proto +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_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_parse_mss_option +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_unregister_ulp +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_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_mc_get_carveout_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_read_ram_code +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_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_cooling_device_unregister +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_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_get_temp +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 ti_cm_get_macid +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 timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff timer_shutdown_sync +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 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff to_of_pinfo +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_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_array_init_printk +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_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_remove_event_call +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_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_mode_ioctl +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_link_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_wakeup +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_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_memory_per_cpu_fw_alloc +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_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_ftrace_export +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_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_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_add_gadget_udc +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_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_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_asmedia_modifyflowcontrol +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_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_cache_string +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_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_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_enable_ltm +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_find_interface +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_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_map_request_by_dev +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_vbus_disconnect +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_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_role_switch_default_mode +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_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_start_port_resume +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_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_initialize_gadget +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_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_lock_device_for_reset +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_device_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_get_charger_current +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_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_put_dev +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_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_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_interface +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_submit_urb +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_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_wakeup_notification +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 vcap_add_rule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_chain_id_to_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_copy_rule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_mod_rule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_find_keysets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_get_counter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_set_rule_set_actionset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_set_rule_set_keyset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_reset_device +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_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_get_vring_size +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 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_get_queue_size +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_generation +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_driver_features +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_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_queue_address +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_reset +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_for_stable_page +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_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_reg_write +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_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wwan_unregister_ops +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_do_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_do_redirect_frame +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_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_state_icvfail +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_local_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_resume +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 zap_vma_ptes +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 +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0d693a5e cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0ef413a8 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0fafd03d cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x153bfa0a cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x29f41a45 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x2d4589de cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x31651889 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x37a475d7 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x47cfe0af cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x53da54f0 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e544346 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7670af5e cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7fffffff cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x7fffffff hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x7fffffff 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 0x7fffffff ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x7fffffff ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x477efcfb ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x7fffffff ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x2b0aae37 ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x50475ad0 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x30a35e8b adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x7bccb1b6 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0018c324 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x16d7f55d __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x35227331 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x38a252d0 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x40e6a99a adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6926c8de devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x7fffffff __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x2694d0af devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x7fffffff adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x49a9104a adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl312_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl312_writable_regs_table 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_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl314_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl314_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl31x_chip_info drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x0892d788 adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4d2f5e0f adxl35x_chip_info 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 0x3eea81d9 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x7fffffff adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x7fffffff adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x23d0f9e1 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x48bb7f32 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x635a0106 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sd_init 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_validate_trigger 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_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x3ef958a2 bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0x7fffffff bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x53b40abf bmc150_accel_core_probe 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_accel_pm_ops 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 0x1af04a21 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x3b90f39c bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x756dd1aa bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7fffffff bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x7fffffff bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x5279a327 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x11b94375 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x42b3ecdf bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x7fffffff bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x7fffffff bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x701611f7 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL 0x7fffffff bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0x7fffffff bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x2fc01084 bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x7fffffff bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x7fffffff bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x7fffffff bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x1149f1f4 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x7fffffff bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x08c42aa7 fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x7fffffff fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x7fffffff fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x34a41e61 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x5f54f73a fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x63c2f1dc fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x7fffffff fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x076f01e6 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x0ad0221a hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x361f365d hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x5d2c8063 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x62aad3c1 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x6b777a93 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 0x7fffffff hid_sensor_convert_timestamp 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_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +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_raw_hyst_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 0x22626927 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x399aec4c hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x65176c93 hid_sensor_set_report_latency 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 0x62b081ca hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7463eb64 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7fffffff hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x063025a2 hts221_probe drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0x78f2e5e6 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x792e2a42 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x7bc95192 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x7fffffff inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x7fffffff kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0x7fffffff kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x09c43742 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x4903a6ca kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x7fffffff kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x456947b6 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0x6d1d3743 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +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 0x0ea3a192 ms_sensors_read_temp_and_pressure 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 0x7fffffff ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_ht_read_temperature 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_show_battery_low 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 0x053b9de2 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x4ea08010 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x63fa2dc6 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x00878d83 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x12a7e0fb mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x39857173 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x47a9628b mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4c0802a8 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x535a981e mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x665b084d mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x6e21cf05 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x758022db mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7d6e26f5 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_gpio_config 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_status_word 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_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0x7fffffff mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x45c202d3 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x2b678f53 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x7fffffff inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x29690da7 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0x7fffffff ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x1865c5dc rescale_process_offset drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0x7fffffff rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x2d888142 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 0x31d2f58a scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x7fffffff scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0x7fffffff sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x3cce7179 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x4d25e004 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x5e54a9ba ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x6a0e9eef ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7fffffff ssp_common_buffer_postenable 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_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7fffffff ssp_get_sensor_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 0x0ea14e13 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x138f402a st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x240861a3 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x266e0d6a st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x3e3c783a st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x3f874e87 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x545b9a41 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x54dc5173 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x5d93b6ce st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6f1b059f st_press_common_probe drivers/iio/pressure/st_pressure +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_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_gyro_get_settings 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_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_get_settings_index 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_power_enable 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_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_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x7a97ed63 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x69601a35 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x7fffffff st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x0c0f12f2 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x0e71ff56 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x37749a62 zpa2326_remove 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 +IOMMUFD EXPORT_SYMBOL_GPL 0x06ba0de1 iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x388fb212 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x3fccad49 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x475b73a1 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x68c693e8 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7a1516da iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fffffff iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fffffff iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fffffff iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fffffff iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x082e2acc iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x00dce049 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x026f41ae iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0758908e iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0accdf17 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x115a0f96 iwl_finish_nic_init 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 0x1c9856b3 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1e11c8f4 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1e987710 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1ed1184f iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x25331004 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2a47d469 iwl_fw_dbg_stop_restart_recording 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 0x2e0e5f73 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2ef76ea0 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x31da22b7 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x325ad882 iwl_parse_nvm_mcc_info 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 0x39144807 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x407a734d iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x46df0e70 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x47872cdb iwl_write_prph_no_grab 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 0x4c091270 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5ef4a44d iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5f6e583c __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5faef736 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x654dc10a iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6914339e iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6a0e2091 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6f3c375b iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x71e72774 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x742658e4 iwl_phy_db_init 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 0x7afce35d iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7ec19c44 iwl_write_prph_delay 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_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_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_force_nmi 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_trig 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_stop_sync 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_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_nvm_data 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_poll_direct_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_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_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_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_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_write_direct64 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 0x069598d5 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x076560c7 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x699d2713 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff __mcb_register_driver 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_get 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_free_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_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_request_mem drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x7acd9ba4 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x7fffffff ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0x7fffffff ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x06850319 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x17939caa nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x36a46b6a nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x71fffbf3 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7fffffff nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7fffffff nvme_passthru_end drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x0a20b2b2 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x239586c2 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3a38f1fe peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x503513e5 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x556abcf7 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x594a5a72 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6310ed6a peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x68d7a26f peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x68f03916 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7291999e peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7644e378 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x78d2b3dd __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_request_data_readq 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_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_pci_cfg_local_readw 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_get_temp 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 0x03636079 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x174bafba peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x47022392 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x492b0c81 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x7fffffff peci_ep_pci_local_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x0246cd7c pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x24670a35 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x420ac3c9 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x69537067 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x78d83699 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x79208882 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_get_debugfs_dir 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_get_fan_rate_device 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_update_byte_data 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 +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x51a9498b sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x5a2ad91b sx_common_read_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_probe 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 0x0b42c02b cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x0b968cec cs35l45_remove 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 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x2a3effac cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x395e1573 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4040ce86 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x5a5453fe cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7fffffff cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x01284214 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x114cd125 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x48dd0b19 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x5c0a3eae dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x6c2e6f69 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x770bcbef dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x78ffb7ef dw_spi_dma_setup_generic 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_suspend_host drivers/spi/spi-dw +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x7fffffff firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x045a573e usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x064de0f2 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x08057be3 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x15fa0624 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x24b15cc3 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2df34367 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3e0580bb usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x405e3dc5 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4ffbf345 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x54dc16b8 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x71190e10 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x769a7d43 usb_stor_Bulk_reset 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_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_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_clear_halt 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_disconnect 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_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_reset_resume drivers/usb/storage/usb-storage --- linux-gcp-6.2.0.orig/debian.master/abi/armhf/generic-lpae.compiler +++ linux-gcp-6.2.0/debian.master/abi/armhf/generic-lpae.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 12.2.0-17ubuntu1) 12.2.0 --- linux-gcp-6.2.0.orig/debian.master/abi/armhf/generic-lpae.modules +++ linux-gcp-6.2.0/debian.master/abi/armhf/generic-lpae.modules @@ -0,0 +1,6946 @@ +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 +BusLogic +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 +ad4130 +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 +ad74115 +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 +adf4377 +adf7242 +adfs +adi +adi-axi-adc +adiantum +adin +adin1100 +adin1110 +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 +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_dwc +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 +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 +anx7411 +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 +ar0521 +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 +aria_generic +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_mhu +arm_mhu_db +arm_mhuv2 +arm_scmi_powercap +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_crypto +aspeed_edac +aspeed_gfx +aspeed_udc +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-phy-ptp +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 +bno055 +bno055_i2c +bno055_ser +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 +brcmfmac-bca +brcmfmac-cyw +brcmfmac-wcc +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 +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 +camcc-sm8450 +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +can327 +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-mt6795-apmixedsys +clk-mt6795-infracfg +clk-mt6795-mfg +clk-mt6795-mm +clk-mt6795-pericfg +clk-mt6795-topckgen +clk-mt6795-vdecsys +clk-mt6795-vencsys +clk-mt8365 +clk-mt8365-apu +clk-mt8365-cam +clk-mt8365-mfg +clk-mt8365-mm +clk-mt8365-vdec +clk-mt8365-venc +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-versaclock7 +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 +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_hps_i2c +cros_kbd_led_backlight +cros_peripheral_charger +cros_usbpd-charger +cros_usbpd_logger +cros_usbpd_notify +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +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 +cyttsp5 +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da7280 +da9030_battery +da9034-ts +da903x-regulator +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062-thermal +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9121-regulator +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +defxx +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-sc8280xp +dispcc-sdm845 +dispcc-sm6115 +dispcc-sm6125 +dispcc-sm6350 +dispcc-sm6375 +dispcc-sm8250 +dispcc-sm8450 +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 +dnet +dove_thermal +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_buddy +drm_display_helper +drm_dma_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-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 +dw100 +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 +dwmac-tegra +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 +emc2305 +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_usb +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 +fit2 +fit3 +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +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-msm8909 +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-sm6375 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gcc-sm8450 +gcc-sm8550 +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-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-idio-16 +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-latch +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-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-sc8280xp +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm6350 +gpucc-sm8150 +gpucc-sm8250 +gpucc-sm8350 +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_bcm4377 +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hctr2 +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 +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-pxrc +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-topre +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-vivaldi-common +hid-vrc2 +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +highbank-cpufreq +highbank_l2_edac +highbank_mc_edac +hih6130 +himax_hx83112b +hip04_eth +hisi-rng +hisi-sfc +hisi-spmi-controller +hisi504_nand +hisi_dma +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 +hynitron_cstxxx +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-elan +i2c-hid-of-goodix +i2c-hix5hd2 +i2c-i801 +i2c-imx-lpi2c +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mchp-pci1xxxx +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-rzv2m +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 +ibm-panel +ibmaem +ibmpex +icc-bcm-voter +icc-bwmon +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-lcdif +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 +imx8mp-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx8qm-ldb +imx8qxp-adc +imx8qxp-ldb +imx8qxp-pixel-combiner +imx8qxp-pixel-link +imx8qxp-pxl2dpi +imx93-blk-ctrl +imx93-pd +imx93-src +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_qat +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 +iommufd +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-imx-mu-msi +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 +kionix-kx022a +kionix-kx022a-i2c +kionix-kx022a-spi +kl5kusb105 +kmx61 +kobil_sct +komeda +kpss-xcc +krait-cc +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz884x +ksz8863_smi +ksz9477_i2c +ksz_spi +ksz_switch +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 +lattice-sysconfig +lattice-sysconfig-spi +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 +libwx +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 +logicvc-drm +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 +lt7182s +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 +ltrf216a +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 +max11205 +max11410 +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 +max30208 +max3100 +max31722 +max31730 +max31760 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +max6621 +max6639 +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 +mchp_pci1xxxx_gp +mchp_pci1xxxx_gpio +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_ddr_pmu_g12 +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-spi +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 +msa311 +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 +mt6331-regulator +mt6332-regulator +mt6357-regulator +mt6358-regulator +mt6359-accdet +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6370 +mt6370-adc +mt6370-backlight +mt6370-charger +mt6370-regulator +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 +mt7996e +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8186-mt6366-da7219-max98357 +mt8186-mt6366-rt1019-rt5682s +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-cci-devfreq +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-svs +mtk-uart-apdma +mtk-vpu +mtk_dp +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 +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-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_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 +ngbe +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-common +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_mtk-efuse +nvmem_qcom-spmi-sdam +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmem_sunplus_ocotp +nvmem_u-boot-env +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 +ocelot-soc +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 +onboard_usb_hub +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 +ov08x40 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov4689 +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-ebbg-ft8719 +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-jadard-jd9365da-h3 +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-nv3051d +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-epf-vntb +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-altera-tse +pcs-lynx +pcs-rzn1-miic +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-mipi-dphy-analog +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson8-hdmi-tx +phy-meson8b-usb2 +phy-mtk-dp +phy-mtk-hdmi-drv +phy-mtk-mipi-dsi-drv +phy-mtk-pcie +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-combo +phy-qcom-qmp-pcie +phy-qcom-qmp-pcie-msm8996 +phy-qcom-qmp-ufs +phy-qcom-qmp-usb +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-snps-pcie3 +phy-rockchip-typec +phy-rockchip-usb +phy-sunplus-usb2 +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-cy8c95x0 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-imx93 +pinctrl-ipq4019 +pinctrl-ipq8064 +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-msm8909 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8x74 +pinctrl-rk805 +pinctrl-sdx55 +pinctrl-sdx65 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pinephone-keyboard +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +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 +polynomial +polyval-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 +pse_regulator +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-clk +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-sunplus +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 +qat_4xxx +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +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-rradc +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-sm6350 +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 +r8a779f0-ether-serdes +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 +reset-tps380x +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 +rk817_charger +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 +rswitch_drv +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5120 +rt5120-pwrkey +rt5120-regulator +rt5190a-regulator +rt5759-regulator +rt6160-regulator +rt6190-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-nct3018y +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-sunplus +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 +rtq6056 +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_8723du +rtw88_8821c +rtw88_8821ce +rtw88_8821cu +rtw88_8822b +rtw88_8822be +rtw88_8822bu +rtw88_8822c +rtw88_8822ce +rtw88_8822cu +rtw88_core +rtw88_pci +rtw88_usb +rtw89_8852a +rtw89_8852ae +rtw89_8852b +rtw89_8852be +rtw89_8852c +rtw89_8852ce +rtw89_core +rtw89_pci +rx51_battery +rxrpc +rza_wdt +rzg2l-cru +rzg2l-csi2 +rzg2l_mipi_dsi +rzg2l_thermal +rzg2l_wdt +rzn1-dmamux +rzn1_a5psw +rzn1_wdt +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +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 +scmi_power_control +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 +smc_diag +smd-rpm +smem +smipcie +smm665 +smp2p +smpro-core +smpro-errmon +smpro-hwmon +smpro-misc +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-ext-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-cs42l42-i2c +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42l83-i2c +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-es8326 +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-utils +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hda-codec +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-mt8186-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-qcom-sdw +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-rt1318-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-sc8280xp +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-src4xxx +snd-soc-src4xxx-i2c +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-tas2780 +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-ope +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-wm8961 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-wsa881x +snd-soc-wsa883x +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 +sp7021_emac +sp805_wdt +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-gxp +spi-imx +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-microchip-core +spi-microchip-core-qspi +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-pci1xxxx +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-sn-f-ospi +spi-sunplus-sp7021 +spi-tegra114 +spi-tegra20-sflash +spi-tegra20-slink +spi-tegra210-quad +spi-ti-qspi +spi-tle62x0 +spi-wpcm-fiu +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 +ssif_bmc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st-vgxy61 +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 +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 +sunplus-mmc +sunplus_wdt +sunrise_co2 +sunrpc +sur40 +surface3_spi +svc-i3c-master +svgalib +switchtec +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_none +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_rtl8_4 +tag_rzn1_a5psw +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 +tc358746 +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_mt6370 +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-dlpc3433 +ti-ecap-capture +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 +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 +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps546d24 +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 +tps65219 +tps65219-pwrbutton +tps65219-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 +txgbe +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ublk_drv +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucc_uart +ucd9000 +ucd9200 +ucs1002_power +ucsi_ccg +ucsi_stm32g0 +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-hisi +ufs-mediatek +ufs-renesas +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 +vcpu_stall_detector +vctrl-regulator +vdpa +vdpa_sim +vdpa_sim_blk +vdpa_sim_net +vduse +veml6030 +veml6070 +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vexpress-spc-cpufreq +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-pci +vfio-pci-core +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +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 +visl +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +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 +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 +xctr +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 +zram +zstd --- linux-gcp-6.2.0.orig/debian.master/abi/armhf/generic-lpae.retpoline +++ linux-gcp-6.2.0/debian.master/abi/armhf/generic-lpae.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED --- linux-gcp-6.2.0.orig/debian.master/abi/armhf/generic.compiler +++ linux-gcp-6.2.0/debian.master/abi/armhf/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 12.2.0-17ubuntu1) 12.2.0 --- linux-gcp-6.2.0.orig/debian.master/abi/armhf/generic.modules +++ linux-gcp-6.2.0/debian.master/abi/armhf/generic.modules @@ -0,0 +1,6948 @@ +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 +BusLogic +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 +ad4130 +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 +ad74115 +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 +adf4377 +adf7242 +adfs +adi +adi-axi-adc +adiantum +adin +adin1100 +adin1110 +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 +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_dwc +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 +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 +anx7411 +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 +ar0521 +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 +aria_generic +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_mhu +arm_mhu_db +arm_mhuv2 +arm_scmi_powercap +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_crypto +aspeed_edac +aspeed_gfx +aspeed_udc +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-phy-ptp +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 +bno055 +bno055_i2c +bno055_ser +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 +brcmfmac-bca +brcmfmac-cyw +brcmfmac-wcc +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 +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 +camcc-sm8450 +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +can327 +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-mt6795-apmixedsys +clk-mt6795-infracfg +clk-mt6795-mfg +clk-mt6795-mm +clk-mt6795-pericfg +clk-mt6795-topckgen +clk-mt6795-vdecsys +clk-mt6795-vencsys +clk-mt8365 +clk-mt8365-apu +clk-mt8365-cam +clk-mt8365-mfg +clk-mt8365-mm +clk-mt8365-vdec +clk-mt8365-venc +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-versaclock7 +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 +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_hps_i2c +cros_kbd_led_backlight +cros_peripheral_charger +cros_usbpd-charger +cros_usbpd_logger +cros_usbpd_notify +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +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 +cyttsp5 +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da7280 +da8xx-fb +da9030_battery +da9034-ts +da903x-regulator +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062-thermal +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9121-regulator +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +defxx +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-sc8280xp +dispcc-sdm845 +dispcc-sm6115 +dispcc-sm6125 +dispcc-sm6350 +dispcc-sm6375 +dispcc-sm8250 +dispcc-sm8450 +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 +dnet +dove_thermal +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_buddy +drm_display_helper +drm_dma_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-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 +dw100 +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 +dwmac-tegra +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 +emc2305 +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_usb +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 +fit2 +fit3 +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +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-msm8909 +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-sm6375 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gcc-sm8450 +gcc-sm8550 +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-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-idio-16 +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-latch +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-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-sc8280xp +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm6350 +gpucc-sm8150 +gpucc-sm8250 +gpucc-sm8350 +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_bcm4377 +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hctr2 +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 +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-pxrc +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-topre +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-vivaldi-common +hid-vrc2 +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 +himax_hx83112b +hip04_eth +hisi-rng +hisi-sfc +hisi-spmi-controller +hisi504_nand +hisi_dma +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 +hynitron_cstxxx +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-elan +i2c-hid-of-goodix +i2c-hix5hd2 +i2c-i801 +i2c-imx-lpi2c +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mchp-pci1xxxx +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-rzv2m +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 +ibm-panel +ibmaem +ibmpex +icc-bcm-voter +icc-bwmon +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-lcdif +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 +imx8mp-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx8qm-ldb +imx8qxp-adc +imx8qxp-ldb +imx8qxp-pixel-combiner +imx8qxp-pixel-link +imx8qxp-pxl2dpi +imx93-blk-ctrl +imx93-pd +imx93-src +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_qat +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 +iommufd +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-imx-mu-msi +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 +kionix-kx022a +kionix-kx022a-i2c +kionix-kx022a-spi +kl5kusb105 +kmx61 +kobil_sct +komeda +kpss-xcc +krait-cc +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz884x +ksz8863_smi +ksz9477_i2c +ksz_spi +ksz_switch +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 +lattice-sysconfig +lattice-sysconfig-spi +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 +libwx +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 +logicvc-drm +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 +lt7182s +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 +ltrf216a +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 +max11205 +max11410 +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 +max30208 +max3100 +max31722 +max31730 +max31760 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +max6621 +max6639 +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 +mchp_pci1xxxx_gp +mchp_pci1xxxx_gpio +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_ddr_pmu_g12 +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-spi +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 +msa311 +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 +mt6331-regulator +mt6332-regulator +mt6357-regulator +mt6358-regulator +mt6359-accdet +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6370 +mt6370-adc +mt6370-backlight +mt6370-charger +mt6370-regulator +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 +mt7996e +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8186-mt6366-da7219-max98357 +mt8186-mt6366-rt1019-rt5682s +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-cci-devfreq +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-svs +mtk-uart-apdma +mtk-vpu +mtk_dp +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 +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-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_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 +ngbe +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-common +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-rave-sp-eeprom +nvmem-reboot-mode +nvmem-rmem +nvmem-rockchip-otp +nvmem-uniphier-efuse +nvmem_meson_mx_efuse +nvmem_mtk-efuse +nvmem_qcom-spmi-sdam +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmem_sunplus_ocotp +nvmem_u-boot-env +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 +ocelot-soc +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 +onboard_usb_hub +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 +ov08x40 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov4689 +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-ebbg-ft8719 +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-jadard-jd9365da-h3 +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-nv3051d +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-epf-vntb +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-altera-tse +pcs-lynx +pcs-rzn1-miic +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-mipi-dphy-analog +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson8-hdmi-tx +phy-meson8b-usb2 +phy-mtk-dp +phy-mtk-hdmi-drv +phy-mtk-mipi-dsi-drv +phy-mtk-pcie +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-combo +phy-qcom-qmp-pcie +phy-qcom-qmp-pcie-msm8996 +phy-qcom-qmp-ufs +phy-qcom-qmp-usb +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-snps-pcie3 +phy-rockchip-typec +phy-rockchip-usb +phy-sunplus-usb2 +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-cy8c95x0 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-imx93 +pinctrl-ipq4019 +pinctrl-ipq8064 +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-msm8909 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8x74 +pinctrl-rk805 +pinctrl-sdx55 +pinctrl-sdx65 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pinephone-keyboard +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +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 +polynomial +polyval-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 +pse_regulator +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-clk +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-sunplus +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 +qat_4xxx +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +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-rradc +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-sm6350 +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 +r8a779f0-ether-serdes +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 +reset-tps380x +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 +rk817_charger +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 +rswitch_drv +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5120 +rt5120-pwrkey +rt5120-regulator +rt5190a-regulator +rt5759-regulator +rt6160-regulator +rt6190-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-nct3018y +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-sunplus +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 +rtq6056 +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_8723du +rtw88_8821c +rtw88_8821ce +rtw88_8821cu +rtw88_8822b +rtw88_8822be +rtw88_8822bu +rtw88_8822c +rtw88_8822ce +rtw88_8822cu +rtw88_core +rtw88_pci +rtw88_usb +rtw89_8852a +rtw89_8852ae +rtw89_8852b +rtw89_8852be +rtw89_8852c +rtw89_8852ce +rtw89_core +rtw89_pci +rx51_battery +rxrpc +rza_wdt +rzg2l-cru +rzg2l-csi2 +rzg2l_mipi_dsi +rzg2l_thermal +rzg2l_wdt +rzn1-dmamux +rzn1_a5psw +rzn1_wdt +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +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 +scmi_power_control +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 +smc_diag +smd-rpm +smem +smipcie +smm665 +smp2p +smpro-core +smpro-errmon +smpro-hwmon +smpro-misc +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-ext-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-cs42l42-i2c +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42l83-i2c +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-es8326 +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-utils +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hda-codec +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-mt8186-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-qcom-sdw +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-rt1318-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-sc8280xp +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-src4xxx +snd-soc-src4xxx-i2c +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-tas2780 +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-ope +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-wm8961 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-wsa881x +snd-soc-wsa883x +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 +sp7021_emac +sp805_wdt +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-gxp +spi-imx +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-microchip-core +spi-microchip-core-qspi +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-pci1xxxx +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-sn-f-ospi +spi-sunplus-sp7021 +spi-tegra114 +spi-tegra20-sflash +spi-tegra20-slink +spi-tegra210-quad +spi-ti-qspi +spi-tle62x0 +spi-wpcm-fiu +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 +ssif_bmc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st-vgxy61 +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 +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 +sunplus-mmc +sunplus_wdt +sunrise_co2 +sunrpc +sur40 +surface3_spi +svc-i3c-master +svgalib +switchtec +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_none +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_rtl8_4 +tag_rzn1_a5psw +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 +tc358746 +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_mt6370 +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-dlpc3433 +ti-ecap-capture +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 +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 +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps546d24 +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 +tps65219 +tps65219-pwrbutton +tps65219-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 +txgbe +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ublk_drv +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucc_uart +ucd9000 +ucd9200 +ucs1002_power +ucsi_ccg +ucsi_stm32g0 +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-hisi +ufs-mediatek +ufs-renesas +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 +vcpu_stall_detector +vctrl-regulator +vdpa +vdpa_sim +vdpa_sim_blk +vdpa_sim_net +vduse +veml6030 +veml6070 +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vexpress-spc-cpufreq +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-pci +vfio-pci-core +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +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 +visl +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +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 +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 +xctr +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 +zram +zstd --- linux-gcp-6.2.0.orig/debian.master/abi/armhf/generic.retpoline +++ linux-gcp-6.2.0/debian.master/abi/armhf/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED --- linux-gcp-6.2.0.orig/debian.master/abi/fwinfo +++ linux-gcp-6.2.0/debian.master/abi/fwinfo @@ -0,0 +1,2181 @@ +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_sjt_mec.bin +firmware: amdgpu/aldebaran_sjt_mec2.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_4_dmcub.bin +firmware: amdgpu/dcn_3_1_5_dmcub.bin +firmware: amdgpu/dcn_3_1_6_dmcub.bin +firmware: amdgpu/dcn_3_2_0_dmcub.bin +firmware: amdgpu/dcn_3_2_1_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/gc_11_0_3_imu.bin +firmware: amdgpu/gc_11_0_3_me.bin +firmware: amdgpu/gc_11_0_3_mec.bin +firmware: amdgpu/gc_11_0_3_mes.bin +firmware: amdgpu/gc_11_0_3_mes1.bin +firmware: amdgpu/gc_11_0_3_pfp.bin +firmware: amdgpu/gc_11_0_3_rlc.bin +firmware: amdgpu/gc_11_0_4_imu.bin +firmware: amdgpu/gc_11_0_4_me.bin +firmware: amdgpu/gc_11_0_4_mec.bin +firmware: amdgpu/gc_11_0_4_mes.bin +firmware: amdgpu/gc_11_0_4_mes1.bin +firmware: amdgpu/gc_11_0_4_pfp.bin +firmware: amdgpu/gc_11_0_4_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_0_ta.bin +firmware: amdgpu/psp_13_0_10_sos.bin +firmware: amdgpu/psp_13_0_10_ta.bin +firmware: amdgpu/psp_13_0_11_ta.bin +firmware: amdgpu/psp_13_0_11_toc.bin +firmware: amdgpu/psp_13_0_4_ta.bin +firmware: amdgpu/psp_13_0_4_toc.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_7_ta.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/sdma_6_0_3.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_10.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_2.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: 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/brcmbt4377*.bin +firmware: brcm/brcmbt4377*.ptb +firmware: brcm/brcmbt4378*.bin +firmware: brcm/brcmbt4378*.ptb +firmware: brcm/brcmbt4387*.bin +firmware: brcm/brcmbt4387*.ptb +firmware: brcm/brcmfmac*-pcie.*.bin +firmware: brcm/brcmfmac*-pcie.*.clm_blob +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/brcmfmac43439-sdio.bin +firmware: brcm/brcmfmac43439-sdio.clm_blob +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/brcmfmac4355-pcie.bin +firmware: brcm/brcmfmac4355-pcie.clm_blob +firmware: brcm/brcmfmac4355c1-pcie.bin +firmware: brcm/brcmfmac4355c1-pcie.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/brcmfmac4364b2-pcie.bin +firmware: brcm/brcmfmac4364b2-pcie.clm_blob +firmware: brcm/brcmfmac4364b3-pcie.bin +firmware: brcm/brcmfmac4364b3-pcie.clm_blob +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: brcm/brcmfmac4377b3-pcie.bin +firmware: brcm/brcmfmac4377b3-pcie.clm_blob +firmware: brcm/brcmfmac4378b1-pcie.bin +firmware: brcm/brcmfmac4378b1-pcie.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: 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/adlp_guc_70.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.bin +firmware: i915/dg1_huc.bin +firmware: i915/dg2_dmc_ver2_08.bin +firmware: i915/dg2_guc_70.bin +firmware: i915/dg2_huc_gsc.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_guc_70.bin +firmware: i915/tgl_huc.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-BzBnj-b0-fm-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-fm4-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-gl-b0-fm-b0-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: mediatek/mt7996/mt7996_rom_patch.bin +firmware: mediatek/mt7996/mt7996_wa.bin +firmware: mediatek/mt7996/mt7996_wm.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/ga102/acr/ucode_ahesasc.bin +firmware: nvidia/ga102/acr/ucode_asb.bin +firmware: nvidia/ga102/acr/ucode_unload.bin +firmware: nvidia/ga102/gr/NET_img.bin +firmware: nvidia/ga102/gr/fecs_bl.bin +firmware: nvidia/ga102/gr/fecs_sig.bin +firmware: nvidia/ga102/gr/gpccs_bl.bin +firmware: nvidia/ga102/gr/gpccs_sig.bin +firmware: nvidia/ga102/nvdec/scrubber.bin +firmware: nvidia/ga102/sec2/desc.bin +firmware: nvidia/ga102/sec2/hs_bl_sig.bin +firmware: nvidia/ga102/sec2/image.bin +firmware: nvidia/ga102/sec2/sig.bin +firmware: nvidia/ga103/acr/ucode_ahesasc.bin +firmware: nvidia/ga103/acr/ucode_asb.bin +firmware: nvidia/ga103/acr/ucode_unload.bin +firmware: nvidia/ga103/gr/NET_img.bin +firmware: nvidia/ga103/gr/fecs_bl.bin +firmware: nvidia/ga103/gr/fecs_sig.bin +firmware: nvidia/ga103/gr/gpccs_bl.bin +firmware: nvidia/ga103/gr/gpccs_sig.bin +firmware: nvidia/ga103/nvdec/scrubber.bin +firmware: nvidia/ga103/sec2/desc.bin +firmware: nvidia/ga103/sec2/hs_bl_sig.bin +firmware: nvidia/ga103/sec2/image.bin +firmware: nvidia/ga103/sec2/sig.bin +firmware: nvidia/ga104/acr/ucode_ahesasc.bin +firmware: nvidia/ga104/acr/ucode_asb.bin +firmware: nvidia/ga104/acr/ucode_unload.bin +firmware: nvidia/ga104/gr/NET_img.bin +firmware: nvidia/ga104/gr/fecs_bl.bin +firmware: nvidia/ga104/gr/fecs_sig.bin +firmware: nvidia/ga104/gr/gpccs_bl.bin +firmware: nvidia/ga104/gr/gpccs_sig.bin +firmware: nvidia/ga104/nvdec/scrubber.bin +firmware: nvidia/ga104/sec2/desc.bin +firmware: nvidia/ga104/sec2/hs_bl_sig.bin +firmware: nvidia/ga104/sec2/image.bin +firmware: nvidia/ga104/sec2/sig.bin +firmware: nvidia/ga106/acr/ucode_ahesasc.bin +firmware: nvidia/ga106/acr/ucode_asb.bin +firmware: nvidia/ga106/acr/ucode_unload.bin +firmware: nvidia/ga106/gr/NET_img.bin +firmware: nvidia/ga106/gr/fecs_bl.bin +firmware: nvidia/ga106/gr/fecs_sig.bin +firmware: nvidia/ga106/gr/gpccs_bl.bin +firmware: nvidia/ga106/gr/gpccs_sig.bin +firmware: nvidia/ga106/nvdec/scrubber.bin +firmware: nvidia/ga106/sec2/desc.bin +firmware: nvidia/ga106/sec2/hs_bl_sig.bin +firmware: nvidia/ga106/sec2/image.bin +firmware: nvidia/ga106/sec2/sig.bin +firmware: nvidia/ga107/acr/ucode_ahesasc.bin +firmware: nvidia/ga107/acr/ucode_asb.bin +firmware: nvidia/ga107/acr/ucode_unload.bin +firmware: nvidia/ga107/gr/NET_img.bin +firmware: nvidia/ga107/gr/fecs_bl.bin +firmware: nvidia/ga107/gr/fecs_sig.bin +firmware: nvidia/ga107/gr/gpccs_bl.bin +firmware: nvidia/ga107/gr/gpccs_sig.bin +firmware: nvidia/ga107/nvdec/scrubber.bin +firmware: nvidia/ga107/sec2/desc.bin +firmware: nvidia/ga107/sec2/hs_bl_sig.bin +firmware: nvidia/ga107/sec2/image.bin +firmware: nvidia/ga107/sec2/sig.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/tegra234/vic.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/gr/sw_veid_bundle_init.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/gr/sw_veid_bundle_init.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/gr/sw_veid_bundle_init.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/gr/sw_veid_bundle_init.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/gr/sw_veid_bundle_init.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/a619_gmu.bin +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-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-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/rtl8188fufw.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/rtw8852b_fw.bin +firmware: rtw89/rtw8852c_fw.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: 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 --- linux-gcp-6.2.0.orig/debian.master/abi/ppc64el/generic +++ linux-gcp-6.2.0/debian.master/abi/ppc64el/generic @@ -0,0 +1,25800 @@ +BRCMFMAC EXPORT_SYMBOL_GPL 0x64d13df3 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0xdbe67bc1 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x184ec951 devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x66df0316 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x73cdefe1 counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x961cd6ee devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xa56f401c counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xe2b5f1ac counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xe6a2d508 counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xf85d34a2 counter_put drivers/counter/counter +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x0dda51a1 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x366632f0 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xe84257ad crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x04956055 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x05cca7b2 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x065e9b67 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0b5497bc cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0d9fd3f2 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x133d5ffa to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1d469093 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1f3307a7 read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x283138d9 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29d2763e devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33c2bdd9 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x360e3ee2 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x36616b88 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3acbeb40 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4bc2f000 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x51cfd815 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x53d91966 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5622291c cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5f78af2b cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6883ab9d cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6a5c6699 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6af91524 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6d75f41f devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x778a30b7 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7b1c9194 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7cedb37b is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux +CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux +CXL EXPORT_SYMBOL_GPL 0x84ed435c to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8b4971cf cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8d1812cd devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x94f54d4f cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9767b799 cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x991a3b77 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9d3f8384 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9d85f4b8 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa0d9d556 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa2b6092a to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa7ef5263 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaa44c605 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xadd5bf36 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaf4c2f5b cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb2368612 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb340d39c to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb5ab40a1 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xba9e8317 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbef6de2a is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc245ca2b find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc55a62b1 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc9fe7066 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcd644e43 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcd8fccf6 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcf0d50f6 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd894825f cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xddd9490a is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe244e20d cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe49187f3 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe9683e02 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf208ab03 is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf3bf8897 to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf88356b0 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfe5b04e9 cxl_decoder_add_locked drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x08927f4f dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1244a196 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x17b7f390 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1987e30b dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2b846011 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3085a649 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x332396ab dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3c96c8a2 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x62d567c0 dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6c189541 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7ddd14ca dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8a45ff8d dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8ad16833 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9ead6c87 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa41c31c7 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb329c20e dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb8ac566b dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xbc0d1e73 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xcd595ef3 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe484e863 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xfea85767 dma_buf_unmap_attachment_unlocked vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EXPORT_SYMBOL arch/powerpc/kvm/kvm 0x8bfba55e 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 0x18b4037f crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x43ee6364 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x6b6bbe67 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x8d32a307 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x9a97935c crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xb7c2fbe1 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/sha3_generic 0x494bff4e crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x76699e83 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xda258fc5 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x167c2a06 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 0x13c6334c suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x6935f28c bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xa21d1055 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 0x0dd8c6ae pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x2518c3f4 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x386a661f pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x5fdeb28b pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x6c520aaa pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x8107270a pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb298fd8d pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xbc8265d6 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xbd2167da paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xc5064944 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xc67b2dcb pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xdc6eb5f7 pi_disconnect +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xc461f7ae btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x3fa14b4a rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x335c594b 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 0x1feb38ff 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 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 0x7f4d4e73 ipmi_add_smi +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 0xa9123267 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0xfc8e6519 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc6e53b5d st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xccbb98d5 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd6037670 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf79b0b5c st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x186a8b2b xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x23ff8565 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xb8acfccd xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x18bffd1b xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x27ef30be xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2906a62f xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x40b88263 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x914e9bb8 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc38d9a6e 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 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0d0c575f fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1023de1d fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x12e52828 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x28764229 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x30ae82cd 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 0x44d9e585 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x45653d89 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x48a43980 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5213946f fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x524ed077 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5eeae74d fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x687b55c5 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6ee5ccee fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x709048f1 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x77274a00 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fa73bda fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8c70f4d2 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf3addf6 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb4e5b5c5 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb7ff4cd6 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc02f9103 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe28aa6d5 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe90fca2c fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xea862f6e fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec00cae4 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf93a5757 fw_card_initialize +EXPORT_SYMBOL drivers/fpga/dfl 0x3144dda9 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0x868155dc __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0xfc480b42 sysconfig_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x004e940d drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x00cc96cd drm_dp_mst_get_port_malloc +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 0x0384b7eb drm_hdmi_avi_infoframe_bars +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 0x07da0543 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x09538bbe drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0ea13da4 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x128c5a6c drm_dp_mst_topology_mgr_destroy +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 0x17d87fba drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x18f0dd5b drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x193a3d29 drm_dp_pcon_reset_frl_config +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 0x1b102032 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1bbd2b8f drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1bc714da drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2359fd9e drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24c3240f drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x25962393 drm_dp_mst_put_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 0x2c344291 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2df88b42 drm_dp_read_dpcd_caps +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 0x316ff4ce drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3463f591 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3577599b drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x35d5eca7 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x36cda7e0 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x37aa1894 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x39a23f66 drm_dp_remove_payload +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 0x3bd1ec3d drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3e5397cb drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40c1a2ad drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43e5318f drm_dp_dpcd_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 0x4703897f drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x497b009d drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d52fa15 drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d66847f drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d71b562 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d95d4ae drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4eb58c97 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4ed39860 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4ed68c88 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4ff24303 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x50b5e634 drm_dp_mst_topology_state_funcs +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 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 0x5a86f411 drm_dp_phy_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b0e7697 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ca480d7 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5d8cae4e drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6040a6d5 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x61c2b5cf drm_dp_get_phy_test_pattern +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 0x63a77fbc drm_dp_mst_get_edid +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 0x668b3b2f drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x66bcfb7b drm_scdc_set_scrambling +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 0x6bb17253 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6fdf354b drm_dp_add_payload_part1 +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 0x75e89b12 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7627928e drm_dp_stop_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 0x77e4e991 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7906ebbd drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x89b42c85 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8c591d34 drm_dp_remote_aux_init +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 0x90f12b5a drm_dp_read_clock_recovery_delay +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 0x93afa8a2 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x948fd52b drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x960fae11 drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x96e58482 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x97480f62 drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x97ecd4d1 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x99a17bc0 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9fb934be drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa0804981 drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa29eee6e drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa380bb1a drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa48fa176 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5b794b0 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa6f0603b drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xadbba02e drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xafa3ad61 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb036bb29 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb0dff3bb drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb176234c drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb1efe684 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb26d464f drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb475dcf9 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb5393ec9 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb66a829d drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb9d74c49 drm_dp_dual_mode_read +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 0xc0e58af1 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc1169a0f drm_dp_mst_topology_mgr_set_mst +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 0xc61f4ffa drm_dp_mst_connector_late_register +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 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcd06ff21 drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcd53e5a6 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcd565c8f drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce93749f drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcfb8cf8b drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd2fc0e17 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd39a22cc drm_lspcon_set_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 0xd6face25 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb60049c drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdeb0c98c drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdec6853c drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdfe3401b drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe0c7c21f drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe0e19601 drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe0e64d75 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe276a8f0 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4458698 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe48c75bd drm_dp_mst_dsc_aux_for_port +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 0xe74fcc87 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe98a6c47 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec18d796 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf4599678 drm_dp_mst_atomic_setup_commit +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 0xfadce91d drm_dp_send_real_edid_checksum +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 0xfe12f8b1 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfed964b5 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00723602 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00f2f12f drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01c94ff1 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01cebc04 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x028c83cc drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03ea815a drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04754a7a drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04fd1a83 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x054a96cc drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05ba5dea drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06465a21 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a93e7a drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e13654 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0814de94 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0913ac7d drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09e63ac2 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b4babf2 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b8ff894 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e0e52 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e5d4907 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ea239ba drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fc3a97d drm_syncobj_get_fd +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 0x12596e92 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1301ee41 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1307f63b __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13540120 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x138e2e35 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14faed4e drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16271cfc drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1630ceab drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x166551ff drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16d12a3f drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1836762a drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1882a944 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18957edf drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18cd2efe drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c9c37c drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a2d33d8 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a51d47e drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b2c4a93 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba722f9 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c28110d drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cea3674 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de97450 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef11014 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f1dcb93 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f4c0430 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1faa72ed drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ff8a5a7 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20d1c250 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2199a9af drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22d93657 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x235d7bbc drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2445fa30 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x247fd15c drm_dev_enter +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 0x25234622 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x254271af drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26aaf5ba drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x276b5be8 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d14d41 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2835f77a drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28644578 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2928216a drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ae7b4d8 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b2639a8 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b60cb8c __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c0edef4 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e655052 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e82b674 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f164f77 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3086db11 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30eda1af drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31a81b06 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31d9267a drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32860271 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ab8c7f __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3436ed86 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x349a12e9 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3505577f drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3526565f drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3750389d drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37777d28 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c99c7e drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38494882 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e7e480 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a33f65 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a28b540 drm_mode_config_reset +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 0x3bbb2905 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bd9e3bd drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cee9365 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d45e277 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dab51ba drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ebea3de drm_crtc_vblank_helper_get_vblank_timestamp +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 0x4105676b __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42100818 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x427d7dc3 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44d132e0 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44dba71f drm_mode_create_aspect_ratio_property +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 0x465cd639 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4880a066 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4882fb1d drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49248e3e drm_crtc_vblank_restore +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 0x4baa5f1b drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c6c6748 drm_gem_lru_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cddae53 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e248872 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2de17a drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e51393d drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e724d0b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fe01a1e drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x503ce38a drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50b4d3bb drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50bce368 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x520a6204 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53226d83 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53cbf8ae drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5465c204 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x546ee90c drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a65124 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54b983a9 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54f9095e drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x554974c2 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d13eae drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55f047fa drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x562969c5 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x569d9957 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c93038 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5787a9c2 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5874f053 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5886c77d drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x595cd419 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x596ccb5f drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a44ddf1 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c4154af drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c81708e drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d4eccfc drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dbffec1 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e478b9b drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f23999a drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc6fafc drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x604692c4 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x613267cc drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61a74c55 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x621f0306 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6282d1cb drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62cedbd8 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x641ea3f0 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x664c7307 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x685f9e78 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ad64d1 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68e66d8d drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6af6fa8b drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bdda245 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c2d24ad drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c90cda3 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c9ff903 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d160290 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dc9b00b drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ecde7a1 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef1c377 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f20952b drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d7f9c3 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d909dc drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x724c02a6 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72782706 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74452ff9 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75b3da70 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x760f848d of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76a2c860 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x776a40f7 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77834fb3 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x784849a4 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a14ce68 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b3eb905 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b47d4c7 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b85894b drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c246801 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7da4c944 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dee5434 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e2f604d drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ffd8832 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80b52cd1 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81061db9 drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82dd9eea drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8356cd5f drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8381604a drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83c787dd drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8414f20b drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8538f35b drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8678db0e drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86cb99d6 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87c3ee0e drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88a3b310 drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x893a0d12 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8953ee89 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a2e7ddf drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad2cff4 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bb9fa2c __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bfe83f1 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c47d768 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cbe9d48 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d281e8a drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de1d88b drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8df14bf7 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e152136 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e483c91 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e757062 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9b0e drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f1f096b drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f5a5e37 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f62f7f7 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90a08c73 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9186746a drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9223f88b __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x930ba29c drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9345ba7d drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94242c1d drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9432cd41 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x947d25d2 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ec907b drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ed24ab drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9565a2f3 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95f52001 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96353294 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9776484b drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x978d9e97 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97ca85f9 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9824eb73 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9912e9dd drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad79332 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b4b6b29 drm_gem_vmap_unlocked +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 0x9be30183 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c255802 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9edddbc4 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fa140e4 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa00a4458 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa05b8884 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1370e96 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1704e3a drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa36499fd drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c591f drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3bdcdcf drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3eb4bfc drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4952a93 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f04eaf drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7987438 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8d315c9 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa2f53d6 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa3387d3 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa71926b drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaabcd5f4 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac76093 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab718eae drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac87d51e devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad53f65b drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae38b471 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaedeb757 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb00f7bed drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb12c9836 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb12ead79 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb159a875 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb23750c8 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26f716e drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3273285 drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb35f64e7 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3e64848 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43802a7 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb505ddce drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb62fe502 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb67b1f4a drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6e57410 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb78d7473 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7d8f6e6 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb81d6572 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbafeb1ce drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbfefe61 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce7b167 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcf83424 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdbb2d5e drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe6ed1f3 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbed7fd6c drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e80246 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1500ed0 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1969f9c drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1e5dd4f drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2b25147 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc335781f drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3c586a7 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a4a693 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4d4b072 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc81ccfa3 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9652e56 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9bfac0e drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb24d95c drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb94b6ad drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc01a05 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc0318e5 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc46c354 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc59b4d7 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc80784c drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccbca6f3 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc2acc5 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdd3a44c drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xced65a89 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf58542f drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfab39bc drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0673ffa drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0aa2226 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd148d9fd drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1cdd8e1 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd476664c drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5aff34a drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6186af9 drm_mode_create_hdmi_colorspace_property +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 0xd6e2879f drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7fd3b3b drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9c9253a drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9ff1050 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda28a847 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda9968a7 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdabf5e25 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb87dadf drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbd54e3b drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc5e17c9 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd189329 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda0a448 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddfdef6b drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdef18b6e drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf33a285 drm_crtc_set_max_vblank_count +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 0xe06319ea drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d75f2 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8828d2d drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8d3909c drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea1088f5 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea1c90b6 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea710800 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeafd2247 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2e7c12 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb9b43a1 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec4dc306 drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed1382ae drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef84a70d drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefe33698 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf01d237f drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf022124e drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf03f7a4f drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf061cbff drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1a6a2fa drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2bcfe26 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2d2d006 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2de4e27 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf32a8335 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf378c292 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3c2c1dd drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf485986d drm_vma_node_allow_once +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf487b7db drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf592ab20 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5e529ee drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6fb2561 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d1bdc7 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d960e6 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf882641e drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf89abfa5 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa04ee0e drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfab33255 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb14f139 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbbc047b drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc9937f drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbd5a310 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbdd3ef5 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc393119 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc41ea3b drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc75bf71 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcd4a11e drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe4144a4 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff184e10 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff9aec74 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffe1b8ac drm_property_destroy +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_dma_helper 0x2313eb35 drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xc7b8f814 drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x019681fc drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0271eca7 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x028cbe23 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02cdde52 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x074cbdec drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d723d18 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e871a73 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f3bd858 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f481a49 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x104afc8c __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1271532d drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b3aa9ba drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b515f5f drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bdb6736 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c066b7e __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d766d21 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1db58170 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e021c43 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1eb06013 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fb2263d drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x217124a0 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22dfd6a0 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22e768ac drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25bab6fb drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x264628e5 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x274f1f32 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d8454cd drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3052185f drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3149d870 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31b0db5a __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33de57c1 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x379250e7 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39839a8a drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3befaefb drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e404001 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fb2ce0d drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x421016c0 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4370d5f2 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44c605cd drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45907ea0 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47e5fd0e drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48bf5536 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a39de60 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c210b24 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d7dfe53 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e3b49de drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ede375e drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f5356ee drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5252b2d0 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5260e201 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5292323e drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52e82dc5 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53bd2629 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55020cf2 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x550cff79 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5762293b drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59c1ee71 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a9704c4 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ac1dabf drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d24ba85 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5eac2ae0 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f006183 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x611631e5 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x649b7f24 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64ff294a devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66ad2af5 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6741322d drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67b5c7f1 drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67b632ae drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67edfec1 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67ef4c78 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d79e04 drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68f369d3 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 0x6b72d57a drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bbf6187 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cd67f41 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e702d4d drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f94a392 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x714f1359 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7181b6d5 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x745d0822 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74ab67e5 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76384abd drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ae60e1 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77057da2 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77fd722b drm_fb_helper_cfb_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7df58f5a __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f2b665c drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f468a3a drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fdfe0be drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8042ffe8 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82add332 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84f13381 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85f45260 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x872db936 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8780ed50 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8999c59b drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a8180df __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ab56f0d drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c28a977 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c8bcfc9 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cb5715e drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e96b0fd drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x937787c1 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x946716ce drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x948104b3 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94c7754e drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bd5e91f drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e5d0a5b drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9faa5b2b drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa174981d drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa23373c1 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4568b91 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa55ddcfc drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa651dcc1 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa73c87c0 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8731962 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa93e8278 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab4b6140 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad3ad04e drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf824d9c drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf82bf97 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafb2877b __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb01703c1 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb189cae7 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb26f2010 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2d3f85e drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb387c752 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3b2a0fa drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb562fa0c drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb56950d2 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb571669b __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5946f1f drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5c7199b drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6ebcf8c drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb863154d drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8e95cd5 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb92dfe8b drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba67d5a4 drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb1dd091 drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd8bec33 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe180da8 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbec5f059 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf065c24 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf5233f0 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf6179cf drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfe651b4 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc049d235 drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1157619 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1b5e685 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1e3e3d2 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc23881a8 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4c0b350 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6076a44 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7a08b9f devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7f0692c drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8376910 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9fc396e __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca9364c5 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcac22eb9 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb71232e drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc78477f drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccbcc289 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xceb7adff drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd05e5daf drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2919d19 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd51742cb drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd731fc73 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7cbe6e7 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd81fb617 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd902dd47 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd98e4be1 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda5d81aa drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdabb786e drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb3b7520 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbf6e8f6 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd0a2c9c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd278d56 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde70bb47 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe04ef804 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0ba98a2 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe318e096 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe48d870d __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5632353 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9285cdd drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb39f2f8 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeba9cb68 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee198636 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3c7a6e6 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3f00b24 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3f0c8a8 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf49cf5a1 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6eb95dd drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7d51ebd __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf80e2dbc drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf924f102 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf96e74bc drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc3527a4 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd4cfb3d drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdf316a3 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe1ab49a drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeb9f593 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0466cb7d mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x04734710 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0fa7d848 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x19e263a1 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1f654941 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3fef5c73 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4065f359 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x457157cf mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4ade419d mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x76d23123 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x81e3fc39 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x976227f4 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x99335823 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xab615cc9 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbc1ff79f mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbcff9503 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc61d85a5 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd6a776fa mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0efcbddb drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x5b0adeda drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7a3f538f drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7a730c16 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7d2cc5a7 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x8ee1a2ba drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x9cefba77 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x9fc78a38 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xab19e983 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb98b7754 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x5bcff705 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x794840f3 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x85a17be4 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8fcacea1 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf8990f39 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1966eac5 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1cd0dd68 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2482cbe0 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x273d49a8 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3ed9cd4e drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3f12cefc drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4301f279 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x55238acf drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x84aa07f9 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x878b813d drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa1175340 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa6092f9c drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc85f0271 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdb36d1dd drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf4865c38 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfb636e14 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x01698a47 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1d2a20f5 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x22b73243 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2a02b02f drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4152a31e drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x41ff73f5 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x44952948 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x55f44ff6 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x580310d1 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5add7da6 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5d585c61 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6310b75d drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7efccf5d drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x849d844f drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x875d1098 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8a6423dc drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8aeb04f8 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8dd72890 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x913a2d58 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaba18335 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbd94b2a4 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf046dadf drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf2691d95 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf8e5ddaf drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01c6f58e ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x056d8e20 ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06b0c3cf ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x093fe128 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bf3758c ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e26bf5d ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10b8d28c ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15d7efa0 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16805a1b ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x196f7fe5 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19b5f837 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1dc8e8e5 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20fa42e7 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21d27ad0 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23522584 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bfb32da ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c2f5744 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ec4ecec ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3deb7411 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e29ef29 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ebd7433 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40c76868 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44bf742f ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x481d2e33 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b4c5283 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4dbe18f1 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e1f6a9c ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5bde9828 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c50006f ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64b0dddb ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a049fe3 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c88a9c6 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f57a1bd ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72dd19ec ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83dc6aaf ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84bc48d9 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8578e976 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93420524 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa066ec63 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa37a620c ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8fb2c40 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa836236 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac1840cd ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae5e25a8 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaea1612f ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb53938dd ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba5b937c ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbccacc50 ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd6a6e14 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc02da37d ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc352056a ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8b6120f ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8bd8b4c ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcea9dc00 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf93f82a ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda32a229 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda3c2209 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb20c2d0 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0930001 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe276a22a ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe790e99b ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8ea73e6 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef25b029 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf57a927f ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9d32b3f ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd773972 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/hid/hid 0x1951ce4f hid_bus_type +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x877abfeb adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x57a81367 ltc2947_pm_ops +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xbbac3891 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd4b316e6 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xedd61a4f i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7f8cc716 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb50818b8 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xfe76017e 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 0x4946f3c6 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xd1001024 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x22b05614 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd7056ed4 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xd4026cba fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x019abee9 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x08af7b03 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x08b90556 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x144e88db iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x22b8c551 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x294a3aa7 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x2a1db0de iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x2a5a2901 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x369ad281 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x406789e7 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x431ed6b0 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x4c54dc70 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x517e52f9 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x688e0eaf iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x7a08b318 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x85af19bb iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x85fecd32 __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x8617bfcb iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xcb0a5d29 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xcde08b2f iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe3bc3dc2 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xfc556fa6 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xaf97c003 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1246f092 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x2a6bcf4b iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xbcfccdd3 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xd048cee3 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x35b3ab68 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4365a32f iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc81422e6 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xcfcba5f7 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xab82dcd1 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xbd76867b iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xfc5b2e67 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x021d682e ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12117a3a ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1669e442 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2bb4da04 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3d186754 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4d8b132b ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4eb5a57a ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5a8c80e7 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x64f2c26a ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x76261496 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x82cdf310 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e01979e ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xac2e7b24 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb6bb7a07 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc0a9aa20 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00be1dd4 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01012358 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x016cbee5 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01e4b0e3 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x021bc04b rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x027986c9 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02c8f93f rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05172c52 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x090dad14 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x094edfdd rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a28bdef rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aa385c8 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c701442 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c8a2d11 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f5d1b32 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10f2f26b ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11341d1b rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1251dffc ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bb38dd6 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c1c3a0d ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d363341 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fbc592f rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2105a17e ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2142ab5e ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22a02e11 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23744beb ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x252e366f rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279d853d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a235abe ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a923574 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dd0659a ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ddaf088 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2df9f4b2 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x331a709f rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3721f414 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37571ed3 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x378cf37b rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x385a71fd rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a3574fc ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a537297 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d8abc3e ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x404b95f5 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40c990f9 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4154dc37 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42d56cf5 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46e1efbf rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x471d5f12 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47715f63 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47972c6a ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48783bd8 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49009e4c rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c58c8da ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e764458 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fab950c rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50637233 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x515c0dee ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51d25de1 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5300f3be rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x534a37f2 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53d23b6e ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x567e646d ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5764f1ca rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x592f037a ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x593e0a6d ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b6a0195 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e45a8df ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f051f82 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x608ae90d ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6116b63f rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d68d65 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64a6a08d ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6610c3d9 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66dd0438 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6797e2a0 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d448ea rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x691889bd ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a20c66d ib_free_cq +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 0x6fa802fc rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x703b1e66 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x723a7cbf __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74e20236 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x782624a3 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x790f8e25 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x794ac157 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a0e31dc ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a93943f ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae129ae ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cddc815 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e18326c ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e263aff rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f95b92c ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80d423c7 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81a3b49f rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82717cba rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x827872dd ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82f68062 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83f4140e rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85b30f9b rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86290307 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cd5bad ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d9cfe10 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ffa196b rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b5f66a ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96a9570e ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x970c94ad ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x975ff2b9 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x988814fe rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98ce1de9 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a812eee roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ab4a8b0 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9be063af rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c2458a6 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9eb81e02 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0c13d00 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0d8aacf ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa21bd375 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa24d108d ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa57e2b6e rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa59ab507 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa730206a rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa4aea93 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac627f67 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac673ffc ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad5cc150 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf616613 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a2dd3a rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb209417a rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2740ad2 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7bb6669 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb91c3d07 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba03534e ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb6daae0 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc884a48 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd641327 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfb7c03c ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc00a31b6 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc17905be ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1c8b233 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc30ce226 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc42a793f rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc625bd51 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc63d6628 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7946e9e ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7cffaa9 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7f5db58 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca554e17 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd3f2a78 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcebc6403 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd11f4dc2 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd206dd7b rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd23eab19 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd267863b __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3ff90eb rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd638cd0d rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6e5180e ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda409378 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb68011e rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc3edea9 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdca0c938 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd198eea rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf719cfa ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf924353 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe47a3282 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe60c4d77 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a5cb7f rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b65561 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b7ae5f ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9b5675c ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea5b41fc ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea82be9f ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb66f7f2 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebd82824 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xece0be6f ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecef9ae5 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed1a139a __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed2325b4 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeed124f8 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1baeb14 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf229503f ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf270a541 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf27e2b97 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2c8dd36 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2f4b29d ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5cec699 ib_sa_guid_info_rec_query +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 0xf74ccb9a rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf85c28e4 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfde89fb4 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff7900cf ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff8d29fb rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfff1a4ab ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09888158 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0e58dc0a ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x19221920 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x20869de2 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x266101b3 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x354eeabb ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3858d469 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x401896d4 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4fc51753 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5555e361 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d20b319 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63a52adc ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x64b4da03 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a7f8fd1 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7ba47209 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f3df307 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8093d9c8 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x852e618a uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x87ea736a ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88262453 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8ec1b2f6 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8ef1dd3e ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f33171d ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa014cc97 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa8602340 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7ff4941 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbe4caf0c ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc587b023 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd7516471 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd755160c ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd82efdcb ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd9974f0b uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe47f3496 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xebd95ebe uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf131c171 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf326e277 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfed29f62 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0505ff1f iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x467f16bb iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7c03ed74 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9f4f3b7a iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa83b4026 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd6c2eac3 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc707e69 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfe6708f9 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17cb9e85 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f550a9d rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2d9500f3 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f1839c9 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x342bf137 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x34f4ed07 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39038b4e rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ed7b62d rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4fdc5ea4 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x568a2930 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58b9cbd7 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5abc1091 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6368f5b2 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b47856f rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6ca92c86 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e7617e0 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7d2af4bf rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80f74e2b rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82fb5a10 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83d63458 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d95b0a8 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad3f3ab3 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaddbd9b2 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0e332ff rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb34c13a2 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc074b581 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd30d0122 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd39aba34 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda9b48c2 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde21f739 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdebcbc1b rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0f2e2b0 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe305a32a rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9cbe364 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x087106ce rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0c6c33b3 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0dc27e06 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4979110a rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5e82367f rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xef628c7a rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf28ae2c8 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x44366411 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4934dd39 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 0x997c6d28 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xecd629f8 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x74f5c817 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x860b2460 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x993a670f rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa4c1b3fa rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xebb4e54b rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf2bd58a5 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x18cd5a74 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3407054d gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x56e2d216 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x63a0cbcc gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8b23c8e0 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x905ae96f __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd2d2f62c gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd4602bbb __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfe537afe gameport_unregister_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x4772022f iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x8680afe0 iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xd1545632 iforce_send_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x8243ddef matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x173e48eb ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x42b64181 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x69fe7d5e ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x3a90ca4b 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 0x20a31003 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0ca00ded sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x37955831 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4e8ce253 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x88e2f83d sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa80e8cc7 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4a17e9e6 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x90d7b27a ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x19bf7b51 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x96856a3c attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9ff11c25 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf8ec1f14 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfb7a46d7 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 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x577a602b mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaa688fb3 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb7c50b0d mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfc992a57 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9dc47fb2 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xbf761453 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x00e039eb get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x09bcb05a 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 0x2c107131 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2c81beab dchannel_senddata +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 0x419220db recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44d11260 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x45160735 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e6235ec mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5680df5c bchannel_get_rxbuf +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 0x700b3d0c create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x76f85195 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x77e7c5be mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8302e29d bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8843719d recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8d0fc11f mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb783c6a4 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe2a7efe6 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec5b23f2 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeca8a674 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef2e5173 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf32c3da1 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf4737a4d queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfc78c69f 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 0x83e84f5c 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 0xdde53cb4 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/md/dm-log 0x676c0d90 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x686fb756 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x7b1c50fa dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xdb098b7a dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x12e0b25c dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x27427fe2 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3e01b335 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4069c11f dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9216390b dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf7041d96 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x53c1c859 raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x7fd15bc6 r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x039293c4 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2e41758a flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3e222a5f flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3f9e3260 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x606d2268 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x629df78e flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6be6b9e3 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x895eb9f1 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb03a59ef flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc0e4be99 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcb29f837 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe0a31fde flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xff085c05 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1a42cb47 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x32f1202c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3af01d27 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdec99d7f cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe9c0bc14 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x4a7c0ab3 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x536c01a5 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 0xa8f30cf3 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x15666080 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1a61461e vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x0f78bc4a vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x25196f28 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3b1daa7a vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x89f75ecf vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9c7e3822 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb427eb84 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x872f92b5 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 0x0ce1fe07 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x15052806 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x15d0e9f1 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x17045d6b dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1d190d77 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1ecfc424 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29d58443 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3273a681 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3a380b30 dvb_frontend_suspend +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 0x45bbaa64 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x48485583 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4ce24ba1 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5039ea08 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5830a49a dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c32ae26 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d436856 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65ac252c dvb_unregister_device +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 0x6ef5628b dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82878c35 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x84331f11 dvb_frontend_reinitialise +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 0xb5a3524f dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc05d026 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc2e3f799 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc379e061 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce748c8d dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd0b83724 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd6730786 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7b00485 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe9cec2a1 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xecbc05a1 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed056cde dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf4755021 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfcc02e0f dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xeb7fe72e ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x35d18106 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1df3f14f au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2a53f7b5 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x341cf402 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x58831e78 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x63b38478 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x704efc16 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa45135b2 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc425955a au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe4d1bf80 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xb45f82ba au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xf5e1e6fe bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xc22e1865 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x63d177a6 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x66208fca cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x8953a050 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb1093db9 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x8c866753 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x9efda3b4 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xbafdd2b8 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xbc6aabd8 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x83ba0058 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x031e2e3a cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x90169770 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xadf3f0a6 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2515cd28 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3d57200c dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb32dec8d dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb4dc8c12 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe5c57ab2 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x01fba5cd dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x09403f74 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0ba5aeb7 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1cd7cbdd dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x29b6433a dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x35f679a7 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x545dec49 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5cbfc840 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7cc9d5ae dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8501f0f5 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8a1b03c9 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9b74f7fd dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb10713e6 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcefb768f dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf2939865 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x7f6d39b2 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x02f3d46d dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2f572a6d dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4d941616 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x64798263 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc2e004fe dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe8a698bc dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8ce64652 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc941f957 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd5086ea4 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf905fb5c dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x3970612c dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x8e6cdd59 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x05f1ac45 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1af93cd9 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x20b9f433 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x241a7a8f dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4eef3741 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x54880040 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8f2dfe7f dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9dd8353b dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa77a6b28 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaec82377 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdae61797 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe467d094 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf6764f89 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3aedd293 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8ebe8a15 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9cc2d0d2 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9fcf0960 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf442ebbb dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x1fcd226c drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xd2213a66 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xdbc0f09c drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x99813df6 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xa26d772a dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x2b3bb407 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x80f5906f dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xc52f492d dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x5457d7e2 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x23520b0d helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x2cfddde4 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x6efc1066 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x7fe1e4f6 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x5d5c1ae9 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x586426f3 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x56c78a2f itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x0f7f1614 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x18b5189b l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x55c9432b lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xbb39295a lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xd8d66a5d lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x9f7fd3d5 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x8886931f lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xd6e1f128 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xbc0f56e2 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x07ff8445 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x1886bb61 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xc98f0ae3 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xb3ab864c lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xaef50bfe m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xd4e06b7d m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x212ee22b m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xb0482b9f mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x99c05ed0 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x58602c2c mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x66953105 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x97476391 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xbc04c3c2 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x61cbab47 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9e9aca41 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xa64047c7 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf12d6fe3 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0e5a87f5 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x852f9cf8 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x7f2f237c s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x54a7a009 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x629c2a76 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x93a96c76 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x887a9ce0 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x426d2ff0 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x336f45dd stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd701b371 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x1f6d5cf4 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x073656ff stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x2940d719 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5a34847c stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xfdfc625b stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xbd4181b0 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xa08afc33 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xa8598284 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xaa9b667a stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xf13e875c tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x2604d7a8 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xc3927894 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x3f2a76b4 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xcb49a0ee tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xe0f66795 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x6b3213f5 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xdd5fc0b4 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x9409e65e tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x65dbad72 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x291a6ab0 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xe457da95 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x9a413ddf ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xd11ba0b2 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xbed145da zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xc82f1a47 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xd3da008e zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xbd654529 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x0711d3c3 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0361a4ed flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7a96ad68 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa40765b8 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc7754db7 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd5439ab9 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe73c2b24 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfd445dd2 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0f781e3d bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x36779d6b bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xba01dfd5 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe50bdca7 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x0d1d8adf bttv_sub_unregister +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 0xddd85a3c bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xebaa6285 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x30e77468 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x47c1e7bc dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x59a6a980 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x68f61ab3 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8ada10ee read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa30b1133 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa3abb433 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xee5d0a5e dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf1feae40 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xba21a7bd dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1e6efb75 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4fffa6d2 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa5613af2 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb0fa340d cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc22afcf8 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xbd2ab821 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0bac8909 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x23e037aa cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2c74854e cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4b2b9dea cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x62a182b7 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8a55b382 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd636c5bf cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6e334b51 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf429b494 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4093e6ea cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8fe3c0c7 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xace78a48 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcd15bdf5 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x134e5458 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x24a27421 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x43b5e487 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x75d17cf4 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x768287c4 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9dc64f4e cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xde39f176 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x02b045df cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a7f4a67 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1cedc6b4 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2340cab6 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3be4ce1e cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4e5ebe8e cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5a888305 cx88_dsp_detect_stereo_sap +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 0x6b315918 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6b46182d cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6cf3cede cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x76fd4812 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7e9ae61a cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x881e70bf cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c6e6cbd cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9842a458 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb54e6b3d cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc8da8e6f cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe4075b3a cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf886b028 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfe8c68c1 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x4d0d5eb1 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1e03a57f ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x21920a8c ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x23d3e725 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29c6ddaa ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c22320f ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x374da1a4 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x57026165 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x74dd0a95 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7bc839e5 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x81c4b31a ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x90ced43c ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbbd952b0 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbf2b3bf1 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbfb9aae1 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdd014ce9 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf559f0ff ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfdf03e7a ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0f9d9c81 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1feea7cf saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x23494018 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2f6c3189 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x34cb6285 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3e8a6aa4 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4e418c3a saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x83b53c52 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x904c4789 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcc0ba4c8 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd99d15dc saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe3b8c03a saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1d0d1dc3 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x75549c4b snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8ebf7643 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xaa68ef27 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb542b07b snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe33a6da7 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe44eb88a snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x1e3b8660 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 0xd065b1d2 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x92586bee fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x5fe3237f fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x00467f56 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x64594dc1 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9aa497ef fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x99985add max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x9292615c mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x4ca4f00b mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xc36b91a2 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x8329b2e0 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x10fb5b48 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xae837790 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x4550af45 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 0xbf5c98ba xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xb2f63266 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x1db87cec xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x145d2ec2 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x6908526f cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x023ee0b4 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1fdec52d dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3c241fed dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x61d44d3a dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x88bf14fc dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9e0f9cdd dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb57ccfb1 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe19c8330 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfe230426 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x02f53365 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5c87beb8 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 0x8bcb27a2 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xbb8de008 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc198ee6e usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe6086817 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 0xc21ecfd2 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 0x1c4818e4 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x28a24a62 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4e5da0b5 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x92b31405 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbbac6d09 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc367a562 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xce60fbb5 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xeaaf8f57 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf88212e7 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x3cc29dcc dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xf259f0a3 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x39ffa6e9 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe1adb60b em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1e1e7836 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x497411b1 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6f25e751 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x862e1deb go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x991b39e9 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc99f1280 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdc70e7c9 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf86c1705 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfe984bb0 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x338e85fd gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x40665cd6 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x67d76eeb gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7d7aa1ed gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x83bb3e34 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcd51096a gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xed1aefbc gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfd31a0b8 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x13db3ebc ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x381c3f76 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1b7c3521 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4790a285 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x87412dbb v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xa43f84b2 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc42e3615 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe5eae4b2 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x6c84cf82 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8cb2b468 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9477465e v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe7d868c4 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1076c461 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1431800d __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19fe318a v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a590a74 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e0d05e1 video_ioctl2 +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 0x295bc501 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29d60dad __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e693ea2 video_unregister_device +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 0x36ab59f1 v4l2_ctrl_request_setup +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 0x3dae3148 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46a70d85 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b2dd72e v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x548a1df8 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x577a2fbc v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x582bcb3d v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d249120 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5fb7f154 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6047f8f6 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x606c81ee v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6476869d v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6881731d v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a8e9b18 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6dd68b5b v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d6315c0 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7da48d31 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8905da67 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91ce2cd6 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9237c130 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95a8b8eb v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95e48c42 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9905bde0 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d89b49d v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2228c2a __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3a7de1e v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb4ae0 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaee41ded video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5b5a1c6 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb62947dd __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 0xbd2c57b1 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5848231 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc0342b7 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce16de9d v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd039ac7c v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd51928c3 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8a12289 v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf9b7343 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe044fcb8 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2317cf0 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1b9f9f9 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1c8e131 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf34ee613 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf397fd79 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf49fa7ed v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf95f25d2 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc883481 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe12d41c v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe55cb6f __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/memstick/core/memstick 0x01b41d1c memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x20534245 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2f422837 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3de84a83 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6780c85e memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6f6e423c memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7550db95 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x93bb4e8a memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2f8180f memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd32490b6 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xda67c436 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe51fab32 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10e56c12 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x160482a8 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17b7bb16 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x19696448 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22927040 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b476f06 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f36d9a0 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e7389a6 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48c99a54 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55765a03 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x56836dd5 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c3dab72 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x603e58e7 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x61b234e2 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63225622 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80502b89 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80c97b7c mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9475de02 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94e3d352 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9e5864fb mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5ee1338 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb32b463c mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc6b74cbd mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcce1b4c6 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd1a131bf mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdc2675c3 mpt_attach +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 0xf2933ef2 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf7e7dd97 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf952cf75 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x067e2beb mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13d1759e mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17bc5d63 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17ed8d6d mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x19dba26c mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37fe6a00 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a343a59 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3aa5b002 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x474c54d1 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4c46ece3 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5fe7a438 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7bb7d677 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7bfd1903 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8362c6ee mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x97fc9f56 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9d5a2ca mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab3329c1 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb2786bf9 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4326e0e mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4aa653e mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd6e577b mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc814ef12 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd351235f mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe7619e54 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed1da248 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeea66360 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf74504c3 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/mfd/axp20x 0x43ab6924 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x745d9701 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xe549eaee axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x0c64eb62 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x0eec08de dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xb2394f64 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x412ddbc4 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xbdc10586 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x750e9c7d mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c0a05c2 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8523bbe5 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8eeda1c2 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8f8caa43 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9071dc90 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9a823d37 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9e63fc27 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd7762f5f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe792c1b6 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xec52f6b6 mc13xxx_reg_read +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 0x39557743 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x518ae003 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x63b05b9a wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6ae9d5e6 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xa23b162d wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xcee8e22e wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x80732e17 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xaaadcf75 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x39dffe07 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xa9f7a4e4 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x00efda05 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x455b0b26 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x458c599f tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x48cffc77 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x807d790b tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x80e59205 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x8592c7a7 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x864f81b7 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xa7e6bd02 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb2c831b5 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xcb477b92 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe3845ecb tifm_alloc_device +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x19dee198 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x236e47bc cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x87a684df cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x97f10e2c cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9a6b76f4 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x8efe5950 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xc2258b3e mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x36c2dc6b cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x63d43fe6 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x945daf6b cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa4696f06 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaca873fd cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb2580212 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf20ef55e cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1e6e982b register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2a72ef28 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9da80d0c map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf6ab7460 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x8b24235b mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf0ca4a9a lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x4f1c4aee simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x23b70fef mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xe03b17b3 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x03f88acb nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x089b6d39 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x11839a4f nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x21dc9fe2 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2ab41ec8 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4a9c6683 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x725a5bdc nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7ddff167 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x868fe785 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x91d75c37 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x95369c39 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x962f9028 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x983b86ca nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa16ed98e nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa213afd8 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbbe7b67b nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc5bdeda1 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcdbe8049 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd4e13938 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xda74a4ab nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf4cfac32 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfa712a72 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x1e5a3720 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x5694f618 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x37c569f9 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x6cf4a943 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0769d5f5 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x12a8984b rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x17684a0e nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x17bf8af4 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x37062331 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3f506401 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x68eb0af2 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6d156e55 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7077427b nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8d7aa15d rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8eac02e8 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x959f78c4 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x962def47 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa81c8799 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd133a368 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe90a7cda rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfa981894 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0fc2bd09 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x19d384aa arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1b5047ce arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x20f6e82e arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x263e28c4 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x29d3ab6b arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3a395689 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x88764417 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa2fc4bfc arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc561e246 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xee8f978e arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb569684d com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcb459a78 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcda5dc5a com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x530037e2 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xaa4cebea ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xf718f20d ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x54e66622 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xdef776aa can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0563a66d b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x184399a5 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1853b839 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x18c5a8cb b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d31862c b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x25af8abb b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3402bfae b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a3d78c2 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3f014076 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x413f1bc9 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4bdb3202 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5cfc01a6 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60b80865 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x72c45d25 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x82ef878c b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ed9003a b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ef7a215 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8fef53dd b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x90fc0771 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x95bc053e b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b546d12 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa057ddc5 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaeec47fb b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf38ff0d b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaff73b0a b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0408115 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba95e17c b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc3e59337 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc598e7e b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd4a55f94 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd6494a25 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde22645b b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe04952d3 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe44bc4a7 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed7fb550 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeeccbe19 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf4559754 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfad41044 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1498f2d5 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x62eb4f7c b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb7d610d0 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc2c5e5aa b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x26e251f0 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3321eb64 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x34126a5d lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x445a27e9 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x483e1b85 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x6b0dc69c ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x052810b5 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x26b3fb6e vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x7020a0ee vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6ce8d1da 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 0x98528df8 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa5ffe4e4 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 0xdba437be xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x01c04baf NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x06cf9d75 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2e2df6fc __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3b3b99ba ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4328d553 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5de6ecbe ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8d3e8c5b ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9d54bce6 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe0b0f67b ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf376ffdb ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xa7b52810 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x996057f8 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x1f3f4a82 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xaca23ef0 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 0x06480b29 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x29af1eb8 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4e17970e dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x548d2171 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5b1ee05b cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x61b5d478 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ed13013 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c465524 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8aedfeae cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x92ab19d8 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9b545168 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb7ce54ae cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc8a6e8e3 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe7beb538 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xef6d1014 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5f83449 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b5fbff7 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20cb28db cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24b7a8da cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24eabf2f cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x258bff37 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2692fbda cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2be99aec cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3505e574 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d62a220 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4607b885 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b5d8cee cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5215397c cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a2ce587 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e6fa500 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6142c42c t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x684049ee cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71accca7 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71c46070 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76259590 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d542ee3 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7ea6582c cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f32ee3d cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9203dbe8 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94cface1 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x95b02852 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99bcadfe cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c9a20bf cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0f4b558 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2fdeb8e cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa667923e cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1b9cde7 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc24a17a4 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6de29d4 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd7e9e8e cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd320af8f cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3d9c4cd cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7797de6 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc7d47c2 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdcf17e6a cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf7988f3 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0e4d73d cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe97cf92a cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9dca44d cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb88bd2f cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee8ea266 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1fb0fde cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc202a04 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0ee466cc cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1fce7bc0 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x49df6ac0 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6979fb5c cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x88699235 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x891a3ee4 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xeaa5045d cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x645a43e7 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x897c252a enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9062fac5 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x93aad1d4 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe1266b0b vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xed49ef66 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5ccec7b4 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc456baea be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xa7c1398f 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 0x27d9fda0 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x3ce71f91 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x87f47928 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xb8cecd0f fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x6f59e05c iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x90fc1990 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 0x2bc87899 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xc39ff5c7 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03ed826b mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x087b2097 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bb743eb mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a0301c5 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25b3e09a mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26a6183f mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31b82806 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x381f6b32 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x396b703a mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dc72308 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4035c95e mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x432b6daf mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46570864 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ac31e57 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53088177 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64251711 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cb90cf7 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ebb5799 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x757bf14f mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b93d60c mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86127df8 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a531ae2 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90a3b3a8 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96b30bbb mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb17e1204 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8ffe894 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbba1e394 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd7e66a8 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2796cf1 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc90f8fdc set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc924ba06 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc2f13a5 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6b6f632 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7bd3489 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda7b50cb mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcc8cb48 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecd30241 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeefc91d7 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf32d47c3 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf65f5d30 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8d3ff44 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf930cea1 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd24256 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfda20ef0 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0005d56f mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01061fb8 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x022c27cb mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02d0dc2a mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x032196be mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03c77422 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04742c44 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x069928c4 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0960b31b __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aa2fd85 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c0eb429 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d5d0b5 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14e33c68 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x165bf293 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16ba5d16 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e53591 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dc71773 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e1b895b mlx5_eswitch_vport_rep +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 0x1f8b105a mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fd946cd mlx5_qp_debugfs_init +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 0x2474e9ce mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26268a03 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c6d02e6 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e099c34 mlx5_eswitch_get_vport_metadata_for_match +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 0x36df598a mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d7dc201 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e2b13ed mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ed9c8c9 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40a8806b mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41825378 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44fd95ad mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46c07107 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47549c41 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49effd5f mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bc6f607 mlx5_eswitch_vport_match_metadata_enabled +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 0x4e3a3e52 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e44f180 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ed3f5c0 mlx5_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f6cbc4d mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503cc76d mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517dd6a2 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55375a9b mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55bef13e mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58a8818e mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x597db070 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cf3b7be mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d010af6 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e17d379 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5edc97f6 mlx5_fpga_sbu_conn_sendmsg +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 0x61e0a1bd mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61fa063e mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67822eab mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68cb5a64 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69a4407b mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b659e99 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b75e462 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c6f6ef6 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ceda61d mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d76fb12 mlx5_packet_reformat_alloc +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 0x74682567 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7556a6e7 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x766b402e mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x795d310d mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a5f8357 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b1ff1dc mlx5_core_query_mkey +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 0x7e245d9b mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x826a6a04 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83596c08 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84ccf106 mlx5_rl_remove_rate_raw +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 0x8a47c0fc mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a4842c4 mlx5_eq_enable +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 0x8efbc0df mlx5_core_modify_cq +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 0x94038aec mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9615b200 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x970b9eab mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99e1bc54 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bfe181c mlx5_core_destroy_rqt +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 0xa4f785fe mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa65a16d8 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8c91807 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa983133a mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa5891b2 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabc16f30 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad617bba mlx5_eswitch_unregister_vport_reps +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 0xaec745a8 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf7a91f4 mlx5_cmd_exec_cb +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 0xb0888dc6 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1a758cb mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5348fb0 mlx5_fpga_sbu_conn_destroy +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 0xb946744a mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb94d4f10 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba3a033c mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba6d061c mlx5_core_detach_mcg +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 0xbc4ef3c9 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe2f22db mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1f0e4d6 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2776d56 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3127fba mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3e43cd4 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc493780b mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4ed3561 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6c8d1aa mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce53f723 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcef76f48 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfa153f3 mlx5_eq_destroy_generic +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 0xd2c2c6a9 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd59d6457 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd59e57bf mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd69aa851 mlx5_lag_get_peer_mdev +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 0xd75d0418 mlx5_vector2eqn +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 0xd8770b9a mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda453c20 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc4cd504 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc72360d mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd4f32ab mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf41bdd1 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf5e375b mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1edcad1 __traceiter_mlx5_fs_del_rule +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 0xe4226c28 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe45af9dd mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe49b72dd mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9f89205 mlx5_free_bfreg +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 0xecdb3fb1 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee7cf209 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef7fe286 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefd8c465 mlx5_query_ib_port_oper +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 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf997249e mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa2a674b mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa9b2567 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb4e3664 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbb2d1d3 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd883721 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfec08049 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x011f0102 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x015c9c57 mlxsw_core_trap_register +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 0x03750bdf 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 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode +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 0x16f4221d mlxsw_core_irq_event_handler_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18448f99 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +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 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f2e10ae mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f638733 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x311eb463 mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get +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 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d3b3cce mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x60b33a16 mlxsw_afa_block_append_mirror +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 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio +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 0x6b9c297c mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73b2a49d mlxsw_env_get_module_eeprom +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 0x7e08c6e0 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x86817014 mlxsw_core_read_utc_nsec +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 0x98b6baf3 mlxsw_core_traps_unregister +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 0xa509fafd mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xae72ca01 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb419953d mlxsw_core_rx_listener_unregister +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 0xb68f2ac5 mlxsw_env_get_module_info +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 0xbda212df mlxsw_core_irq_event_handlers_call +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc71f581f mlxsw_core_port_netdev_link +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 0xcec9a7ef mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag +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 0xd2d6d129 mlxsw_afa_create +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 0xd888ffb3 mlxsw_afa_block_append_ip +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 0xdc5c95df mlxsw_core_resources_query +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 0xe1860dde mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe788424d mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82b315d 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_core 0xff0b141d mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x9425f599 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa1d6b684 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8c47a496 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xa28e74f3 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x016b3328 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07a322d2 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0bb176a9 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0bf0bf63 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fcc743c ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x142dd0af ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16933c2d ocelot_can_inject +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 0x1af7b607 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e918524 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21cb4507 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25ff8368 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2867b9fd ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2877709e ocelot_mrp_add_ring_role +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 0x3046a470 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31622d72 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3383a5b9 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36a99ba6 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37f91d24 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3947d434 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39f0850d ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b95636c ocelot_vlan_del +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 0x45159efb ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a14a932 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4acf6f4e ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c0c25f3 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d6abc6e ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50610ba6 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53732fb7 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55f8b30e ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e447466 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x631ec816 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x640c3fbd ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x64a9f1db ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6501839f ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6be3b7a7 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71b562fd ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x727b9b4f ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73ac23c5 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7848122d ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x790dd98e ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b2092b0 ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80064819 ocelot_port_pre_bridge_flags +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 0x81a82ce1 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x842d4a9d ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x897564ba ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f7cb265 ocelot_fdb_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 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x959e27ad ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x983376f9 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c7b4867 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 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xabe62adb ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae2251d7 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4531276 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7212383 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb909cbb8 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9ee49e6 ocelot_ptp_verify +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 0xc017af53 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc30f360b ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb529b06 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb636315 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd20551b ocelot_mact_learn +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 0xd0d9b756 ocelot_port_bridge_join +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 0xd10fb83c ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4f276e5 ocelot_sb_tc_pool_bind_get +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 0xdf1a2379 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4e53eca ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7459567 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb4c894c ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebcf06dd ocelot_devlink_sb_register +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 0xf12a4ad4 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf341b4d7 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4ab7d19 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8c40330 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbc2bf44 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc61a910 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x198d7ef0 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 0x647e8cf3 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8fdb840a qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb84e31fd qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xa4f8a5ef qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xec87a4f3 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0c55e2df wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x41725bd1 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5433607e wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5b3a2f42 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6cfe570d wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7aa40645 wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x82119e3c wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x86f27f5f wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa95426f1 wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb106d66a wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb534175f wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc130b7e3 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc353da51 wx_set_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd262605f wx_clear_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd3747728 wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdcb8d9d6 wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe72c657d wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfbf2fad3 wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x09d57bb3 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x37f1d602 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x68c6c804 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd9540554 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfd618829 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 0x7e8fabde 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 0x276b3ce4 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x42d17898 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x4a302de9 mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xe273dee0 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x0f663161 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x37a8d4d4 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x46a2e9d9 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mii 0x62317c68 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x6c69f152 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x704aded4 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x79f04f85 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x8368c215 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x8667aae7 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x92805a54 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xa1be3673 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xd6f5d24f mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xe2db62aa mii_check_gmii_support +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0cad3e7a lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xbcd19e58 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xf77e8804 lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x7a736ff4 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8a0de660 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x919b6898 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb0e7ed38 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xddd5df92 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x1872e444 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0cebc565 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x23783749 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x23b41547 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x3bba6bd6 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x6608baa9 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x7c345217 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x8300e488 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xe3c4aa83 team_mode_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x222ea42a usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x45f4dfde usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x4f7f576c usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0159d542 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x128a3248 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x29c2e4e7 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5f8be049 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6011fb45 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x84a2c0c2 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa19d3d27 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb9b47fa4 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcfb469b8 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe30dd1d9 hdlc_close +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x01c215b3 ath_key_config +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 0x1ee9c8ab ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x29141eb8 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x389b8546 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x60a90425 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x63fc1f23 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x664009e6 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8981f96e ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa029b389 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb20d8e3f ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb4a566f3 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd2ef3c73 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe5b9ef19 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0221dc47 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x045ae3d0 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05e55d3b ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06435158 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c5b678c ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e97c587 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x109da0ae ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x114946cb ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x13d9a57e ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x13f5cf37 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15656eba ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f4e00b8 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ff4dcab ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x21ee7276 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x242ab421 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2bfb70cf ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x32dffb97 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36996dc6 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3dc5df6e ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42f07376 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4ec674a5 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4ef3c221 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x508cc223 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50fd84a0 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5148f933 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51625e53 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x53dfa49b __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5ce9229f ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e945293 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d655d44 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x737e009f ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77cae63e ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a550e67 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89fe6fa0 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a786521 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f72d6c5 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8fe2c8d5 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90e2f68f ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9588fdad ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x977ee2ef ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a5629b0 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9c87dcc ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xace3e2af ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad45c114 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9956595 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb882546 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc06a98cb ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2939ea1 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd7ac61a9 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd7bc443d ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd8d437a ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe0ef7ba3 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe11fbaf7 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec936d98 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0d5170d ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfcb5a188 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0afaac97 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x15e75c81 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x20d31286 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x21bdd5ca ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x21cc9324 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x24cc387a ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2d34414f ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2ecf4678 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x30c56d88 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3af49d5d ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3c99560f ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4de2c9bb ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x50d9e277 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x54a460ab ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5502f185 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5650d212 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5bb65732 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5c7466b6 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5d9ae153 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x648cf6d6 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x64fedd5b ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x69f4c16f ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x70a3b98c ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x71293536 ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x75070955 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x752d2c3a ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x76f786e3 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7810cf03 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8cd34add ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x95a6e540 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 0xae5f4a3c ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb122b574 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbe1dbcad ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc1fea4ba ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc5b7e879 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc905b25b ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcee5e579 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd4ca286c ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe6286dc1 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe6376a65 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf3507363 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0d4ea207 ath6kl_core_create +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 0x498ac5e0 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6eed1850 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a5704a ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x879b33ce 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 0x96ed078e ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x98797146 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xadd2f264 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbf0cb05f ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xca5243ae ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd80d54cf ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x05100e59 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0d9c897e ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0e271e37 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x124b996b ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1ef239fc ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1f6c1c19 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x31e33aa2 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 0x62b396bd ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6632f005 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73b0d251 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x846194c9 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90f16e1d ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9f8c51b1 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb13aa0e5 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb1fcb32b ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb671957e ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba77ecf5 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc3643a23 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd20d4fc0 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdda87082 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe6bd1dd2 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xec005942 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf086946b ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0970335b ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ebf61ca ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x122a2a0b ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1260a33a ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x137173b9 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19e06ee6 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a8ee784 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1be647b9 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c05c24e ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e4168bb ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1edb124e ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x234829ed ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x235da6d1 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23d2b3ba ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2580e29e ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2632b5a9 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2689f2d9 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x270737ea ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a586dbb ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2adcb86c ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d2487ad ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e38f072 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x305b260a ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x309f26f6 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30ffd08c ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x383cdc6d ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38912f0f ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cdcfb1b ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3df0b6d8 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45e9709d ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47cf4c69 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5099661a ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51b04c0c ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a04926a ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c545c4f ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d16ee8f ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6023065e ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x622da93f ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64cc0390 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x686ae9e0 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6954e480 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69b5e0a6 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a6a2587 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ac37541 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ddbc7f9 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72d68b24 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74b34b03 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7855aa23 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79dd8592 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a9366d2 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ad6e740 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b3c1269 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b6e9ea2 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b71ba3a ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8091fec4 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82b3d9e1 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83389133 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86773b7f ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88eba9b3 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89a87b05 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bbb79d8 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e084993 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96940e9b ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a19b590 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b593fcd ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9daca2f0 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fc769d2 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fdfee85 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2862309 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4910c91 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6416667 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7c17ebf ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa93f2c07 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaaf3ad31 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab7f4223 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad297e90 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae7e0a44 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8276d96 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8d6e9e9 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb99b889b ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9d442c5 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbad9e92b ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbca48b86 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf54ce3a ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf7b1299 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc267d458 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc381b339 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8595e77 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce153158 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd30a86d9 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd31b587d ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd386cf7d ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7e83c0f ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbd2852e ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfa84ff2 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe004ccdd ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe180e2ef ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaf682b2 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0c01e63 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1a91eff ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2bdc8a9 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf47efecb ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf65f9f75 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf81eb7ad ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf932386e ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfeff0735 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd4cf8c ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x8bce5ee8 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x94eaa42e init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9f7ab1fb stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x07114b40 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x175b49e9 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1a65ef0a brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3b786495 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x46702a34 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x506d0018 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x585a0892 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x72c79e7f brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7335a292 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa0684460 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc5f66679 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe82b462d brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xefd9ef91 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x172b9a75 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x41e5cebb reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xc2deb429 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x00e5e043 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x04a75ae1 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2d548886 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3afa3fb6 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3e16a5a2 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x52664ddb free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x736a42bc libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x840d669f libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x91065ac5 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x93491ad3 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9b802335 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb06d9c40 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcc069354 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd1001cf0 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd8e68950 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd128a28 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf058d5ef libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf43fa34b libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf6ceb5d6 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf935d01e libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0569d210 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06b65283 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07897659 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0800c116 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a55a71a il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0cc96e53 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f03e5ce il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f3745e7 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x112876c5 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15ecf69e il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x173928f3 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17587d16 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x189451aa il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d8d569b il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e27a087 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f5b1f00 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21a98bfb il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2226e154 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27adef36 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e18f5fd _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3122df20 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x361f62cd il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x369e8bd9 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36b29665 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x384aa6a3 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bf97a40 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d678cb5 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3dd3ca63 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x462bbe30 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4697a4d9 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47f12847 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c6044db il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4df689a7 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e4c9a51 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50f3d488 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x523a09b4 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x528b2262 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ae781e2 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d378cd7 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60c7b791 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61f38983 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63b1c081 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c698218 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ec11ef6 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7939b77d il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7aef9df0 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b223125 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7da7687c il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f806eff il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83364259 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x868491c4 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87ad2763 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89753821 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c244a32 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f5150f9 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9568d120 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9829e39c il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9930291e il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c40fc99 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d617399 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1813eaa il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1af9d83 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa27d97e7 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf31b129 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaff671ea il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb22b99c9 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2cb6f65 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb38bd3df il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb43cfeaf il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4cd1b91 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6c68b9c il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8b8cfe6 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf5fe473 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc01362c4 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc19e5057 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc60ee118 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6d802f4 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8dbfeb7 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca0fcce8 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbd52adb il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd0524d4 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcdd09879 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1b1193b il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3a529e6 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4ac86de il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7c8fed1 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda1f43c4 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda89a649 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb8f34c8 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdba61a37 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2c96b20 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2eb6ee1 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe32d7adf il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5bc4150 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe91dfc6b il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xedd91eb4 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf046faaf il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5c03091 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2399bef3 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d23c104 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ad637ab iwl_trans_pcie_remove +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 0xe2903422 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfcaa3d6b __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x08b3315e hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x11e907a7 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3925858a hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x421ba518 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x45f587b7 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5d626a80 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e693f90 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x62bf379b hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x64cbaa0b hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6e34a659 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x70f25cea hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7a665600 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fcb1b6a hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8e9918e9 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x97148be1 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x977b5901 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x99e10908 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9bd90983 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9eaf87a1 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaa3e84df hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xad786cf5 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb77ddeec hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbb41e15c hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc497696f hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xea7196c1 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1455abd6 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3ec46a99 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3f20c970 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x60e8edb9 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6342fb8f __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6a884d5c __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6e9eaec6 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7cc00dcc alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8830abb9 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x94aa9dcc orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9e7e0a67 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb90e2836 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb9b7ec1e orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc29737d4 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc38191d8 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdd9a7a46 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xe14122de mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x46a98554 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x004af25e rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0dfbfd52 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x192a5158 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ce05621 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d6d4624 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20cb4ec8 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22200f2d _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x25c00e35 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ab3505f rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b832a54 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37afab96 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b37cd3f rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e20f20f rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48231ac7 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ba03182 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6dc1b215 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x718dbe90 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d26d0f9 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82f4423f rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83b3655f _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e0b1b88 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e64df74 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90a99972 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x933d6097 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaed277ca rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb2861650 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbbf5f745 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6ffaf5a rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc11de2a _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfa32d40 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfdd36ef _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd734d9c rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe28f4ad1 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe31fa11d _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4139149 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe445c334 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5f6be86 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea4615ca rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf385b90f _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4637c23 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6769e0e rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0599989e rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7328c1d2 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7d3737c2 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd92e905e rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x21e77fa5 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc2a64eeb rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc8a76533 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd81f446d rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06387697 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19dbdb8f efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b396d81 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2358f723 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x31af5bed rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x32ff0a4b rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38455a64 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38794330 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47ec3918 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4aa1eb1a rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x510b9ce5 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60357a68 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70813719 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x711af535 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7384e910 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74aeac9f rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x796b5282 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ac693b0 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ae88a8d efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f0b83e9 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x949f916d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980058a6 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabdabf0f rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4cd577b rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba095ccb rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2d3527f efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9e6f17d rtlwifi_rate_mapping +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 0xf0426f64 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3fca189 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfaaec32f rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x2a42553e rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xb78222b3 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xc1a22f8c rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x2e6044b2 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x04c5fe7f rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x051cba41 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0556ccee rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11dbc805 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17ff02f1 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19178316 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2128a7da rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x23923180 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24a770df rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x27190eb9 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2ddbbf39 rtw_set_rx_freq_band +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 0x3a8e7340 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x41c7c287 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x43472bb1 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x462cad82 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4df39278 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x526edcba rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b13858c rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f82a730 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x694abb2a rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a7acd09 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f59ec2d rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74bece16 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x755c9230 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76738d38 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x794e15fb rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e284c3a rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x80d4c44e rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x81221772 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x81bc6c2d __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x849752c6 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x92f99f62 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x94fed02a rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x960bbc64 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9872412d rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x987649dc rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b2c72bd rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f7e5816 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1689434 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa54307f3 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5bc661b rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8bcc10e rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac8d9458 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xade6581d rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae9cc063 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaffdd7a1 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb641dd5a rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc752ccca rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8468040 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd2ddfb9a rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd7fe4c8 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdfe7f099 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1b04d38 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6bcefc9 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7755deb rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xed3bc0e5 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf4666710 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf6c465a4 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9b21a79 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfbef1731 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x30a7ac8a rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x683d9f89 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x8289a475 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc0104090 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x252886bf rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x6baa86b3 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xe5a2cee2 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x923c1c12 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x0999507d rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x09959f18 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b3047fe rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13df00a9 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x14fbc431 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x20188bef rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2942b08d rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2bc915f9 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x38a088e4 rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x39361aa6 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x415be050 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4903896f rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4aa0d52a rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4dee7418 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x537d1a18 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x55906b36 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x58ca08c4 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5e284bdc rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5f480c9a rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x621143db rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x648be435 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6fa69d90 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x71b299a1 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x744c1cf2 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x748aa8a8 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x77222dd1 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7931ba36 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8269741e rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x834b24c4 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x83c80f4a rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x86da7f66 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8a1d2dbd rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b88969e rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8fc8bc05 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x91365759 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x91f4c684 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x96060413 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x97bd52b3 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x982d1390 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x98b4b03c rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa1a14839 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa9e4cc34 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb090b1a3 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb0c4a769 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3868d09 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc13244eb rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc8357c2a rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd055b572 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd3c0d7fd rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdb15166a rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdbdccc5e rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xddcef320 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe6ace1b2 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeeedbbfd __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeff49afc rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf7461ae1 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf7effd67 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf7fa8d69 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfc5a677f rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xff024744 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x03ce561b rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1782e13d rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x19507e70 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1e7ac936 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x29109dd9 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2e85e0c6 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3369b581 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x34ece89b rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3cfe1a2e rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8f1f6932 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9394a9c1 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x93ad2d5e 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 0xaddc1a54 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb97ec915 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xde328a3f rtw89_pci_disable_intr_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 0x94bb46ca rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x92138363 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa32a0fcc wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbfd2670f wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe96e8b7f wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x72704be3 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbb4263e5 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x203c07dc microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xcf869568 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x00950255 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7fb668a4 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xecd2d009 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xad445a8c pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5b8b7dfa pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x7dbce484 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x14b07211 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x28189dd9 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x63eab632 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdcff571e 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 0x0372f2a3 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x09610b77 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x40adeece ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x444c8f8a st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4c849018 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5750d0db ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x68fff6b6 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7b614205 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb8f1d4ac st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc3a82ebb ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x018c51a5 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1aeb5c6e st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2b7ab833 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x32b76a31 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x372dbd71 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x45ca3917 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4fcefa84 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5109b712 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x54cdd667 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x807388a7 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x88f80a1a st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc399a591 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcca8444c st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd27bfd71 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdcd5c7f0 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe5d2ab49 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xea1316ae st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeec49863 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/ntb/ntb 0x01e4c9b8 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x03566e1b ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x061f2c78 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x0846885d ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x1c5264be ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x371aa67c ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x4dd47f0c ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x5c109908 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x5c54f196 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x5c6eaefd ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x621db3b7 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x62be5401 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x92d31138 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x9d01b170 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xa2109651 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xb16670a8 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xbcce6262 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xbfbe668e ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xda4c5452 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe604be3b __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0701517d nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xa90a286e nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x1079227a parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x301cd181 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x37d716fd parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x40685b9d parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x49e5f749 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4dfc75ba __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x511dd465 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x62c76d2e parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x6ee69f0b parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x724af1e7 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x74f6ecbe parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x81af0530 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x90bec5b8 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x946551dc parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x9ae2be98 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xa2986e8d parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xab575e7f parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xaee7afcb parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xb2810b37 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xc1f6d942 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xc952b2e5 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xcea483d7 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xded0d10b parport_read +EXPORT_SYMBOL drivers/parport/parport 0xe674b0c2 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xeb36da0a parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xedbf302e parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xf5d88c93 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xfaa19284 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xfbdb8fbe parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xfd2fdb2d parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xfed28e7e parport_claim +EXPORT_SYMBOL drivers/parport/parport_pc 0x2d622dea parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x7ed9d755 parport_pc_unregister_port +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x56628724 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x96b1916a rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x9dd04861 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0575a141 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0a1a5b60 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0adc8ba9 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0dc60c92 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2b6a1f16 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x30d79e43 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x36bbdfd6 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4362c858 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5b6a79b1 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6059c0dc rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x916ec7c0 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x95efecb2 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa46da703 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa82e6e96 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xccca5883 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd48ac4c2 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdf9fee25 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xec9f685f rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfe3cb178 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x5737d4d5 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xbeeba34e ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb1f0c4a7 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb85ca331 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd68d10f1 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdaf1d0cb scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x19d179be fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2045981d fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x23d7fdd3 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x384e4efb fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3ccb6bba fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x521d9dbf fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x56431216 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5c6a1e8a fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6bb98b0d fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8484f3c4 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf8dfbdd8 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x015a4036 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x088a9317 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x095b5c0e fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x095c8ba4 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b39e275 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f84122b fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fbfc36c fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11f4c10c fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1801077a fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1efaa79b fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2371639d fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2de84253 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30452643 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35299dd6 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ebe4588 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42240cf8 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x423f8c46 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44a14a04 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c5b41ee fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ce0da4e fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f80926a fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4faac07a fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51f0454a fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ecbb42a fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63e89388 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a55cd7b fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e7b9826 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x763b51a3 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79dfd40a fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ab393b5 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c6ebc95 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e75ab8a fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fefb97d fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x875f46bd fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8913fdf8 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94d6900e fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x996a2ec8 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b3a86ab fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1167c33 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa166d9af fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7f18893 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa87eceb8 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac4c9139 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf91b2e2 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1fda32f fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5e90f76 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9c352d9 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbabb8623 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0ce876f fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc30d3be7 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccc2b589 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd003d4d fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0fc9093 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2a34ef0 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5159feb fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb81fcac fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8a08095 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdeba8f5 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff395706 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x93f23bff sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa0872b95 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa9f15e07 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xde9257e0 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x746c55ac 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 0x05094108 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x07d19252 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x286a603b qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x83672a40 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x88b456b9 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9f016695 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9f0a3e77 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb6fea0b5 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd24fca6a qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd3616f53 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd44d6de7 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xed4cb3ee qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/raid_class 0xc8ddadca raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xe71a821f raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xf6e6452a raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x061961dd fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x446c10e3 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x587b47ba fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5faf4f69 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8841f64d fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8bd96b23 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9002cdf3 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x90352744 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x927e62fc fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa1602a01 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa50f66e3 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa700eb3c fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc122e946 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcc31805f fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd964c84f fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xece5c98e fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf1457501 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c93c98f sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e4b27be scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e7e9d7b sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20cb6e16 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2524ecf3 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x263f1b1f sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x26b8f3df sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x274100d0 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a698bb5 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x343af0f3 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x373d2d05 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39f748bc sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d170169 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68450691 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6bcdc86e sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7201cd87 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73f8b750 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81fdfb4a sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x98856174 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a110cda sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaa00100d sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc42a0e80 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6f8ad45 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcdff575a sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5d6db5f sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe6e0ded9 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe958ce72 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeaa53477 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfdb8f8b5 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0a0bb465 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x30e809e5 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x370c0b5a spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf9616c18 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfb97f3df spi_schedule_dv_device +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2f143389 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2f9917bf qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3cef7bd7 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8012a6d3 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8256d01d qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa61abdaa qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xaadf556c qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd084a099 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdeb3d741 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf2db8f04 qmi_txn_wait +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0ec28188 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1031300b sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x10ff6ff2 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x19913223 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1c80b2d4 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x21db5127 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2315cc52 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2b2e4af3 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2dbf9669 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2f14e0be sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x369740ed sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x396a6e72 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x509a8d76 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x54c1dc59 sdw_slave_add +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 0x71a1221e sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7eac7adb sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x86d7d475 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa34895ce sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa42e7803 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xac079781 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb491cfb8 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 0xc1c97190 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc9cf3e0a sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc9db1597 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xceaf602e sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd398c669 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd5d8c385 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/ssb/ssb 0x06a7e81c ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x12c27a10 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x1dce7ec4 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x1eedc162 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x400b0598 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x5e372fbc ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x5e81e40b ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x61ad2af9 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x6a0b9f11 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x703685a6 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7c045902 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x87f919bd ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x9891afd3 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x9f5ef1e5 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x9fcf9e1c ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xb7d222d0 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd939fc47 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xdc33a0be ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe9442ca4 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xfcad1362 ssb_device_is_enabled +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e3296f1 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x15e4d131 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1934e133 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ef57265 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ddc30fa fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2e5f992b fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x328761f9 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4a09577f fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4bb2efeb fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d3376ff fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4ead0a67 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x50772f44 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51cd45cd fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x62980999 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6b6aeded fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7a943ed9 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e4155bd fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9f2b9c39 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa02d4fd7 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xad3ba6a6 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb80b4119 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbfd1b4f2 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc650ed08 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc414b96 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe0cd71f3 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x287b58a1 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2d220d37 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x6e6a6ad7 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x6c2e998f adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xfaed712c ade7854_probe +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0447d083 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0688337c rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07a6a828 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0a6533e9 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ae6694e rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f282baa RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2246b036 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x24b52ad4 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x290a4d1a rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2aa1f75e rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31082557 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x321e7f09 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x340c03da HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38d11627 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b4dc9d6 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b61bf8f rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f9a09c7 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45137261 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47a6db93 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c3b8693 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51461fd7 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5296b33f rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a8dadfd rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x61cbdc9f rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x660232b1 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67f9ca9b rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6937f388 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x694ab891 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a006eb5 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6eddf5e0 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9354e7f1 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95f1b7d2 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x96acc2b7 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f4a67c4 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa3ce3820 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa776c62b rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa9ba99fa rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae906358 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb138e5e3 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2a9b5be rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd6966b8 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda180fa3 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf2ee274 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3b6b7c6 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf53b49bf free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf781b2e0 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa951451 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb307464 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfeaac954 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0196232c ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x042e5536 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0bc9153b ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d232f26 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14e3f1a8 ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x160ba73e ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16d4e87f dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f4d5ec6 ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27b9b49b ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b2dc74e ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x308dd8ba ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37d2eb58 ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x387696f0 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fea4ad2 ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4719e5ab ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x519e979c ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5da13cbe is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x639ec089 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x724b9893 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7adc12f7 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7dd82673 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89af5091 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8bae2281 ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f027c79 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9149bd4e ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9373e6d8 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9524fc9b ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96e2a09a ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98811708 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99b2f304 ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d3aebc4 ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9eedc0e6 ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa60010d7 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab0a96a2 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4500de5 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5fc658d to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbab7295d ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd068665 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf348c80 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0ef319a dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9989363 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca0bd6de dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb8a18d7 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd140fc2b ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd21b7a70 ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2d4867f ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd905bf7c dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda345be7 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda8e6efd rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb01b7f9 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1ce757f ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3f4ca53 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf644fa47 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01efcc7e iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07943469 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d201790 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d3048b6 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a0a7993 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c5d0362 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22845b7b iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22e17ee6 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ed08e63 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37097466 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3dcd11cc iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f198297 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40079c44 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40773852 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44b1f4e0 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fe127d5 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x559a7b32 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x567bb8db iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b93df74 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d286f77 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5eda2239 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62a410e7 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66c29994 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x687b2a2d iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6b418861 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cf34d58 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e4407f1 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f049eac iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7386bd7d iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b16ad8a iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c8906fe iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ab00f47 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c70bc2c iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c7dc660 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e650df1 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9274d61f iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d59910f iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d5a5f69 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac10fe55 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad065543 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbdf277c7 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc99e06e4 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe49f3f42 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe768a726 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff9ab76f iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x024ebf40 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x02eaee77 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x04977924 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x0735a555 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x096273ea sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x11a5925f target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x164c60cb transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x16636d78 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d6b9b22 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1da308ba __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1dd0d8a9 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f7c4738 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2220d9c6 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x249b38f2 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c7284ab target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2da813ce target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x38350cc4 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x392d6e00 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a734ade transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x3baa36eb target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x3c569319 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x43fac392 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x441830f8 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d1ab17c target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x50d64571 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x50ff0b8c sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x51753da8 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5379f640 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6045ed56 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x65322adb target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c5f83b4 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6de5e5bb target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x7050a158 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x71afc7bf target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x720ab443 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x72506149 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x73f875aa transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x75e58c6a target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x790dd908 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x8178baa4 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x83ded8ed transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x886f957f transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x905c2038 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x95a9a465 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c5c4578 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ea69092 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xa09d138a target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5b8018c target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa83553f8 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb371d544 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8c9bf92 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2005ad5 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2429899 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc26dcf21 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xc624ba7a passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xca67f7a6 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf7af488 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xd11afdd0 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1f0db6f spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd33c3c4a transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd714b318 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7898dcc target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8ea1c4a target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9243e09 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe50500cc transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5884d9d target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xe88c852d target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9f29813 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xef21a0dd spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1560ce8 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9ead683 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfaf56135 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd2ce4b6 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x16422b88 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x17ce9188 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2ef663a9 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3ad06392 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x690c8038 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xa3aeab36 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xadf22a28 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb1efbdd7 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x88119b7e tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xa21f8d26 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xb513fe29 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xdc2792d7 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x03678f3d usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x4c7255a2 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x845a4c2d sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x09272ce0 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1b03e4ff usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4506ab36 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x471750a2 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8272ecfb usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x85e75549 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x88d3ea02 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8d5e4087 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb54bc17b usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc9662776 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc9824410 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x04ea51a0 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9a07465e usb_serial_resume +EXPORT_SYMBOL drivers/vdpa/vdpa 0xa4d5aacc vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x404f180a mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe34ff04e mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe47d6000 mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf631fe66 mdev_register_parent +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x2afcbfdc vfio_unpin_pages +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 0xe4130e86 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xf33ab597 vfio_dma_rw +EXPORT_SYMBOL drivers/vhost/vhost 0x0207b3d3 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xd0863c4d 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 0x092c110b lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x0a920275 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8cb3f549 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc7c42a8e devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x211323aa svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3b776ae0 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6d03dc73 svga_tilecursor +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 0x9a379be4 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xada10660 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbe426419 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc92ed9cc 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/syscopyarea 0x4080a50b sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x3708e1ef sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x6b6ae3a0 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 0xfedd0ae0 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xa66599d3 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe1f1d26f g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe61bf3b9 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf8505cea matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x027bbbcf matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1f97ef07 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3f3e39a9 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x547dcff8 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x2c2858f8 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x15669cd2 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1aecbf4c matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5f60a008 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9e7c8b1a matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe8d24e91 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x60d5d298 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x7cdee7f8 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1f15c1d6 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3cfea939 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4eb20b20 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9d2def32 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xae3b2a36 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 0x674a6ace virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x735f9eb3 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x8023e1fa virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe6f55e55 is_virtio_dma_buf +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x04edfc0d w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x67d550d4 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x6ba1b65c w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd86dd57e w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x0bcf26fb w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x495ed1f5 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x8e6ccd2c w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xa2d564c9 w1_register_family +EXPORT_SYMBOL fs/fscache/fscache 0x0c90ff13 __fscache_unuse_cookie +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 0x1ea514f9 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x211b431b __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x25495c4a __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x25ff87c0 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2b3d1553 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x389b6353 fscache_put_cookie +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 0x454d77af fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x46b00b40 fscache_add_cache +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 0x5051dbe0 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x50c6c77e fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x52ad64a3 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5910a95d fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5e808fb7 fscache_withdraw_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 0x7568b689 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x86b39cd4 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x8eeb924f fscache_withdraw_volume +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 0xb18c15c8 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xb700c4a7 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0xb9b24243 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xbb7a0211 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0xbbb8924d __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xc2537773 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xccf2b894 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xe592c3fe __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe9355746 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0xeffc99f2 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xf22e2757 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfb11bbda __fscache_invalidate +EXPORT_SYMBOL fs/netfs/netfs 0x4c67de9e netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x95fae2f6 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xa456a05b netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xb35ee727 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0xb90fb456 netfs_stats_show +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1f49c1b3 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x725eee3c qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x89aca0ac qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x92ad62b6 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xa475bb38 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbc181e5b 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 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x6c713da5 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x916491ac 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 0x0cb562e6 lc_put +EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed +EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get +EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del +EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create +EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find +EXPORT_SYMBOL lib/lru_cache 0xc6f3e60a lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xe8ad1906 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xf0e20f9b lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xfba16232 lc_get_cumulative +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 0x28df3416 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x437671fb lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x44258d34 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9b45ab01 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa47d8a62 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xca4e1ad2 lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0x357b8bb5 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x3d440524 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x20022aaf register_snap_client +EXPORT_SYMBOL net/802/psnap 0x90ce29ad unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x02a56af9 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x0ba04428 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x13aa116f p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x14c24ccc p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x18bf7b44 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x22dd18a5 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x23aa7172 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x25957da4 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x29ec9a6b __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x2d248092 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x2e70f4bb __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x2f608fa6 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3540b5f0 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3e2614cb p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x48a4f398 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x4b696845 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x4ccecf5c p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4f09a474 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x564a5b7b p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x58ad3950 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x5994ea69 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x59b22cbd p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x5e2c60da do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0x61ea9492 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x6f0c7b60 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x6f6c8aa7 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x6f8d746b p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x7a739a3c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8a722c1f p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x8c0ad66f p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x8f12591f p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x97a57114 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xa1f671e8 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xa55e9cf8 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xa687021a p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xae4b7b54 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb1a6cb43 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xb1f81021 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xb2e0096f p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xb6684298 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xb856f0ad p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xbc4694d8 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xc8c54db0 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xce00d612 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xd3382f54 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd97df584 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xea853b46 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xeac663e0 p9_client_setattr +EXPORT_SYMBOL net/appletalk/appletalk 0x1966d8a4 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x39dd839d aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xa75f1631 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xd0523864 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2e2943be register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x3a86e405 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x6745e160 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x6e05b974 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x78e01cd1 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x7973c559 atm_charge +EXPORT_SYMBOL net/atm/atm 0x83d0f7d2 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x84f0e24d vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x8590efa8 deregister_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 0xbd378756 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xc51c885a atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xd2b966f9 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xee34182a atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x05e0352c ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x13e6e619 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x21896981 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x44a2bc92 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x6cc142d2 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9c8b3238 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xdad095a2 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xf21fa6f4 ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03b99d8c hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13ef524c bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15ddf1e3 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x17e66eaa bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x195eabc5 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b307532 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x20a64d1f bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x20c4205c l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2264785a hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2be06611 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e71f87c l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x363e61f4 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36effe46 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3de1755c hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3df3b3cc hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x42fcfdce __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x44c3f62b bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x44d44d1f bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x44d7588a hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a17abc8 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c93eb02 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x54dbc80c hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x55dff3a6 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x57a01c34 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5dba4e71 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x62cb4937 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b1f4503 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ae02907 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80f4f399 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x852c6264 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8632df9a __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x86e32ab3 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x894013cd hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x89728fbf bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9af329c7 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b881ca8 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb3643539 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8ddfb29 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc9db307 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1a44898 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8043fc4 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe33a8b45 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7d45c26 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeac8148e bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec3f9f0f hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xedd6a0b5 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeff0e1b4 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf02367be l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1808fe7 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbcd885c __hci_cmd_sync +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3f8f6def ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x58c529d7 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5fde63f2 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7d98b6d0 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9a578bd1 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9e0bce6e ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x22c0377a caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x53cbe42b cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x961be389 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xc5bd8605 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xf9073c78 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x397d90b6 can_rx_register +EXPORT_SYMBOL net/can/can 0x47673e71 can_send +EXPORT_SYMBOL net/can/can 0x76b733f7 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x7f982801 can_proto_register +EXPORT_SYMBOL net/can/can 0x9f429ce0 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xd01475bc can_sock_destruct +EXPORT_SYMBOL net/ceph/libceph 0x04cca8e8 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x068a2494 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x0c49d541 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x0c779499 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x136b4262 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x14995aab ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x156cebbc ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x1741a2ce ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x19ea722c ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x1a64041a osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x1bce6fd6 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x1d708b50 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x1e05a2a5 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x1ff75e34 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x28065513 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2b33fe99 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x30e32f34 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x31653c6d ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x3541772c ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x355c86f6 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x35c5fd7f ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +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 0x3ecc0291 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x42612228 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4a3e0295 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4cdb521e ceph_copy_to_page_vector +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 0x53bde46a ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x55c36985 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x575d7454 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x57b3c906 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x598e24e2 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x622768eb ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x63717680 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6d32d5d7 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x6d74afe9 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x6dd04c38 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x6ddce762 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x6f730838 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x6f8579d6 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x6fecbf98 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x774844af osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x78713f76 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x79104750 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x7bc91487 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7c52b2e2 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7d9102d1 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x80ecd8e3 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x84d013ac osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x84e8e3a8 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x86163b67 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x86532dba ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8bbe4fab ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x8c41d064 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x97785650 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x99a189f3 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9a2138ed ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x9a22610b ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x9ba46526 osd_req_op_raw_data_in_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 0x9d2e98b4 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x9db4ed06 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x9f29134c ceph_osdc_notify_ack +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 0xa2efba80 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xa616c8e3 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa6da25b5 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xa73541ba ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xaa79048a osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xac3464db ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xaf94bf27 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb380edb0 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6432786 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb82bdcf8 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xb83b0563 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xbb4fc770 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc5d955f0 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xc7181b4e ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcc906498 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xd1bcae2b ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xd2450af1 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd299c84e ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd310b51c ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xd47a8dfc ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd83cbcaf ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xdb1e1028 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdb530f49 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xdc2a6d83 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfa227a9 ceph_msg_new2 +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 0xe1ecb5d8 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xe2c9d739 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xe4fdf345 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe7a45b7c ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xea946e4b ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xec04ebd5 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xec09f377 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xec166087 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xee0b67fc ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee74db62 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef15d8ac ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xef35522e ceph_msg_new +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 0xf75f827e ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xf764a641 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xf9c703f3 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xfb9de4f1 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xff8cf8ca ceph_msg_data_add_pages +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3197a250 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x70d87667 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0xc8ddbbee hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xe2534a1d is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x35dc6f83 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x46d9c772 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5ac080b9 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9558aabb wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa85a5782 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb72259bd wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/fou 0x067a25aa __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xa9661e40 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x0ef23d8c gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0310e7d6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4b7b8270 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x926b865c ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa945002e ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x32976000 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3d4178ec arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6d0c2864 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa1f39d54 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x25263161 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xaab00d86 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf25cbcd1 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf982c3d0 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x0d7688aa xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x87eae7e7 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xb02cbe02 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x012ebf10 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9f15662d ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb4a1c0ce ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb4a8c1ab ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbf9188ed ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc4d9a50e ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc74a1c0a ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd6a123a6 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xda599f47 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5373ab03 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6099bcdd ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x95eb56d7 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe35565d6 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x0d2a8da3 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xdc9bdf2a xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x536a8fa8 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa066b32d xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x1ec33aad lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x2fc3e03f lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x38534148 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x5f610921 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x725d69de lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xb44619a6 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xb7f300d7 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xc6f49d35 lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x09095a15 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x0dcdaab0 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 0x57e7d5f9 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x76049ebe llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x89368819 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xd6166fcb llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xe601b1b6 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x0349853b ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x04816827 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x05ebabb1 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x06dc15d5 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x09b09223 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x0adef8cf ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x0c25a819 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0db12d0a ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x131120ab ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x14fe4745 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x15b49a6a ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1c4f0512 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1cb73fb5 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x1cc45d1e ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x2ef99b37 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x305a83c8 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x3649131e ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x36b4c4b1 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x39437cd5 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x39cedd9e ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x3c0ce307 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x3dbfc126 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x40d65f8e __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x41ef4499 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x485b0686 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x4f16f199 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x532b16e6 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x54f5ca90 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x56a8098a ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x57fdd7b8 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x581dc7ea ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x58ceb279 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x605ae7bd __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x633f2aac ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x67fcad3f ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6b8f8816 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x6d7a9d41 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x70a91f92 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x780924bd ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x780efb69 ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x7893e8cf ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x7b395ebb ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x7b60f501 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x7d640d52 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x7fa3c976 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x80deaffc ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x819cdfce ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8344c425 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x836b3811 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x842c878d ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x84e4a716 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x874829ac ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x88c70e3b ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x8aad1ba9 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8e279b1f ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x919608ef ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x921f5459 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x93ae7b93 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x954674a8 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x95bd8f5a ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0x98b091a4 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x993f9165 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x998580dc ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xa02a3e94 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xa16883be ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xa535281d ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xa82f65e5 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xadee5121 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb2fbf990 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb3364151 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xb640150f ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xbae95df9 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xbbd27050 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbbf059fa ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xbcd01dfe __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xbcdff7b1 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xbd8b1fb9 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xbdb2bdbe ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xc3487245 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xc835bb37 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xcc2a218a ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xcf6909e9 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd308cd25 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xd31aa7db ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xd9a583f9 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xda49e948 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xdb52d0e4 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xe90e8e89 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xec9a5841 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xed8a92ec wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xeeb99ba7 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xef437793 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xf1fbf230 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xf2ae65d2 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf4de7d52 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xf5f97700 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xf916e364 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xfa75a864 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xfb6b904b ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xfe5def5c ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xff228eac ieee80211_radar_detected +EXPORT_SYMBOL net/mac802154/mac802154 0x0c2d9e94 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x1f1513c5 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x256129eb ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0x65640fae ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x6df89029 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb8c17ea6 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc738658a ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xea429604 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0xec75d53a ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0b5bb458 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e619f40 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3bb51b47 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4541d4f5 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x57c1f958 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5e52a276 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6caeaf5a register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7594313b unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7bfef277 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8140a2ea ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x83fd2649 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x89b27cdc ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaa7bf9ab ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf15581b7 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf89a2d86 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 0x8c35449c nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x3b250633 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x9e2c3e3b __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xd164e6bb nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xe3bcc013 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x04945238 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x238b2a9b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x29ea1779 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x40a59cd7 xt_unregister_target +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 0x82e97a96 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x8b14be19 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9f925d03 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xb2becb5e xt_register_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 0xfafc5039 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/netfilter/x_tables 0xffe072dc xt_register_target +EXPORT_SYMBOL net/nfc/hci/hci 0x0713c1c7 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x15665d4e nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x19fb75e8 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x1adf991e nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x257e451c nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x454d4e7a nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x499f964e nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x5586b474 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x55fa1847 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x628da1bd nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x652f41ea nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x6b09a0e4 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x8bd46b90 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xb3c046fc nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb68a8b8b nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xba24e1b1 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xce8387ca nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xcf263c26 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xcfd1075c nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe55c959c nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xf5c26946 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x040e8634 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x0b74789a nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1fcd160b nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x2fbed56d nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x42337e64 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x5b17950b nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x5f82a69b nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x6334a930 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x6536a563 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x6638eabc nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x666d8cb6 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x734a0bf7 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7fa37807 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x81ace6d1 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9cd9f7b2 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xb9a9bf3d nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbb71d8ba nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xc168dc17 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xc407276f nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xceec902a nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xcfdce31b nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xd19b9631 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xda65553f nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xdb88fd1a nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xdfe438b1 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf4743a4e nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf5af83f7 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xf94daa89 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xfb24be24 nci_send_data +EXPORT_SYMBOL net/nfc/nfc 0x00a93e3e nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x06a0f2c1 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x1642b758 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x17b284a5 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x1ff3aade nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x2c307598 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x3a6068d7 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x3bece6eb nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x476de24d nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x5c4b9bbc nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x5cfefea5 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x61025090 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x62308324 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x680fab52 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x7a016858 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x8f3605d7 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xa0998809 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xa6a4ebd6 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xbedd4d0a nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xd05e1c46 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xd1a44b24 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xd41601a4 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xd922889f nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xdf65f1d6 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xffd4e33b nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x1b0f6225 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x38f06517 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc4125f33 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc9d3f815 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x1324ec99 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x1fb9b8d9 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x2d9d81bb pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x2e73df17 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x5a43feb2 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x8b3c2701 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xa51ee6b9 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xd2d08de1 pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2894c227 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2ee2a651 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a4e195b rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x46dd6915 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x53996e75 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c3fca83 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5f49702c rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x64e5e975 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x71ac7c6e rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x79709932 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x957d7c27 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9799ef6b rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9aad5232 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb375ee21 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd32096a0 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdbfaede0 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf402bafb rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf7f1e93a rxrpc_kernel_recv_data +EXPORT_SYMBOL net/sctp/sctp 0x6bf9ec11 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x13da1914 __traceiter_smc_rx_recvmsg +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 0x32c85f77 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x6886d038 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x6bdd9ca7 __traceiter_smcr_link_down +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 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4739fad7 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xaa3987a6 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcdd61968 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0xbd1c6c6a xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc38a06fb svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xdb44a152 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x0cfd2932 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x96dcb9f6 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xe06031f7 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xfe6697ec tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x083f1bd4 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x028de2f7 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x0bab7a7e cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x1058e841 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x1326ce6e cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x13bc733e cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x13d73f4f cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x14be3d1b cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x1639c4c9 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x188a431f ieee80211_data_to_8023_exthdr +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 0x209836a0 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x2241af44 cfg80211_rx_assoc_resp +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 0x2a6d47c7 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x2e35363c wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x32845c7e regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x34b2ffc6 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x362c7d17 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x36e07a0f cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x37dd253b ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x382f9506 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x392da80c cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x3a20c17a cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x3af76fee ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x413da793 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x4255a41e cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x425e0885 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x42f7805b cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0x436f1c57 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x454603ca cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x4653d88d cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4eb9f209 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x51122317 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x513c1a0a cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x530651a4 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x536053da cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x541ebd44 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x5784ed7d cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x57fb3e22 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5a377136 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x68c79b34 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6c4da2d9 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x6c5312ed cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x6eed9251 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x7102e701 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x719efe63 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x75116b7e cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x76273bca cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x812b8afa cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x85b041c7 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x8963de59 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x89b1ca31 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x8a940455 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x8c275f2c freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x8f0fb846 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x90017bbb cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x90cadbf9 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x91d2a2f6 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x93686776 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x9716298d cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x9879ec62 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x99ef9f92 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa0fbe0bb cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xa2199902 cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xa397d57f cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b909e8 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa9d04071 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xaa033fd7 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xaadd7031 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xac4220ac cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0xac755867 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb355dc5f cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xb39716c4 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb47ac278 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb496dc4a cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xb4b89a40 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xb6bc3b45 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xbe1c3109 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xbf9d02da cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xbffabe42 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xc39c3d3d wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xc65e8988 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc84a322d cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xc99d6eb2 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xca6fe01e cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xd07972d8 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xd4ee269b cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd63298b2 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc02e307 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xdc0ae8d0 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xdf4486bf wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xe110f303 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe24a4496 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xe4912a30 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe4e0557f cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xe5346e37 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xea2813c9 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xf3c8e66d cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf52a0c6a cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf98b5381 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfb933fd1 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xfd10eff5 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xff854fb2 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/lib80211 0x07e04397 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x3d1c1a45 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x635314ba lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xae4f074d lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xc4577d2c lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xc8f2f93c lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x889f1ea6 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x817c8668 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 0x4d662d94 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x624f2239 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 0x9b7b75e9 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 0xde95a140 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 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 0x05fcd195 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x002aec6c snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x00eba689 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x02298863 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x03bf069b snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x159064bf snd_jack_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 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x27907668 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x299e75ae snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x2d6a2a8a snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x31f09c21 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x37717fc9 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x391163d9 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3a133cce snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x3b3a4cc4 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x449355f3 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x460e3e57 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x462857a9 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4d836c9e snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x598a24f3 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x5e7abd01 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x6007b144 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x6e6f9795 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 0x854f1e89 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x89a1d218 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x8c9e43e3 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e3a28ce snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x90a05d7d snd_card_register +EXPORT_SYMBOL sound/core/snd 0x91b11ee5 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x9aa19422 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9f329fee snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xa1dc62c6 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xa9f4727a snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xaf172e5d snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbd4fded8 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xbe39c500 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xc39192b1 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc8d22b20 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd4e66bb9 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xd695fd0d snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xd6cace7d snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xd73f6bd0 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xdd252093 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xddd5f674 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xdedd75fd snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xea0264b1 snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0xf50e93cb snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xf57d63e6 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xf72e6ccb snd_device_register +EXPORT_SYMBOL sound/core/snd 0xf9fc1f56 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xfdeb040c snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x7ef8c3ad snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0xd5affdd3 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x69375ba4 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02b54542 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x09593899 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x1615bad1 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x167f8dad snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x19963c6b snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x1c569326 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x207c57db snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x21afdcff snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x2ba5ad38 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x2ebd4232 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x31adc11c snd_pcm_hw_constraint_pow2 +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 0x39ca44fa __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x41c19242 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x43669f74 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x44efd2c1 snd_dma_buffer_mmap +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 0x5d29cacb snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x6315ced2 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x6451082e snd_pcm_lib_free_vmalloc_buffer +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 0x729fbbe6 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x78d34503 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x7bd74790 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7c97975b snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7db02cdd snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x7f31fca2 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x84a1066d snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x86681ee0 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x894c04ff snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x8a1a9a8e snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xa0e8ca1e snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa48901d4 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa62b6734 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xaadf5bc5 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xabb0e55e snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xade572e8 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xaf1c3675 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xb0d5361a snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbaf5ea05 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc1c71149 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd306df96 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xd4ec2288 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xd5337888 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe0cc2487 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xe2ba7ad0 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xed60f50f snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xefde6af2 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xf09f70d2 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xf101a947 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xf7cc6375 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xfd6f7a64 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0609c39c snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x236b5229 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5f3ff3dd snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x631acc23 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8352de3b snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x88dc3aa2 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9bf0045d snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9ecb6624 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb9cd388f snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbcd3dbf4 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbe449bba snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc539be76 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd849df6e snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd90bd6c0 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd945c951 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdb092f1f snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe91409c4 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfc443a15 snd_rawmidi_new +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 0xa782f542 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x0038c6d0 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x0c275dfe snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x193f59a7 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x3ea8a6ad snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x54253d67 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x8cca6d6c snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x99564545 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x9cc82a91 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xb1caa184 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xb367d7b3 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xe3aa4931 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xe61eb066 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xe7c1c467 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xf3e4d259 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xf66ba357 snd_timer_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xcb171272 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1984fb06 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x211424d2 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x28822179 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2ff4b80f snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x40abbe57 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4f47668d snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa5756153 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd021a56a snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe038ed89 snd_opl3_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2a279125 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x49196758 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x53fb0522 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x560d8103 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6902e874 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x74a84917 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa68f73a8 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc8c2dd50 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd66e957c snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09a571ce amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11c2bc08 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x129e0790 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12ac56b0 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13176d30 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e1764fa cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x390d9d72 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49144299 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4cca2509 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4f9057e8 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x528eba1a avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5743e514 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5c988b86 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x69c895f2 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8278a118 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x842c700d snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x910567d7 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb067b26c fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb85464b6 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbd73fd92 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc421f64e cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc44d4ea5 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc49767d6 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7c0e963 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd93a9ff amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd11edc52 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd95284a fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xecb065a7 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc8772b1 amdtp_stream_update +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x3f800620 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x97a50db7 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0a88e4ef snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1361f059 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x27c9be43 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x72b50bb5 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x737080fb snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb5629b4d snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc59b99c9 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd1795a6a snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbdf7e183 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc29bc824 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd62e437e snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xda17d664 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x1d27835f snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x516cec61 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x05866009 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x33ed9679 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5af4b694 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x950bccbe snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb151cab2 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf423c200 snd_i2c_device_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x046ec5c5 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0e4e34a8 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2c7bab37 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4384bcdd snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x46485e14 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5157fc91 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5e621955 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9496f9af snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd0f2791e snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xdf34d869 snd_sbmixer_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x19dfd589 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1ef05eb1 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x35abddb0 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5f5c6129 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x63b2803b snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6dba72ec snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6e60b249 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x81059ad6 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaea00db6 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaf207f13 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb1365e3a snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb36222ed snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb770f7cd snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbd09a25f snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd21ce2c0 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xea5017bd snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf2462619 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x197900e2 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x646f1d4c snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9edcd2a3 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0658ffab oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0d90dc45 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x155b61e7 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x309307ef oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5ecb5666 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64ecd1b5 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6dd4e556 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6e098452 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9616a38c oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9cb9913d oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9e4f2cba oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa0eaa640 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa203abab oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb9a3583f oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd3c68e8 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd983dbd oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbf780457 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc400ff20 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc4da4884 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xebd590a5 oxygen_write8_masked +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x357c9f8c snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x93cfba30 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xcca7d6a2 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x1b4dbb10 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x2be1cacf wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x73468f66 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xf678a29d pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xdbab3423 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xdfdfc434 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x15e4ef0a aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3028c6c0 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x68f3d317 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x56a48c26 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x973b1054 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x2c357a91 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3c924ebb wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x6fa761c6 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x14740e4b fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x43f8c8bc fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xc91879dd fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/snd-soc-core 0x55e39aa5 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soundcore 0x0b2193d9 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0x9fa1f1db register_sound_special +EXPORT_SYMBOL sound/soundcore 0xabb5cc8e sound_class +EXPORT_SYMBOL sound/soundcore 0xbda3637e register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xc29adf02 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x40e0f4a3 __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 0x00074b33 scsi_partsize +EXPORT_SYMBOL vmlinux 0x000831c7 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x000b57dc input_set_abs_params +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x00258046 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect +EXPORT_SYMBOL vmlinux 0x004571ac generic_read_dir +EXPORT_SYMBOL vmlinux 0x00531784 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x0054a516 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x006413f1 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x007b1986 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x009249fe gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x009c2960 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00cbfe00 fqdir_exit +EXPORT_SYMBOL vmlinux 0x00d68f09 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00ee5193 __devm_request_region +EXPORT_SYMBOL vmlinux 0x00ef137d tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x00f7c2ca tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x00fc47e3 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0102c348 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x0107df5a rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x01245530 pci_free_host_bridge +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 0x014bbc62 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x014e3d5c tty_do_resize +EXPORT_SYMBOL vmlinux 0x01556032 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x015c11e0 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x0160f45e i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x0168b7f9 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x01724375 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017c4f68 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x017d9a08 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x01853172 uart_match_port +EXPORT_SYMBOL vmlinux 0x0186c995 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x0188544e netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x018bf619 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x01982074 xa_set_mark +EXPORT_SYMBOL vmlinux 0x019e4722 sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x019f19ed netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x019fde58 pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x01b83f46 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01ca1dad thread_group_exited +EXPORT_SYMBOL vmlinux 0x01d2b93c inet_csk_accept +EXPORT_SYMBOL vmlinux 0x01e80408 timer_interrupt +EXPORT_SYMBOL vmlinux 0x01ec1f09 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x0210c2dc inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x0214029e mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x021b425d mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x022ba86a netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x022ff3bb blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024b7a2d submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x024e21fc unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x025c1602 __debugger_sstep +EXPORT_SYMBOL vmlinux 0x026cbc6b nf_log_unregister +EXPORT_SYMBOL vmlinux 0x026e0575 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02786417 vga_client_register +EXPORT_SYMBOL vmlinux 0x027d7a7d rproc_alloc +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a78efb neigh_table_clear +EXPORT_SYMBOL vmlinux 0x02af3058 cdrom_open +EXPORT_SYMBOL vmlinux 0x02b3a92d try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c3c40e __debugger_break_match +EXPORT_SYMBOL vmlinux 0x02da302e skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x02db2446 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x02e69a37 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x02ebb676 setattr_copy +EXPORT_SYMBOL vmlinux 0x0306b3d6 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x031952cc _copy_to_iter +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0337d0a0 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x034bcee2 sock_set_mark +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0392c0c1 pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0x0393588a file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x03963dd5 seq_release_private +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03aff695 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x03b8a1ac nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x03d04069 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x03e72b8e kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x03f5fa8a proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0412de8f iget_failed +EXPORT_SYMBOL vmlinux 0x041d880f elv_rb_find +EXPORT_SYMBOL vmlinux 0x0420fa96 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x0424bb5f ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x042731ad security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x042b2ac4 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x042c3050 load_nls_default +EXPORT_SYMBOL vmlinux 0x042fc727 of_read_drc_info_cell +EXPORT_SYMBOL vmlinux 0x0433d640 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 +EXPORT_SYMBOL vmlinux 0x0457ad77 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0489ab0c _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x04934df2 single_release +EXPORT_SYMBOL vmlinux 0x04a0959a netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x04cef634 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f158be cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x04f9ad1e sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x04ff49ca dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x05059ae6 unlock_buffer +EXPORT_SYMBOL vmlinux 0x051350d1 __brelse +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053913d9 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05590ef3 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x056f52f2 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x0575e45f __mdiobus_register +EXPORT_SYMBOL vmlinux 0x0588041a skb_push +EXPORT_SYMBOL vmlinux 0x05cb5ee8 mmc_put_card +EXPORT_SYMBOL vmlinux 0x05cebd47 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x05d27dbb tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x05dc9b3f md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x05f20b7b nla_reserve +EXPORT_SYMBOL vmlinux 0x06093a08 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061d2835 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x0628f0bc ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064d459c generic_perform_write +EXPORT_SYMBOL vmlinux 0x06577df4 dev_get_flags +EXPORT_SYMBOL vmlinux 0x065e4e47 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x068bbf27 __folio_put +EXPORT_SYMBOL vmlinux 0x0690d834 flush_all_to_thread +EXPORT_SYMBOL vmlinux 0x0694074b register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06b5c2a9 skb_eth_push +EXPORT_SYMBOL vmlinux 0x06cc3d1a phy_device_create +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06da824b scsi_device_get +EXPORT_SYMBOL vmlinux 0x06dca96b zero_fill_bio +EXPORT_SYMBOL vmlinux 0x06e11938 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x06eda9f0 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x06f677c3 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x0714c1eb param_set_byte +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074c321e __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x074ef9ee blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x076e6903 pci_map_rom +EXPORT_SYMBOL vmlinux 0x0773e3f7 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x0786ed78 param_set_charp +EXPORT_SYMBOL vmlinux 0x078e9493 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x079018f2 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x07a67abd scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07bd626a get_fs_type +EXPORT_SYMBOL vmlinux 0x07c263fc agp_put_bridge +EXPORT_SYMBOL vmlinux 0x07c831c6 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x07cbbdd6 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d7591a d_alloc_name +EXPORT_SYMBOL vmlinux 0x07de7b4c __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x07e30fbd skb_copy_expand +EXPORT_SYMBOL vmlinux 0x07f09b7e pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0802f1e2 udp_poll +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0808f845 single_open_size +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08339eb1 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0875bce0 __inet_hash +EXPORT_SYMBOL vmlinux 0x0881111d tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x08897724 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x08c0d281 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x08d8c37e __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x08f61b49 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x0932c097 inode_init_once +EXPORT_SYMBOL vmlinux 0x0937c944 inet_addr_type +EXPORT_SYMBOL vmlinux 0x094bf7ea cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x096a7e99 mutex_lock +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09bc82dc inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x09be818f textsearch_unregister +EXPORT_SYMBOL vmlinux 0x09bf7e9d sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x09c038a6 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x09c84c17 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d78a22 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x09dfb71a param_ops_byte +EXPORT_SYMBOL vmlinux 0x09fdfce6 seq_vprintf +EXPORT_SYMBOL vmlinux 0x09fe1fe8 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x0a000601 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a08378a new_inode +EXPORT_SYMBOL vmlinux 0x0a16dd6d sock_no_listen +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a227438 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x0a30b228 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7ec825 dump_page +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0abbc762 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x0abdc12c fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0b11399b xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 +EXPORT_SYMBOL vmlinux 0x0b1b4529 genphy_read_status +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1df5d0 proc_set_size +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b54c628 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x0b5ef9ef pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x0b72a46e dm_io +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b744b90 iget_locked +EXPORT_SYMBOL vmlinux 0x0b8a6338 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x0b99f89c flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x0b9c1fa0 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0be05855 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x0be7eedb __ip_dev_find +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf25e5a dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x0bf36885 do_wait_intr +EXPORT_SYMBOL vmlinux 0x0bfbccda of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c3eb655 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x0c58fdd5 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c82d472 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x0c944e8c netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x0c962eda mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x0ca62a80 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb12092 xa_destroy +EXPORT_SYMBOL vmlinux 0x0cbf0990 eth_header_cache +EXPORT_SYMBOL vmlinux 0x0cc37578 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0ccc8b13 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cf34853 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x0cf98ca0 __xa_alloc +EXPORT_SYMBOL vmlinux 0x0cfa70d3 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x0cfd2c85 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x0d034019 invalidate_disk +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d0a5789 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d2b3d68 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d37cf5d nlmsg_notify +EXPORT_SYMBOL vmlinux 0x0d47d799 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x0d52b99b unregister_netdev +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d62f649 blk_get_queue +EXPORT_SYMBOL vmlinux 0x0da1aff7 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x0dab27d8 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x0dd6447a udp_read_skb +EXPORT_SYMBOL vmlinux 0x0de08198 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x0dfd14d9 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e4b13fa gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x0e4d0cff xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x0e615648 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x0e6214ab security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x0e818806 devm_ioremap +EXPORT_SYMBOL vmlinux 0x0e91ece1 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb48712 d_drop +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ebea124 vfs_rename +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed0c28a filemap_release_folio +EXPORT_SYMBOL vmlinux 0x0edd7c2d clk_bulk_get +EXPORT_SYMBOL vmlinux 0x0ee29e6a i2c_del_driver +EXPORT_SYMBOL vmlinux 0x0ef32b00 register_key_type +EXPORT_SYMBOL vmlinux 0x0efd79e4 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0f362f scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f1b1a79 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x0f20473c dquot_acquire +EXPORT_SYMBOL vmlinux 0x0f29d575 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x0f2b7f29 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x0f4651dc dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x0f4efb7e follow_down +EXPORT_SYMBOL vmlinux 0x0f63fd4f __post_watch_notification +EXPORT_SYMBOL vmlinux 0x0f6b347e kobject_add +EXPORT_SYMBOL vmlinux 0x0f8400bd tty_port_hangup +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f89ce1c dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x0f8da8e2 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x0f8f87fd eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x0f923ab0 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x0fa89ef8 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x0fa9f665 seq_write +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb72533 register_filesystem +EXPORT_SYMBOL vmlinux 0x0fd0c81e genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x0fd69193 zap_page_range +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe26ee2 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x0fead96a unregister_qdisc +EXPORT_SYMBOL vmlinux 0x0feda475 dquot_operations +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x0fff7667 set_capacity +EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x101b30db genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x1035f302 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x104407bb twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x10542099 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x1059f0ea read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106c0cb4 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x107483dc skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x1075c5d3 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10b86b74 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x10ca50d4 vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0x10d41a9d i8042_install_filter +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e0f124 __pud_index_size +EXPORT_SYMBOL vmlinux 0x10e14d9c add_to_pipe +EXPORT_SYMBOL vmlinux 0x10e38696 napi_enable +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10f415df find_inode_nowait +EXPORT_SYMBOL vmlinux 0x10fbe580 pci_release_regions +EXPORT_SYMBOL vmlinux 0x1107eb7b netdev_crit +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x111fa7c9 qe_pin_set_dedicated +EXPORT_SYMBOL vmlinux 0x1120f834 phy_device_free +EXPORT_SYMBOL vmlinux 0x112b2e61 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x11375103 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x113afcc4 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x113fcad2 kill_litter_super +EXPORT_SYMBOL vmlinux 0x11457c7c iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x1145b316 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x115fe053 of_match_device +EXPORT_SYMBOL vmlinux 0x116627c9 ioremap_prot +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x118acda1 dget_parent +EXPORT_SYMBOL vmlinux 0x119c03dc sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x11a94111 qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x11b36c4a flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x11cfa9a3 skb_copy_and_csum_bits +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 0x12015d84 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x1225341a fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x1227fe9c get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x12399897 uart_register_driver +EXPORT_SYMBOL vmlinux 0x1240b00b pps_register_source +EXPORT_SYMBOL vmlinux 0x124a4d87 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1252639e capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down +EXPORT_SYMBOL vmlinux 0x12805a53 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x1282dac8 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x12a6dbcc agp_find_bridge +EXPORT_SYMBOL vmlinux 0x12a793ff mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x12ba9d8d register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x12bb13e1 key_task_permission +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fbbcb8 tty_name +EXPORT_SYMBOL vmlinux 0x130edef5 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1317aa5a block_truncate_page +EXPORT_SYMBOL vmlinux 0x13303b9a vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0x13308c89 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x133eed38 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x1357db27 edac_mc_find +EXPORT_SYMBOL vmlinux 0x136bec95 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x1398771f simple_transaction_get +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13bd7928 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13dd251d d_make_root +EXPORT_SYMBOL vmlinux 0x13e1b2d5 current_stack_frame +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x140184d7 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x142951e0 request_key_tag +EXPORT_SYMBOL vmlinux 0x143a9d6d phy_error +EXPORT_SYMBOL vmlinux 0x14462b7c register_cdrom +EXPORT_SYMBOL vmlinux 0x144e7650 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x14514d8b param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x147e0857 gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x14a2b413 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x14a8307e qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x14b1d296 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x14b2c49c __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock +EXPORT_SYMBOL vmlinux 0x14ecdf9d sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x14f23fe1 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x14fdce79 config_item_get +EXPORT_SYMBOL vmlinux 0x15051cfc to_nd_pfn +EXPORT_SYMBOL vmlinux 0x150758dd mmc_remove_host +EXPORT_SYMBOL vmlinux 0x15140ed0 keyring_clear +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x15419ee0 vmap +EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x15492c03 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1558d809 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x155fa142 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x1569de00 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x156acdff compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x156d646b ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x156eb1d6 fsync_bdev +EXPORT_SYMBOL vmlinux 0x15873d77 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x15a2dcc7 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x15a9baa9 key_move +EXPORT_SYMBOL vmlinux 0x15b71962 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15e2484b i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x15f0c4dd param_get_ulong +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x1605f322 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x1622fc4f vme_dma_request +EXPORT_SYMBOL vmlinux 0x16260719 task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x1626eb64 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163959ba ps2_command +EXPORT_SYMBOL vmlinux 0x16406cad dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x164c4890 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x16502a84 seq_printf +EXPORT_SYMBOL vmlinux 0x166909dc wake_up_process +EXPORT_SYMBOL vmlinux 0x166ef5d2 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x1672369b pcim_pin_device +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x168d7521 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x168de582 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x168e69a5 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x1696c9d6 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169fc0e4 keyring_alloc +EXPORT_SYMBOL vmlinux 0x16a02bde tcp_splice_read +EXPORT_SYMBOL vmlinux 0x16a5be0a pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x16aaf1e0 skb_tx_error +EXPORT_SYMBOL vmlinux 0x16cf25be fget +EXPORT_SYMBOL vmlinux 0x16d37d01 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e63af7 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x16efb3f3 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x16f574fc blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x16f94b7b dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x16fa9c2f __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x1708571c simple_lookup +EXPORT_SYMBOL vmlinux 0x172c79f3 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x172e1afe inet_shutdown +EXPORT_SYMBOL vmlinux 0x1740d299 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x174116a5 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x1748560e pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x176d199f ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x17780efa dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x178c55fc netlink_unicast +EXPORT_SYMBOL vmlinux 0x17a8bc85 tcf_block_put +EXPORT_SYMBOL vmlinux 0x17b5a280 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x17b71565 nf_log_register +EXPORT_SYMBOL vmlinux 0x17cca897 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x17d2e32a pci_request_region +EXPORT_SYMBOL vmlinux 0x17de4ea0 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x17ed13b7 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x17ef3544 swake_up_one +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x18096933 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x181d4003 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x18255c0d __init_rwsem +EXPORT_SYMBOL vmlinux 0x182ec3f0 vfs_unlink +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x183a53c3 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x184d5d4a scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x1852a846 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x187ad8cb ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x1881e77b xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x18860b26 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x188de251 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x188f1da7 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x18d4f570 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x18e3cd2c radix__flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e7bc17 __module_get +EXPORT_SYMBOL vmlinux 0x18f001c2 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x18fb732c md_done_sync +EXPORT_SYMBOL vmlinux 0x190bac53 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x19150469 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x19166657 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x192dee7c devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x19307f06 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x19400307 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x195967bc skb_dump +EXPORT_SYMBOL vmlinux 0x196186d2 file_remove_privs +EXPORT_SYMBOL vmlinux 0x196a5a99 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x197fc89f phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x1989b924 pin_user_pages +EXPORT_SYMBOL vmlinux 0x198ab749 input_release_device +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a53761 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0x19b13214 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x19b16b34 up_read +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cb182c mdio_device_remove +EXPORT_SYMBOL vmlinux 0x19cd1e70 get_inode_acl +EXPORT_SYMBOL vmlinux 0x19ce5fcd vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x19d68628 xa_get_mark +EXPORT_SYMBOL vmlinux 0x19d99b08 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x19db5be4 vfs_link +EXPORT_SYMBOL vmlinux 0x19dcf536 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x19eb4df9 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x19ef4bf2 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x19f328fe vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x19f76a06 uart_resume_port +EXPORT_SYMBOL vmlinux 0x1a12571d scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x1a20f874 _dev_info +EXPORT_SYMBOL vmlinux 0x1a26b8ac vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x1a4978dc __ip_options_compile +EXPORT_SYMBOL vmlinux 0x1a65768a fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x1a6af7fb give_up_console +EXPORT_SYMBOL vmlinux 0x1a994c69 end_page_writeback +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa2b3f1 tlbie_capable +EXPORT_SYMBOL vmlinux 0x1ab1449f page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac99144 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x1ad0850b ip_defrag +EXPORT_SYMBOL vmlinux 0x1ad4a419 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x1adc96ad uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x1af3758d __do_once_done +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1af73377 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x1af860f3 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x1afdc244 mutex_trylock +EXPORT_SYMBOL vmlinux 0x1b0154c4 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0a199b dev_disable_lro +EXPORT_SYMBOL vmlinux 0x1b0b43f3 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x1b2128d8 fb_find_mode +EXPORT_SYMBOL vmlinux 0x1b224c97 inet_del_offload +EXPORT_SYMBOL vmlinux 0x1b2c9ba0 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x1b3828a9 filemap_fault +EXPORT_SYMBOL vmlinux 0x1b45fd0a pci_save_state +EXPORT_SYMBOL vmlinux 0x1b4d1dcb xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x1b4ee2ac input_allocate_device +EXPORT_SYMBOL vmlinux 0x1b52f2bd tcf_action_exec +EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b64e347 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7f7da4 ram_aops +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b924835 netdev_warn +EXPORT_SYMBOL vmlinux 0x1ba1078c phy_read_mmd +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1baae9d6 dma_fence_init +EXPORT_SYMBOL vmlinux 0x1baee533 param_ops_bint +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb57282 of_translate_address +EXPORT_SYMBOL vmlinux 0x1bd2849f tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bd651cf pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x1bf5dd9e param_set_int +EXPORT_SYMBOL vmlinux 0x1c07fd40 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x1c22a3a8 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x1c36fa97 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c472ad0 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x1c4a61b3 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x1c4da2d8 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x1c789a63 of_phy_connect +EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x1c87a7a4 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x1c9a9b91 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x1ca1b1be radix_tree_delete +EXPORT_SYMBOL vmlinux 0x1ca42483 phy_write_paged +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1cbbf806 get_agp_version +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cc11ef4 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x1cc1ba60 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x1ccc37e8 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1ccd6e11 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x1cd617a7 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x1cde0a51 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x1ce15d0a __irq_regs +EXPORT_SYMBOL vmlinux 0x1cf32c28 init_special_inode +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d0e028b __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x1d13acdc mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x1d15a50d of_node_put +EXPORT_SYMBOL vmlinux 0x1d211dd8 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x1d471c29 locks_init_lock +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d669a8b __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1d6d2ef8 ppp_input_error +EXPORT_SYMBOL vmlinux 0x1d732d87 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x1d85b541 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x1d8edd01 dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x1d91c368 kset_register +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dcbd428 bio_init_clone +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd88fcf fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de764b0 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x1dfddab3 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0dd61f cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x1e1992cc __memset64 +EXPORT_SYMBOL vmlinux 0x1e22baaf bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x1e2703f3 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x1e344b59 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x1e4878a3 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x1e4adbfc clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x1e4e94dc tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x1e61d133 of_device_register +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7f65a3 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x1e875885 add_wait_queue +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea6f423 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x1eaf5cbc platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x1ebaabd7 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x1ebef7cd __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x1ecb0d60 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x1ed6b7e4 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1f16060f md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x1f192f36 d_rehash +EXPORT_SYMBOL vmlinux 0x1f412480 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x1f430a84 __scm_destroy +EXPORT_SYMBOL vmlinux 0x1f4e1d15 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x1f5ef743 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x1f7a9368 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x1fa5c419 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x1fabd9ab __breadahead +EXPORT_SYMBOL vmlinux 0x1fb0c445 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x1fbce339 __vio_register_driver +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe3e972 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x1fe57d05 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x1fe9656b pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x1fe9954b dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2001589d genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2010c11b __getblk_gfp +EXPORT_SYMBOL vmlinux 0x201142a3 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x202452a9 retire_super +EXPORT_SYMBOL vmlinux 0x202a09eb csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x2032c7f4 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x2033b0f2 input_unregister_device +EXPORT_SYMBOL vmlinux 0x2038c597 misc_register +EXPORT_SYMBOL vmlinux 0x203f31c2 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x204d7b0d ip_output +EXPORT_SYMBOL vmlinux 0x205f5ca3 cdev_add +EXPORT_SYMBOL vmlinux 0x2087c91f mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x208a8637 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x208f2e37 ilookup +EXPORT_SYMBOL vmlinux 0x209d15d9 pci_request_regions +EXPORT_SYMBOL vmlinux 0x209ed6a0 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a810be phy_aneg_done +EXPORT_SYMBOL vmlinux 0x20a89614 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x20af073e __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x20b12820 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x20cf4ca5 get_phy_device +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e126cc cdrom_check_events +EXPORT_SYMBOL vmlinux 0x20eba0bb rproc_detach +EXPORT_SYMBOL vmlinux 0x20fdf671 __scsi_execute +EXPORT_SYMBOL vmlinux 0x210862e5 mtree_insert +EXPORT_SYMBOL vmlinux 0x211ed33b scsi_device_resume +EXPORT_SYMBOL vmlinux 0x212da734 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x213870d7 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x21390b9f param_ops_invbool +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x215da299 tty_register_device +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x219b1564 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x21a80c20 ip_mc_join_group +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 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21f15dd7 serio_rescan +EXPORT_SYMBOL vmlinux 0x2207e261 __break_lease +EXPORT_SYMBOL vmlinux 0x221cd090 __lock_buffer +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2237eb5f truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x223c1259 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x2244987c tty_port_destroy +EXPORT_SYMBOL vmlinux 0x2249a130 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x224c3958 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x224d8a2d mdio_device_reset +EXPORT_SYMBOL vmlinux 0x225df058 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x2271de19 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x227228f1 mmc_erase +EXPORT_SYMBOL vmlinux 0x2275e983 rtc_add_group +EXPORT_SYMBOL vmlinux 0x22817b13 user_revoke +EXPORT_SYMBOL vmlinux 0x2290f111 mdiobus_free +EXPORT_SYMBOL vmlinux 0x2292b3a0 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x22988c4b to_nd_dax +EXPORT_SYMBOL vmlinux 0x229ed112 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x22a6f72e ip6_frag_next +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b9300f generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x22b9d72c nf_ct_attach +EXPORT_SYMBOL vmlinux 0x22c7a223 iterate_fd +EXPORT_SYMBOL vmlinux 0x22c8f37c mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x22e57f66 sock_wake_async +EXPORT_SYMBOL vmlinux 0x231d2452 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 +EXPORT_SYMBOL vmlinux 0x2363a615 blk_start_plug +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x236b283e tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x2373994d scsi_dma_map +EXPORT_SYMBOL vmlinux 0x2377bc71 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x237cc2b8 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x237ed869 pci_select_bars +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x239262c2 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x2392d2e8 __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x239a89f4 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x23a97b7d tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x23b5b617 mempool_create +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c5ec00 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x23cfcfe3 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23f6a56f jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x23fa21bd tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24159dad of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x241da931 key_put +EXPORT_SYMBOL vmlinux 0x24286c46 tty_hangup +EXPORT_SYMBOL vmlinux 0x243d9fbf textsearch_prepare +EXPORT_SYMBOL vmlinux 0x243fa41d noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x249ae436 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x24efbec8 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x24f6000d sock_recvmsg +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x250788f0 rename_lock +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x254101f7 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x25496679 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x254c9287 ioremap +EXPORT_SYMBOL vmlinux 0x255166d6 proc_remove +EXPORT_SYMBOL vmlinux 0x255c8e24 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x25635461 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x2579ddc8 noop_qdisc +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25a1365f inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x25c45e90 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x25c84c5b xsk_tx_release +EXPORT_SYMBOL vmlinux 0x25d10abd fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fad955 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x26152a09 mr_table_dump +EXPORT_SYMBOL vmlinux 0x261a11de param_get_ushort +EXPORT_SYMBOL vmlinux 0x2624852a __phy_resume +EXPORT_SYMBOL vmlinux 0x26255201 thaw_bdev +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x265da0cd filemap_map_pages +EXPORT_SYMBOL vmlinux 0x2672e194 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x2676f161 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x2679dd74 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x267ca743 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x26849f9a phy_read_paged +EXPORT_SYMBOL vmlinux 0x2685993d mod_node_page_state +EXPORT_SYMBOL vmlinux 0x2686a91e mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x268709b3 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26ca2292 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x2705c02e __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x2712758d dst_release +EXPORT_SYMBOL vmlinux 0x2723c710 __ip_mc_dec_group +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 0x274e46c3 would_dump +EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x276d2783 blk_mq_alloc_disk_for_queue +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 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278b3384 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x27af23f5 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27be527c param_get_long +EXPORT_SYMBOL vmlinux 0x27c997c9 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27f89444 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x27fd4291 noop_fsync +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2832387d kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x283338eb of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x2853fde0 ilookup5 +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287b3b2f __bh_read +EXPORT_SYMBOL vmlinux 0x2885e857 md_check_recovery +EXPORT_SYMBOL vmlinux 0x288f1838 revert_creds +EXPORT_SYMBOL vmlinux 0x2898c3ca security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x28cd5db5 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x28ec06b8 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x2906f8cd kern_path +EXPORT_SYMBOL vmlinux 0x290c9e07 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x290dfece bpf_link_put +EXPORT_SYMBOL vmlinux 0x2946e602 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x294c8b05 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x294ed50b mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x29535d16 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x296bae3f mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x29870085 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x2989487b nla_append +EXPORT_SYMBOL vmlinux 0x29a2fc26 of_get_property +EXPORT_SYMBOL vmlinux 0x29adcf82 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x29bc9f0c inet_frag_kill +EXPORT_SYMBOL vmlinux 0x29dff614 ppc_md +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29ef82b4 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x29f177db sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x29fab2dc scsi_register_interface +EXPORT_SYMBOL vmlinux 0x2a03dba3 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x2a04c95e vfs_mknod +EXPORT_SYMBOL vmlinux 0x2a070e56 netif_rx +EXPORT_SYMBOL vmlinux 0x2a15fad4 tcp_filter +EXPORT_SYMBOL vmlinux 0x2a162379 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x2a22b16a devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x2a26da2e pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x2a2d5bb4 vc_resize +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a54f13f __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x2a575738 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x2a60f408 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x2a662acd udp_ioctl +EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable +EXPORT_SYMBOL vmlinux 0x2a70a748 config_item_set_name +EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2a8e32b1 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a969cea netdev_update_features +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa53e9e agp_bridge +EXPORT_SYMBOL vmlinux 0x2aa70950 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x2aab0a65 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2aac821b netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2aaca23c md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x2aada51d seq_open +EXPORT_SYMBOL vmlinux 0x2ac26c18 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x2ac9b412 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x2ad2ae92 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x2ad9281c sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x2b011287 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x2b0d4135 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x2b1b7319 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x2b1e9f35 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x2b505e3e phy_register_fixup +EXPORT_SYMBOL vmlinux 0x2b5284da kernel_sendpage +EXPORT_SYMBOL vmlinux 0x2b52c249 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x2b622717 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x2b7040e0 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x2b730276 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x2b7afc69 mntget +EXPORT_SYMBOL vmlinux 0x2b8eafd3 skb_seq_read +EXPORT_SYMBOL vmlinux 0x2b94e2b7 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba36bbb shmem_aops +EXPORT_SYMBOL vmlinux 0x2baeee3a __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x2bbef32d vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x2bcff2ea da903x_query_status +EXPORT_SYMBOL vmlinux 0x2bda50b5 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c370f94 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x2c4a137a folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x2c5a5580 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x2c605233 simple_rmdir +EXPORT_SYMBOL vmlinux 0x2c613b49 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c82e7d0 tty_devnum +EXPORT_SYMBOL vmlinux 0x2c878f2d bio_free_pages +EXPORT_SYMBOL vmlinux 0x2cc17514 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x2cc236ee dcache_dir_close +EXPORT_SYMBOL vmlinux 0x2cc928bd mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cee2fa2 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x2cf05e92 d_lookup +EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table +EXPORT_SYMBOL vmlinux 0x2cf2462f nf_reinject +EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x2cfd8482 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x2d10722b ata_print_version +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d29235e blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d35ed9a xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4842b3 d_delete +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d528fc0 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x2d5db0f2 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x2d6522d4 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x2d6c8ede bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x2d6e4263 skb_dequeue +EXPORT_SYMBOL vmlinux 0x2d8791c9 is_subdir +EXPORT_SYMBOL vmlinux 0x2d96e156 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x2d97dc77 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9f7f90 serio_open +EXPORT_SYMBOL vmlinux 0x2daabdaf ps2_drain +EXPORT_SYMBOL vmlinux 0x2dc4e156 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x2dcd5d57 unix_get_socket +EXPORT_SYMBOL vmlinux 0x2dcdea36 chip_to_vas_id +EXPORT_SYMBOL vmlinux 0x2dce19f1 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x2dd0fdf8 ns_capable +EXPORT_SYMBOL vmlinux 0x2dd83d16 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x2df10265 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x2df1ce39 arp_send +EXPORT_SYMBOL vmlinux 0x2dffd37f drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x2e089f1d tcf_idr_create +EXPORT_SYMBOL vmlinux 0x2e141080 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1fab2f _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x2e240179 vm_insert_page +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e3ce4b7 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x2e3ce8f9 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x2e48f147 sock_register +EXPORT_SYMBOL vmlinux 0x2e5b2a26 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e5fe21d dev_addr_del +EXPORT_SYMBOL vmlinux 0x2e652208 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x2e79c30b key_validate +EXPORT_SYMBOL vmlinux 0x2e804670 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x2e94b6f6 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x2e95ee7f mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x2eb759ec d_find_any_alias +EXPORT_SYMBOL vmlinux 0x2ec0555c tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecc5356 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x2ed10a62 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +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 0x2f190c30 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x2f1fc318 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x2f21ebac ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f2ede1e qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x2f54270a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x2f632f08 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f7f54b7 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x2f8264bd gtm_get_timer16 +EXPORT_SYMBOL vmlinux 0x2f8a26ce netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x2f973c9f __nd_driver_register +EXPORT_SYMBOL vmlinux 0x2fa0e399 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb50ee5 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x2fbd4917 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x2fc78fcc xa_erase +EXPORT_SYMBOL vmlinux 0x2fc89a06 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x2fcb6958 freeze_bdev +EXPORT_SYMBOL vmlinux 0x2fcbdbb9 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0x2fd18702 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x2fde2d87 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe748c0 mmc_get_card +EXPORT_SYMBOL vmlinux 0x2fff13fd nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x30046750 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x30275c76 _dev_printk +EXPORT_SYMBOL vmlinux 0x30415ee3 backlight_device_register +EXPORT_SYMBOL vmlinux 0x3049b43b pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x304c44a5 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x307eb44c igrab +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309ac558 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30c07ab4 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x30c20fb1 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x30e6ed61 keyring_search +EXPORT_SYMBOL vmlinux 0x30fee3e5 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312966cb eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x312baaf8 tcp_connect +EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info +EXPORT_SYMBOL vmlinux 0x31341ef7 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x31395b54 bio_endio +EXPORT_SYMBOL vmlinux 0x314098d7 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x314f8f08 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x316b7170 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x317941bb key_unlink +EXPORT_SYMBOL vmlinux 0x318744d9 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x3196d853 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x319c098a qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x31b1a41c __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x31c583d5 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x31d81a78 vio_find_node +EXPORT_SYMBOL vmlinux 0x31dcaac0 dquot_drop +EXPORT_SYMBOL vmlinux 0x31e0552a show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x31e5f931 current_in_userns +EXPORT_SYMBOL vmlinux 0x31f49168 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x32117ca4 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x3217c3a3 __memset32 +EXPORT_SYMBOL vmlinux 0x321961ad ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x321b5fa4 register_quota_format +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x324c5c90 pci_release_region +EXPORT_SYMBOL vmlinux 0x324cfe9e of_n_size_cells +EXPORT_SYMBOL vmlinux 0x3252ad43 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x32548dd5 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop +EXPORT_SYMBOL vmlinux 0x3271071b alloc_fddidev +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32aa0d75 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x32b6efdd folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x32b7d5b2 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e5f617 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x33158f9b pci_request_irq +EXPORT_SYMBOL vmlinux 0x331cdb39 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x332c0913 ps2_end_command +EXPORT_SYMBOL vmlinux 0x3331cea7 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x33331f87 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33aa52d8 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x33aaee46 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33ccd94a d_add +EXPORT_SYMBOL vmlinux 0x33da2607 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x33de5db9 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f4a10c pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x33f89a2e __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x34093fc6 agp_backend_release +EXPORT_SYMBOL vmlinux 0x3422fbb8 pci_disable_device +EXPORT_SYMBOL vmlinux 0x344e652d iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x34578cf9 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control +EXPORT_SYMBOL vmlinux 0x346edad6 param_set_bool +EXPORT_SYMBOL vmlinux 0x346fcdd1 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x347736b3 giveup_fpu +EXPORT_SYMBOL vmlinux 0x348939ee rtnl_create_link +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34ba3754 irq_set_chip +EXPORT_SYMBOL vmlinux 0x34bb681e agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34e5390d tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x34ebf2b3 genphy_resume +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fa84ec neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x35099681 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x3514a589 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35257e6c epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0x352af536 tcp_req_err +EXPORT_SYMBOL vmlinux 0x352bb201 xa_store +EXPORT_SYMBOL vmlinux 0x3531f324 get_tree_single +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3558d113 tcp_child_process +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3573e0d0 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x3574bfcf dump_skip_to +EXPORT_SYMBOL vmlinux 0x357793f5 phy_resume +EXPORT_SYMBOL vmlinux 0x3599dd0c jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b49283 from_kprojid +EXPORT_SYMBOL vmlinux 0x35bdcdd0 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x35c972f5 skb_append +EXPORT_SYMBOL vmlinux 0x35cd435a touch_buffer +EXPORT_SYMBOL vmlinux 0x35f70824 mntput +EXPORT_SYMBOL vmlinux 0x36006556 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x3607e035 nf_log_set +EXPORT_SYMBOL vmlinux 0x3629c84f pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x363dc852 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x3644470a qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x36487222 inode_init_always +EXPORT_SYMBOL vmlinux 0x3649487c blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x365431c4 netdev_info +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x366aa75c __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x3676046f ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x368a0869 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x368f92a6 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x3690dc24 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x36944f04 udplite_prot +EXPORT_SYMBOL vmlinux 0x369731cc blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x36ad4964 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x36c43ccc lookup_one_len +EXPORT_SYMBOL vmlinux 0x36c7d2fe dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x36e0cfb4 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x36e97d2b devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x36eaafe2 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x36f53c68 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x36f7f4e9 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x370ca175 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3749813b __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x374e46f8 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x37507fae pci_restore_state +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x378725f2 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x379b3967 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x37a411b1 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x37b6eb0e clear_nlink +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37e0a779 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x37e5854c xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x37f40aa5 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x38026cb6 complete +EXPORT_SYMBOL vmlinux 0x3815b695 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381c0cd1 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x3827539c memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x3831076a nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x38476ad4 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x387c0d4e block_write_begin +EXPORT_SYMBOL vmlinux 0x3880900d nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x3885af36 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a88d2b mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38aaaa7d vma_set_file +EXPORT_SYMBOL vmlinux 0x38ad898d filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x38ae9ed1 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x38be2e5f page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x38d7bdb2 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x38dfcb29 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x39106ffc unregister_binfmt +EXPORT_SYMBOL vmlinux 0x391ad4b3 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x39227ef2 jbd2_fc_wait_bufs +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 0x395d45a9 register_qdisc +EXPORT_SYMBOL vmlinux 0x39735e65 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39dfe5b9 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x39e0643d sock_create +EXPORT_SYMBOL vmlinux 0x39f9e18c dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x3a0edd79 fasync_helper +EXPORT_SYMBOL vmlinux 0x3a1c427b insert_inode_locked +EXPORT_SYMBOL vmlinux 0x3a43135b ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a5a6a91 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3a805762 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x3a86c468 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x3a875620 __xa_store +EXPORT_SYMBOL vmlinux 0x3a8cb414 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x3a9b9ea0 dquot_commit +EXPORT_SYMBOL vmlinux 0x3aa0efe0 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x3aa10deb skb_put +EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abc08c3 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x3ad40284 cdrom_release +EXPORT_SYMBOL vmlinux 0x3ada6bfb __fput_sync +EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3b165be9 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x3b216ae3 find_vma +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b3d24f9 param_set_ulong +EXPORT_SYMBOL vmlinux 0x3b3db842 param_array_ops +EXPORT_SYMBOL vmlinux 0x3b4a6a2b jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b69ac33 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b8fae1b nd_device_notify +EXPORT_SYMBOL vmlinux 0x3b939955 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x3bbed9a5 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x3bca8175 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x3bd26763 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x3bd9452f mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x3bdd86c6 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x3be1dd81 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x3bf67fb8 tty_unlock +EXPORT_SYMBOL vmlinux 0x3bf6c0b5 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x3bfb09fa gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x3c060a48 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1c3135 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x3c229e4e scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x3c2d992c napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c37a5ec pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c8e87d4 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x3c97c5b5 has_capability +EXPORT_SYMBOL vmlinux 0x3c9bc5d2 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3caefc98 __devm_release_region +EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cb7aefd __serio_register_driver +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3cbeff43 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x3cdb650f of_iomap +EXPORT_SYMBOL vmlinux 0x3ce26c96 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cfb18e5 vme_irq_free +EXPORT_SYMBOL vmlinux 0x3d13c4ac icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x3d2d68b0 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x3d327974 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x3d3b3b40 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x3d55e027 nf_log_packet +EXPORT_SYMBOL vmlinux 0x3d573f5d locks_copy_lock +EXPORT_SYMBOL vmlinux 0x3d9bcb75 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x3d9ebee2 bioset_init +EXPORT_SYMBOL vmlinux 0x3da2cd5f of_mdio_find_device +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 0x3dc49c68 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3ddd2cdd rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x3de9b67d sk_alloc +EXPORT_SYMBOL vmlinux 0x3deb599b file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x3dede5ba of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x3df7035e rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dff30fa dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x3e026cf2 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x3e0797f6 radix__flush_tlb_range +EXPORT_SYMBOL vmlinux 0x3e2034ed vfs_statfs +EXPORT_SYMBOL vmlinux 0x3e35b913 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e44c1a3 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x3e5995c6 generic_listxattr +EXPORT_SYMBOL vmlinux 0x3e6ce2ef config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit +EXPORT_SYMBOL vmlinux 0x3ed5b6ea inet_bind +EXPORT_SYMBOL vmlinux 0x3ee5ef67 dquot_release +EXPORT_SYMBOL vmlinux 0x3ee72c93 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x3ef343fd nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f47224e tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x3f4a946f netpoll_print_options +EXPORT_SYMBOL vmlinux 0x3f554c17 unload_nls +EXPORT_SYMBOL vmlinux 0x3f6e6945 make_kuid +EXPORT_SYMBOL vmlinux 0x3f80454a __kfree_skb +EXPORT_SYMBOL vmlinux 0x3f887693 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3fae41a4 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x3faf43bc bio_split_to_limits +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fcbcd1c of_graph_is_present +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe50046 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x3fe9319f inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x3fedc567 vme_register_driver +EXPORT_SYMBOL vmlinux 0x3ff371fe unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x4003904f set_page_dirty +EXPORT_SYMBOL vmlinux 0x4029325d i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x402bdfa1 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x4043fa34 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x4068cbc7 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x4072981f flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x4092ba69 release_pages +EXPORT_SYMBOL vmlinux 0x40972677 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a2f145 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40adb0fe mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x40b2ebd7 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x40bdef74 address_space_init_once +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e6a3b3 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x40ec9cb7 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x40f409ba devm_clk_put +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x40ff4982 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x4112be6e kern_unmount_array +EXPORT_SYMBOL vmlinux 0x411e2aec scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x412851de page_mapping +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4138dd44 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414be5eb udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x416f56f2 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x41796273 pci_domain_nr +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41abd4db _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x41ae718a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x41b8ace6 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x41d0875e netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x41d8294d get_thermal_instance +EXPORT_SYMBOL vmlinux 0x41eb4187 phy_init_hw +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41fb6ba5 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x4230d43a iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x42349202 brioctl_set +EXPORT_SYMBOL vmlinux 0x42350ab5 import_single_range +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x4249d009 mach_powernv +EXPORT_SYMBOL vmlinux 0x424be49a cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42540c53 sg_miter_next +EXPORT_SYMBOL vmlinux 0x42736793 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x427600fd key_type_keyring +EXPORT_SYMBOL vmlinux 0x42815ad6 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x42892c97 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x428beaff scsi_host_get +EXPORT_SYMBOL vmlinux 0x428da877 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x42c5f730 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x42cdf117 of_device_alloc +EXPORT_SYMBOL vmlinux 0x42e3fa0c passthru_features_check +EXPORT_SYMBOL vmlinux 0x42ef45d6 bio_chain +EXPORT_SYMBOL vmlinux 0x42f030bd dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4300b0c0 submit_bio +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430a1988 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x430a32a7 kernel_write +EXPORT_SYMBOL vmlinux 0x4313c959 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x431ac351 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x431b6551 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x432afaaf xfrm_init_state +EXPORT_SYMBOL vmlinux 0x4337576f pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x43488d70 vio_register_device_node +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4374d800 dev_add_pack +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437d5975 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43a988c5 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one +EXPORT_SYMBOL vmlinux 0x43c82edf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x43c89cfe sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d9d7d0 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x43dd7b1e get_tree_nodev +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x441aa358 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x441c4904 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x4434e62a mdio_bus_type +EXPORT_SYMBOL vmlinux 0x4436f709 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x44516ede from_kuid_munged +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x446dec79 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x446dfc0a agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x447b549a dma_map_resource +EXPORT_SYMBOL vmlinux 0x4488bc8a prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x44951568 inet_add_offload +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44b2bb57 iterate_dir +EXPORT_SYMBOL vmlinux 0x44c5d7f3 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x44c62194 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x44c96fe7 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x44e03d3a gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x44e12da4 bdi_unregister +EXPORT_SYMBOL vmlinux 0x44e4fb0b scsi_done +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f4c967 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x44fbc435 sock_alloc +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450473a5 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x450639ab sg_last +EXPORT_SYMBOL vmlinux 0x450bd37e __pmd_index_size +EXPORT_SYMBOL vmlinux 0x450d640b dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x452287df gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x4534e14d ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x45374f71 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4542e121 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x4544275a __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x455e0942 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x4565163c mtree_insert_range +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457da8b9 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x458b4faf tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x45cfed8a input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x45d9e95e build_skb_around +EXPORT_SYMBOL vmlinux 0x45e47baf fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x45e8ee89 generic_fadvise +EXPORT_SYMBOL vmlinux 0x45f7f2ac d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x46001d34 percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x4607bb65 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461256c5 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x4616f581 key_invalidate +EXPORT_SYMBOL vmlinux 0x461818d1 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x46268115 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x462e3b10 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x463cf4a6 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x46498ca4 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x465a7b1a km_new_mapping +EXPORT_SYMBOL vmlinux 0x465b96b2 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x4660b334 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x46632bbe dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466f2db9 write_inode_now +EXPORT_SYMBOL vmlinux 0x46718d06 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x4671cfb9 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x4674ec42 __pgd_val_bits +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46863e1e tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x4688afce __block_write_full_page +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46c265f5 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c4d265 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x46cc1554 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x46cecb13 param_ops_charp +EXPORT_SYMBOL vmlinux 0x46db0018 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x46f9f2b5 xa_find_after +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x4706ce58 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x4756be51 _dev_err +EXPORT_SYMBOL vmlinux 0x47617b65 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4786188c security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x4790c664 con_is_visible +EXPORT_SYMBOL vmlinux 0x4798d31f inode_get_bytes +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 0x47d3d15c vfs_iter_write +EXPORT_SYMBOL vmlinux 0x47e960d0 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x47fc5317 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x480a1125 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x480bdcb8 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482c1719 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48483de7 fiemap_prep +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484f1705 commit_creds +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 0x48868b6a bio_copy_data +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48a921ed flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c75d31 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node +EXPORT_SYMBOL vmlinux 0x48d54cbe xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x48e5734a kmem_cache_size +EXPORT_SYMBOL vmlinux 0x48feff1e __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49058259 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x490a3dbb pipe_unlock +EXPORT_SYMBOL vmlinux 0x490b3264 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x491604e7 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x49527c3e block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x496ea4dd kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits +EXPORT_SYMBOL vmlinux 0x498078cb sock_create_kern +EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a2e84f ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x49c86d59 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x49e894b6 elv_rb_add +EXPORT_SYMBOL vmlinux 0x49f1616e cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x4a1017aa rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x4a12a557 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x4a3a2515 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a490d3b mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x4a55c8ea ioremap_wc +EXPORT_SYMBOL vmlinux 0x4a58e188 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x4a6487fd ip6_frag_init +EXPORT_SYMBOL vmlinux 0x4a79c30e pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x4a7e8008 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x4a8c0b76 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aa53282 cdev_device_del +EXPORT_SYMBOL vmlinux 0x4aa7e4a2 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4ae7ee64 set_security_override +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4b06e0bd set_user_nice +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b169bf0 netdev_emerg +EXPORT_SYMBOL vmlinux 0x4b1c550a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x4b353588 cdev_alloc +EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x4b4305fc flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6ef278 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x4b72ac5d __pagevec_release +EXPORT_SYMBOL vmlinux 0x4ba2cbd1 sync_filesystem +EXPORT_SYMBOL vmlinux 0x4bc4bb4d skb_checksum +EXPORT_SYMBOL vmlinux 0x4bee5902 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4c205e7f tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x4c3a51ef mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x4c3fda57 touch_atime +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c4b9a9c phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x4c525de8 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x4c66a43a nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x4c689166 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x4c6e5310 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x4c712431 sk_common_release +EXPORT_SYMBOL vmlinux 0x4c79a1e2 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x4c85ac7e tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x4c9e2a2d pci_enable_device +EXPORT_SYMBOL vmlinux 0x4ca630a6 inode_set_flags +EXPORT_SYMBOL vmlinux 0x4ca8915c blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x4cb882e7 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x4cc6534b cpu_l2_cache_map +EXPORT_SYMBOL vmlinux 0x4ccb8f70 input_set_capability +EXPORT_SYMBOL vmlinux 0x4ccd8f7b blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x4ce1d317 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x4ce85226 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x4d15dd50 PageMovable +EXPORT_SYMBOL vmlinux 0x4d2e3a71 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x4d2f3a6c xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x4d2f8a9b neigh_table_init +EXPORT_SYMBOL vmlinux 0x4d3746ed elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x4d4e6119 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x4d746e7f tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x4d856865 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x4d8b64d5 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x4d91c13c kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da1560f fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x4da8ef84 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x4da9d30e folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x4dad4cca request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x4dadb115 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x4dc8ad75 flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x4dd91530 srp_timed_out +EXPORT_SYMBOL vmlinux 0x4ddb9d9a vme_irq_generate +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df8a067 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x4e2e82f4 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x4e2f1742 param_get_charp +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e529934 dev_mc_init +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e60e167 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e81789f __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb52809 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x4eb7ae3d hvc_get_chars +EXPORT_SYMBOL vmlinux 0x4eb940f8 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x4ec1fc34 udp_prot +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ecae77c __of_get_address +EXPORT_SYMBOL vmlinux 0x4edbfa3c page_symlink +EXPORT_SYMBOL vmlinux 0x4edd48a1 tcp_read_done +EXPORT_SYMBOL vmlinux 0x4f093675 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4f174473 I_BDEV +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2180f5 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2d6c9f phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x4f487773 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x4f553e6d tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x4f6a627f param_get_uint +EXPORT_SYMBOL vmlinux 0x4f6b59aa ppp_unit_number +EXPORT_SYMBOL vmlinux 0x4f8e386a pci_irq_vector +EXPORT_SYMBOL vmlinux 0x4f9a6e61 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x4fa2b56c ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x4fa65563 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe87d41 dev_close +EXPORT_SYMBOL vmlinux 0x4feba639 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x4ffb377b __nla_put +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x4ffd0bf5 machine_id +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x5018fc02 pci_find_capability +EXPORT_SYMBOL vmlinux 0x501a04e2 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x502315b7 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x50240f0d mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x503a2a62 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x50532342 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506474ef sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size +EXPORT_SYMBOL vmlinux 0x507c9468 nd_dev_to_uuid +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 0x50975e07 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x509ee02f generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x50a21a2e tc_setup_cb_add +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 0x50b815cc tty_lock +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50ced049 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50cf86aa balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d85a15 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x50eaf8cd mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x50f15176 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x50f3619e xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x50fa792c param_set_ullong +EXPORT_SYMBOL vmlinux 0x50fbeeee vlan_for_each +EXPORT_SYMBOL vmlinux 0x50fd8f36 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x5102ca16 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x510d2b57 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x511d5421 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x51251d46 dquot_alloc +EXPORT_SYMBOL vmlinux 0x514a5312 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5167daf4 pipe_lock +EXPORT_SYMBOL vmlinux 0x516c6bca kthread_bind +EXPORT_SYMBOL vmlinux 0x518a2f56 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x518d6360 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x5199bc9b end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x519bb3e7 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x51b1a2e1 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x51b3441e netlink_capable +EXPORT_SYMBOL vmlinux 0x51d65ad8 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x51dcceb6 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x51e6f7f8 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x51f2453d max8998_write_reg +EXPORT_SYMBOL vmlinux 0x52223fb2 genl_notify +EXPORT_SYMBOL vmlinux 0x5224ab9c devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x5230105a dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x524659e5 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x525ade0e jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x525db41a csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x52679061 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x5268c2d2 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5275419c consume_skb +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529b9171 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x52ad738b of_get_next_parent +EXPORT_SYMBOL vmlinux 0x52b14d33 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52da3b76 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x52e896fd mmu_feature_keys +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x53448769 clear_user_page +EXPORT_SYMBOL vmlinux 0x537a95ab skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit +EXPORT_SYMBOL vmlinux 0x53a3ae10 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x53b24613 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x53b77b44 netdev_notice +EXPORT_SYMBOL vmlinux 0x53d4872e pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x53d7c765 vif_device_init +EXPORT_SYMBOL vmlinux 0x53d8c17f d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x53e203f5 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x53e980d1 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x53f0a2bc twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x53f29491 freeze_super +EXPORT_SYMBOL vmlinux 0x54013190 param_set_copystring +EXPORT_SYMBOL vmlinux 0x540eafe4 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x5415c4a8 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x541e7733 xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x5429ea50 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x542c13c2 vme_lm_request +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544ef90e regset_get +EXPORT_SYMBOL vmlinux 0x5457f8c9 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x54755457 inet6_release +EXPORT_SYMBOL vmlinux 0x547a81a8 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x5487c67f rproc_add +EXPORT_SYMBOL vmlinux 0x54a8d1d7 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x54ae2309 of_root +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x54b2d99f netlink_broadcast +EXPORT_SYMBOL vmlinux 0x54bf5d9b path_has_submounts +EXPORT_SYMBOL vmlinux 0x54c6473a __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x54c8a609 of_node_get +EXPORT_SYMBOL vmlinux 0x54e3d5fd __pmd_frag_nr +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f21145 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x54fab515 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x550f3366 generic_fillattr +EXPORT_SYMBOL vmlinux 0x5517204b dev_activate +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x5558e7ff page_get_link +EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user +EXPORT_SYMBOL vmlinux 0x5588d1d5 init_net +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55981b4b input_setup_polling +EXPORT_SYMBOL vmlinux 0x55be33f3 genphy_update_link +EXPORT_SYMBOL vmlinux 0x55d2cb8c vfs_llseek +EXPORT_SYMBOL vmlinux 0x55d63c2b __scsi_add_device +EXPORT_SYMBOL vmlinux 0x55d79b2b devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x55d97bf4 phy_device_remove +EXPORT_SYMBOL vmlinux 0x55da0c72 bio_uninit +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e5ee64 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x55e970f3 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x560e8b1a fget_raw +EXPORT_SYMBOL vmlinux 0x56261f03 of_get_parent +EXPORT_SYMBOL vmlinux 0x56285257 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x562e9776 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563e62e7 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x5659d347 bpf_map_get +EXPORT_SYMBOL vmlinux 0x565e24e0 dma_set_mask +EXPORT_SYMBOL vmlinux 0x566a57ab register_console +EXPORT_SYMBOL vmlinux 0x5673891b __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568b3b35 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x5691a119 input_grab_device +EXPORT_SYMBOL vmlinux 0x56a50d60 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x56ac2a7c _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x56bdfb12 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x56c068c4 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d4a663 udp_disconnect +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x56fd12c4 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x570b875d alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x571467df mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x5718ae6f padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x571ccb89 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x572ae748 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x5741e39f phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574c77d6 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x5757f01d ppp_channel_index +EXPORT_SYMBOL vmlinux 0x575cbc75 scsi_add_device +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577be494 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x578122ac uart_suspend_port +EXPORT_SYMBOL vmlinux 0x579103e7 dst_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57b3a98a nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x57b90f76 ethtool_notify +EXPORT_SYMBOL vmlinux 0x57bb8004 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x57c4a809 ip_options_compile +EXPORT_SYMBOL vmlinux 0x57cc2370 pci_get_slot +EXPORT_SYMBOL vmlinux 0x57d03f67 vmemmap +EXPORT_SYMBOL vmlinux 0x57d33b29 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57e9596a dev_uc_flush +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x57fc1e02 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x580ab740 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x580b2596 sock_pfree +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582affbc set_anon_super +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x58324c01 mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5848b0fc mtree_store +EXPORT_SYMBOL vmlinux 0x586a2ee2 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x588045c3 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x588d41c5 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x5898c6b5 path_put +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cb16e3 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fbedc7 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x5906e706 posix_lock_file +EXPORT_SYMBOL vmlinux 0x590ae679 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x591dc344 inode_insert5 +EXPORT_SYMBOL vmlinux 0x5932fa8e blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595480aa udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x59675984 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x596a0a8f get_user_pages +EXPORT_SYMBOL vmlinux 0x59729244 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x59757699 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x59894fa7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x598ec464 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599e091a ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b515a6 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x59b8b434 vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0x59bdfcfd pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x59cd3525 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x59e08183 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x59f2184b inet_offloads +EXPORT_SYMBOL vmlinux 0x59f2f605 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x59f6b0e6 mipi_dsi_dcs_set_display_off +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 0x5a1e160e pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x5a26ecb9 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a2b990b skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x5a3392ae pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x5a3ecafd folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a71b894 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x5a7f83f8 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x5a885aa9 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9d32ac md_integrity_register +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5ac85c76 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5b0698dc del_gendisk +EXPORT_SYMBOL vmlinux 0x5b23f6c0 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x5b3c4ad3 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x5b4085c7 follow_up +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5a098a vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x5b5c0858 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x5b760467 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x5b7c0f1f of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x5b8f2f5a mdiobus_scan +EXPORT_SYMBOL vmlinux 0x5b969f7e pci_write_config_word +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5baec7c6 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x5bbc8337 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x5bcf04a6 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd9a655 rproc_put +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5be874fa io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x5bef1964 simple_getattr +EXPORT_SYMBOL vmlinux 0x5bf42b1b pci_scan_slot +EXPORT_SYMBOL vmlinux 0x5c29214f skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x5c3a7640 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c438374 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x5c57d46a security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x5c6c288b cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x5c839041 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x5c905b8a xmon +EXPORT_SYMBOL vmlinux 0x5c97cfe5 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x5cc873af ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x5ccc2bb5 paca_ptrs +EXPORT_SYMBOL vmlinux 0x5ce0bba9 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x5cf041ec netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d04cebc xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x5d04d2a1 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x5d07738a xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x5d0f33ae forget_cached_acl +EXPORT_SYMBOL vmlinux 0x5d22b208 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x5d33fffa ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x5d34b19b pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d5663cf simple_statfs +EXPORT_SYMBOL vmlinux 0x5d5c9b80 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x5d6fef7f udp_seq_next +EXPORT_SYMBOL vmlinux 0x5d732c67 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x5d76f2d4 dput +EXPORT_SYMBOL vmlinux 0x5d7a1196 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x5da87560 mount_bdev +EXPORT_SYMBOL vmlinux 0x5dab1f7d devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x5db87481 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x5db8b941 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x5de1fc03 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x5de34ab9 dst_init +EXPORT_SYMBOL vmlinux 0x5df49be6 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e197375 blk_rq_init +EXPORT_SYMBOL vmlinux 0x5e330bbe i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x5e369ba5 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e44cb25 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x5e4bebaa of_clk_get +EXPORT_SYMBOL vmlinux 0x5e588915 twl6040_power +EXPORT_SYMBOL vmlinux 0x5e5ac98f _dev_crit +EXPORT_SYMBOL vmlinux 0x5e5ae5e9 vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0x5e5b51a1 simple_get_link +EXPORT_SYMBOL vmlinux 0x5e5da1b5 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x5e5db14a backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e99dfca uaccess_flush_key +EXPORT_SYMBOL vmlinux 0x5ea77d11 config_item_put +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebb0ab1 sock_no_getname +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ec708c8 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x5ecf46f4 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed0f96f pci_pme_capable +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5ee3247e tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x5eeac7de xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x5eeece51 phy_suspend +EXPORT_SYMBOL vmlinux 0x5ef40419 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x5ef419df of_match_node +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0de618 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x5f21fb64 skb_find_text +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f37786b netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x5f37ac07 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x5f393675 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f6b43a6 __bread_gfp +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f85ac4c stream_open +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f8c4437 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5fad99cf blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x5fb516f8 xa_find +EXPORT_SYMBOL vmlinux 0x5fb57942 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x5fbd58d6 key_revoke +EXPORT_SYMBOL vmlinux 0x5fbf6b8a tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd6918b mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x5fda804e __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x5fdb76f8 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x5fed7515 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x5ff4df70 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6006cd56 param_get_invbool +EXPORT_SYMBOL vmlinux 0x600c4f6d tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x600ea5a0 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x6016531a gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x601711cf kmem_cache_free +EXPORT_SYMBOL vmlinux 0x60182e73 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602036ff flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6039a834 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x603ad28a dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x604bbcae __skb_ext_del +EXPORT_SYMBOL vmlinux 0x604d56d2 tty_kref_put +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x605daf1f locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x60708f93 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x607328c1 mmc_request_done +EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x60980906 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x60981b47 dev_mc_add +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60b202ea shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x60bd07d1 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x60c2ac30 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x60cba705 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x60d43ea7 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e17d6e tso_start +EXPORT_SYMBOL vmlinux 0x60e89c3b phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x60fadaef netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x61011d0f iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x6118dc26 start_thread +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 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6187799b kernel_param_lock +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x6192fb68 inode_init_owner +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b18c26 finalize_exec +EXPORT_SYMBOL vmlinux 0x61b2df7c do_SAK +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c804b7 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x61cb246f _raw_write_lock +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e7ea37 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61ea5b13 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x61f014ba tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x6202e155 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x62127e10 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62363449 srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x625eb8a0 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x62650d84 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x6270994b put_cmsg +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range +EXPORT_SYMBOL vmlinux 0x627d1a3e pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x6280f5d8 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6294e140 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x6297fe01 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x62a2da7e rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x62a61ec4 mach_pseries +EXPORT_SYMBOL vmlinux 0x62b276c4 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x62e3349a mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x63103eda kill_anon_super +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x6339b238 module_refcount +EXPORT_SYMBOL vmlinux 0x6371444a xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x637448c6 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x63808338 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x6386d110 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x6386f0f4 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x63945b28 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63acc7c4 dm_get_device +EXPORT_SYMBOL vmlinux 0x63b81347 agp_free_memory +EXPORT_SYMBOL vmlinux 0x63bdba44 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x63bffd8e neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x63c1b070 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x63d8dfc9 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x63de4999 vme_bus_num +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6428b539 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x6432d659 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x643340e9 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x6442544b vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x644353d6 is_nd_btt +EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64831cb8 xa_extract +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64a04de4 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64aa92bf refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x64b51b96 kthread_stop +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64bfe482 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x64c52fcc inet6_bind +EXPORT_SYMBOL vmlinux 0x64db4434 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x64e2a5f6 cdev_del +EXPORT_SYMBOL vmlinux 0x64f13d73 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x64fdb0a6 mtree_erase +EXPORT_SYMBOL vmlinux 0x65138c2f blkdev_issue_zeroout +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 0x652d28a7 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x652f5bed msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x6534636f dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x65358a11 of_device_is_available +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654d8b88 tty_check_change +EXPORT_SYMBOL vmlinux 0x6551320c ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x6555e95f mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x655602e5 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x656a7ef5 dev_addr_add +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x656ee5cb skb_copy_bits +EXPORT_SYMBOL vmlinux 0x657b9994 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658f7f2d sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x659abc4b tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a0d79b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x65a407e9 fb_class +EXPORT_SYMBOL vmlinux 0x65b42a71 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x65b8ff69 proc_create_data +EXPORT_SYMBOL vmlinux 0x65bd52dd md_write_end +EXPORT_SYMBOL vmlinux 0x65d9a595 dev_set_allmulti +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 0x65e6a935 skb_copy_header +EXPORT_SYMBOL vmlinux 0x660f2c82 generic_update_time +EXPORT_SYMBOL vmlinux 0x662e9d57 backlight_force_update +EXPORT_SYMBOL vmlinux 0x6633f972 __traceiter_dma_fence_enable_signal +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 0x666cb295 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6676279f tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x667897db phy_config_aneg +EXPORT_SYMBOL vmlinux 0x6692adb9 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x66a4f8cd mfd_add_devices +EXPORT_SYMBOL vmlinux 0x66b1cbe5 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x66b3919b jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66b4e0aa is_nd_pfn +EXPORT_SYMBOL vmlinux 0x66b6f1ff mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x66d961e6 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x66f27d10 sock_i_ino +EXPORT_SYMBOL vmlinux 0x6709d25b neigh_app_ns +EXPORT_SYMBOL vmlinux 0x672b8963 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x674ee394 serio_bus +EXPORT_SYMBOL vmlinux 0x676f6b1e ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x677deee6 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x678b3b1b phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67909ead netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x67955583 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x679763a4 input_reset_device +EXPORT_SYMBOL vmlinux 0x6799e910 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x67b44e28 kill_fasync +EXPORT_SYMBOL vmlinux 0x67b59308 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x67b68c7f ipv4_specific +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bd91dd udp_pre_connect +EXPORT_SYMBOL vmlinux 0x67c889bf netpoll_setup +EXPORT_SYMBOL vmlinux 0x67cc86c4 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x67d96967 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x67e848aa netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x67ef789c security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x67fc472c gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0x6810c740 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x6821d443 mmc_start_request +EXPORT_SYMBOL vmlinux 0x68310bf1 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x6831bccc input_set_timestamp +EXPORT_SYMBOL vmlinux 0x683a552f phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x684c9b47 inet_protos +EXPORT_SYMBOL vmlinux 0x685687b0 idr_replace +EXPORT_SYMBOL vmlinux 0x6866f2f7 proto_register +EXPORT_SYMBOL vmlinux 0x686818bb down_read +EXPORT_SYMBOL vmlinux 0x686c2ff5 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x6870d913 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688832e7 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x6898bc2a page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x68a30ffe shared_processor +EXPORT_SYMBOL vmlinux 0x68ae54d4 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x68db4e33 sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size +EXPORT_SYMBOL vmlinux 0x692b8676 inet6_getname +EXPORT_SYMBOL vmlinux 0x693542cd locks_remove_posix +EXPORT_SYMBOL vmlinux 0x693bb218 rtas +EXPORT_SYMBOL vmlinux 0x693c1f71 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x694b61ec wait_for_completion_state +EXPORT_SYMBOL vmlinux 0x695530f1 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x696071b3 mtree_load +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x698a31c8 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x69a58495 proc_create +EXPORT_SYMBOL vmlinux 0x69af1b86 sk_stream_error +EXPORT_SYMBOL vmlinux 0x69b57af9 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x69d57f42 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x69dc036c tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69fb60a2 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x69fea2d2 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a29f886 input_register_handler +EXPORT_SYMBOL vmlinux 0x6a3268b2 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x6a4631ff ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ec5b0 inode_permission +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 0x6a9a9e4f override_creds +EXPORT_SYMBOL vmlinux 0x6a9eb357 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x6a9ee870 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x6abfd7de __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x6ac10009 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x6ad9d64b xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x6add3f38 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x6ade6454 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x6ae126a0 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x6aeccdac netdev_alert +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6aefeb6c __bio_advance +EXPORT_SYMBOL vmlinux 0x6b0834e3 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b16ee70 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x6b2b07bc inet_frag_find +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3b4e53 input_copy_abs +EXPORT_SYMBOL vmlinux 0x6b3bc547 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x6b497ca5 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5bef31 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x6b6457b0 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x6b73d115 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x6b8207b4 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcb8a03 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x6bdeab7f down_read_interruptible +EXPORT_SYMBOL vmlinux 0x6bf0f26d trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bf49262 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x6bfcae5c grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x6bfd5357 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x6c11178b jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x6c2184e0 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x6c23ec33 skb_trim +EXPORT_SYMBOL vmlinux 0x6c2889d5 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x6c4f2b27 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6509f4 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x6c7145d8 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6ca3ed40 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x6ca43c40 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb8dc04 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6cca485c pcibus_to_node +EXPORT_SYMBOL vmlinux 0x6cd564ff vio_get_attribute +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6d064278 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x6d0b8771 genl_register_family +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2a5e3a tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x6d33d846 pci_release_resource +EXPORT_SYMBOL vmlinux 0x6d3be2db flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x6d3c70b2 audit_log +EXPORT_SYMBOL vmlinux 0x6d40eee6 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d664bfc set_create_files_as +EXPORT_SYMBOL vmlinux 0x6d67da69 d_splice_alias +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d9a5e33 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x6d9b3fa0 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x6da19552 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x6db0d8ca pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbc265b sock_no_linger +EXPORT_SYMBOL vmlinux 0x6dc65b6e of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x6dca7e1f udp_seq_ops +EXPORT_SYMBOL vmlinux 0x6dcb5c02 dev_uc_del +EXPORT_SYMBOL vmlinux 0x6dcc993a fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6deea445 drop_nlink +EXPORT_SYMBOL vmlinux 0x6def5309 phy_attached_print +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e2181ac inet6_add_offload +EXPORT_SYMBOL vmlinux 0x6e261a12 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x6e30f71d tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x6e31ee17 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x6e50a270 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5ee985 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e90de8f of_get_mac_address +EXPORT_SYMBOL vmlinux 0x6e9a11b9 trace_event_printf +EXPORT_SYMBOL vmlinux 0x6e9a1f6b xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eafa9f8 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x6eb2f296 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x6ec7c364 wireless_send_event +EXPORT_SYMBOL vmlinux 0x6ee229bf mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x6ee8ce04 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6f0619ba folio_mapping +EXPORT_SYMBOL vmlinux 0x6f08b1c6 mempool_exit +EXPORT_SYMBOL vmlinux 0x6f1283ee idr_for_each +EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock +EXPORT_SYMBOL vmlinux 0x6f32c389 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x6f4a0261 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f878400 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x6f9c9d0d udp6_set_csum +EXPORT_SYMBOL vmlinux 0x6fa046cc phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x6fa32caf scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x6fa4f735 vfs_create +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb9bf81 is_nd_dax +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6ff1badb tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x6ff67c23 rt6_lookup +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70054a5c block_write_end +EXPORT_SYMBOL vmlinux 0x70095625 pskb_extract +EXPORT_SYMBOL vmlinux 0x704115b3 qe_usb_clock_set +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x707441b8 fput +EXPORT_SYMBOL vmlinux 0x709ad8c5 param_set_long +EXPORT_SYMBOL vmlinux 0x709f0866 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x70bbc452 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x70cca85e sk_mc_loop +EXPORT_SYMBOL vmlinux 0x70d71a39 neigh_update +EXPORT_SYMBOL vmlinux 0x71003481 rtnl_unicast +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 0x7139d1bf skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x7140898b mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x7144c6be nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x7147af5e d_instantiate +EXPORT_SYMBOL vmlinux 0x714a1b6c flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x716075e4 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7176091d bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x717f70b4 do_splice_direct +EXPORT_SYMBOL vmlinux 0x71853dcc netif_tx_lock +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c7b947 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x71ced673 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x71ef4ebe __register_chrdev +EXPORT_SYMBOL vmlinux 0x71fd5367 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x71fd7fe0 __register_nls +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x72159768 mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0x7217ea56 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x7224994f md_finish_reshape +EXPORT_SYMBOL vmlinux 0x723df133 simple_release_fs +EXPORT_SYMBOL vmlinux 0x72474746 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x7252ddfe vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x72599e25 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x7259da57 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x72608c0e do_uaccess_flush +EXPORT_SYMBOL vmlinux 0x7265d170 folio_write_one +EXPORT_SYMBOL vmlinux 0x726bb2b7 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x727b0bd6 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x7293341f bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72b030ed copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72ba0248 skb_copy +EXPORT_SYMBOL vmlinux 0x72bbbaf1 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72d06afd pci_claim_resource +EXPORT_SYMBOL vmlinux 0x72ddcf16 mmc_add_host +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eeb9cb __put_user_ns +EXPORT_SYMBOL vmlinux 0x72fa405a sock_create_lite +EXPORT_SYMBOL vmlinux 0x73109446 down_interruptible +EXPORT_SYMBOL vmlinux 0x7312b55d twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x73156327 sock_i_uid +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x73254f91 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x73329d76 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x735a9967 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x73634c2e xfrm_register_type +EXPORT_SYMBOL vmlinux 0x73707ae2 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x73783415 mdio_driver_register +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 0x73a97d57 kernel_connect +EXPORT_SYMBOL vmlinux 0x73a9f4c3 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73b9e08b xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x73cb30a2 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x73e7b54a scsi_device_put +EXPORT_SYMBOL vmlinux 0x7401fedc seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x74066ba4 seq_putc +EXPORT_SYMBOL vmlinux 0x7407ce6e flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x741ab7e4 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x741c0a84 mtree_destroy +EXPORT_SYMBOL vmlinux 0x741cd6ca unregister_key_type +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x7439fd86 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x7448af3b ps2_init +EXPORT_SYMBOL vmlinux 0x74528e9b copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x746b1ec0 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7485d583 setattr_prepare +EXPORT_SYMBOL vmlinux 0x748842e0 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x74a07287 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x74a08af1 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x74a3738f peernet2id +EXPORT_SYMBOL vmlinux 0x74afc2d2 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x74b24051 skb_pull +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74dca356 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x74e44ef0 _dev_warn +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f1cd69 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7502675d jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x7510c895 update_region +EXPORT_SYMBOL vmlinux 0x7511e868 xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x75669e2e ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x7578edfc get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x7591a624 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x75a5ac90 of_find_property +EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start +EXPORT_SYMBOL vmlinux 0x75b5ef94 netif_schedule_queue +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 0x75e63f09 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x76039f3c rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7615a650 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x76175881 slab_build_skb +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7619916e jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x76459f00 mdiobus_read +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76618fa7 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x76899e69 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x7694e02a sock_efree +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76ad605d __block_write_begin +EXPORT_SYMBOL vmlinux 0x76c875d4 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x76d2f4fa rproc_del +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76eda258 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x76ef53af phy_write_mmd +EXPORT_SYMBOL vmlinux 0x76f96ce0 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x76f9cbff fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x7710af3c skb_clone_sk +EXPORT_SYMBOL vmlinux 0x7711205c blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x771ad708 md_handle_request +EXPORT_SYMBOL vmlinux 0x77234d37 downgrade_write +EXPORT_SYMBOL vmlinux 0x77269b84 phy_ethtool_get_sset_count +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 0x7747182e gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x77575f05 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x776df2c6 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x7775d140 fb_set_var +EXPORT_SYMBOL vmlinux 0x7786740a param_ops_string +EXPORT_SYMBOL vmlinux 0x778e6bbc validate_slab_cache +EXPORT_SYMBOL vmlinux 0x77976881 registered_fb +EXPORT_SYMBOL vmlinux 0x77aa0647 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77edcbae tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x77f657be mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x77fee50d register_sysctl_table +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x78138c93 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x78179328 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7818d04a pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0x78220f78 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x7824cd9b neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x782acfae mmc_command_done +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7850e7f4 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x78528604 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x786c465a security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x7874a00c lease_get_mtime +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7883f1bf blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x78851d2f _outsb +EXPORT_SYMBOL vmlinux 0x78a1155b nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a90458 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ +EXPORT_SYMBOL vmlinux 0x78b68048 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x79044a9a vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x79073fe3 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x790a6f53 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x790af389 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x791bc2ad do_clone_file_range +EXPORT_SYMBOL vmlinux 0x7920b756 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7921baec mmc_can_erase +EXPORT_SYMBOL vmlinux 0x7932743a devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x794026ae tty_vhangup +EXPORT_SYMBOL vmlinux 0x795e3a9b skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x79645c8d __free_pages +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x798eb6ce cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x79951876 phy_get_pause +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a7a2eb dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x79b98512 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x79c0343c ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x79c54bde seq_read +EXPORT_SYMBOL vmlinux 0x79d6e540 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x7a00d286 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a1dab85 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7a20b52f logfc +EXPORT_SYMBOL vmlinux 0x7a2881eb dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x7a2d6c97 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a3276fa tcp_seq_next +EXPORT_SYMBOL vmlinux 0x7a4c6a80 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x7a4d13ab inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a5e2a32 skb_condense +EXPORT_SYMBOL vmlinux 0x7a71741f __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7a7de0d6 mempool_init_node +EXPORT_SYMBOL vmlinux 0x7a872db9 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x7a8da822 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab5f8c3 _insw_ns +EXPORT_SYMBOL vmlinux 0x7aba86db node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad69db4 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7b035b4a reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x7b1013a1 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x7b1944a1 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x7b286ebf t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4dfcf7 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x7b57b1ab udp6_csum_init +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5d79f1 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x7b605222 padata_do_serial +EXPORT_SYMBOL vmlinux 0x7b9c5809 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x7ba3714a dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x7ba813c5 __wake_up +EXPORT_SYMBOL vmlinux 0x7bab6143 __alloc_pages +EXPORT_SYMBOL vmlinux 0x7bace911 make_kprojid +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc120d8 submit_bh +EXPORT_SYMBOL vmlinux 0x7bcde7bb cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x7bd8f50d radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x7bebc5d5 proc_set_user +EXPORT_SYMBOL vmlinux 0x7bfaf755 kill_block_super +EXPORT_SYMBOL vmlinux 0x7bfdf789 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x7c16ca3b _dev_emerg +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1bf1c4 agp_enable +EXPORT_SYMBOL vmlinux 0x7c32bfaf padata_free +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c63a098 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x7c72db5b get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x7ca3c9b4 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x7ca66af9 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x7cbfbd9d kern_path_create +EXPORT_SYMBOL vmlinux 0x7cccc9d7 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x7cd3e8aa xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7ce8ac00 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf7921f posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7cfe3997 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d3a4fb3 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d7285f9 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d845f0e _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x7d9d44ac kobject_init +EXPORT_SYMBOL vmlinux 0x7da473f7 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x7da8f93b xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dbea731 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dc60fdf scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7dd8d1be jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x7dd952f9 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x7deb17f6 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfb9f94 softnet_data +EXPORT_SYMBOL vmlinux 0x7dfc8277 isa_mem_base +EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0x7e1183b1 config_group_init +EXPORT_SYMBOL vmlinux 0x7e13eb63 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x7e168e64 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x7e22aeaa try_module_get +EXPORT_SYMBOL vmlinux 0x7e2a04ad netlink_ack +EXPORT_SYMBOL vmlinux 0x7e2d5ef8 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x7e2d6436 ida_free +EXPORT_SYMBOL vmlinux 0x7e2d9da9 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x7e2dea7a xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e3a8b2e sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x7e4b00c2 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x7e4c149a sock_init_data +EXPORT_SYMBOL vmlinux 0x7e4cdc54 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize +EXPORT_SYMBOL vmlinux 0x7ea47832 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x7ec121cf of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x7ee59807 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7efa92d7 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x7efb259e hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x7efb817c iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f07b0d0 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x7f08c07c vfs_mkobj +EXPORT_SYMBOL vmlinux 0x7f20c696 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f29b6a2 radix__local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x7f33293d __put_cred +EXPORT_SYMBOL vmlinux 0x7f4d07f2 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5a838c mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x7f5fe7e7 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free +EXPORT_SYMBOL vmlinux 0x7f68b98a pps_unregister_source +EXPORT_SYMBOL vmlinux 0x7f6d04b7 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x7f71fb97 xa_load +EXPORT_SYMBOL vmlinux 0x7f7ee165 km_policy_notify +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f9078f8 get_watch_queue +EXPORT_SYMBOL vmlinux 0x7fbd76c5 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fc0ec34 sock_no_bind +EXPORT_SYMBOL vmlinux 0x7fccabd3 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x7fcf0729 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x7fe30d40 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fec0985 security_sk_clone +EXPORT_SYMBOL vmlinux 0x800f5b64 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x8018a0f4 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x8021c7fb pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x802888aa ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x8056bb9d elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x807a2932 __sock_create +EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x80858a3a crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x808f8c95 pci_choose_state +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x809dc96d call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x80be69b3 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80dfa190 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80f30f4b pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x810b6bdb pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x811c6983 skb_queue_head +EXPORT_SYMBOL vmlinux 0x8124378d jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x81296686 dentry_create +EXPORT_SYMBOL vmlinux 0x8143fa6c pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x814d366b kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x81682ea7 ping_prot +EXPORT_SYMBOL vmlinux 0x816c5d2c pci_clear_master +EXPORT_SYMBOL vmlinux 0x8170c988 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x817c583e device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x818f83b5 elv_rb_del +EXPORT_SYMBOL vmlinux 0x81902d7d dev_mc_sync +EXPORT_SYMBOL vmlinux 0x819e2261 get_task_cred +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81ae8bbc bio_add_page +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81b4cb99 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81c14f18 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x81c7724a ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x81c98bde dma_resv_init +EXPORT_SYMBOL vmlinux 0x81ca776d buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x81d4ae36 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81fa36dc kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x8210bcc3 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x821559d6 __vmalloc_end +EXPORT_SYMBOL vmlinux 0x82476ca8 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x82531bb2 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x82596f50 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x826c4a21 vfs_symlink +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82c89622 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x82e2084b xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x82e6dc11 vio_unregister_device +EXPORT_SYMBOL vmlinux 0x82e9c86c of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x8306a484 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x8322548c skb_unlink +EXPORT_SYMBOL vmlinux 0x834379d1 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x834658ac cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x8349059e is_bad_inode +EXPORT_SYMBOL vmlinux 0x83517be8 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x83540c54 begin_new_exec +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8359e39e xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x8361a74c mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x8363b432 genphy_loopback +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83b2094d __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x83f66c83 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x84152f45 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x842ab244 file_path +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x842f84aa blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x844013ff crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x844b5fb2 __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x84594282 bioset_exit +EXPORT_SYMBOL vmlinux 0x847672bc fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x8478928e vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x848d9f1b __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x84963801 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x849c769a xfrm_state_update +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84b56d2a flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84bdaeeb md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x84d3ce28 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x84f3c134 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x84fa823d agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x851db783 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x85250ccc xa_store_range +EXPORT_SYMBOL vmlinux 0x853e461b pci_get_subsys +EXPORT_SYMBOL vmlinux 0x854ef215 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857dbc77 arp_tbl +EXPORT_SYMBOL vmlinux 0x8586798c seq_file_path +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bcd19c md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85eef7fb find_inode_rcu +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x862cfd61 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86514a1f ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x8654999a in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x865aa759 prepare_creds +EXPORT_SYMBOL vmlinux 0x867c5319 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x8687dd53 seq_lseek +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86979105 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x86988f7d rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x86b1026f proc_douintvec +EXPORT_SYMBOL vmlinux 0x86b45a9b mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x86c59d13 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x86ca2d3d seq_read_iter +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86da9517 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86dfe63f __f_setown +EXPORT_SYMBOL vmlinux 0x86f8d1f0 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870b66a0 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x8713e86f of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x872a5283 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x87433843 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x874ea589 iptun_encaps +EXPORT_SYMBOL vmlinux 0x87515b4b ppp_register_channel +EXPORT_SYMBOL vmlinux 0x8756c914 do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x8759c575 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x875c2023 unlock_page +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq +EXPORT_SYMBOL vmlinux 0x87944493 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87ad934f mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x87ae7169 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x87af8977 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x87b4ff2b inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x87f3833b nd_btt_version +EXPORT_SYMBOL vmlinux 0x87f9cc36 param_get_short +EXPORT_SYMBOL vmlinux 0x880dd2eb md_error +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x8811d5a4 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x883699d0 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x883e4117 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x884b7beb netif_device_attach +EXPORT_SYMBOL vmlinux 0x885d7f00 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x88993295 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x88b5b62c fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x88bfc918 mr_dump +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88dfcce5 init_pseudo +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88ff3cd0 gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x891d1e23 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order +EXPORT_SYMBOL vmlinux 0x892ae76a flush_signals +EXPORT_SYMBOL vmlinux 0x893e5526 sock_rfree +EXPORT_SYMBOL vmlinux 0x8952afc9 seq_open_private +EXPORT_SYMBOL vmlinux 0x89544a27 finish_no_open +EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x8959a63e ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass +EXPORT_SYMBOL vmlinux 0x899784d8 simple_fill_super +EXPORT_SYMBOL vmlinux 0x899a42dc call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x89ad9c8b netif_carrier_on +EXPORT_SYMBOL vmlinux 0x89ba9764 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x89d5567e netif_device_detach +EXPORT_SYMBOL vmlinux 0x89f0cd32 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x89f4dcde input_free_device +EXPORT_SYMBOL vmlinux 0x8a12e5b8 proc_mkdir +EXPORT_SYMBOL vmlinux 0x8a23bdf2 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x8a35622c __nla_reserve +EXPORT_SYMBOL vmlinux 0x8a362caa dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x8a409d20 ndisc_mc_map +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 0x8a64eb83 rw_verify_area +EXPORT_SYMBOL vmlinux 0x8a69c5cf dm_kobject_release +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a763d5e iov_iter_discard +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8c4095 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x8a8ce1e1 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9ffd95 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x8aa24284 _dev_notice +EXPORT_SYMBOL vmlinux 0x8ab885b0 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac3bb12 dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x8ad39905 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x8ae17965 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x8af03af5 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x8af5a9e6 __destroy_inode +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b1f2f34 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x8b201438 rio_query_mport +EXPORT_SYMBOL vmlinux 0x8b31e219 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x8b400c7f seq_bprintf +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b95ba41 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x8ba552ac input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x8ba9ad05 vc_cons +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8bfa8002 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x8c08d3d7 __fs_parse +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c3b195d blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x8c3d6bb6 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x8c52705a netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x8c6bcbf9 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x8c6d562f phy_detach +EXPORT_SYMBOL vmlinux 0x8c70aaa3 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cc379ce __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cd4d8bc posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x8ce28d93 genlmsg_put +EXPORT_SYMBOL vmlinux 0x8ce320e7 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x8d04be36 agp_create_memory +EXPORT_SYMBOL vmlinux 0x8d0a857e filemap_get_folios +EXPORT_SYMBOL vmlinux 0x8d173a1d sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x8d263808 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x8d2753bc radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d56ef5a open_exec +EXPORT_SYMBOL vmlinux 0x8d673d7d dcache_readdir +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x8d7a36fe dquot_destroy +EXPORT_SYMBOL vmlinux 0x8d8316e8 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x8d904b71 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x8d96136a flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x8d9b41a7 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x8d9c60b0 simple_setattr +EXPORT_SYMBOL vmlinux 0x8d9ce724 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x8da13f18 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x8dc22f1c __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x8ddd7b43 devm_iounmap +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e024080 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x8e0729dc blk_execute_rq +EXPORT_SYMBOL vmlinux 0x8e311389 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e54ff85 discard_new_inode +EXPORT_SYMBOL vmlinux 0x8e718966 vme_slot_num +EXPORT_SYMBOL vmlinux 0x8e74fdbe nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8eb47ab3 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x8ecd584a iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x8ed904f2 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x8eec42b2 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x8ef46caf of_device_unregister +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f376b03 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x8f4838c9 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x8f51cd14 sk_dst_check +EXPORT_SYMBOL vmlinux 0x8f58f9ec genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x8f6888b5 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x8f68da79 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x8f6c65ed super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x8f86c399 arp_create +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fcf1b52 start_tty +EXPORT_SYMBOL vmlinux 0x8fdd2caf kernel_bind +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x90166048 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x901c32c0 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x9022de58 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x9023361b proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x90282410 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902e9182 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x903292dd serio_close +EXPORT_SYMBOL vmlinux 0x9034d4cd of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x903a8a7a tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x9046acda input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x9061fa84 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x90816d4f mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x908b1d6a mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x909810f0 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons +EXPORT_SYMBOL vmlinux 0x90b8e5c7 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x90c80456 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x90c80d56 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x90d4acdf xattr_full_name +EXPORT_SYMBOL vmlinux 0x90e895ca inet_ioctl +EXPORT_SYMBOL vmlinux 0x90f269b8 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x90feba12 vga_con +EXPORT_SYMBOL vmlinux 0x910a09db tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x91247d04 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x912d3f15 pci_dev_get +EXPORT_SYMBOL vmlinux 0x9130ed1f ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x91397db7 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x914f1be7 proc_symlink +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x915e93d4 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x9161019e security_cred_getsecid +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 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91a7f74f send_sig +EXPORT_SYMBOL vmlinux 0x91e27f39 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x921888d2 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x92350074 mdiobus_write +EXPORT_SYMBOL vmlinux 0x923948a2 km_state_expired +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9240ab56 skb_clone +EXPORT_SYMBOL vmlinux 0x9251f0d2 wait_for_completion +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x92755028 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929e4254 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x929ea69b request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x92a0708d put_watch_queue +EXPORT_SYMBOL vmlinux 0x92a841c7 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x92b2f42e generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x92b3d81d tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c172ee dev_add_offload +EXPORT_SYMBOL vmlinux 0x92c36f71 filp_open +EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +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 0x93244b1f page_pool_create +EXPORT_SYMBOL vmlinux 0x9336c464 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x9362120c dec_node_page_state +EXPORT_SYMBOL vmlinux 0x9362e5c6 tcp_mmap +EXPORT_SYMBOL vmlinux 0x9370cb9d jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x9372389f d_add_ci +EXPORT_SYMBOL vmlinux 0x937369d3 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938dc039 radix__local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x939faa34 __ps2_command +EXPORT_SYMBOL vmlinux 0x93a14bd5 set_page_writeback +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93a804ba sk_stop_timer +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93bbb2bc percpu_counter_sum_all +EXPORT_SYMBOL vmlinux 0x93c1a2b7 sk_capable +EXPORT_SYMBOL vmlinux 0x93c29c6a skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x93c89a8b md_flush_request +EXPORT_SYMBOL vmlinux 0x93df6de7 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x940d3a8f vm_map_ram +EXPORT_SYMBOL vmlinux 0x942356f9 datagram_poll +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x94667988 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x946a23b5 default_amr +EXPORT_SYMBOL vmlinux 0x9479fc70 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x947fc2e8 _dev_alert +EXPORT_SYMBOL vmlinux 0x948823a6 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x9489da0a devm_clk_get +EXPORT_SYMBOL vmlinux 0x94953612 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949ed727 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x94a5fd84 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x94a9a4aa _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c892d8 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x94fdba29 mpage_writepages +EXPORT_SYMBOL vmlinux 0x95011168 alloc_pages +EXPORT_SYMBOL vmlinux 0x950525bd pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950bf925 can_nice +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x952a564f flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955e8368 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0x9568fb23 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x9577a674 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x95c6c48a qe_pin_set_gpio +EXPORT_SYMBOL vmlinux 0x95cb5c9c pneigh_lookup +EXPORT_SYMBOL vmlinux 0x95e46da6 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x95e85f37 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x95ffdd2b netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x9602660d qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x960f6603 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x9611ce4e simple_transaction_set +EXPORT_SYMBOL vmlinux 0x9642a19f generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x964329f5 dma_find_channel +EXPORT_SYMBOL vmlinux 0x965039c7 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x96613d05 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x966f22cd tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x96705564 set_disk_ro +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x96894417 dev_driver_string +EXPORT_SYMBOL vmlinux 0x968f5dcf in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x969f154d trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x96a125e4 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x96ab992b bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x96b0e91a of_node_name_eq +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b2b90a bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96ccfdeb __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x97110f36 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x971ec27c hvc_put_chars +EXPORT_SYMBOL vmlinux 0x9720a2ca phy_connect +EXPORT_SYMBOL vmlinux 0x973c09e5 __pgd_index_size +EXPORT_SYMBOL vmlinux 0x974b0c27 ip_frag_init +EXPORT_SYMBOL vmlinux 0x97586f21 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x97604792 bdi_register +EXPORT_SYMBOL vmlinux 0x97710e58 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x9778f357 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat +EXPORT_SYMBOL vmlinux 0x977f5ac7 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a5b355 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x97ad350e jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bd70bb empty_aops +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97cbe2bd tcf_classify +EXPORT_SYMBOL vmlinux 0x97cc1718 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x97cdf156 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x97ce12fa pci_pme_active +EXPORT_SYMBOL vmlinux 0x97d918a8 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x97e0bda2 phy_attached_info +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x97fc144d max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x9814abc9 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x98168161 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x981d9189 tcf_block_get +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98361b0c inet_recvmsg +EXPORT_SYMBOL vmlinux 0x98430ec9 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x985330c9 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x9858468c scmd_printk +EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 +EXPORT_SYMBOL vmlinux 0x985b14fd percpu_counter_set +EXPORT_SYMBOL vmlinux 0x9862858e mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x988bbcb8 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x98a74e41 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x98ab572a blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x98bcc28c security_path_unlink +EXPORT_SYMBOL vmlinux 0x98bf0a5f sock_wfree +EXPORT_SYMBOL vmlinux 0x98c2a43a napi_build_skb +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d6d320 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x98deadce __folio_lock +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x9900088f __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x99173207 decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x992c23c8 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x992e9879 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x9933f03a agp_bind_memory +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993cba4d security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x994afb84 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9951d93b rtc_add_groups +EXPORT_SYMBOL vmlinux 0x9979c814 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x9980ee85 inet6_offloads +EXPORT_SYMBOL vmlinux 0x998788bf security_path_mknod +EXPORT_SYMBOL vmlinux 0x99938264 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x999c0793 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b74840 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x99c44a5f request_key_rcu +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e94dd6 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a1d3e09 redraw_screen +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a426305 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x9a4eda80 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x9a51c239 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x9a52bcb8 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a5cb95f mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x9a673d6c sk_wait_data +EXPORT_SYMBOL vmlinux 0x9a6b1227 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x9a87f87e ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x9a8da3f6 filemap_flush +EXPORT_SYMBOL vmlinux 0x9a9020b3 file_ns_capable +EXPORT_SYMBOL vmlinux 0x9aa80c26 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9acde112 gtm_ack_timer16 +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9afe8f4e d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x9b02aa03 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x9b06caff devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x9b09aafd blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x9b0b1c87 device_add_disk +EXPORT_SYMBOL vmlinux 0x9b1a0048 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x9b1f6c4f netif_set_real_num_rx_queues +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 0x9b50b69d make_bad_inode +EXPORT_SYMBOL vmlinux 0x9b5fddb0 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x9b95d2f3 __alloc_skb +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bc7ebac d_set_d_op +EXPORT_SYMBOL vmlinux 0x9bd36e84 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x9be1741f generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9be99c7e scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x9bf6c158 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x9bff44e7 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x9c10ec27 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x9c2cdcb1 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x9c3de173 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x9c575dfe fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c78d9cc skb_vlan_push +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c972fc9 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x9c99dda1 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb4745b rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x9cb7af8f tcp_shutdown +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd37301 register_netdev +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cea7cc8 blk_queue_update_dma_alignment +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 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2ac199 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d3e301b find_vma_intersection +EXPORT_SYMBOL vmlinux 0x9d454517 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x9d50801f agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x9d73d773 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x9d7ea283 __serio_register_port +EXPORT_SYMBOL vmlinux 0x9d842dc8 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x9d96a9b0 mmu_hash_ops +EXPORT_SYMBOL vmlinux 0x9da8e3d4 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x9dc69251 component_match_add_release +EXPORT_SYMBOL vmlinux 0x9dc751d1 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x9dd8dd57 load_fp_state +EXPORT_SYMBOL vmlinux 0x9de706b5 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9dee7055 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x9dfeeda9 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x9e06a627 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e22c985 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x9e22e2af dump_align +EXPORT_SYMBOL vmlinux 0x9e388e37 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x9e4d6286 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e571300 pci_find_resource +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e736291 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x9e743b21 pci_find_bus +EXPORT_SYMBOL vmlinux 0x9e8089a4 stop_tty +EXPORT_SYMBOL vmlinux 0x9e8d6b4a dst_cow_metrics_generic +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 0x9eb33112 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec5ff10 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee58967 set_cached_acl +EXPORT_SYMBOL vmlinux 0x9eea384a folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x9eeca1fa tcp_prot +EXPORT_SYMBOL vmlinux 0x9f0bdfb7 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x9f159c25 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x9f2be096 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f52ff69 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f5f8ef1 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x9f87b791 console_start +EXPORT_SYMBOL vmlinux 0x9f88040b kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x9f9806d4 pcibios_bus_to_resource +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 0x9fbb5869 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x9fd12b61 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa002aa7d md_reload_sb +EXPORT_SYMBOL vmlinux 0xa0090b35 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xa01cbb2f sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa01dbefb skb_pull_data +EXPORT_SYMBOL vmlinux 0xa023c867 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xa0262284 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03abad4 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa0614f89 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xa068a53e proc_create_single_data +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa0804705 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08e7313 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d0fd73 set_bh_page +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 0xa0f10085 __sg_free_table +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fdc200 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xa106ccdd dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1127ab3 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xa11cb052 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xa129236e dev_open +EXPORT_SYMBOL vmlinux 0xa1538824 d_obtain_root +EXPORT_SYMBOL vmlinux 0xa1922432 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xa1cb1591 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xa1d5b702 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xa1eaa2cd mempool_init +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa212e594 udp_seq_start +EXPORT_SYMBOL vmlinux 0xa21a274b vfs_get_link +EXPORT_SYMBOL vmlinux 0xa2256afb ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xa22a630c vm_insert_pages +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa2499592 of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0xa24a632f ip_local_deliver +EXPORT_SYMBOL vmlinux 0xa24af2e7 d_find_alias +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25042d5 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xa253d0ee fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa266209e of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xa2849b34 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xa28a3e42 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28e61a9 build_skb +EXPORT_SYMBOL vmlinux 0xa297ca98 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2c49514 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2f42f21 sget +EXPORT_SYMBOL vmlinux 0xa3084869 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xa3178e44 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xa31c11ae configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xa328fc3e follow_pfn +EXPORT_SYMBOL vmlinux 0xa32ea1a8 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xa34d870b vlan_vid_del +EXPORT_SYMBOL vmlinux 0xa34ea576 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xa366ff8d xa_get_order +EXPORT_SYMBOL vmlinux 0xa37586e0 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xa37d5abc __d_drop +EXPORT_SYMBOL vmlinux 0xa385a027 dev_change_flags +EXPORT_SYMBOL vmlinux 0xa38bcc33 inet_getname +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3a78654 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xa3be7dd8 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c0c93e ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xa3c0f796 input_close_device +EXPORT_SYMBOL vmlinux 0xa3c7fb8d inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d937f6 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xa3dc868e folio_unlock +EXPORT_SYMBOL vmlinux 0xa3e6bd58 vfs_readlink +EXPORT_SYMBOL vmlinux 0xa3f11949 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa4048627 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xa415d619 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xa4301e73 phy_stop +EXPORT_SYMBOL vmlinux 0xa4317247 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xa432a6d2 __folio_alloc +EXPORT_SYMBOL vmlinux 0xa43c377a sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xa446273d netdev_printk +EXPORT_SYMBOL vmlinux 0xa454180f phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xa463b1eb napi_get_frags +EXPORT_SYMBOL vmlinux 0xa48ca009 inet_release +EXPORT_SYMBOL vmlinux 0xa49a9b46 mempool_alloc +EXPORT_SYMBOL vmlinux 0xa49d5faa console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0xa4a05aa4 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4be810f lock_rename +EXPORT_SYMBOL vmlinux 0xa4c18191 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xa4c20d27 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xa4cc4059 km_policy_expired +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa516db3b mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xa51b2088 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xa52ea8a0 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xa53f14e0 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa56a2b4f dcb_setapp +EXPORT_SYMBOL vmlinux 0xa571eee8 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xa58957b5 dma_pool_create +EXPORT_SYMBOL vmlinux 0xa590378c __scm_send +EXPORT_SYMBOL vmlinux 0xa5907e71 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xa597475f mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xa5991633 to_nd_btt +EXPORT_SYMBOL vmlinux 0xa5a3afc8 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xa5b8ed8b scsi_host_put +EXPORT_SYMBOL vmlinux 0xa5bacd27 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xa5d7e313 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xa5e38d08 file_open_root +EXPORT_SYMBOL vmlinux 0xa5e5b8e3 kill_pgrp +EXPORT_SYMBOL vmlinux 0xa5f2c83c xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa62c34f6 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xa62d9836 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xa633cdcb xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xa635d2a6 profile_pc +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa6563dd1 devm_request_resource +EXPORT_SYMBOL vmlinux 0xa6579f21 __pud_val_bits +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa66753f8 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xa67b5639 bdi_put +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68396a7 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xa6889468 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xa6952de5 neigh_destroy +EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xa6b1048d pci_reenable_device +EXPORT_SYMBOL vmlinux 0xa6c5c797 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xa6d12482 scsi_host_busy +EXPORT_SYMBOL vmlinux 0xa6e8985f xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xa6ebf300 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xa7167fea security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa757789d phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xa772323c of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xa77b1ed6 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa77dc567 kernel_read +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa79bff2d hpage_shift +EXPORT_SYMBOL vmlinux 0xa7a0aedb lease_modify +EXPORT_SYMBOL vmlinux 0xa7a6b257 devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0xa7b5633e input_open_device +EXPORT_SYMBOL vmlinux 0xa7d40402 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xa7dd61e7 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7fe2214 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xa82d137d kobject_get_unless_zero +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 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa87f3570 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xa8896319 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xa88e6bd2 __netif_schedule +EXPORT_SYMBOL vmlinux 0xa89d26bd __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xa8a54c4d nd_device_register +EXPORT_SYMBOL vmlinux 0xa8bf63ad pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e3fbe9 input_event +EXPORT_SYMBOL vmlinux 0xa8f32478 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa908c27e input_flush_device +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa925df9d i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa9299bf2 page_readlink +EXPORT_SYMBOL vmlinux 0xa94d5812 put_disk +EXPORT_SYMBOL vmlinux 0xa9610cac dcb_getapp +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa968a6da radix__flush_all_mm +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97e2fe5 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0xa982d0c6 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xa98b17fd kernel_accept +EXPORT_SYMBOL vmlinux 0xa98c04c6 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xa9a5755e blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xa9bfc486 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xa9cd1398 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xa9d374e1 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xa9dffce5 mempool_free +EXPORT_SYMBOL vmlinux 0xa9ef9e7c dma_resv_fini +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa248cc6 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xaa484fab skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xaa69b2fd kmalloc_trace +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa878481 xp_alloc +EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaa91524b mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xaa9179c4 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xaa948a64 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaab2ee91 complete_all +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad3522e generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaada84ad inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xaadc2a56 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab23723f folio_migrate_copy +EXPORT_SYMBOL vmlinux 0xab251f0f ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab42072e blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xab490f86 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xab587d03 flow_indr_dev_setup_offload +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 0xab7821cb unregister_nls +EXPORT_SYMBOL vmlinux 0xab7838ea block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xab83210c generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xab92217e dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0xabc3f2cd __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xabdcc8de skb_queue_purge +EXPORT_SYMBOL vmlinux 0xabe44e6d eth_type_trans +EXPORT_SYMBOL vmlinux 0xabe8e033 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xabf29a8d max8925_reg_write +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac0176cd eth_header +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac430423 __pmd_val_bits +EXPORT_SYMBOL vmlinux 0xac4e1d41 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xac503263 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xac56abd9 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac7a832b dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xac988fca ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xaca04da1 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc861cf xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xaccd1f67 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xacd48c56 netdev_state_change +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd84991 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace2b418 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xaced59fe neigh_direct_output +EXPORT_SYMBOL vmlinux 0xacf16435 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad10d024 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xad10fffc xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad2d49a7 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xad37ff3f mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xad3b19a8 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad5330a3 tcp_read_skb +EXPORT_SYMBOL vmlinux 0xad5c01c7 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xad7062cf iget5_locked +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadbbf4c8 pid_task +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc968bf tcp_init_sock +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd91282 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xade49a82 phy_init_eee +EXPORT_SYMBOL vmlinux 0xadeaa37d locks_delete_block +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae08b5a5 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled +EXPORT_SYMBOL vmlinux 0xae1e55c6 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xae261479 giveup_altivec +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae442aba blk_integrity_register +EXPORT_SYMBOL vmlinux 0xae44d5f1 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xae4c8439 __pte_table_size +EXPORT_SYMBOL vmlinux 0xae4fc6e1 param_ops_int +EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xae68dcab input_register_device +EXPORT_SYMBOL vmlinux 0xae6d7653 sk_net_capable +EXPORT_SYMBOL vmlinux 0xae790ac7 vfs_get_tree +EXPORT_SYMBOL vmlinux 0xae7b5688 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaec01a5e dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xaec243e6 dst_dev_put +EXPORT_SYMBOL vmlinux 0xaec9eb13 cont_write_begin +EXPORT_SYMBOL vmlinux 0xaed1eec3 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xaeed4fe5 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xaeed6ff8 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xaefd4835 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xaf151b41 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xaf158990 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xaf171e5d of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xaf2b4169 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xaf34594f vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4a3ca4 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xaf59e5ee ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0xaf5f1d17 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xaf8604ce fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xaf95a556 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit +EXPORT_SYMBOL vmlinux 0xafbf792b posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xafc06bcd wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafcdc295 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xafd2dce6 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xafde48fc qdisc_put +EXPORT_SYMBOL vmlinux 0xafe6c899 mt_find +EXPORT_SYMBOL vmlinux 0xaffa84bd vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xb0090964 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xb00d42ab phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb0234c5f mt_find_after +EXPORT_SYMBOL vmlinux 0xb03c29cc cdev_init +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb060ba08 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb074fbae user_path_create +EXPORT_SYMBOL vmlinux 0xb08cabbc dump_skip +EXPORT_SYMBOL vmlinux 0xb0933871 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xb093f0b8 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xb0992f46 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b88f85 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xb0bd52ed tso_build_data +EXPORT_SYMBOL vmlinux 0xb0bf6858 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xb0c2ea8a pci_dev_put +EXPORT_SYMBOL vmlinux 0xb0d401d5 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xb0d4fb48 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0fbde43 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xb0fe4dd7 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xb10736bd dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xb10777dc tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xb107c874 inc_nlink +EXPORT_SYMBOL vmlinux 0xb1141d65 __netif_rx +EXPORT_SYMBOL vmlinux 0xb11d182a neigh_ifdown +EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1416344 ihold +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb148713a vme_master_request +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14dc353 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb150b384 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15d9dcc regset_get_alloc +EXPORT_SYMBOL vmlinux 0xb179ca2c tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xb180c850 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xb181a589 icmp6_send +EXPORT_SYMBOL vmlinux 0xb189c45f jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xb19d55df fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0xb1bc75a2 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c5c64e gtm_set_exact_timer16 +EXPORT_SYMBOL vmlinux 0xb1d069d6 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1ee57ca component_match_add_typed +EXPORT_SYMBOL vmlinux 0xb1f90a32 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xb1ff98cf add_watch_to_object +EXPORT_SYMBOL vmlinux 0xb20e3dff km_report +EXPORT_SYMBOL vmlinux 0xb216014e skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xb21d120b tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb27764cc mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xb277725b tso_build_hdr +EXPORT_SYMBOL vmlinux 0xb27bf005 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xb2815453 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear +EXPORT_SYMBOL vmlinux 0xb2acd9e5 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xb2b00c06 nf_log_trace +EXPORT_SYMBOL vmlinux 0xb2b12d2c __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xb2bb344c fb_validate_mode +EXPORT_SYMBOL vmlinux 0xb2e3f1a9 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xb2e5e67b kernel_listen +EXPORT_SYMBOL vmlinux 0xb2ef70d6 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2fbab68 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30a2ef8 dev_uc_init +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb323d497 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb344e0ce pci_resize_resource +EXPORT_SYMBOL vmlinux 0xb34788ad mmc_can_trim +EXPORT_SYMBOL vmlinux 0xb34c8794 register_framebuffer +EXPORT_SYMBOL vmlinux 0xb350f6f2 dqstats +EXPORT_SYMBOL vmlinux 0xb359d8d1 make_kgid +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb36bfad9 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xb36d1e2c crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xb376d75d sk_ns_capable +EXPORT_SYMBOL vmlinux 0xb3865be4 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xb394d401 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xb3b4bd80 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xb3bbd582 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xb3be5e00 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xb3c5b6ef eth_header_parse +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e3ac95 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb3e485b1 qe_pin_request +EXPORT_SYMBOL vmlinux 0xb3e55603 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xb3e98331 xfrm_input +EXPORT_SYMBOL vmlinux 0xb3eec25a dm_kcopyd_copy +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 0xb3f985a8 sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb3fa0f89 input_inject_event +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4245d9c generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xb4287e60 release_sock +EXPORT_SYMBOL vmlinux 0xb43c836a devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xb43dbf26 pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0xb4424b2b proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xb44478a6 qe_pin_free +EXPORT_SYMBOL vmlinux 0xb4461025 udp_set_csum +EXPORT_SYMBOL vmlinux 0xb45b8210 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xb46cda6d free_buffer_head +EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get +EXPORT_SYMBOL vmlinux 0xb476e9c3 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xb4847908 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xb484fb69 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb48d674b tcp_close +EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0xb49b2c8b user_path_at_empty +EXPORT_SYMBOL vmlinux 0xb4a59b02 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xb4aaeb63 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xb4b17144 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xb4b1fb92 pci_bus_type +EXPORT_SYMBOL vmlinux 0xb4c78da2 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xb4cbaaed xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f30e13 __invalidate_device +EXPORT_SYMBOL vmlinux 0xb506f892 d_alloc +EXPORT_SYMBOL vmlinux 0xb52031e3 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xb5243292 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xb5370b45 kill_pid +EXPORT_SYMBOL vmlinux 0xb539b516 dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xb555f9f3 gtm_get_specific_timer16 +EXPORT_SYMBOL vmlinux 0xb57b4966 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xb57efdcd vfs_setpos +EXPORT_SYMBOL vmlinux 0xb58e3459 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xb59457bc dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xb5990c2d eth_mac_addr +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b0e954 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5bb8cf9 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xb5c78638 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xb5ce69d9 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xb5cfae16 sock_no_accept +EXPORT_SYMBOL vmlinux 0xb5d08997 netlink_set_err +EXPORT_SYMBOL vmlinux 0xb5e673c8 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb610f6bb dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xb615b9dd param_get_hexint +EXPORT_SYMBOL vmlinux 0xb62158ba blk_put_queue +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6361231 mutex_is_locked +EXPORT_SYMBOL vmlinux 0xb64538db flush_dcache_folio +EXPORT_SYMBOL vmlinux 0xb64d3cf7 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xb6560aee __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0xb66dd6db find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb66f3569 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67b7865 simple_rename +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69c47d0 fqdir_init +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b46977 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6d2b514 inet_frags_init +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6e9719d security_inode_init_security +EXPORT_SYMBOL vmlinux 0xb6eb6b34 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb720e1ab mem_section +EXPORT_SYMBOL vmlinux 0xb729ed41 notify_change +EXPORT_SYMBOL vmlinux 0xb7361d56 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xb740d5b3 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xb747073e padata_do_parallel +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb77cffa7 dquot_get_state +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb792e8d4 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xb79ba046 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xb7a9aba7 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xb7baaf70 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c4de65 phy_print_status +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d2ef3d gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0xb7e26ab8 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xb7eb722a bmap +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb83cc038 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xb83e8a05 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xb8417eca eth_get_headlen +EXPORT_SYMBOL vmlinux 0xb846b914 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb887c4c6 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b68ab0 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xb8b976e9 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xb8c67249 param_set_hexint +EXPORT_SYMBOL vmlinux 0xb8d265f7 filp_close +EXPORT_SYMBOL vmlinux 0xb8dda6bb param_set_uint +EXPORT_SYMBOL vmlinux 0xb8fd4b38 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xb8fe4183 mtree_store_range +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb9240adb tcp_poll +EXPORT_SYMBOL vmlinux 0xb92e827a xp_free +EXPORT_SYMBOL vmlinux 0xb942d43c seq_escape_mem +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9440576 mount_single +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb9499662 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xb954141c vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb97742d9 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xb99858fc follow_down_one +EXPORT_SYMBOL vmlinux 0xb99a972e dm_table_event +EXPORT_SYMBOL vmlinux 0xb9af5d38 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xb9bb3dea pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xb9be7004 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xb9c0de6c vme_init_bridge +EXPORT_SYMBOL vmlinux 0xb9c138bc netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xb9d66543 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba274076 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xba2eca86 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xba329fce wireless_spy_update +EXPORT_SYMBOL vmlinux 0xba3e9fbb __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5e7af7 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xba67a355 nmi_panic +EXPORT_SYMBOL vmlinux 0xba691c85 _insb +EXPORT_SYMBOL vmlinux 0xba6d5e74 dev_deactivate +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba755f02 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xba8c15fa jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0xbaa4ae39 cad_pid +EXPORT_SYMBOL vmlinux 0xbab114d7 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xbab33860 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xbabc2ab9 read_cache_page +EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len +EXPORT_SYMBOL vmlinux 0xbad28eba input_get_keycode +EXPORT_SYMBOL vmlinux 0xbaf48d5c elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbaffa629 vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1fee01 misc_deregister +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2a3260 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xbb3e9e90 __pmd_table_size +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5a5012 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xbb5d2326 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xbb7b414e gtm_stop_timer16 +EXPORT_SYMBOL vmlinux 0xbb7c5095 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xbb95fb10 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xbb99b97f __netif_napi_del +EXPORT_SYMBOL vmlinux 0xbb9e478f of_get_next_child +EXPORT_SYMBOL vmlinux 0xbba75607 down_killable +EXPORT_SYMBOL vmlinux 0xbbaa304d netdev_change_features +EXPORT_SYMBOL vmlinux 0xbbcbf691 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xbbe68126 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xbbf79771 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbc07aa22 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xbc0c9a46 gro_cells_init +EXPORT_SYMBOL vmlinux 0xbc42c17f mutex_unlock +EXPORT_SYMBOL vmlinux 0xbc5cf3e9 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xbc70bd0e nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xbc8b83d9 config_group_find_item +EXPORT_SYMBOL vmlinux 0xbc916f43 simple_write_begin +EXPORT_SYMBOL vmlinux 0xbc9516ed blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbc9c4f79 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb6b160 register_shrinker +EXPORT_SYMBOL vmlinux 0xbcb75f91 may_umount +EXPORT_SYMBOL vmlinux 0xbcbf9c81 set_binfmt +EXPORT_SYMBOL vmlinux 0xbccb1ded set_groups +EXPORT_SYMBOL vmlinux 0xbcf54e7f _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xbd119af6 fc_mount +EXPORT_SYMBOL vmlinux 0xbd1c4881 param_ops_bool +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd587954 mdio_device_register +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd851830 devm_memremap +EXPORT_SYMBOL vmlinux 0xbda8ec5f skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xbdc7a48d tcp_conn_request +EXPORT_SYMBOL vmlinux 0xbdd46baf dqget +EXPORT_SYMBOL vmlinux 0xbdd94ad2 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xbde2b88a iov_iter_init +EXPORT_SYMBOL vmlinux 0xbdf688e6 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xbe0720fa of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe30ea11 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe69a67a filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xbe6d9215 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xbe6ecb07 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xbe8d5fa7 mdio_device_create +EXPORT_SYMBOL vmlinux 0xbe90bd43 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xbe92ccd7 deactivate_super +EXPORT_SYMBOL vmlinux 0xbe957992 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xbe997468 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xbe99979f phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xbe9fb6ec pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xbea6338f arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xbea9b6dc vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xbeb1bb0e sock_edemux +EXPORT_SYMBOL vmlinux 0xbebcf48f pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xbed3b158 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xbed5d1cc __check_sticky +EXPORT_SYMBOL vmlinux 0xbef1f1b5 textsearch_register +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf04bf0d neigh_for_each +EXPORT_SYMBOL vmlinux 0xbf184733 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xbf1cbdaa free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xbf1e082b md_bitmap_free +EXPORT_SYMBOL vmlinux 0xbf31065d copy_string_kernel +EXPORT_SYMBOL vmlinux 0xbf368ac3 dev_trans_start +EXPORT_SYMBOL vmlinux 0xbf596f45 _insl_ns +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf6596cb pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xbf6908b2 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xbf7fd9ef free_netdev +EXPORT_SYMBOL vmlinux 0xbf9af47a serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfb39067 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xbfb45a87 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xbfbe3cb7 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd139e6 simple_empty +EXPORT_SYMBOL vmlinux 0xbfea3088 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xc0043eb5 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xc0061b42 dst_release_immediate +EXPORT_SYMBOL vmlinux 0xc011ef7e tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xc013c0c5 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xc01c1946 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc04c5c18 complete_request_key +EXPORT_SYMBOL vmlinux 0xc0608991 simple_open +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc07c9d9f dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xc0a60008 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xc0b346d8 opal_nx_coproc_init +EXPORT_SYMBOL vmlinux 0xc0d6d78f __var_waitqueue +EXPORT_SYMBOL vmlinux 0xc0d73199 iov_iter_single_seg_count +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 0xc1086908 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xc111871e pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc11be751 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xc11d593c skb_eth_pop +EXPORT_SYMBOL vmlinux 0xc123b39c pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xc1396329 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xc13981d5 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xc150b695 genphy_suspend +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc1514e3a padata_alloc +EXPORT_SYMBOL vmlinux 0xc1556e51 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1901232 dns_query +EXPORT_SYMBOL vmlinux 0xc1940835 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xc1a61c4f tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc1ab7bbf param_ops_short +EXPORT_SYMBOL vmlinux 0xc1b897f0 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xc1bf1214 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xc1ce2bd1 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xc1d17ee5 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1db7f32 srp_rport_put +EXPORT_SYMBOL vmlinux 0xc20ac710 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xc215c3d8 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xc2254168 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xc2257da4 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xc225d7cc __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xc22ea5d9 kobject_del +EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xc23bddc3 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2490212 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xc24b5029 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xc24cbc49 ns_capable_setid +EXPORT_SYMBOL vmlinux 0xc254dbc5 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xc2864898 get_vm_area +EXPORT_SYMBOL vmlinux 0xc28faabb devm_memunmap +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2be0e51 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e6d5cb pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xc2ee9a1f qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xc2f4a7f3 netdev_err +EXPORT_SYMBOL vmlinux 0xc2f93471 generic_file_open +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc314ae28 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc322cb37 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc32d9410 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xc33bdda2 elevator_alloc +EXPORT_SYMBOL vmlinux 0xc35e2862 phy_attach +EXPORT_SYMBOL vmlinux 0xc35f93a8 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3ac8759 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xc3b52681 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xc3c37185 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xc3e7ee11 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xc3ed34f4 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xc3f1d371 dup_iter +EXPORT_SYMBOL vmlinux 0xc40206ae ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xc405471e dquot_file_open +EXPORT_SYMBOL vmlinux 0xc40d965e scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xc4180188 mtree_alloc_range +EXPORT_SYMBOL vmlinux 0xc41b759e dqput +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42b50b7 mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0xc444628a xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc457f80b inet6_protos +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc473f0fd inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc47b08e7 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xc48ef71b __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4b85c10 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xc4cdf48f _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xc4d35063 path_get +EXPORT_SYMBOL vmlinux 0xc4dcee28 lookup_one +EXPORT_SYMBOL vmlinux 0xc4e5efe1 napi_complete_done +EXPORT_SYMBOL vmlinux 0xc4f95b53 radix__flush_pmd_tlb_range +EXPORT_SYMBOL vmlinux 0xc51a3640 down_write_killable +EXPORT_SYMBOL vmlinux 0xc51d1530 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xc5281419 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xc52bd064 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xc5463adb of_chosen +EXPORT_SYMBOL vmlinux 0xc546ff57 pci_iomap +EXPORT_SYMBOL vmlinux 0xc55beba4 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc5735c03 current_time +EXPORT_SYMBOL vmlinux 0xc5845156 devm_rproc_add +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc5905135 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xc5938932 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table +EXPORT_SYMBOL vmlinux 0xc5a9a171 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5c2b82a tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xc5c68f46 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xc5c884c0 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e46b65 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f053de skb_split +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61b8087 idr_destroy +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc6285a9a sock_gettstamp +EXPORT_SYMBOL vmlinux 0xc6287655 kset_unregister +EXPORT_SYMBOL vmlinux 0xc62aeca8 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc6369552 sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xc63fc439 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc664b528 mempool_create_node +EXPORT_SYMBOL vmlinux 0xc6656fbb register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc66a9d61 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xc67c3a80 md_write_start +EXPORT_SYMBOL vmlinux 0xc6a4cef9 sock_set_priority +EXPORT_SYMBOL vmlinux 0xc6bc4855 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xc6be06ae pci_ep_cfs_remove_epf_group +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 0xc6d57390 simple_dentry_operations +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 0xc6fe2a0c phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xc71351a2 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc73acfc5 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xc73c635a arch_free_page +EXPORT_SYMBOL vmlinux 0xc74bdbf4 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xc7532054 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xc755fafb blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xc75d594d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xc76b3962 simple_unlink +EXPORT_SYMBOL vmlinux 0xc773d7b8 task_work_add +EXPORT_SYMBOL vmlinux 0xc779c603 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xc7818b10 pps_event +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ac1de2 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc7b2d406 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xc7b3de5f tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xc7bfdbe5 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7ced5ee mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7e227c3 neigh_xmit +EXPORT_SYMBOL vmlinux 0xc7f484b1 ida_destroy +EXPORT_SYMBOL vmlinux 0xc7f4f462 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xc8225fb1 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84d6397 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xc852c77d vm_map_pages +EXPORT_SYMBOL vmlinux 0xc85a8a9c mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xc85df6ce request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xc86ea85d eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xc87149b2 skb_expand_head +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a64e89 __register_binfmt +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8a93ad7 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xc8bd5891 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table +EXPORT_SYMBOL vmlinux 0xc8cc1c82 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xc8d7b7b1 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xc8dc0a3b blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e68a35 fb_get_mode +EXPORT_SYMBOL vmlinux 0xc8efb05e filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xc8f5a95a wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xc8ffc92f param_set_invbool +EXPORT_SYMBOL vmlinux 0xc90a47bb pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xc9148847 phy_start +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc93504b1 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xc9369f69 srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0xc93b5005 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xc93dd9bf iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xc93e87eb try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xc94eecde jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xc955cb2c down_trylock +EXPORT_SYMBOL vmlinux 0xc9600535 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xc960dd28 qdisc_reset +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc968dbff request_firmware +EXPORT_SYMBOL vmlinux 0xc96eaea1 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc97d7443 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9875b29 __find_get_block +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b8dd1d pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xc9c751b5 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xc9cf66dc device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift +EXPORT_SYMBOL vmlinux 0xc9dda146 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9ed15bb tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xc9f8ce91 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xc9fb3b07 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xca0b1daf write_cache_pages +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca26ac2f fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xca2dac33 block_dirty_folio +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca3cc6d5 configfs_register_group +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca589229 skb_ext_add +EXPORT_SYMBOL vmlinux 0xca5f3154 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xca768283 bdi_alloc +EXPORT_SYMBOL vmlinux 0xca78ab6f jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca93dd42 km_query +EXPORT_SYMBOL vmlinux 0xcaabbd05 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xcabc6bdf unpin_user_page +EXPORT_SYMBOL vmlinux 0xcabd70d9 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xcabe6172 mmc_release_host +EXPORT_SYMBOL vmlinux 0xcac2e838 giveup_all +EXPORT_SYMBOL vmlinux 0xcac66036 dquot_transfer +EXPORT_SYMBOL vmlinux 0xcad52040 __icmp_send +EXPORT_SYMBOL vmlinux 0xcaded191 security_path_rename +EXPORT_SYMBOL vmlinux 0xcae9863b blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xcaf10c0e register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xcaf4a221 sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xcaf4e795 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xcaf9c49c tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xcafba8b7 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xcb0185c8 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb26d1b1 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xcb2759ec blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xcb2ea0b5 finish_wait +EXPORT_SYMBOL vmlinux 0xcb34b29c i2c_transfer +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit +EXPORT_SYMBOL vmlinux 0xcb4ebe3a folio_wait_bit +EXPORT_SYMBOL vmlinux 0xcb6ad67a mmc_can_discard +EXPORT_SYMBOL vmlinux 0xcb7199a5 d_tmpfile +EXPORT_SYMBOL vmlinux 0xcb7febe6 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xcb89f7d2 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xcb8b5e96 generic_permission +EXPORT_SYMBOL vmlinux 0xcb97e6de __seq_open_private +EXPORT_SYMBOL vmlinux 0xcbaf6492 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xcbb8466e fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure +EXPORT_SYMBOL vmlinux 0xcbcd8ab4 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbdbde47 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xcbdbdea2 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xcbe9da92 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xcbe9ff29 mount_subtree +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 0xcc267cb3 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xcc28b108 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc36b8b6 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcc389a72 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc626c2c completion_done +EXPORT_SYMBOL vmlinux 0xcc89231e ip_frag_next +EXPORT_SYMBOL vmlinux 0xcc895a78 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xcc95ef26 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xcca74255 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xccb0b9f0 finish_open +EXPORT_SYMBOL vmlinux 0xccb6eac8 dma_fence_free +EXPORT_SYMBOL vmlinux 0xccdfc21f __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xccea37a8 locks_free_lock +EXPORT_SYMBOL vmlinux 0xccef0753 serio_interrupt +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd07aa44 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xcd21cf19 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xcd2686ee i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd51334e dma_free_attrs +EXPORT_SYMBOL vmlinux 0xcd541af6 unregister_console +EXPORT_SYMBOL vmlinux 0xcd578170 ip6_xmit +EXPORT_SYMBOL vmlinux 0xcd584106 seq_dentry +EXPORT_SYMBOL vmlinux 0xcd67e3de i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xcd6cfa1b dump_emit +EXPORT_SYMBOL vmlinux 0xcd6e50fc kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcdc0349c add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xcdc348c6 dev_lstats_read +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc7dc50 nonseekable_open +EXPORT_SYMBOL vmlinux 0xcdc8742f dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xcdd5c2d1 md_write_inc +EXPORT_SYMBOL vmlinux 0xcde41625 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xcde60f98 d_genocide +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdee038f _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xcdf3cd9c ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xce0b2ba5 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xce18bbe1 fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0xce1a418a pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce34a112 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xce3c4124 send_sig_info +EXPORT_SYMBOL vmlinux 0xce4023a9 xfrm_alloc_spi +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 0xce807151 idr_get_next +EXPORT_SYMBOL vmlinux 0xce8d8eaa param_set_bint +EXPORT_SYMBOL vmlinux 0xce9e3fdc tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xcea0cbf3 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xcea13239 proc_dobool +EXPORT_SYMBOL vmlinux 0xcea78de1 cdev_device_add +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb52b4b of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xceb79e53 inet_accept +EXPORT_SYMBOL vmlinux 0xcebb8f58 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xcec766f1 __memset16 +EXPORT_SYMBOL vmlinux 0xcef8a47c reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf08b68e dev_load +EXPORT_SYMBOL vmlinux 0xcf0c5207 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xcf17977e pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xcf1b4ba8 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xcf2460ad mdio_device_free +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf456ec8 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xcf7de908 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xcf81b14a mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xcf9a189a down_timeout +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa2964f seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xcfa61af1 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xcfb75bed security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xcfbfca65 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xcfd69f4a __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xcfd71a16 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcffba488 tty_write_room +EXPORT_SYMBOL vmlinux 0xd01a1d30 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xd02054b3 folio_alloc +EXPORT_SYMBOL vmlinux 0xd029be42 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xd03a7f40 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06e2c9e filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd077edf6 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xd08111bb sk_error_report +EXPORT_SYMBOL vmlinux 0xd09c6a11 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xd0a762d1 devm_release_resource +EXPORT_SYMBOL vmlinux 0xd0b9fce2 fb_pan_display +EXPORT_SYMBOL vmlinux 0xd0d27b7b of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xd0f405fe md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd10001a1 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xd1036fb5 tty_port_put +EXPORT_SYMBOL vmlinux 0xd114499d blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xd11b653e srp_rport_get +EXPORT_SYMBOL vmlinux 0xd11de72d __napi_schedule +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd139739e skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xd14e2b62 km_state_notify +EXPORT_SYMBOL vmlinux 0xd14fd9d2 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xd1595ba3 set_blocksize +EXPORT_SYMBOL vmlinux 0xd16127ab pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xd1791509 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xd18c60d5 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xd18e90e9 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xd19ea177 phy_loopback +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dc91dc vio_unregister_driver +EXPORT_SYMBOL vmlinux 0xd1e87de2 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xd20e1269 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd225f6cf tty_register_driver +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd247a789 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd269acf8 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xd2714601 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd28e378c fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xd294321c __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xd2944e6e ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xd2a22f68 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xd2adcc08 pci_iounmap +EXPORT_SYMBOL vmlinux 0xd2b22173 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xd2b6f563 mount_nodev +EXPORT_SYMBOL vmlinux 0xd2ba7236 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2df7601 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2e8ff55 tty_port_close +EXPORT_SYMBOL vmlinux 0xd2ed2f31 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35c376b pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37b1a7c tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xd37e1075 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd3a40336 from_kuid +EXPORT_SYMBOL vmlinux 0xd3add1cc __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xd3b26b6c agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xd3ebcb1b tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4208144 simple_link +EXPORT_SYMBOL vmlinux 0xd459afdc vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xd45c4c58 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4615ccf crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0xd461ac0a may_setattr +EXPORT_SYMBOL vmlinux 0xd47e7331 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4960b15 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xd49894da inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xd4a69abb invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xd4b12118 dev_get_stats +EXPORT_SYMBOL vmlinux 0xd4bb3f1e crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c81fd9 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xd4d7c068 fsl_upm_find +EXPORT_SYMBOL vmlinux 0xd4f1ed26 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xd4fd0ec2 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xd507bd53 vfs_fsync +EXPORT_SYMBOL vmlinux 0xd50826f4 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xd523cee5 __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd53348a9 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xd53b9883 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xd54a3665 secpath_set +EXPORT_SYMBOL vmlinux 0xd55f2072 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xd57208f5 d_path +EXPORT_SYMBOL vmlinux 0xd57f30de skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xd57f5814 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xd5968a51 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xd5a1a3ab xfrm_policy_alloc +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 0xd5c463a2 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xd5c5fb53 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xd5d777c8 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xd5ef84c7 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xd5fcc441 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0xd64571d1 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xd64df726 audit_log_start +EXPORT_SYMBOL vmlinux 0xd656351a scsi_remove_target +EXPORT_SYMBOL vmlinux 0xd66ad1d5 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6742a28 vm_event_states +EXPORT_SYMBOL vmlinux 0xd6800a82 cred_fscmp +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd69948fb proc_dointvec +EXPORT_SYMBOL vmlinux 0xd6a7e5db __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6bea872 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xd6cca69f pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xd6ccdb72 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6eba2d0 rproc_free +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f2c20e sk_free +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd720d95f sync_blockdev +EXPORT_SYMBOL vmlinux 0xd723d330 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xd72f04ef tty_port_init +EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd73d9a48 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd767e7f8 single_open +EXPORT_SYMBOL vmlinux 0xd7697ffe touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xd77ad138 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xd781f97d mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd79301f0 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7ad0858 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xd7d18ea4 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d8a17b napi_disable +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f384bd vme_bus_type +EXPORT_SYMBOL vmlinux 0xd7f71c8d rproc_shutdown +EXPORT_SYMBOL vmlinux 0xd8045b58 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xd818dc94 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xd81b53ad blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xd81e9713 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xd8204c33 path_is_under +EXPORT_SYMBOL vmlinux 0xd82bdd12 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xd83e3254 blkdev_put +EXPORT_SYMBOL vmlinux 0xd8548b30 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0xd875a765 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xd878c811 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xd878f0cf ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xd898d9b8 param_get_byte +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a183dd tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xd8a49d1c genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit +EXPORT_SYMBOL vmlinux 0xd8bedb86 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xd8cfa937 md_update_sb +EXPORT_SYMBOL vmlinux 0xd8db2d83 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xd8e2a317 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xd8ef0dfb seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd923e3bf dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0xd93427b3 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xd93e3901 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xd9597386 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xd968a9c5 phy_disconnect +EXPORT_SYMBOL vmlinux 0xd970d826 kobject_put +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9902053 param_get_int +EXPORT_SYMBOL vmlinux 0xd9b3e96e napi_gro_frags +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9c81f14 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xd9cda4f1 migrate_folio +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e40b83 inet_put_port +EXPORT_SYMBOL vmlinux 0xd9e7f85e phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xd9e98a3b ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xd9f0863d rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xd9fc05f9 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0xd9fe148c __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xda11b45c thaw_super +EXPORT_SYMBOL vmlinux 0xda18b798 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda43c105 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xda5afaa5 kobject_set_name +EXPORT_SYMBOL vmlinux 0xda708c8c bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdaa68996 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xdac0cc6e phy_driver_register +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac91a96 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xdacdba06 _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0xdacfb6bc scsi_remove_device +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdad6f658 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0xdadbeff9 pci_get_device +EXPORT_SYMBOL vmlinux 0xdae772e5 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xdaf0c3ec ps2_begin_command +EXPORT_SYMBOL vmlinux 0xdafc27a4 sock_from_file +EXPORT_SYMBOL vmlinux 0xdb39252e buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xdb5cff1f generic_write_checks +EXPORT_SYMBOL vmlinux 0xdb60e99c xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6c5a8d register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xdb757c16 param_set_ushort +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8b89e1 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xdb8e6780 register_md_personality +EXPORT_SYMBOL vmlinux 0xdb8fbe8b pci_match_id +EXPORT_SYMBOL vmlinux 0xdba32f22 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xdba458b8 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xdbaa2848 security_sb_remount +EXPORT_SYMBOL vmlinux 0xdbb91e60 pci_free_irq +EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xdbda953d mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xdbdd0ac4 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbf3110e gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0xdbfa0017 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1ea204 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xdc26a91f clear_inode +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc3fcbcb __mutex_init +EXPORT_SYMBOL vmlinux 0xdc4024f4 readahead_expand +EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5cb36a inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xdc7681f7 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xdc7ae9e7 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xdc7b24a8 generic_write_end +EXPORT_SYMBOL vmlinux 0xdc812cbd update_devfreq +EXPORT_SYMBOL vmlinux 0xdc844c13 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xdc853006 register_fib_notifier +EXPORT_SYMBOL vmlinux 0xdc86b734 inet_sendpage +EXPORT_SYMBOL vmlinux 0xdc917b18 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdcb203fe netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xdcb3e5f1 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdd0dc95e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xdd1a1b70 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd45c6fe blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xdd562dc2 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xdd5d4652 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xdd604a25 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdd645d52 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd825f86 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd923226 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xdda0b381 generic_writepages +EXPORT_SYMBOL vmlinux 0xddad3c8b clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xddade21a nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddc04717 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xddd7090e fddi_type_trans +EXPORT_SYMBOL vmlinux 0xddddd338 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xdde70f07 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xde2e630f netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xde485d76 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde52030d generic_setlease +EXPORT_SYMBOL vmlinux 0xde681318 vm_mmap +EXPORT_SYMBOL vmlinux 0xde6de8c3 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xde89994e rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde96494c dentry_open +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdeba368b of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xdec32743 d_exact_alias +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdef711ee nd_integrity_init +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf00b5d7 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xdf0f5e62 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xdf1c1bfd phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xdf1c5949 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf34731d f_setown +EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf58ec65 register_netdevice +EXPORT_SYMBOL vmlinux 0xdf59edb5 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xdf68a16a dev_addr_mod +EXPORT_SYMBOL vmlinux 0xdf68e0d5 ip6_output +EXPORT_SYMBOL vmlinux 0xdf7eaa39 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xdf837f39 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xdf857a70 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents +EXPORT_SYMBOL vmlinux 0xdfa6b133 d_invalidate +EXPORT_SYMBOL vmlinux 0xdfb15e0f pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xdff277b1 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xdff7eeb8 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe00340e1 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xe015ca72 scsi_print_result +EXPORT_SYMBOL vmlinux 0xe01a451c param_ops_long +EXPORT_SYMBOL vmlinux 0xe020a2ca mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xe022e639 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0xe027bfa5 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xe02f0c82 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe07573a2 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe092c2bc fs_bio_set +EXPORT_SYMBOL vmlinux 0xe09a37ed of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xe0a6bdad md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xe0b97938 dev_mc_del +EXPORT_SYMBOL vmlinux 0xe0bfdac9 bio_split +EXPORT_SYMBOL vmlinux 0xe0d10803 con_is_bound +EXPORT_SYMBOL vmlinux 0xe0d4cc6a filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe0d97ade key_link +EXPORT_SYMBOL vmlinux 0xe0e81b2d nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xe10336e5 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe1231c07 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xe13a3784 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xe1437d81 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xe15b8ca8 framebuffer_release +EXPORT_SYMBOL vmlinux 0xe166e03a pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xe16d0d00 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xe18f30bd filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xe1a1cf4e netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe1adf895 tty_port_open +EXPORT_SYMBOL vmlinux 0xe1cd0b4f xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xe1d43b84 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe20383e9 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe256200d scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xe25d20d3 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe2743520 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xe29aa24d reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xe29b290b abort_creds +EXPORT_SYMBOL vmlinux 0xe2bca17d netif_tx_unlock +EXPORT_SYMBOL vmlinux 0xe2cf0095 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2fe69d7 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xe30420cf param_get_string +EXPORT_SYMBOL vmlinux 0xe30f5698 posix_test_lock +EXPORT_SYMBOL vmlinux 0xe313aa88 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xe323608d sock_no_mmap +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe330894b posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xe339bdd9 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xe342e4e3 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xe34b265c kern_unmount +EXPORT_SYMBOL vmlinux 0xe3747345 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3a0014e filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xe3b1b3dd tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xe3bb702a dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xe3bf82b5 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xe3c14606 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xe3c7c805 devm_free_irq +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 0xe40c550d vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe440c0b9 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xe442ea75 finish_swait +EXPORT_SYMBOL vmlinux 0xe44af40e node_data +EXPORT_SYMBOL vmlinux 0xe462f63e dev_get_by_index +EXPORT_SYMBOL vmlinux 0xe4765752 eeh_dev_release +EXPORT_SYMBOL vmlinux 0xe488565f noop_llseek +EXPORT_SYMBOL vmlinux 0xe490c994 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xe49d0fb4 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xe49e2d4e inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xe4a19294 poll_initwait +EXPORT_SYMBOL vmlinux 0xe4b14bd9 memcpy_page_flushcache +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4bd73e4 vfs_getattr +EXPORT_SYMBOL vmlinux 0xe4e1790c tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xe4e2ad0e seq_release +EXPORT_SYMBOL vmlinux 0xe4e7cff3 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe4efb700 register_sysctl +EXPORT_SYMBOL vmlinux 0xe5052c35 gtm_set_timer16 +EXPORT_SYMBOL vmlinux 0xe505e18d tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe56870c2 rtnl_notify +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5819d41 fd_install +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe59f8264 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xe5a79293 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xe5b74dcc input_unregister_handle +EXPORT_SYMBOL vmlinux 0xe5ba7281 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d71a61 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xe5e7d7b0 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xe5f87853 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xe60b14e4 bio_init +EXPORT_SYMBOL vmlinux 0xe62b40c9 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xe62c14ee ip_do_fragment +EXPORT_SYMBOL vmlinux 0xe630999c mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xe642a79f nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe67cf7c9 nf_log_unset +EXPORT_SYMBOL vmlinux 0xe67ecda7 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xe68d80d5 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xe694077f gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xe69a29f7 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xe69d3647 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xe6a9ee30 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xe6b43d04 param_get_ullong +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6e088a0 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xe6ee274c pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xe6f3df54 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xe70622dc input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xe707f121 sock_release +EXPORT_SYMBOL vmlinux 0xe7114946 dst_destroy +EXPORT_SYMBOL vmlinux 0xe71d79d0 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xe71ee3a2 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xe72ff8f5 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xe75458bc uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xe76335c5 __debugger +EXPORT_SYMBOL vmlinux 0xe768c809 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xe78020a7 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe78de71f pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xe79e3347 iput +EXPORT_SYMBOL vmlinux 0xe7aafb09 vga_put +EXPORT_SYMBOL vmlinux 0xe7abf1cf iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xe7afc1bd ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xe7b0faf0 rproc_boot +EXPORT_SYMBOL vmlinux 0xe7b30117 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7f21936 clk_add_alias +EXPORT_SYMBOL vmlinux 0xe7f7ee61 from_kgid +EXPORT_SYMBOL vmlinux 0xe7fabbfb iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xe81d41b2 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xe82de4bf input_register_handle +EXPORT_SYMBOL vmlinux 0xe8340414 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xe85b0d52 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xe85cd4d9 pci_set_master +EXPORT_SYMBOL vmlinux 0xe8630f2a key_alloc +EXPORT_SYMBOL vmlinux 0xe8674b91 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xe8679aa2 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0xe86fc5ad bio_reset +EXPORT_SYMBOL vmlinux 0xe878cc22 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xe88dd280 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xe88eb758 setup_new_exec +EXPORT_SYMBOL vmlinux 0xe8a19309 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8b5e5f0 aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len +EXPORT_SYMBOL vmlinux 0xe8d54c77 xa_clear_mark +EXPORT_SYMBOL vmlinux 0xe8d6146c napi_consume_skb +EXPORT_SYMBOL vmlinux 0xe900f272 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xe904e539 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91c69c3 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xe92d3339 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xe932738a dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9965412 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xe99b9695 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xe99ffd3a flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9f695bd arch_get_random_seed_longs +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fc70c0 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xe9fc8b01 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xea0a119e dma_fence_describe +EXPORT_SYMBOL vmlinux 0xea0bff82 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xea381366 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea426e43 mempool_resize +EXPORT_SYMBOL vmlinux 0xea44b306 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xea624c11 scsi_print_command +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea7afb26 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xea80392f on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xea909b7e devfreq_add_device +EXPORT_SYMBOL vmlinux 0xeaa554d3 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xeab88e1f tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xeabe3d57 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xeac54f0e security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xeac581a3 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xeac8e321 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xeadf8270 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xeaf11310 neigh_lookup +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb0a9910 seq_puts +EXPORT_SYMBOL vmlinux 0xeb1ae01c of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb2dffa4 dm_put_device +EXPORT_SYMBOL vmlinux 0xeb336913 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb4348df seq_pad +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb50a250 par_io_of_config +EXPORT_SYMBOL vmlinux 0xeb53093b phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xeb74312b mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xeb76b7f7 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xeb76d209 dquot_resume +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeb8f2d4f __pmd_frag_size_shift +EXPORT_SYMBOL vmlinux 0xeb97739d pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xeb9bc554 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba2656a param_get_bool +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebad0066 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xebd32cdd dma_fence_get_status +EXPORT_SYMBOL vmlinux 0xebe4de0b pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xec0396ef dquot_disable +EXPORT_SYMBOL vmlinux 0xec0a6423 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xec25376f vga_get +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec4031f9 init_task +EXPORT_SYMBOL vmlinux 0xec494def alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4fb493 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xec5466fd pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0xec64f5f9 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xec68b114 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xec75f6d4 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xec948908 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xec97ead8 __kernel_io_start +EXPORT_SYMBOL vmlinux 0xec99d68f icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and +EXPORT_SYMBOL vmlinux 0xecb07d2b mmc_free_host +EXPORT_SYMBOL vmlinux 0xecbd4a97 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xeccc885c mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecec7852 fb_show_logo +EXPORT_SYMBOL vmlinux 0xecef86e0 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xecfc28f6 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xed02b46f phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xed083d7c unix_attach_fds +EXPORT_SYMBOL vmlinux 0xed4087d5 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xed523280 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xed523bc8 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed684d61 netdev_features_change +EXPORT_SYMBOL vmlinux 0xed6a3480 load_nls +EXPORT_SYMBOL vmlinux 0xed7c2fb9 pcim_iomap +EXPORT_SYMBOL vmlinux 0xed9db5cb mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xedb5b8f5 unix_gc_lock +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc6dbe1 may_umount_tree +EXPORT_SYMBOL vmlinux 0xedcb5f4f md_register_thread +EXPORT_SYMBOL vmlinux 0xedcfb2dd serio_unregister_port +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xedd5b42a dst_discard_out +EXPORT_SYMBOL vmlinux 0xede58286 block_write_full_page +EXPORT_SYMBOL vmlinux 0xedea3e7d dev_uc_add +EXPORT_SYMBOL vmlinux 0xedf9bb6a unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xedfc926d vme_irq_request +EXPORT_SYMBOL vmlinux 0xee1bc680 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee444191 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xee469fda scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8c5991 sync_file_create +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee8ef74e down_read_killable +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec39854 drop_super +EXPORT_SYMBOL vmlinux 0xeec90ccd pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeeea7b2e mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xeeff2850 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xef277ce8 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xef2ef076 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xef3c4ae4 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xef45baa3 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xef5cab0d sock_no_connect +EXPORT_SYMBOL vmlinux 0xef674535 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xef6b2a98 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xef6ba7ab fb_blank +EXPORT_SYMBOL vmlinux 0xef71a22c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xef95b298 vme_slave_request +EXPORT_SYMBOL vmlinux 0xef99fbab netif_skb_features +EXPORT_SYMBOL vmlinux 0xefaeed4c phy_modify_paged +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb5e521 kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0xefc14b02 __skb_checksum +EXPORT_SYMBOL vmlinux 0xefca5275 to_ndd +EXPORT_SYMBOL vmlinux 0xefd0beb5 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xefe8772a end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf01bf721 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xf02be8e9 file_update_time +EXPORT_SYMBOL vmlinux 0xf02d5db7 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xf02e2aa4 __bforget +EXPORT_SYMBOL vmlinux 0xf0329ad1 down_read_trylock +EXPORT_SYMBOL vmlinux 0xf0678225 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xf07350bd proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table +EXPORT_SYMBOL vmlinux 0xf07b3aea mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xf07c932a __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf086156b xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xf08a3eef dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xf08d17d1 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf09f9bf7 __neigh_create +EXPORT_SYMBOL vmlinux 0xf0b01e0e padata_free_shell +EXPORT_SYMBOL vmlinux 0xf0bdc382 import_iovec +EXPORT_SYMBOL vmlinux 0xf0e37ded textsearch_destroy +EXPORT_SYMBOL vmlinux 0xf0e5ed29 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xf0f806da mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xf1013f9e pci_set_power_state +EXPORT_SYMBOL vmlinux 0xf110d1cb pseries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xf115e18f set_nlink +EXPORT_SYMBOL vmlinux 0xf1173b14 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf1240c80 __quota_error +EXPORT_SYMBOL vmlinux 0xf125a593 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xf127dbd8 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xf1331c4e unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked +EXPORT_SYMBOL vmlinux 0xf14da4e2 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xf18a3433 param_ops_hexint +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a1ca76 tcp_check_req +EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1b0be0c filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0xf1b3c63f reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xf1cdad4b tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xf1d18e90 _outsw_ns +EXPORT_SYMBOL vmlinux 0xf1da1159 truncate_setsize +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf21df52f migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xf222d70b set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xf23505da scsi_ioctl +EXPORT_SYMBOL vmlinux 0xf23590bf writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xf23cd014 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2403500 module_put +EXPORT_SYMBOL vmlinux 0xf241461f __xa_insert +EXPORT_SYMBOL vmlinux 0xf2510a04 of_node_to_nid +EXPORT_SYMBOL vmlinux 0xf2554d4b blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xf258741f nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf265a1e2 tcf_register_action +EXPORT_SYMBOL vmlinux 0xf26d81c7 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xf273d29d iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xf287714c pci_fixup_device +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29cd557 unlock_rename +EXPORT_SYMBOL vmlinux 0xf2a1e4c2 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf2a46a90 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xf2a72998 console_stop +EXPORT_SYMBOL vmlinux 0xf2b2da71 pci_get_class +EXPORT_SYMBOL vmlinux 0xf2bfc014 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d8243f folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xf2ddfb57 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xf2e2b61d input_set_keycode +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f2364c ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2fbac38 put_fs_context +EXPORT_SYMBOL vmlinux 0xf2fbc79d seq_path +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34f3bc3 dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0xf34fb7e4 dquot_initialize +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf353d274 ppp_input +EXPORT_SYMBOL vmlinux 0xf355892c __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xf355ec77 inet_select_addr +EXPORT_SYMBOL vmlinux 0xf35967b7 scsi_done_direct +EXPORT_SYMBOL vmlinux 0xf36d7a98 read_cache_folio +EXPORT_SYMBOL vmlinux 0xf36e844d clk_get +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf37b777c bprm_change_interp +EXPORT_SYMBOL vmlinux 0xf38d525b __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf39cd77d cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3b2019b inc_node_state +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e27e30 nla_put +EXPORT_SYMBOL vmlinux 0xf3fd65d1 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xf40427b5 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xf40b9ed3 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xf417ef96 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xf41916d6 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xf42d3cbb jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xf42d64ca proc_dostring +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf451a76d param_set_short +EXPORT_SYMBOL vmlinux 0xf46166af mpage_readahead +EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all +EXPORT_SYMBOL vmlinux 0xf4726457 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf476d139 done_path_create +EXPORT_SYMBOL vmlinux 0xf4b9d93c phy_device_register +EXPORT_SYMBOL vmlinux 0xf4be7f8a vma_alloc_folio +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e32c93 serio_reconnect +EXPORT_SYMBOL vmlinux 0xf4ef8e33 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf502c117 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xf505d2f0 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xf50e4f7e xp_dma_map +EXPORT_SYMBOL vmlinux 0xf515fc47 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xf5165484 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xf5349008 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53f722e trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xf5488fd9 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xf54cb3f2 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xf55155b8 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf57f0b54 tcp_peek_len +EXPORT_SYMBOL vmlinux 0xf5831381 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5dafb92 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xf5e029e4 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5e9217a sock_sendmsg +EXPORT_SYMBOL vmlinux 0xf5ecd02a blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xf5eea66e blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xf5f89cac __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xf5ff7dac truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xf60a1ca1 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xf60b33ab seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xf6150d63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xf6279c29 set_posix_acl +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf62e891e rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf652cd3b register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xf66050d1 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6ac03fe ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xf6b54eff ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xf6baf0eb flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xf6d009ee ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6fd7164 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xf7162ab1 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xf7368e4c simple_dir_operations +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf745d0a3 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xf74e4d32 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf7523f66 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xf75285ca phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xf7961a73 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xf7a73c41 input_match_device_id +EXPORT_SYMBOL vmlinux 0xf7aa2328 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xf7c2df39 __wake_up_bit +EXPORT_SYMBOL vmlinux 0xf7cf26eb __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7e5ad20 folio_add_lru +EXPORT_SYMBOL vmlinux 0xf7fa733e of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xf802331f devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xf8047e3f tcp_read_sock +EXPORT_SYMBOL vmlinux 0xf8119f79 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf812e574 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf85e9624 ether_setup +EXPORT_SYMBOL vmlinux 0xf864c673 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xf86d32e8 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xf8b64531 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xf8b9ffdb dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xf8d03762 module_layout +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8d50878 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xf8dc015f inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xf8e1115e _outsl_ns +EXPORT_SYMBOL vmlinux 0xf8e4e273 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xf8f486ac pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xf8f4ac0a __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xf8f5ae41 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90b3df7 iunique +EXPORT_SYMBOL vmlinux 0xf91015c8 __skb_pad +EXPORT_SYMBOL vmlinux 0xf9350fa2 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94c8832 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xf951d22e block_commit_write +EXPORT_SYMBOL vmlinux 0xf95f5e06 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xf96aa020 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf97edc14 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b1cdcd smp_call_function_many +EXPORT_SYMBOL vmlinux 0xf9b832c5 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9f852ef nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0f8071 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xfa10be43 poll_freewait +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa33fb11 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xfa4acd60 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa7d7cfc neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xfa9c2ece _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfaab04e1 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xfaadd63e fwnode_iomap +EXPORT_SYMBOL vmlinux 0xfab560ef vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacc25e7 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xfad6223a file_modified +EXPORT_SYMBOL vmlinux 0xfaf265e3 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xfaf51491 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xfb003c84 sg_miter_start +EXPORT_SYMBOL vmlinux 0xfb0c8574 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xfb18d020 phy_find_first +EXPORT_SYMBOL vmlinux 0xfb1b9b20 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xfb1c3f46 inet_listen +EXPORT_SYMBOL vmlinux 0xfb1f46a2 dev_set_alias +EXPORT_SYMBOL vmlinux 0xfb232c7e idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xfb29152b blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb66f9eb devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb853331 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xfb8553ca tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xfb8bcda3 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below +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 0xfbb8e262 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbdc2390 skb_store_bits +EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next +EXPORT_SYMBOL vmlinux 0xfbeb1889 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xfbf37670 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xfbfb1c86 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0xfc2f1c7e sget_fc +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc42fc97 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xfc53f133 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xfc662e86 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xfc680c24 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices +EXPORT_SYMBOL vmlinux 0xfc914ff8 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xfc9b9b7f __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfc9e22a0 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xfcb27ff0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0xfcc415ac vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfccf4025 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdebcc9 default_llseek +EXPORT_SYMBOL vmlinux 0xfce524e9 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfd051798 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xfd14bfbd i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xfd43ac62 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xfdc89e7f sock_kfree_s +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfdde7535 get_cached_acl +EXPORT_SYMBOL vmlinux 0xfde804b6 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdeeb688 d_move +EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe36686d md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xfe3a1ac4 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe50a99d __bh_read_batch +EXPORT_SYMBOL vmlinux 0xfe57549a vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6644c4 dm_register_target +EXPORT_SYMBOL vmlinux 0xfe6b21cd secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe927182 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xfe9a413f tcf_em_register +EXPORT_SYMBOL vmlinux 0xfed07390 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xfedb15a4 radix__flush_tlb_page +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 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff066393 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xff170b02 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2205ee tcp_release_cb +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff36d266 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xff3e70cd agp_copy_info +EXPORT_SYMBOL vmlinux 0xff5d2069 free_task +EXPORT_SYMBOL vmlinux 0xff5f51bd inode_update_time +EXPORT_SYMBOL vmlinux 0xff621e25 arp_xmit +EXPORT_SYMBOL vmlinux 0xff64f8cd neigh_event_ns +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff761224 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xff794f31 security_sock_graft +EXPORT_SYMBOL vmlinux 0xff7ade06 proto_unregister +EXPORT_SYMBOL vmlinux 0xff945bb6 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xff9b832e kobject_get +EXPORT_SYMBOL vmlinux 0xffb2d29d sock_bind_add +EXPORT_SYMBOL vmlinux 0xffb40825 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xffb70700 bio_put +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffc69840 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffe0ee0c nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xffe690fd udp_table +EXPORT_SYMBOL vmlinux 0xffecc895 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff810b6 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xfffe3242 pcie_capability_read_word +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x00f446d5 kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x027c3a74 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x02b07327 kvmppc_core_queue_data_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0375c9ae kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x057e6dab kvmppc_xive_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x07602246 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x09440440 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0bd385f4 kvmppc_xics_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0e5a10e7 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0f5dd4df kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1677ce6d kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1808f243 kvmppc_xive_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d8766bb kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1fc7bda8 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20c31747 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2669b64b kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2aef4773 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2b2a2eb2 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2cfc4427 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x304b620c kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x33457ad8 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3636c6ae mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x37aeb1e3 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x37f93613 kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x38543ddb kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3d64d171 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3d689b32 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x40b9b104 kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x41302184 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x43166a78 gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x445e6c9c kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x44c100ab __SCK__tp_func_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x44d33b6c __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4ae8b676 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4cea574d kvmppc_h_put_tce_indirect +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4dd5e2bb kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x561350ea kvmppc_h_put_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x567efec8 vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5791970d kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5885c7a8 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x596cd631 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5c2535bd kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5d1142d5 kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x60fe53f6 kvmppc_h_get_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x640e8ac0 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6620e750 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x66c9729e kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6924fd56 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6b2d2b73 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6c0fde30 kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6d25b584 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x72aae3c1 kvmppc_core_queue_inst_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x74608a04 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x75747a58 kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x782500d7 kvmppc_core_queue_program +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 0x7d231450 kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d3b3e08 __traceiter_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85957b57 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85aea359 kvmppc_xive_pull_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x865b2e92 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x889cced4 kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x89a12ddf kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8acf4e5f kvmppc_h_stuff_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8afb1c3e kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8dc67b69 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e389d81 kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8f1921bb kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8fbadb00 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x924b1828 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x92f41683 gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x94a4a1ba kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x969a56b9 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x972bdac9 kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9821706c kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9c757f43 kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa0ca239e kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa4e7bdf1 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa91741cb gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb0458a70 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb2c4a0b7 kvmppc_xive_push_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb4cad9f4 file_is_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc0200f94 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc0d92393 kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc2b61e06 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xce68f99d kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcffcf282 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd1dd1e7b kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd2ed00da kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd5caea2e kvmppc_core_queue_machine_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xda17287a kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdb95defd kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdbf4a564 kvmppc_xive_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xde7403b4 kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe0567d83 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe15bcff7 kvmppc_xics_rm_complete +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe1f3e9cd kvmppc_xics_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xec0dce1e gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf21d91d7 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf25c807d kvmppc_xive_rearm_escalation +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf81d55d1 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf8c2c2d2 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfbe5b2fd gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfe21ab6e kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x1fa72e1d kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL crypto/af_alg 0x049ccae7 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x06fff2de af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x15669e6d af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x47c2759a af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x4b6d6c4d af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x5832f832 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x6b59d55b af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x72080e3e af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x7f30479d af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x88967baf af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x8a4ae217 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x9942e7a9 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xa5087067 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xb284a103 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xb43d2cdc af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb250851 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xf7022918 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xfa815d89 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/aria_generic 0x07bd9706 aria_set_key +EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x18ec2c1e async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x87fbfd59 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc0adf6c6 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x0960358f async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x90d194ca async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x44d8d4bb async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9eff5bdc async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb4c36551 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc67f8ad3 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x13e42e0f async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3723b495 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x885b2e32 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc1876378 async_xor_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x715fa9b6 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x8ce8aaa9 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1d2d485d 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 0x34431565 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4370081b cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x51bd6d66 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x75a45f97 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x81746ea7 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x829f7743 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x8f32595b cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x912bf6bf cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xa7dceb84 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb4f164f5 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc683a8f8 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xda2b9aa0 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xfdf7214d cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0024a611 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x00cd063f crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2e4704f7 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x30bcdc4d crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3c8b16c5 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4c96f480 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x61106c6d crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6758221a crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x69b03159 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaba36f00 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xad332592 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaf640538 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb60b429e crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd0955f20 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdf2eb230 crypto_engine_start +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/polyval-generic 0x1936413e polyval_mul_non4k +EXPORT_SYMBOL_GPL crypto/polyval-generic 0x49dece42 polyval_update_non4k +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8e1ff4df 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 0xa7b5a17d twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x04236a7f spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x175df117 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x27830bd3 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3e130ec4 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 0x4578846a spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x45eda959 spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x571af66a synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5ee0dd08 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6b962d26 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7441b8ce spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x82c32ea2 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x88fd208c spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c43c8db spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8cc05936 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa9bfec36 spk_synth_get_index +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 0xba4b7f43 spk_synth_is_alive_restart +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 0xc58f6e50 spk_get_var_header +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0c453833 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0d573258 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x176bf1c2 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1b79113a ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x28a38793 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3b3f49a3 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3e95ff33 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4f134787 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5188dc97 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x80248b4b ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x81f8f312 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8f555aaf ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x96d208ac ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9a306394 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa447ad6f ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa6b86a96 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc305a96d ahci_shost_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc6b8cfd0 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd7700a3a ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd793fa28 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xebf03a13 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf0d792b9 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfd792955 ahci_sdev_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xff0c39d8 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0fc82561 ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1753dda7 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1bd80421 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3ff97dda ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x52049fb2 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x53e67696 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5bc80242 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x681451a0 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7973e0fa ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7e196aed ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x96054093 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa40dcd53 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xafb5fb2c ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb2f3860a ahci_platform_find_clk +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc6ff4c66 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcf719512 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xecae9b08 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xef20a5b9 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf1dc4650 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x964898cb __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x76ec4cd8 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 0x0499185b linedisp_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x9d681f69 linedisp_register +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xa6671446 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x1ce3c9be __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x4eb4c292 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x362ace73 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x4aaaa67b __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x59b88c71 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xb8f89b5a __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xae4b6f05 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xfbca3955 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x3ce95961 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x52ff714b __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0158996b __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x09992516 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x2cf76fbb __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x80763ff6 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x1e7c583b __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xc5a4f26c __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ceed8f8 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0d8518ee bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1098e970 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2974a8d7 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x29ca4050 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x37d81aa4 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x388e5a2b bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3df302a1 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x407ae053 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4de607b4 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4eaa8578 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5dde77c2 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x619a7dcf bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x67b17d4d bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x923638ed bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x925781e1 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9923788c bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa240d35f bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab508ba3 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb70fc101 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbaf3eada bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf9e0d5b bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc6aa6f22 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc769a6b8 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x00a6e918 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2e1cb4b9 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3e3f8aba btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8224d5f3 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8ba3816d btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xaeedee1d btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb9bde2c0 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc94afb73 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x219a7d9a btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x268f8027 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x29aef569 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b432f78 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x355a04a1 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x584f0944 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x58d9c23d btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8465cb78 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x89c1553b btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8c8f545a btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8d4acf83 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x94a8fabc btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9f6f829a btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbc341fc7 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc220643e btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd6249b21 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf10ae3d9 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1fb28914 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x27d169c0 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2d1df5cf btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3fb648a8 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79a13abb btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79c848dc btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7c01adec btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb8fbff1e btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc01b23aa btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd76b00ba btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf309bf28 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x4978c146 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x626afa58 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x8e2176e7 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x24a103ff qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x33e67b6e qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4c1f8280 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6ddb648e qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdd3f58ae qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0c741eb1 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2683778a btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4d7fe7f5 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x594fb875 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x77cd1344 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd4a06be1 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x35c0de5d hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x42d835e5 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x62860ab2 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xeb0b0b07 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x3299429d mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x331d47c5 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x456743ef __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4652f758 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4800cd34 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x807627b8 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x9f39af55 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xc27dee04 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x010fff3d mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0663af52 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x06a02e8b mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x079b1965 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x085a6eea mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0fd1f2ae mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1b15a497 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2fb1d6e1 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2fda127f mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x34874aef mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3aa8a8b6 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3bb89ebf mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x497dba40 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x66098f50 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6700b244 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x76624532 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x778b8b7c mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7b8249e7 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7f1b4ad5 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x83695129 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x84147672 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb3c0831e __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb58a236c mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbbed0bcd mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcf097f87 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd4e0fb0c mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd65d45e3 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xea562af7 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xefc16bf1 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf51a0a7d mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf67289f6 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1f86ae22 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x25e2b2df moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xbda36882 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xc3855a13 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0488816a comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1fc7e9f1 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e1cd120 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3b868a58 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x42b82d81 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x445d17b2 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4ab12b1e comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4e5ccae6 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4eef1a51 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5f77830d comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6167d6a6 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x66a7ff89 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6d811484 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6ea9278e comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7dd86443 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8085afca comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x83f34bbf comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x84533204 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x94be3217 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa62401a2 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa74488a7 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xae9ab192 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb0f71f25 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb1741876 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xba830bf5 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbd9a5413 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc4288d55 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc8933e66 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd7a22e42 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd7dd6475 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdea1c128 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe19d6eb4 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe774ba2e comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe82fc833 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe84c0c91 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfd7b3561 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0991328b comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0ba06bde comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0fc5c1da comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x29748fb1 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5a71be11 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf384e3c1 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf5ad942b comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfc22a2c7 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x007a1ead comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5dd9ea15 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6d90e1c6 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb020cada comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xcd35e24d comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xff2a8a0c comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x061c111d addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x162ba761 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x4818bb24 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xdf2073bb amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x108e7c6a comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x223ed68a comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4f680552 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5c1153e2 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x62e05cd6 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x70246886 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8167eb4c comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8e70ae02 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa8cc7005 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc34fd6fd comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcd0ce15a comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf216b835 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfedd744b comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x892cc4f1 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xab30c444 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xe72af629 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x0159cda6 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x1a990251 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x982ab4f4 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 0x6ed98d34 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x07d06c67 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0c11e501 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0d452ba3 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x12c6c089 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2ba06aba mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x301c418e mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x396252cf mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3bdd1bbf mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x45783e3e mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6715f86b mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x76f949ad mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x89ce9620 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9a166910 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa98fdaf5 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc5839b61 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf4b07e78 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xa5fa8c06 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xd3b8a355 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x07fb14f1 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x2de32e2f labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x35f8e5f7 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x8b143d69 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xb6600b03 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 0x2eb8dce3 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3c6df204 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x40c16eb1 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x46e77cc1 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x483762b9 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x48edc8f2 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4bdb8907 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4c01e37f ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5c7ce691 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x63e2f8ea ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6da665e1 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8a3dd788 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9c706f00 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa1d3eb66 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb5065f12 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe9ab8490 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0e4f98a0 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x10240ace ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2a53134d ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x32cf786d ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x454a2868 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6e8d91e3 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2bfe4864 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x5115ec0e comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x5d0bd09a comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x73a27f68 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x8bf261ad comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x96fa9aeb comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb63df340 comedi_open +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x61098cfc nx842_crypto_init +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x9eba58ed nx842_crypto_decompress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xb56e0297 nx842_crypto_exit +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xfca90349 nx842_crypto_compress +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05b48f34 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x098e95f0 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0d2c4d71 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x10db9860 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x127df06c adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x17b081aa adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x18e3a586 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1a15ad3f adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1e147691 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1eee96c6 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1fb0a568 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x208ddf37 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x23d4d361 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2958a3a1 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2af32f08 adf_dev_started +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 0x35e5da08 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a8110b6 adf_gen2_enable_ints +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 0x3ec1f58f adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x40331c6a adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x42dc6e44 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x492fdbb6 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x554b0998 adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x58498cda adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x59633b66 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5df60b06 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5df924e6 adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6119607c adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6bf063ea adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x71cc24a0 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x721021a5 adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7268c712 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x788c1de7 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x81c50947 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84620a26 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x85a684f3 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8fbe3fa5 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x96a19f67 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c924afa adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e77d43a adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa694c2f9 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xab1cb376 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaf9471a0 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb0a69090 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb494f46b adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb622dec6 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbcd575c0 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf0bd37e adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf727044 adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc0af25a2 adf_cfg_add_key_value_param +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 0xc7619d5a adf_gen4_handle_pm_interrupt +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 0xd2b0dacc adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd588df83 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd5c7aabc adf_gen2_get_num_aes +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 0xdcaac1e0 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe0de7680 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe6a48da6 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea46a910 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xecee65d6 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfaa86cf2 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfbfd3b75 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xff40c1c5 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x734decab dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xd70ff86d dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x097590ae do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0c9de4d3 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x41330aa0 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5699fdb6 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x852111de dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x91120749 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb401bc2f idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x12d986bf fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x259e369c fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2efefb21 fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4e08a4d4 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5234368e fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x529d28d5 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5b51010e fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5e61d4c7 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x78c03a4c fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7bead14a fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8ae7a4d1 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa8aa7518 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb3c65dc3 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd242fa0e fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xef92f263 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf5ae5ba6 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfd9bda14 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x2057269d hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xe8dbb1a5 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x1082170a vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x13231aa0 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x5d14a9d1 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x887c848a vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe39f1a16 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xd11fa794 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x67cb1d86 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x04c55bf8 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2c356b76 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2e8c73f7 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x321d0197 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3a1484fe __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4932daab dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57eceb1b dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5c2a233d dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7d768888 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8a975d8d dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8b93b1dc dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x956cd6c4 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa5470800 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xad3c269f dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xae8b2aa8 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb02fd4cc dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbb14d8cf dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcd2907ec dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd1da2882 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd3884d54 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xee817a54 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf32a3cc9 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfee600dc dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x055ace3e fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1697aaff fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x17ef5fa8 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1cba5d8a fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x59176bf7 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9e86dad2 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd4c82737 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdf1cf63a of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe9fcc135 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0a290c1f fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0d1d5a04 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2dc14110 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4b17757a fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4cf83e8d fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5057a243 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5254dd98 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x535c7793 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb3ee3a33 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc6623253 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc948d021 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xef48d8fe devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xffa4bd48 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3141b466 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3988b376 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8802c8fc fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x93d73737 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xfbb8b66b fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x18b5d5ba fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x43379f12 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5b6a98ab fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x61a342c2 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa8ff584f fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xab8491d3 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbae88122 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc7bb9de9 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcbc34cd1 fsi_driver_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 0xf2c7d93e fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x185990b9 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x19dca434 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x6050a989 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x07c3feec gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x220b8f16 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x5bef2bff gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xcecc3a18 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf955a131 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2ed48a16 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3c27d82a gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x599fdeaa gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xab5b6247 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb3974440 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x074a8e0d idio_16_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x2fea5ebb idio_16_set_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xa376d180 idio_16_state_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xc0c67d80 idio_16_get_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xec4ea66a idio_16_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x38e1293b __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xee0223b9 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x20404edf analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x253b2db2 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 0x74f7e637 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x75485a81 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9782a242 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb1fddc2a analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb78ae2d7 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe3847314 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 0x545da0f3 dw_hdmi_probe +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 0x601cfde2 dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x76be60d4 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 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 0x9a91da81 dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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/display/drm_display_helper 0x78fe72ff drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x0ad7f817 devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x942426a6 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xb4196b9f __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xb5b40e04 of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xcae859a5 of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x04a59a55 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x08563780 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0fbc49b7 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x14d7e8db drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2570d2a9 drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x25757c4d drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3182516b drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3619a075 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3768a852 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x381aa0d0 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x41755fb4 accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5a2753c5 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x62c85577 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x68481713 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x713a1a34 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75521962 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbece38ff drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcf907a96 drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdf87cf02 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeaf5b8a4 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeb1ac172 drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf019e4a3 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0304ae91 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x32a52259 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x37357164 drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x45bbeafd drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4ea4b65a drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x569586e7 drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x607620ef drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x65b4b45c drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x6f5555d2 drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb666c6f9 drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xbcf9adaf drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf85fa8a0 drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x058ac57f drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1462a80e drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x20247949 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2eaa180f drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4da94a4e drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5247bec4 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7e112f41 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9153ff96 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcbd95858 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd5cdf167 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x02c9909e drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x402dfd1c drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7e5b4785 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7f7983d1 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xbb64565b drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc825fed3 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xea738dc9 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf83af9c6 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x0db747fe s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xc8fdf51a s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x6a15285f ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x7eee27ec ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xa9c31391 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x05016a0d gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x065f5615 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0819258d gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0dd3d2db gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10b8f371 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x178b4e2c gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x225dc6c4 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x24895237 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29ad0a62 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2c7fe215 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3a75f14c gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ed1e70c gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x410219de __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4165c457 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x42eb66aa greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d9eafc6 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50ad6b7c __traceiter_gb_message_submit +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 0x5cd0ebcd gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5d7e758d gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x60a4d0b4 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6ff1c65b gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7107d5cb gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75e5f148 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x82e43b6e gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x881e710e greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8f7f4c49 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xac3f5f11 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaec4ae2c gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb582ca73 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbe010a67 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc29a9b16 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3a653a3 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1aec9ac gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1b4b32a __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe2aaf843 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe724a1b4 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe78e8e5c __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe9c72a8c greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec7734f2 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed62b7c1 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xee9e51f4 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf1e4796b gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa43efdf gb_operation_get +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ac04106 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14a98c4e hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x20077d1e hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f9698a7 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x30984eb4 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3309179d hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36447588 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36c92fab hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x39b4ef55 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c61a94b hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d3d3d41 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3db0eaa2 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e0cdb6f __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4764bd1d hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f537c85 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4fe970ac hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5089aa4e hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x56735362 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x56932f10 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5783436c hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x57dcd859 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d08d9cd hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f25c1dc hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x796561e2 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x808339dc hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x81fec9a9 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x82ddaf33 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x82f3f216 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8390a41e hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x87d34280 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8cc865dd hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9093255b hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x913436d6 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a9a30c4 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa3ec4eb9 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa70dd48d hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa815f919 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xad62b15f hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2fd7e8a hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba55370f hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb70ab01 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1b65cd2 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd4508abb hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde5b7115 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf11746b hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf33bd2f hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdfa31fc3 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe0a05499 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe19e1313 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec965960 hid_add_device +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 0xa6a825d1 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x157b172e roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2cc49c29 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4a8013fd roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x96f0828f roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc15f41e3 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe5d240b5 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0c647208 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x27c0875c sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x29a81f7d sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2b9acb27 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x857815cc sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8f7a7e25 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa33250fd sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb9375e21 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe6a141b9 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x36f975ca vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x4a85ada1 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x020879f5 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1d3a308e i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9460e56f i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x963f6b7d i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9f43e624 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x7972858f uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x3c91d638 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x91c3dcfe hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x00dee921 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x07146899 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0da06228 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x26d979c7 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x31faf6c7 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3ce3deb8 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x50cc74fa hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8ff993bd hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x911837a5 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9283bc42 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x977195ff hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9a55e513 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb5126193 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbb018ed4 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbc961592 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbf8c7fa7 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xecd62147 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf3ed6db8 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe9a9d616 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/nct6775-core 0x17d20452 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x208b902e nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x6669243b nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x8a7add81 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xe1adb429 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xe771c9d9 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x5383fe9b occ_shutdown +EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0xddc6424f occ_setup +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x28e130c2 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2a574dfc intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6284064d intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x690b86ee intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7e4bb95b intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe0caf77e intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe47b3f2e intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xecddab7a intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf0c3c659 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x03a6a6e9 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5fb75219 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x8343822c intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x08b852ba stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5a49b47f stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x60cbd2a7 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x72b45df8 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8554334d stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa7e2f1ac stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb12a043e to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb8c32318 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xeb6875b5 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xd7a43b28 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5085c664 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa1fc70d7 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xda7421e9 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf54a4945 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x90b040a1 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1ef94d47 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x20e85907 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4b2e4321 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5026581c i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x61f2cf50 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6833b69c i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6f747f0e i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x74d0dda9 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7866d394 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7b1754c4 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8ab20c30 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8bfa0a9b i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9b0cddc5 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9bdf5bd0 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9c4a0c7d i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb055bddf i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcf1070d1 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd5fc0bfd i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdb4a5a2c i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe0d17673 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe70c9284 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe74a3d01 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeb4618a9 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf03dffed i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf89302e1 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf9e7fb63 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x0d890d1f 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 0x36447b60 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 0x82b9afd9 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 0x11ab021e iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x15421e0f iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x505b530d iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x60ddfb9d iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x692e8855 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x74c7323c iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x902a4126 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9c7e2f77 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd4e23e3f iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xde99685e iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe5cb2410 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf21ab484 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xee6a5fc7 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 0x38def0a9 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3c0a7e1b 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 0xa994f854 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x6088a3c5 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0976a90b bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x1d2c6e58 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x43dd07a1 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xb6982d3d fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01efe503 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02278b91 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02d1312e iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x070fd940 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x085cce30 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0888029e iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a3264ed iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f92ea4a iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x100fd749 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x12b5e69d iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b745ac4 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2099ccb7 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x29038e95 devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bffd3d3 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d36ec7d iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2dc3ed05 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3419786a iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x354ee0c1 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b768f76 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3d16b62d iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4208b48e iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42ff7b4d iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4cc3ccdf fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d6949f7 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69eb7544 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x719e3aa4 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x749bdb34 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7863a57f iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x798ced68 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ece993c devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85ac13d5 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x87b094ff iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x88a67d59 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8941639c devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8bac8d15 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d1f62e9 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ec1c072 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa7d00654 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf9526e8 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb6c8e3ac iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7282a4e iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8996f13 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc08ea289 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3207764 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb2fc0fa iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3e0668a devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd62794a7 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6694c4a iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd7b7a439 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdad71b9f iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1c16d9e iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe43804af iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf20f7d4f iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf33476ca devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x048561a6 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x08c52daa rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x25604c48 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x365b91e9 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4fba0195 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x604b5759 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x800cba0b rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8fc37cda rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa4c255ea rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcaa08ab5 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf90f8e20 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfad5dd80 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf2a8e997 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xcdddf795 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x8cded745 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 0x05e700ac rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0f45d464 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x106f235a rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3b916553 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x45b28a76 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4c158406 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4fa0251c rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x527af81b rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x59ec9fec rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8a25e88d rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9926da99 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbbcaa1d6 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xec50b07b rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x057ca1e5 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x36482400 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x63c158fe cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x251b3a37 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6fc7498b cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x57648028 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x86f0f613 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2497f24f tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x285fc2bd tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb0a5b03d tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd557224f tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x03451a73 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0d116477 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2e18ef96 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x43bce638 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4c9b3af2 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5b3e0c91 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x81d7c0c4 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8f16e6a6 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x92a8fbfc wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9acb9342 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa488dee2 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf707fe85 wm97xx_set_suspend_mode +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 0x08522bc1 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1d9530c6 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2414fba1 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x26dc0c95 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2ce06e2a ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4999e256 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x67f4cc45 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbe44f434 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf510e089 ipack_device_init +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1c59b8ab led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x422493fa devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x47ca1f33 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x77bca6f4 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9504a3fd led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa2c18bdc led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf09dcb4a led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfb4d7603 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x09991a5d devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x58a19837 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x84de24dd led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x8b2408fc led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xa3f97281 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x29523c68 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x49fc2d83 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x787dc66b lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x803b5bd3 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x98c33091 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9d7b5aa6 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbb77a7c6 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd31659a7 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe2c8d0c0 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfc28ad97 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0b574848 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x16e3da8e wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x212da691 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x4420e73f wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x77719ae6 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa5669ab6 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xd0a359e9 wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xf4dd2f63 wf_register_sensor +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 0x0debca1c __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f84e0ef __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10860303 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x12ebe1ed __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1405a61b __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x191717af __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1934a9a9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x1e845d27 __traceiter_bcache_request_start +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 0x33986006 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3c12884e __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469291ed __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 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x6ef62a33 __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 0x7a2aee46 __traceiter_bcache_btree_node_free +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 0x86f85e7c __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8cf54e60 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x957bedee __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa14fdbcf __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa6d91fc4 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa9ad9ef0 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc061d5f9 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc715226c __traceiter_bcache_journal_full +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 0xcebe1941 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd48e99ec __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd59d7612 __traceiter_bcache_btree_read +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 0xe86db35d __traceiter_bcache_gc_end +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 0xf3b04167 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc6a3c54 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x01ab1d9e dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0619e5fc dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x127de982 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x387db87e dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3fbe8d9d dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x54a9548c dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x635a9b93 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7a3f26e7 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8c68c215 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9304ac3b dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9af551fd dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 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 0xba41077f dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca3ebed8 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xda917227 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xddc209b9 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfeb60572 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xff19a2f5 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0x9bbd24f9 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0f66b4c7 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3082b289 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x54aa774e dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd6429669 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 0x5e93b666 dm_rh_delay +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 0x829f941f dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8f752be2 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbbce3680 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd4e6b2d4 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdd681aca dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2bc1a8d9 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0xed567da3 dm_block_manager_create +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 0x0778df3a cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0c60535e cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0d02a510 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1171d96c cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x16ce26eb cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2a5d574d cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x42a83be1 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x437c1357 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4500112f cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x498427b0 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6089647f cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x69fc6647 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7b0841e0 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8300e766 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8b75f448 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9e808114 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc1bd1a6b cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc227810e cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc5f01b9d cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe73461d6 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x00c12519 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x03d3cb62 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x24f11e6a smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2cfa0b52 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x332d7259 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3461b8dd 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 0x49f73781 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4a761107 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x53ed6706 smscore_start_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 0x983575ae smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9bec8627 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9d2a8f6e smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbb4dc730 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbc0bc614 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc147f88d sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe04161a1 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfde97ad0 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4a738cc1 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7e83543f tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x80aaf962 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xa8a3f406 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb052969d tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbc315dd tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xcaede3e2 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe2169014 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe6f04b89 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe7ee5819 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x059b7cac vb2_core_expbuf +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 0x15dee535 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1625868b vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1a863394 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1d88c4ba vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x22af20ad __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x22e49565 vb2_request_buffer_cnt +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 0x3326362b vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3693c758 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b1065e8 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x618267ec vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7e5506cb vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7ff256e4 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8c0ab16e vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8dfedf38 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8f390aae vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xae8ca400 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaefb36ea vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb3439e87 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb458ddea vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb4ff9c82 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb655c9b9 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 0xc2992827 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7cf7506 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd053dc20 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd5260806 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdeb1f520 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe1b0e88e vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf00d3fde vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x598c4619 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x5e49a84e vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xe454c2cd vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xb5255e92 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0061a38c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0bbad55c vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1c0f7c77 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2072aa29 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a7165be vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2ad299d0 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x34f447a4 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x35ff572e vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x41391f39 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43d6c17a vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x46e42dd0 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x51e4cf3a vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x57e07339 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64ac156d vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x66759af6 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x682b47e6 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7dcdb109 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x85f4a9a0 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x88929d74 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x89b14a30 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xac85c33c vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb61431dd vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbdf98e03 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc2af5d44 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc4280104 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc4443e33 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd175c953 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd9946633 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xda4b2454 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdd759444 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xde5dbbae vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe4374917 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf5dea31d vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xff80cf95 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x9cec90f2 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x5b53c677 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xb49ee69e dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xc23c127d dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xf2c204df as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x8d500bcd cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x7a5d4871 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xad8d8bdf mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x48b2e0e3 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x8ecf9216 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x874f3b20 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x13c36ead aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x8f18a270 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x102a8735 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x110a89d2 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1dfdf6d7 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2595b61b max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x293be6c2 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3a39da94 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x49444554 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x56dea3ad max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5718531b max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5e104b06 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa97a1879 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdbf06b56 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xeb272203 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0ff683e5 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x14466d7a media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x19fe7b0e media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1ab10495 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x22bbcdd8 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31c6bb96 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38a2871b media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3ac2671f media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3ce70fd0 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3fb4d34f media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x40c71847 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x412ff7ae media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55e9f69a media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x566d3728 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5a84b1a9 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c22694e __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d435f2e media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5da3ea05 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5ff477ff media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60c2f89c media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x636637c5 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x678579d2 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x679174aa media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6e3cfab9 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ea8272b media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ef1367b media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x70afeab7 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73aa3893 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7bbb0b16 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d80f35f media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x886a377a media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8a895416 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x949fbac0 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa23c9b73 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa3d0fc16 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa8194287 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb07364db media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb112160a media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb3785a31 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb39f6243 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb735ca31 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc555338b media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc7f2ddfe media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcb7d2e27 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe0215a08 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe2ef4416 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe3bfd9d3 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe600d0e3 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe815c6b0 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe957ea2e media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe9c1b299 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xefa9bf4f media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2ac40a7 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfa587866 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x7d3ac315 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2520c0dc mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2f542a76 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4894370d mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4d1c5056 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x50a9336a mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x53400d90 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x80ecca5e mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8d91d1d0 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa1cd0ecf mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb0c04100 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbbf282be mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc1d471b9 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc3844788 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xca5e0ed3 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xce7b7108 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeaa054fd mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf56539e8 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xff7e3411 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xff7f41ce mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x22594757 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2d043ae0 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4489ed66 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x71d7729f saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x811082fd saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81937bf0 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x85666050 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8b80e1d6 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9d16240d saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9e19c0f8 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9e86a335 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1108639 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xab1dfa1e saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb8202098 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdd1c10b1 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe3fd0ad7 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf5a42bc9 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf9d400b8 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfec09fd1 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x218ed769 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x3b5f4970 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x3fd7099c mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xa06588ae mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xa5a97617 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0d2fee68 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0d8308ea xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2bdad98c xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x55427ddf xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5e613c19 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x64877e76 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe4400302 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xe9ced8a7 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x419a598a radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc0249feb radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x0d411873 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x2d8bc3b7 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x34dfd3de si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x568ceda2 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc4b5a059 si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x014708d1 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1176bc91 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1c2492bb rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28e8b8bd rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3468eddf ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4ed0c3c9 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x504df168 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x75ae7453 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b0c7d88 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8eb34445 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2b832fb devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa954e982 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf1c6040 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4d7ca22 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbe49f081 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbef1458e rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc976aaea ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7875151 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1f7e016 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe8b3b70e devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf80b9127 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x3ba2a88f mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x246d1326 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x111b2acf mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xc8c5749e r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x959599ef tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x7ee4520a tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x8b4d277e tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xfae32206 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x75a7654c tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x53466383 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xb2f6acd9 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x19b75d0d tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2f38bff3 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x18e1ba83 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0adecf6c cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0cb47263 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1b119038 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3df7e05a cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x53a3e0f5 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5cb4f375 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6fa658ec cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x754f610d cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8e020225 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9361b045 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x94e85247 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x98c0eac0 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9ab4db61 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa3b5d3c6 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaaf8d22f cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xad23b2d6 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbe57c7a2 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc817e775 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe7313d5e is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf424876b cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xee2dcb99 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xdf2855cf mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x11d02057 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1b8d5a87 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1cefbe6e em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x417abcf2 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x478b8532 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x486962fc em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x511c9aa9 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5382701f em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5f4a4bbc em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x74172aee em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8289863d em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x89ecf681 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb28e484b em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbbd82e49 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd2024825 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf549c3a9 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfbb96a7c em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfd439e21 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3e173fe6 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x491a6b1d __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x697b8aba v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x7c806696 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb999472d __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 0x1b4af4a6 v4l2_hdmi_rx_colorimetry +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 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 0x09c4623f v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x29ce34c1 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6c061555 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2316af06 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4449334b v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4a8aa26d 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 0x6c9350b5 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7183910a v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb385d595 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xbdcbb08c v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc6bed0c4 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd9029a28 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf23f8cc4 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x005dc509 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0110471b v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0978cdbb v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d10995e v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e023226 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20a3a216 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x26216348 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e406773 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e4c7f0e v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x434f524d v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a305c31 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a5c13e2 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x55b1fc23 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x648c240d v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69056969 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6be783ca v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6cd01c7c v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f2aee8c v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77fc9b1d v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a1019b4 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a922e74 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80ba9699 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8402ccc7 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x86d24105 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x89e2f687 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ac936a4 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90a83e99 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a352e5c v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9cec958e v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0e9bb43 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1ae567a v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb42e5273 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4511359 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6952d0f v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9663602 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba72aa9c v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf2295a9 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc31da7cf v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc78f9d5b v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc8fcc076 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb908aca v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf3dc67ea v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa8f97be v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xffebdad0 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x02e114f6 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0535e0a4 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b7d80c5 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x123dcf36 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15a87aad videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x223bc7b0 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2c65555b videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3e409d6a videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3f5017a1 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x43e46ace videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x46157163 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53b3a2ef __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54106e56 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a7b8688 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ab33623 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x60c50785 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x731b9718 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x833eceed videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9ccc8d72 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa8d7319d videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd43fb163 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdab11db0 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4d12d6a videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe22bc3c videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x74479c9f videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9ca6fc4d videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb5bf0c15 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd70e3ea5 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x142d6b3d videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1ec950af videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa2caa31e videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02353f98 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0aaae2b2 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d836e91 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e5f30f6 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x109bda0e v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x138c6c81 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x174719ce __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x187710e2 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a5a8fd5 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a8e60b9 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b9a433d v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c55eb96 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2453e0be v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24fb95ed v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24fce005 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2637d21a video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x270691ac v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2eef3e22 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f6bf2c8 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33debc26 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x354d3ed6 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a0f702f v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3aaee6f8 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b4719ad v4l2_i2c_subdev_set_name +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 0x46d7d194 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57278e32 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5870db01 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59021896 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5bbfc30f v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c5ff6e5 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x657f2164 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69f7ca5a v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x702d2ea0 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72a790d9 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x759cdb50 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81e9c1cd v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8395abd7 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x864f07f8 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87b8fc23 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a924ce9 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9639c30c v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x963f25dd v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96dde7b8 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99758194 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a5756a3 video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d568fff v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d80755a v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9efb052c v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fc6fff5 video_device_pipeline_alloc_start +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 0xa1e1ea1c v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa80a5ed4 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab29ca09 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac78de32 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4d48104 __traceiter_vb2_v4l2_buf_done +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 0xd158d81a v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5a22b6d video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda3405ab v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdbf749cd __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc26becb __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddb49b00 v4l2_device_disconnect +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 0xe84f7b4e v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb5608b4 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeed457c5 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf23e9f92 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf249019a v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf9df673f __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfec23071 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x28afd12e pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe6dce3dc pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf713c541 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01999e61 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x24324f9d arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x26e94b54 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2cfa2101 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2e2a42b9 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x371b9da0 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x51315483 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5ec95652 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x74235cec wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7e73844f arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b6aa3e cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x897008d1 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8eb5fee6 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9901355d arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa99d85f0 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb263fbbd wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb35d9189 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbd212fa7 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe237980 wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xca48c99d wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf451d1c5 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x06a47559 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x90a96b12 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1b6a21dc da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2433eddd da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x654793e2 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6d573d4a da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8b351c29 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8cb8fd4e da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xff13563e 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 0x0e6fc4cc kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3766c490 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x598184bc kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb43be00b kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb85b0ef7 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcf6239f4 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf41110d9 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfddbec6d kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x59730ae4 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd0142eef lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xdce949cf lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x12eafbe1 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2fb0c70a lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x86dc2e19 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9e22ad2a lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb3c6edb5 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe1ebfe6c lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf54ae849 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x03bf621e lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0cd3abac lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x52be6616 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x021e2660 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x05e39b60 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x05ee4720 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35108356 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3929bd5a madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x46d6866c cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x46db5a2c cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6bb753d3 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7a0e7d30 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8c152ca0 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8c18f0e0 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9133db95 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x913e07d5 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa6b2c068 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa6bf1c28 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbe67b7d8 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbe6a6b98 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc9e4e4f8 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcec1a067 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcf2031ac cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcf2dedec cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd206c699 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd20b1ad9 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe587dd64 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe58a0124 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf0c64763 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfd52aad4 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfd5f7694 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x94fbcd2e mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa9ef8453 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc2bc5fea mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc64e7366 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd441860e mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe7bf6ccc mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1948e70b pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2380e700 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2ec8ca6d pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3109e539 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5a1276da pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x77773cb6 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7a8605d9 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x841d788e pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x89c3b3e7 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x958ebea8 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xeb12ffa6 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfea38077 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6b2eeb5a pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x9ea0d922 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x08cd34ae pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x75b63e99 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7a027c63 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa40138be pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd51da334 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x735ecac2 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 0x1265092a si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x184aef24 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1bcc17d2 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x242b924e si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x39977dbc si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e6c43da si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x40dd6f2f si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4af0fc0d si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b56130d si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x56e0aa22 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59e58c43 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f3e25ff si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x622c8ab6 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70964fc6 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x72d62d5d si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b1d3cfb si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x827467ba si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8378292b si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8747a446 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x87ccb055 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9b1b696f si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d5a3e4b si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9fb54caa devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa210dc45 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xad936663 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb10061fb si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb58226fa si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeb0d9d9e si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xecb67374 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0def1d9 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2d938a6 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7f517dc si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb7f7c4d si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xff6deb5d si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1c7ef91d sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x550c8890 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xba3877ce sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc27f4d2c sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xfce3ed37 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x390d9c99 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xd6f6c103 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1c7cb6c5 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x261de680 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8ca244bc am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xda6789f3 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6a71de59 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x87cde233 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8b7a7dd0 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x25918be7 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0ffcfc93 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x15855ce7 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x17bf3568 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x78c47628 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x89f9ca33 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdbe53b24 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfcfd7680 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0a55a093 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0bfcc784 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0d1d70d5 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0f85c440 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x482b044d rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4f0f4c9f rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x62d65c47 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x669f2dd5 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x77eb7285 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x86cd8d0e rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8b4601fa rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9abdba7c rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9d1a40cf rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa7477c9d rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaaabae4b rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xab524540 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbdf286cf rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd241984d rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe362a14f rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe4220784 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe6c6deb2 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe6f4befe rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf35ff650 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf64337fa rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0634817d rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x139d45b6 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x237bcdbf rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x41d4b0f3 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x73c1d6de rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x790c6071 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7d37ef80 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa3351780 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa4fdab54 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xac33731a rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf0a7bf7b rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfa99a400 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfb167e41 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2478f3df cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x60c401dd cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x71e40b9c cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xadf79ecf cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x02d7cc45 cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0f053e72 cxl_set_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1f376fb7 cxl_set_driver_ops +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x47272936 cxllib_slot_is_supported +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4be3f417 cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x53f73ee6 cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5b7e2774 cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5bc55bac cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5d1bec61 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5f0c4a2a cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x68e85d9b cxl_context_events_pending +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6f8c2aa4 cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x80d0f46f cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x81354a61 cxl_get_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x81b84a03 cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x85ce04f8 cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8883c615 cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8c4e7825 cxllib_get_xsl_config +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x95d48445 cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9610ad32 cxllib_switch_phb_mode +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x967888c8 cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9715875d cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x976f960c cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9dde4d1d cxllib_get_PE_attributes +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9ed62a4c cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa654b907 cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb3015dc5 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xbdeb2b0c cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd02c80eb cxllib_set_device_dma +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd032ec0e cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd16d2433 cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdf2f6493 cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe20dd66f cxllib_handle_fault +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe4a02c90 cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf13cfc07 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xffe6016f cxl_map_afu_irq +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 0x15d4fcfb enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2d905dc3 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x40011e5c enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x58b64f6f enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6ece7709 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa442cb52 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaa1fe75c enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfb7fa13e enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0de36ff4 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x54f33677 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x55b84b69 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x690a3214 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x961a8f4f lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9b070038 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa69593fc lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe0a7e029 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x04ac1a66 ocxl_link_release +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x10a96360 ocxl_global_mmio_set64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x169a5d11 ocxl_link_add_pe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1c5650ef ocxl_config_read_function +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2889cb55 ocxl_config_set_afu_pasid +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2d876dd2 ocxl_link_remove_pe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x4626e56f ocxl_afu_irq_get_addr +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x465feec1 ocxl_afu_get +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x46688b0b ocxl_config_set_actag +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x56d3a3eb ocxl_global_mmio_clear64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5d8814ea ocxl_link_free_irq +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5e1a0e3b ocxl_afu_config +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x60943e18 ocxl_link_setup +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x652fc7b6 ocxl_global_mmio_write32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x680f2039 ocxl_config_get_actag_info +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6ccabe13 ocxl_function_open +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6d0d52f6 ocxl_config_set_TL +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x7d1a4d49 ocxl_context_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x86b3dfc5 ocxl_global_mmio_set32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x86c6afd3 ocxl_context_attach +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x8cd893d8 ocxl_afu_set_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x8d110411 ocxl_global_mmio_read32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9cb62500 ocxl_global_mmio_read64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xa425dd99 ocxl_afu_irq_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb2f7302d ocxl_afu_irq_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb6b05a20 ocxl_config_set_afu_state +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc0c91f4e ocxl_global_mmio_clear32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xcea6d0c7 ocxl_config_terminate_pasid +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd04de359 ocxl_afu_get_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd3c1236e ocxl_irq_set_handler +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd57e0fa7 ocxl_link_irq_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd8d8fcc0 ocxl_function_afu_list +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xdd496808 ocxl_context_detach +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe8bd3dc2 ocxl_config_read_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xee6d081f ocxl_config_set_afu_actag +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf3357b13 ocxl_global_mmio_write64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf3bf1716 ocxl_afu_put +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf4edbf0c ocxl_function_config +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf98ec0d5 ocxl_context_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xfa412755 ocxl_function_fetch_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xfc0184d4 ocxl_function_close +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x0ae6fc79 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x3a8dd3bd st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9d3ddcb4 st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x09b90b73 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x2b262025 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa5ff6f43 uacce_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0161b289 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11fc886a sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x16a5f152 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1aaa2179 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1adbeb10 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x239e9548 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2988f7cf sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2c4a72be sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2f82b228 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x37c7af14 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3876340f sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x38b3fd01 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3ea0bda1 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x42f93ad5 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4b0cc698 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4f2ef704 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x52c24587 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x54b56522 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5d5be33f sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x65cd0674 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6cf889c0 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d0cf04a sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x96078742 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x988dd428 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d2de815 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9e80ee68 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa269ddb1 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa480f442 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb3f6f14e sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb89d1dbe sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb9342f01 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb93e657e sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf4ab2e2 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1b1206e sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc5c28fd5 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd1cad92f sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd6738b79 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd7e48eb5 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd8fcfd4a sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe35b114b sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe94eb6cb sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf9a0f490 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0d7c069b sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0eb0ffe2 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5e263bfd sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x813fe58d sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x858fe6c4 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa152e840 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xaf3dfcee sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc2cbee37 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe48ebc76 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/most/most_core 0x02b986e1 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x19cee7fc most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2473d53a most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x40923bb8 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x48835ec1 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x48d2279b channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5f0d5863 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x62bbd06b most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xab9bb48a most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbcf01c4e most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc69902f3 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe685b683 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xece904f9 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfeae4c6a most_start_channel +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x09a7294d cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x368e0ca5 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xcb902933 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x291a9e51 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5748d581 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdae351d7 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb8ddf8d6 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x327940b1 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x47428f17 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd744ef9d cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x4dfabdcf hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xe09c015a hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01896b06 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x023a6249 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x044b7bd1 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x097331bf mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c2cf296 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cd7e172 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19833915 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b8edf9b mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d784a3b mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1e425949 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ec8acaf mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2123bb34 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26b0d714 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x276ca534 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x360a6ee0 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x36d7e84b kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42b6f238 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x43135975 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a4ecad1 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ed83171 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x555085c6 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a4c506d mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a9db019 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x612e70b3 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x713b843b mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x713c3a77 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78dcd782 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f3d0aea mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8068b7df mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81a3471f mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8342089d mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84d31035 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a16eff5 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8beefa83 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f699fe3 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ec4c52a mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa832404a mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8d41948 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xacc96fc4 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf51a346 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb122072a put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1d0944e mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3686223 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb92d5ac2 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf8f650f register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc92d2c64 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb759968 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf88fd6d mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd522e7eb mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd67e51a4 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8d669df mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe809f873 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb1b9f58 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf7e6f21c mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfddbf307 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2e8b7ce9 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x939061d5 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe2ce29df add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe9854992 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xebdc2a56 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x010b2dc1 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x04cc5f79 mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x06c7fcf0 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x09a83fa2 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x12d330e0 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x152635d1 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1bc46ad2 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x26811064 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x281d6caa nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4632b32b nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4816b964 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x560b801d nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x75c67152 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7c1fdfe1 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x89c63715 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x96bf33b9 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa4775afc mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb63e32ab nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbc94223f nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc3d9b069 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xca4f2411 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xed678ea4 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf55dd124 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfde54f8a nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfe13a528 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x815dbf3b onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xd6b99bed onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x53be4a90 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0f55a2d0 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 0x16021bda nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1a57b55f nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1d76239d nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x251f9e46 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x301247e4 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x34d24a89 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3fa68f43 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x40ce3e3c nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5013957b nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x568f9891 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x64e04264 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x83e9b979 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x99a1a66e nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa724531d nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xafc48493 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb7dbd019 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc1acb606 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc4d09c16 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd0d899d7 nand_ecc_choose_conf +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 0xd694e07a nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe4b86c00 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xec8ec7b6 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfbcdce88 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x413c5151 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x2106beb7 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9a7ce8e6 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x237f02bd 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 0x4da4762e ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x55b6fa18 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x576b9e8e ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5feca4ee ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x62f6a9d4 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x71bbc7c3 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x811b89df ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x87db352c ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8e5110b5 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaad182aa ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xce37580f ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd71ec230 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd82fe00d ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a42b491 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2af4fefc mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4831392f devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5a2016f0 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5cc2ae5c mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5feb31ac mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6013b1a7 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x63e4f0c7 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x88f6e273 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb2cc0336 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbd9355ce mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xde1e48e4 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfc3757d2 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfe0f3e9e mux_control_put +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x04673a10 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x713976d5 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1f8976c4 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x33a991b5 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4d932f5b register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x799c2fec c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd5b11c2d alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe60d0f6f unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2848810f register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x52bffb31 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9768442b alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd63b7ae7 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x001621f2 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0e1c1bda close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x124f780f alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a076256 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1d6b27e3 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2b72a82f can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2f73a223 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x31a4c810 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4f27abdb alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5bf279c7 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5e3e040b can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f84059d register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x704fd09a can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x729ce797 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x74143d04 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b7a2987 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x892d9ef8 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8acee77c can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x94a5936d free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaba1117c can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xabfb5b69 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb233c276 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbe6dc217 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc8e9740a can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcb0520c8 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcb99829c can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd48f7e5a can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdebdcd97 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdfa4f660 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf29ac00c can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf5b56298 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf7cb41e8 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4a7ce26b m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5308d5de m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x55d061e0 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9920303c m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa22e18a0 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc54192fb m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe338c5a9 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf94cb84a m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x35880b7f unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x36cf1f42 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x78555ed4 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8940a77c register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xa0ba2135 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x66386f5a ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xa312861f rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x04ee2a13 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0674e261 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x18a80469 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x19961c35 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x26daceaf rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8d772e14 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xb95dcb66 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc67747e4 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xccdad642 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd8c18bcd rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdeeb053d rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe98264e2 rtl8366rb_variant +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 0x8f166028 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x8f7d4bab enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb50268e9 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x06becd3f fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0bc6bda2 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x2a2275d7 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x39c398c3 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x41171efb fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x45072198 fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x48b45bfb fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4f7dbd67 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa36cd83e fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc3186e53 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd7d4f6b1 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x87b67258 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xd7f5526e i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0f4bc992 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1ee7e340 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2ca55a4a ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2cadb630 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x337cded8 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00c90abb mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0167e189 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04327e4f mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x080e0e7c mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d37589f mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ea14c9c mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f743f73 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14cb025f mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18488d29 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x196ceeb8 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1abd0f08 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b3d83aa mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b663e0b mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c5e3530 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x247ff269 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24cdbad0 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2744e677 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2884049a mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a919160 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c9c5919 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31247963 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x323c879b mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3321c526 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34104d7a mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3795a550 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37b39aaa mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f1fadc8 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4204d596 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4316847a mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e139e35 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5193554d mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51ca1e68 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52744ea3 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55e9a091 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5622cbff mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ade173d mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cd21bdb __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d5f786e mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x647ddb2d mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65d166ee mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69d1db76 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d686c61 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7468fb7d mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76892dd0 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76d674cc mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x779bfcf5 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77cdcc77 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7885e55e mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78b6070d __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78cf9946 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78e4b917 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b2c3706 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c2afd13 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c4ebdad mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80c9ee64 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x823aaa45 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84d31a88 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8590e4b0 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87850e9d mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x886a0464 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b3fbf33 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c94f75c mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ed5481b mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fd5b57d mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x909b3024 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91a5f8e0 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x933da9ca mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98b13004 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9af4e103 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b0f7168 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cfdd58a mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d731c71 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e5dcf43 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa25bc163 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa28bf306 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa55707b6 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa730395c mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7f268c9 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa892539a mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac817454 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf10a0c1 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0af9fc7 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb262af76 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb49bdd9e mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb66fbba6 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7cfb8ae mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb82d39de mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb86c6034 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb956a705 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb97f4f4d mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf5eb259 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfcbd57d mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0921f92 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5919da8 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc596e74f mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcae931a2 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccd2d385 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd007495 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd0a784a mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd5f6d98 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfcd33c0 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd202d7d7 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd308f855 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd316d24e mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7842109 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd828f862 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda20c55c mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda2c6982 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdadb6b74 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf9505a0 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2eca828 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe63cb0b7 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6982f2a mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe72ddbe7 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8830e94 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe94758c6 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed246580 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2eeda79 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfae287cf mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc20c002 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd11ba31 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03300630 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0429698c mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0521ddca mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06c0c96b mlx5_query_min_inline +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 0x100f28ed mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1024ddf5 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10250824 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1292af49 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1450cc6b mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x162aa7ca mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18569546 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x191a586f mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a58f0c3 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ca52a72 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21537907 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x215eef12 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23077f90 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2704cc92 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27ef1aef mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28e645e1 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a8740d0 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ade3acf mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b4fed31 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c22f871 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f42f9c7 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x344acfb0 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3abeb390 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bbc6033 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ef200e4 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x404fff0c mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x412228b3 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x422c3388 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48df4a8a mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e550ad8 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fe2e9f1 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54c16e04 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56c4d907 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60fe5264 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d40eaf3 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7168167b mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71fef621 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73172ad2 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7814cff3 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ca95303 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81bf562e mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8febfd65 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94e84e40 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa8d72a5 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab4a93ca mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacb6283c mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad802b09 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbea4db10 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc24c01fb mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2c516e6 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc87541f1 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd5e65b3 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1f450cc mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd98b184c mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe15aeca4 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2865f5f mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d9bc2e mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a071a9 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe74505a4 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebef1ac6 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf29316a6 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbd7a178 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe663bc6 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x21636309 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5e11cc0a ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x81281de0 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xbc7bbde5 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x8f169b8e 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 0x02ec4f24 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08898fd0 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08954603 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b0bed45 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f6cae2f ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d742300 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f786472 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27e60083 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x352bacf7 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ff66154 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x508532ef ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x532c6858 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e81e4b9 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x660d4a5a ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x678c1e20 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6962c34c ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6e5832b1 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f5e388c ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b80179f ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82f2d482 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84075e9a ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ac1f91a ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9956d41c ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b18a528 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa63d40a9 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf8d5364 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb36c4af3 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6b9de0b ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb71bfaa5 ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe21e128 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc11e0017 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd27ff692 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd92784ae ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1e93f4d __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9e5a2ed ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf29120b8 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf332e0b0 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf49bf002 ocelot_port_setup_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 0x25d5c8a5 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x385d00a9 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7922db16 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x836d972f 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 0x942ac311 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xed098c0b stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1b32bf03 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7c8e2a03 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc36065c6 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc9395242 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe1a67409 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x20079a37 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x3beca660 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x69eca71c w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7492db6f w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x97503044 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x16b909a5 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x40ab2503 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x72fb4a3d ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd127bd53 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd5f7b1c9 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0xffcf8a5a macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x007dc264 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x088a931f macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4436211b macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x50842af0 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x3bb04895 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x8851ecce mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xae5f5b0e net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe8f34528 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0xf1ff2ff8 alt_tse_pcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x0045c472 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x2d282892 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x318ff841 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x59a1da35 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8bf5da97 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9fa669a8 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa2f3c14 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x06da316d bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x09c8de04 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16ee9567 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1a66726e bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ac8002a bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1cf55572 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2dcb84d7 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x314d08e3 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45904888 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x49be1334 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a792c5e bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5a576c35 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5bf821d1 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x658afbd3 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6d1dfd34 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x729d885c bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7bff6bdb bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7f47afc2 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8028b5ff bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x803591b8 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x80fe2c86 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8608c4e0 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8768417b __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x918ad794 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9733fc18 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0df0c18 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2ce8254 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc9555fa bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbdd08554 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc248237e bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcc85268b bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcf82384f bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdc70ea34 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xecc42575 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x5a0367dd bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x6d38bb7b bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop +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 0x235c526b phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x38b194af phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3f3a174a phylink_ethtool_ksettings_get +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 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x60473c0d phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x64a1a5ce phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x66e8b5b0 phylink_caps_to_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6cdfca95 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7b71b520 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8149b386 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x859b1ff6 phylink_validate_mask_caps +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x95ea06a1 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa662841d phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb9d345e0 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 0xd2ef6a40 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd903f419 phylink_get_capabilities +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe0381b1f 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 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf926a606 phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL drivers/net/tap 0x339c1fd5 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x4a650c6f tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x5619fdc3 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x57198e04 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xbc7a57cc tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xc1aa1a26 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xd075e7aa tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xe696f8f3 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xfa38f20c tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x08760dcf usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5ba832ba usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9cf25709 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb54bd828 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbd71e5c7 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf3b3b166 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfd874144 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x31924280 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3c4e99f3 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x60af2425 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x706d9bb7 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x846f04f0 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8da796d6 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb5e4be3d cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc72ee01c cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdda0101f cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe52b7ad2 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf32a06b0 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x16ff5dbc rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x04c33c94 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2495d49e rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5aaf2820 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc2d3cf1f generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe01b0a29 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xea8957f9 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x04c447f1 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x07d2aa12 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x07f291d8 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0fa00c4e usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15ab1dd8 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x26f73334 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31142fe6 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x366109a6 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38af17cb usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d3425be usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e83ff74 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7aa2c674 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x817227f2 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b8e2430 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8bcf0a05 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3e95bd6 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb639332e usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb92f1f4b usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbab595ee usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbb41326e usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc4ed4cce usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc89a790d usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9989d7f usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb0665d1 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcdc16299 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd3d33390 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd828c338 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xddc14fe2 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4495cd4 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xea381a6e usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf0660085 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6a71670 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9f008f1 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff1f94fd usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7cdc127e vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb6d50a34 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd6b5375a vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe983067b vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x5886d88a libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33b88e38 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b797f80 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97f40708 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xabdb8986 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd36ee06 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 0x262725e5 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2c10b5ec p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3f028437 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4ce07262 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4f348601 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6c358f31 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6f43facf p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x952deef8 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe51a26ab p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x231c4041 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2342c897 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x24e44196 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4b530495 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4c952eb3 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x501e1554 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5d8601cd lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x69170cea lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x74d44ea0 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x824e3972 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x957f3564 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9d3beb4a __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcf3b5db2 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd57dc790 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe8453af5 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfe1a62b7 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x505b088e lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x67ec4c7a lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6c050328 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7f381ce3 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x890c25d0 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8a726778 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9c33a2e5 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 0xcc53663c lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0257a19c mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x21806bb5 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x317d8193 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x361bc153 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x476ab3bc mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f0daa2d mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x666cb1a6 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x845bced5 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x849757e6 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8616f9cf mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x86221145 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8c1ba326 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb69fab0e mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb8be2e49 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb984fc10 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbc2b4417 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbdde444a mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd8973781 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe2b6f14a mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe9a2880d mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xecb139c4 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3e5c367 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf9974ed8 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfe030586 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06db4779 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07cc1164 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x092835a2 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c98a88a mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0eb1eec7 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1161ae88 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15fc12f4 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1779dce0 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x190d2f21 mt76_tx +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 0x210c8e32 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23ad24b9 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c0c8b26 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d488a64 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31153e3a mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a760160 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3af4af1d mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d49ab18 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e5fbe4a mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x435d7865 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44a190be mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x461264e0 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48eeca0d mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4bae2fb0 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ef2ca53 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x553cbab3 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x59b282e2 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c9062d4 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67373f3e mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ced1187 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6fe5d8e1 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71c6e599 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x72b9f996 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x72e4d8b4 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x742798af mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a93a0ee mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7cd74726 mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e2e08e5 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ea485c7 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f57726e mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82c00017 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x894051a4 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90c078e4 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x912c0e1c mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x955d3ca9 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x963ef9b3 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9862bd80 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9978c399 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c2b632e mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa2ecbcaf mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4c8f1b1 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa82d9dd8 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa84cdc17 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac5014a8 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad2ce0ef __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb046a136 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6d0d4e2 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9a29910 mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc0a22b2 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbfa46b39 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc14aefce __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5afe165 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6279ae2 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc628d2c0 mt76_tx_status_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 0xc79daf86 mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9057a4b mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc95e1b7c mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xceac343e mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xced2ea45 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0fdf674 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd113d44b mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd40fe958 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd411a89a mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd56f6446 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb37b567 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd92048d mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4fc0fea mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xedecf371 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf100a8ae mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf42cb57b mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6d23ef3 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8b923f2 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb68e683 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfca10179 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfedb581b mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0027e01f mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x006cb5b8 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x043087fd mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0554ef73 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x075d110a mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f7ad0fd mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16d0af14 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b380b49 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c42ac35 mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d931bf8 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2d7aba69 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f1be72e mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x332d706a mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3921112b mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b519722 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3fc34a10 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4217638c mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4586efe4 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x494797bc mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4a3a153a mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4a7581b7 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4bb5970f mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d7d060b mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4ddf0f01 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4eeb7d61 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4fee836b mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x532e2a17 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x57991467 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5830bf20 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5dd3e689 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5ea8f1d8 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6045d495 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x62d5e32e mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x707f39cb mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7087cb57 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x71edd8dc mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x763de145 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78f77713 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x79ccb901 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ac519b7 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7dcbe1d8 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8147af9d mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8353c14f mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x862811d6 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x89f7fc56 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9126807e mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x91d28837 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x925eca1e mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c79c447 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9eb2e7ec mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa2db7a1 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xac37a49f mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xad96ae3e mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb131e9d5 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbf25ffdd mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbf63cd48 mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc07fbcf6 mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc1d2f9be mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb85d973 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd16ac114 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd813a18d mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe528a704 mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5b4c802 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe66e5604 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe91b26aa mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2c9287f mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf414463c mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6e6e68f mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf8770402 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf88965df mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb7cc207 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfbf74ebc mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc813ba4 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfd91fdda mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x00d510b0 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2e87afe7 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x31699670 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3f443725 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x51846784 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x82a093ed mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8e5d80c5 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa24067fe mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa44e9558 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa78bb2eb mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xab3ccea1 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xac9d0059 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd5ef506f mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe1e50b29 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe950461f mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xefb40d14 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0397b3b7 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x109df50c mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x31ce5bf4 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x32c5d7bf mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4d57a538 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5084f63c __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x565c9d42 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6b58a853 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7249d5ff mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8d3725af mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8ee3f2b4 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb468a5cd ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbf0fb2f5 mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf65faf41 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x003bc271 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x09de0f9b mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x184900ba mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x236aa451 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d91b484 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2e8f7414 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x378d3e32 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3af2d21b mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x591c05da mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x809fec73 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c0b4b59 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x97dd82e1 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x988b2965 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa7e2af26 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaa213e13 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb0564566 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb5a09b09 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbcecf41f mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbd1292f7 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc1111f50 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc26feab3 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc946ef49 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc9e0880b __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xce11d4c5 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf2ca7cfb mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4f94e8b mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfd352329 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfe350679 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xcd4d0013 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 0x1528aa22 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x6e8b07a5 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb5e66fac mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xd91c1f21 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x18887a95 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x412600ce mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4c383dc7 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x82e121e4 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x98615375 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb92b6752 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xeb286284 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0417bb2b mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x05d176d8 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x063f0490 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0700d8c9 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a58e71a mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1133e7a4 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1558f31c mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1a80c252 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1fa46014 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x23d3cd3c mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b16ca05 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2cf0e117 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33e4135c mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3584c36b mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a50a510 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ea84a99 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4678946d mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x481a2381 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4a84c2b9 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d377909 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50000827 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50be84c0 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57e7afc9 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57f2f256 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b1c137b mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x780dd49d mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78994052 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7901ac47 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b415c1f mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x85e88429 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x886b1a80 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e752837 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91656a37 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9332a33c mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93397a43 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x98d8416a mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x993d2bbc mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a57b7c8 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9d925ebd mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ff9f5e5 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa1ac10cd mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3093152 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa684e04e mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa69faf2f mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaec4d75c mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf3ba4d9 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xafae936b mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaffe7a0c mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb01a9cee mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4def62b mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb53adac2 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb50ee6c mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc45f9d5 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4d178ba mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8a0fec4 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xca6bd22b mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb861569 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd9a9a1a mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd163d666 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd1f6f872 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf8b0ca8 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf01e861f mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1a52e8a mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf281481b mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf3005994 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfbc73a7a mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4a0bb7b9 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4c032755 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6f7d0be7 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7736fb17 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x793368cd mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc2ac2156 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xca1da11b mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd3f98b32 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0a354794 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x179df22b mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x17f5dac7 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x29edcffc mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2c871a18 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x341bdc8f mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3d450c24 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5adae8cb mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x68f13f89 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8045c8f2 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8a5169a3 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x96a3178e mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa8201ea5 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xab85cea8 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xafe0508e mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb3399874 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbe6f7aff mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcd6bbdc2 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xce2d0728 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe69fda9e mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0298ad14 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1a43995b mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1b6e149a mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1c03a985 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2273e713 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2e079fff mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3ff196a4 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x54e468d0 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5a1dc68d mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5eb455f9 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x712ae941 mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7b5a2b60 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x819a67c1 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8b3b7727 mt7921_check_offload_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8f9af3ce mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa769e656 mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb754b0d3 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbaf6a272 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe2b46b61 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe420b1cb mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe96fbc52 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xeb18fb86 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf0575869 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf892ac59 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1cf518a2 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x221f1a8d host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x23b3f407 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5ef9aa5f wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x89b189d7 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xabf76ace chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe539dd5c chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x27ae66bd 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 0x34e4d6aa qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x61547ef7 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xac948ee9 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xae463ff9 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xdc8fdc3b qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d3845d9 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f1368eb rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f6dbd20 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2031aab6 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x22b2c51d rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2a7fa4fc rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2dcbfe40 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3606570e rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38e4acf1 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3ed6698d rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x462b528e rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4965dca7 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x555ddcc7 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x58d1f99f rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5da634ec rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5eed32ee rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64a31f75 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72c4abc0 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86903955 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x87798b2f rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x87f746f5 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8c0716e0 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8f68200a rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8fb91b3a rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9210ed01 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9ccea86e rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa160a1bc rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xadbfe028 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf1df119 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6f96c0c rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb9766be6 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb9cbb4c9 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba384907 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbfe7209e rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc3d4d7c5 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc0f27df rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf392dbd rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe6269c28 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeeb519d8 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf08db437 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf5d034ae rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf6b99a53 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf6e72720 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfae712fc rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x149f6d52 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x370aaaa5 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x47b1ea7c rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x497d41fa rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4ee5d5ad 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 0x5cc0e26d rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x656f6bbc rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6a3011e4 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x854241ee rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x88fedb29 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8df24465 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb9fc9c13 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc642954f rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcdf3e2af rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd35a04f0 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfaefba09 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01f716b2 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x02e0e277 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0aa3f4dd rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12bf5e0f rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x179dcc76 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2376bb6a rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x253c34ab rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2eb992e7 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3183de33 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x360cfcab rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e49760d rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x42b13c3d rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x43252bf0 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x46eaaa16 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x49c53497 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x53b35a78 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5776fa61 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61452554 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61b02df9 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x795e18ca rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x846ce478 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88f272f7 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8fc48872 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9680ddbb rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x97d7f573 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa0d46209 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4b33a6c rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb28575f5 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb71590d1 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc9643ed6 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcab41648 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcbee4b79 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xce362742 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcf5fe85b rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcfb9061a rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd039f324 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd3c721ce rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9db35fd rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdbfb6365 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdcf03ec3 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdefb3e87 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe77a0088 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe77a5224 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xed35a49b rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeedc4cc4 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf894a657 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa7c6d7d rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x362a2cb5 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5a8a2d75 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x731993e5 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xb328cf03 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xdc647c6f rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x55f4034c rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc2fd10f3 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe20655c6 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0016d80b rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x04a00b60 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0851e8ba rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x196c865a rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x219dcbc0 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x29e37cf8 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2b38f716 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2c3f9c69 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x39e5ee1f rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x823ff8df rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x87d8688e rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8c5abaaf rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x99045b39 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb57e7a3c rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc03c9b0d rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd2c7f2a7 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6767db45 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x775a6b00 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98a42601 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe773d2a6 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x047c2349 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f4a2c64 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x113ecbac rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14ad826e rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2368f4d0 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2c3d19eb rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2d9609b6 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x33d52b31 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 0x4a77fc1a rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f2f4c49 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6dbc59ab rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x722bdd8a rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x74747112 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8222ceb5 rtl8723_phy_rf_serial_write +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 0x9dc5065b rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9df59f9d rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5b017e9 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb46ae31b rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb99d4bab rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbdf4cb7e rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc523ca13 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd382d33d rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdd0f6615 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0ec768f rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe9562885 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0327d707 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13b67a4b rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c4bd106 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3242799d rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47d18132 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4bdf1891 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52954ef9 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5307b52f rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58341e1f rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5af70103 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6753f602 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 0x745cec7c rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7eb90425 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x846e57d9 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85f92a3f rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x888ac4d1 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9736a872 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x989d8ed4 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b7a6f2e rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0a9fb32 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2f402c2 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb75722df rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb880a414 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4f8fc36 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc71dc27c 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 0x7cb55714 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8adfdc94 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8f7df6ec rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8f7fe49e rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xde373b6b rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x498c90ca cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x6042f5d0 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xab8ecd77 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xdfac6e57 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2a0a54b3 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4c89e0da wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa2dd69a0 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 0x08f240ca wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15774619 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15e54fa4 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a4727da wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c6d36bd wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x245e5f62 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d746660 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x34dc0b75 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x37009a81 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d39ca41 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x415b0c84 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x423ff493 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47448fe6 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49bb2bd9 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5aa097d1 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c559af5 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6673a5cd wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6986f438 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d9c2c70 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x716c7fbd wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e1361f4 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x843188a8 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84527412 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f4d9d0e wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9184d7a7 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x93e2c6fd wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f950443 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa45f0ee2 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5fb5f5d wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0de6b75 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8384d59 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc125b494 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcbf6c30c wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb11a6cf wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf29f715 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe075b466 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2e1ebae wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf449169b wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa2e0906 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb731416 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc6837c1 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd218231 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd83dc74 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0302580e nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0bcfa10a nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x519cb353 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x90b36333 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0ea777ed pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2fa1f2e3 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3a7fd6bd pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x848b443d pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x942ff03d pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9f2b6bbd pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc8971cb7 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 0x0ebf8be2 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x76c492b0 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9b0f6234 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa2878763 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa8e94b60 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb7f74b17 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe185b320 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf202df5d st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0cb09e0a st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x86ca4087 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa22f5b1e st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7d59297a ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x85caed9d ntb_transport_create_queue +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 0xd41b1498 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x7e25235d virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xc2c49878 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x378480a3 nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x38c59751 nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x399d9ac8 nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x42240256 nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6adadbb4 nvme_auth_free_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9070925e nvme_auth_extract_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x012e1aa5 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x05ddee60 nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1373e603 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x14c1a3fe nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1550cf20 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1657684b nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1800bc3c nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1c7e2dc2 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d250248 nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2499032e nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2de36218 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2fbf8451 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30cc283b nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x372c5fca __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c79f1dc nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ce04317 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x403af5c0 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x42072f4b nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4e43a8ed nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56485c46 nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56623821 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56f5c87b nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a099294 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x641f157d nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x689cdbdf nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7514c539 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x77fc0662 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ececd50 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8262a730 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x836a29f6 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x878926b2 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x89db06c8 nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x924c34c9 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x930e517e nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4608b40 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa6b7eae3 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa7dfe6a3 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa80c9af0 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa9947f8 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd624f5d nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc25d6ea9 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9756951 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcd694b70 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0b3bcbd nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd186ff78 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6dda422 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xda1f52de nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe5035c78 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9b888e2 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xebd03de9 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf43fbb29 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa9c7ee2 nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfb94f31a nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe3046b2 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x036e27c7 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1d93ffac nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1e68741b nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2b00d3e7 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3fade75b nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x68d387e7 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6cb1f97e nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7498de97 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x85c8a154 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa1e8589a nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe704f2b9 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x21e609f7 nvme_fc_io_getuuid +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 0x822bcba2 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 0x1a6819a6 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x33846684 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x48b8c37e nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x49c41bf6 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x66724889 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6e61b744 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6f8337d0 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x92ab42d8 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa5cef6f7 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc6ca2966 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe6efedc1 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xf5dc995e nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x4952268c pnv_php_find_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x60bd6074 pnv_php_set_slot_power_state +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x651d4b23 rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x6c940aad rpaphp_check_drc_props +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x7fb31e2c rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xdc7c5a4b switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x42287b8b mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7253df64 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xc4b58cc9 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x12bafacb reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x12c2ebd2 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xd1f158d6 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xf9766fdd reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x780bf38d bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xbcfba36c bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd42b5f33 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x3efede8b pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x74155ea4 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x9e56443c pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x1ae89761 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x31f15653 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6e00bf44 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8d23ac99 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x9b118370 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb56fcfdd ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xde5809c6 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xec671f9c ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2f7b53aa mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4b5adee4 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5f2ab1c8 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x91310585 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd4b8c69c mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x19d2056e rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0324ca01 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x36dad91d wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x42a41170 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x79ed8c52 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xef6d904a wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfe173deb wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xd88e1f1e wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x18afc4e1 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 0x054a136a cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0716837d cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f51cd9f cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x198256b1 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d4f95e3 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x249d7abd cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25735177 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ef506a5 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37b7c7af cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f11dc67 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x412b3c85 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4204b142 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4381d6ce cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4703db79 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48af6704 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55d5bd44 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x662bbc2a cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67ce6497 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f8aad34 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6fc3770c cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7011e003 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x731ca38d cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75ed2efb cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x776afe13 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x809956f1 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a26f90a cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a88d4a6 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8f130858 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91d2180f cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e32977b cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2667aba cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5cd33cb cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa744a0d9 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0055e96 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5c7359d cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb89cff2e cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd05620f cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7bcadef cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf0b46f6 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1f01e03 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7a8e641 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb899223 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9e1480b cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8bea396 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05133b2f fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x152c0504 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x186107a1 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2db2f627 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x506737f8 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x522a5d7a fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6908a1b1 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x73dd57a7 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9e223ed8 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0e448ba fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce0f19fa fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd72bc3b1 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xddbe6e48 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf12d6095 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf308077d fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf88dd0c8 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x387b21be fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x94759b82 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1decb79a iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x76ef2e22 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x796b435c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9cd0c1b4 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d2f2a79 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb0c27804 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb8b76e4e iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x5b449075 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00d8d27a iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b4464b0 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x137d0c5e iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1985e899 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cdd3ce3 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d08c32d iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d36374f iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ec2a6c9 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x316f441b iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e327302 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e8e75c0 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4698afaf iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4838ba21 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50d89841 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x633180e2 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6560a3cc iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69077d85 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x703944e4 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x711da59f iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74f79137 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7daa9b54 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x805ef80f iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82d65920 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c98b582 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8eeefc62 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f65daa0 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x939f35c2 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa25551a4 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6f106e1 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf3d388a iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6c1cab6 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7bcdbe7 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8edde0e iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb945f1c1 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbcff2b60 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc52d11c0 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc630679a iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3b69377 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3d9cf90 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3e334be iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7d43134 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd98f787d iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe51b653c iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe80b01a5 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9cf4959 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed0467f8 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6211758 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb1f9759 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0b60d290 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d1702bb iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x14644a92 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1a1cd59a iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4da815b6 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4e31d730 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x58dc3051 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x790cfaaf iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8ab5557e iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa6e7ec06 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa7f1d8c2 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa9f3aa22 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xae03f8a0 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb1ef59b1 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xba059c65 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcf448807 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd6658020 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0e0723e0 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0e70ec12 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15c8345d sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e6f6036 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x243b9112 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a966c14 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3bebc397 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49fd3157 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54759fbe sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x551b74a4 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5f1e74ef sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5f81dcd5 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x621d2f88 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73b61e64 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73d3d267 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78795c6d smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a2319b3 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8dbacf63 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9897a5d9 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98efe805 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3a7ecf5 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6048573 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb74129d9 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc07a10bd sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0f4754a sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2657dab sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc65d6da2 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcf96f157 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb2a055e sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc90623d sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1b441e1 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe229e9de sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe76ef115 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf21bb2b0 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfbf9b0d4 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xffda6d40 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xebbc0b0f fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03e34a79 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04c650ed iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06667ac8 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x107b9572 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12e4c20f iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2396b692 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x248e61f0 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25e90fd9 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d131872 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e26c23a iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47f17143 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48660ff6 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b610762 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5215b76f 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 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dce8a52 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f9c4bb2 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ae9f738 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f47af9f iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x717b925f iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72a2c9a8 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75073daf iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8260eeb1 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82c04819 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82d3c900 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b56291f iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93257718 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98a7a0fc iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98ac98a2 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa58ce5da iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa57a68b iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa7d0212 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xabf28688 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafe23bdf __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb122daf8 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb17405d1 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb488370b iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb495b070 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfb7ba89 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0525e9b iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc22edc83 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce945414 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd20d4621 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5ddd7b7 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc7aa17f iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddd64644 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeda6fe7f iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7d9ab50 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfeb13513 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0b073b47 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcf56ed48 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdf2d963d sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeb0394b8 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x3c811fc7 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 0x35a6d726 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6315aef8 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa82452f9 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa96f4191 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd0c02173 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xfc6dbe7e __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x02b04308 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0abaa0ca slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1f11f05d of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x25d03377 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2fbf4adb slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x369f3198 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3f3fda88 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x42319385 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5284dca0 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6053d8cb slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6f13f458 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7396dac0 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x966bca63 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9b177a74 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa3dced91 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xab5caa96 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb3ffbc0b __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbc2cbb8f slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd4c9d1ea slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd77edb3d slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdac58ab1 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdb1d409d slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdbde9cba slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf627691d slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf85fd5bc slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfd3463ff slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x29651fe2 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xad5ecfce sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xbd39ae6e sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x9694d577 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2997c353 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2c29d363 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6298c49f spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7ddc49e8 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7f267d3e spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf0dc9c1d spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2b55dcb7 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x731833b3 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7f8241ef spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x037327fe spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1ebce9b7 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x239dd9be spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x33a95fc3 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4a3dcc90 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4ddc8670 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x55ddef76 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x70cce55b spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x744e2810 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x78e42862 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9b2c8f7f spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb35a513a spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb9e2b032 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbad816de spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbe9129c0 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd56561ef spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdeba1f65 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xec92c3f2 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xee379336 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x5cbc87ab ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1a99eaa0 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2c7c69c7 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5d0ce486 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x773a00c3 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7f163692 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8e1ce860 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x93af4ec5 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xac3e28c0 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xadad2581 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc02f7506 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc29895b0 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc4473128 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xedf97f48 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 0x01188e3f fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x50ad400d fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb2404b10 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe5b9c379 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1198fe18 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x470a69e4 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x540b344c gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6bb85b32 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa6ff6720 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaf8abc26 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb96d653c gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc696fcd1 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcc4eb440 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd118dc1a gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd5aa190c gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf0ecf3f2 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf9182bda gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x135a078f gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x320f3230 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3962145a gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x51e5f2af gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x532c6c5d gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6d346fcb gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6ffdf139 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9d6d4e97 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa89dd431 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaa7e72d8 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbc69976b gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf2ae283b gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfa3c61ea 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 0x1b6a0a22 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xef934adf gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x1464282a gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x70a327f9 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x1fe7ed3d gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x575947e6 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x426ad7f6 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3ebeb5b6 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x410f4be1 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x71718516 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe80e6d53 target_init_cmd +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x05d4be2e tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x077f02af tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1e60ca19 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x297d4c73 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x32ff5b6a tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x37f95d5c tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x42215eb9 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4d3f1061 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x568f61b9 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5eed6689 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x62b73c26 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x678d6639 tb_xdomain_lane_bonding_enable +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 0x7fa31604 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8ce8d613 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x913d19f5 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa5324c04 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa73e2812 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbfb59865 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc28a2a7c tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc29c5154 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcbb4af0b tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd13efe41 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe05df364 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 0xfe2452fb tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1013a239 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x20bbc6fc ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x21583bdf ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2971123e __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2aae96d3 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3400f324 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4b2bd7bd ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5a384bf2 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5b04d6b2 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x67a0508c ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x778e9262 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7c5f5748 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7e597621 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8ce33486 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8dcb8b9f ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x92b12fcb ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x95627828 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x960919ef ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb7e88c43 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbbaaa3b1 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc3c86304 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe46aa1e9 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xea2fc7f1 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf19f8385 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf3cba71c ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x0a78df67 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 0x7a0460ff ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xd00850a4 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xe73b8991 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/uio/uio 0x8ec18cbf __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xa2549bde __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc378e464 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xdff37044 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5b545089 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfbcac582 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0e682671 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x46c95e2f cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4ef94d5c cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x576b525b cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5a2f2cac cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6df54cf1 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9bf4a225 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xde7f47b1 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe9d56d65 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x55fc718e hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd1058cbb ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe9d1be91 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xed2bbb16 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1c6d61e2 imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3ebfe050 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x56a7a313 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x85ff1840 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc1141905 imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc1cf5afc imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x380d025e ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x39c9d1dd ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4ae11911 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6488eb13 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6ecb2170 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x887b9ecf ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0d82fba6 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2d83e16c u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x40bf809c u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4c43f3da g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x579338fe u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x59acd868 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5d05977c u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x638325df u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x677bb7f9 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8500a490 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8972ef0a u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x95efc9a5 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x96333c99 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9e2b0a31 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb312eb61 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x02b21c9d gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x24bb86a7 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2a44c393 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e61dd41 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3501d2c5 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x59f6151a gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9777c2e7 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa532f209 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb8c729a2 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbc289985 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbc328709 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdd1ef802 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe9958217 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xec71c673 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xed8dc158 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfcdf3b9e gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x162b519f gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6ca86a6e gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x8bf05cca gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb2086141 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x02a7abe0 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1f1383f6 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe05b1427 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ef77c5f fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x11f00411 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x12625fd7 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 0x1a8f7265 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1be13a48 fsg_store_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 0x35d556fc 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 0x3f70f1cc fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x46e9df2c fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x503f491e fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x528e4f7f fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5aa64f35 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6b1fd659 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x73142499 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x9a43ba7d fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa30ece3e fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa50f8055 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdad66595 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe4ac89b3 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0e88b0d4 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x17f16cc4 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x29525a2a rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5c74cf07 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x63252a51 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x68d55280 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7ea29b07 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x87bd712b rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb3add5b0 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbf1547f9 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd5cc5226 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe1d9b89b rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe7c68b97 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf6940532 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfa247ff8 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c5f9775 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x14a3296a usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1859eb93 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1afa31af usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f0feda6 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x273eabc3 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5863d8a2 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5bc7f39a usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x669a0cf9 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x66e466ea config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d6c4fde usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d7afd1c usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7842f465 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x79de9c12 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f2eaded usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9025590f usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9657b909 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3acce24 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa509cabd usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa6408c9a usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe03d59a usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc683ed75 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7da2fe9 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcb5182b3 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xccdf701b usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd64b4e49 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd66f55fa usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd91ae8f5 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd9f3c1d4 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe9cad9d9 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2283909 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x048a4b61 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1489bf5a empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4656fca4 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x491cf273 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 0x63afdb7f free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa23676c4 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa80f7d1b udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xaed0b529 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd30e1272 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x13d8b741 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x14f2ef60 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x15ec1ff8 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a5cc5cb usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1e220110 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1e9cac4b usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x364a5f99 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3684af63 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a198670 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x459a42ee usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49928c88 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4acb8bcb usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4d78e854 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4efae102 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x524c7d6c usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x71237f54 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x861d2eff usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x89ad5b34 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x92d0dae6 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9b7a488d usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa42d88d7 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb9970395 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xba1d4b6b usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd44dd949 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd76f7ef3 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe6ad92ce usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf677d743 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xff5e9cc6 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xffa5632c usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x2a53009e renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x051ecad0 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x1a2a9bcf ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x054aa763 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0c1483e2 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4087ee79 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x56c60319 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5e4fd6fd usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5f0569be usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcf372194 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe5a9155c usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf57a6fee 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 0x56c7bd97 musb_set_host +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 0x863cd013 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa7df2465 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc908eadf musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xca87269c musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe9381b65 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x01872ef8 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x28735b86 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5cffa57e usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe1b56d16 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xfe0dfa89 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x9407372c isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x53fa64b0 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3270cbad usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4a12a379 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5b8886af usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6251bd5b usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x65d2c56f usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x67af04e4 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6a886fe7 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6bca17bf usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74ea64c7 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x78708a1e usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7df66715 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7e047783 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7f192f97 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fc80242 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb434f327 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4a14344 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc42b3261 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5d25f62 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd7093c1d usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xde1d64ac usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x5dfc6629 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xde9f8d75 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x65b18de9 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xa8b00ddd tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x047fbb94 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x04bf55a9 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08a6e8b7 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0920f543 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0d1ad39c typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0d21ebbd typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0d991d08 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f8ea689 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x111a1982 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b89da9c typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2560cb24 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2606985d fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x26527aa8 typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a1a4626 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2f5927a3 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x35369b46 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ac08ef4 usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x41267320 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46f2b95d typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47dc5fda typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x482fa7ec typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ba61c6f usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4facb125 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x56e75a85 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e6b2bba typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x61611ae0 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6845705f typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x778c9cb8 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ae70fd4 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81f67531 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x855185b2 typec_get_negotiated_svdm_version +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 0x96af5d5b typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa2170391 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa29861a0 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa480bbf2 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa48feee3 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5511c9a typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa619001a typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xab9394f2 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaff5c616 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb121834c typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb6e4ed38 typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb70316be typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7cc4c48 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9204189 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb92b262d typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbaab119a typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbd7b6653 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbdeb5965 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9bdfc2a typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca54669f typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcabd6f06 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcc81fed0 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd79f35bc typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd8a3f371 typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd92d1eea usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdd0b9b7f typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdd972426 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1c009f8 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe3af58cb usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe48784ed typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe5854379 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe7379417 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe960c38d typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea648986 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xebb95eb1 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf6331995 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfaf59ae1 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfefa50f1 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xff2a8f85 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6ded64ff ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7e5a610e ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x94df058b ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa372dc4e ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa4d92a1a ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa9ca8fa6 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xac039038 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd0d7b24d ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd3b1bd52 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0a638375 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x27e4efa3 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x28eb9cc1 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3b6a7de3 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3f31ec4f usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4add98ef usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x50092e81 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 0x86850ee5 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb2cc11e3 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc9aaa994 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcba710ef usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xde5c1937 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe5a74ab2 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0561f091 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1cecdb62 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1d438e4f vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x42658fb1 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x715b3047 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x84761a30 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd4a037cd __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdba82ca3 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe1f3fc80 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf07f74b0 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf4615bdd vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x118bd705 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0b021d9a vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0fc7ceb7 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x106ad4a7 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x128bb3aa vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x24e46b7d vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2ccdb200 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3b4a51dc vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3bb1503d vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4a54978b vfio_pci_core_close_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 0x736440ea vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x795713b7 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x85f32d19 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa708cd86 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xafb22564 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb57750bf vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe1d183c6 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xec1fbe9c vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf28ed20c vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf8d56793 vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1c74a430 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1f755cd6 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x24642449 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2c46990e vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x320fd48c vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x34c87791 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3572cd28 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3590888f vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x40c418c9 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x467000f4 vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4f0769e8 vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x59416169 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x618189fa vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x66c6ab57 vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7ae1426d vfio_device_set_open_count +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d800609 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa13d5140 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa89e6f57 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb384e96b vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb75c48e9 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcb148c5f vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe1b33e65 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0740a63f vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d35a679 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19629e6f vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x265f4c1b vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ab56568 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ae6de99 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37305a69 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ac0aeb5 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d66a120 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3efe78ad vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44b4eae5 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49323723 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a76382d vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f4d9e2f vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4fccb943 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x549a99b5 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7528eaa3 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e3b18bf vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81dc99ab vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x82f17ca5 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x842880fc vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86db7ce7 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8aa2fb3d vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d191bec vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94393c47 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9620ca7a vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b0c917a vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c6529d7 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa06b38f6 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa66d7b00 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb1d99477 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb24cd2c6 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9b6113b vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd806fd77 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd8f9e9ad vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd9f4f74f vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb92a872 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd20958c vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf34a749e vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5e1c94e vhost_chr_read_iter +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 0x3ac2f071 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5283d716 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x73d6a5e0 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8016877b ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x84578c11 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x887fa646 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xef45cf29 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x35f670d6 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x27d80a93 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x65a9e809 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7dafc497 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc4b8421c sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x08998a04 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2fb1e536 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x306b4fc1 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4f1a3418 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x54e4c59d w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x56e313f3 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x71d8e882 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x90d9ace9 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x992773e9 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdd772ec6 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xec2bdf77 w1_write_8 +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0b2ada48 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x61195af8 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb2636067 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 0x159bfbae nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x94518c7f nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa772ba1b nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb4e87fbc nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xca652800 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd4a4220b nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfe6654c4 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02850b3a nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x033d378e nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04aa3f24 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05f06604 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a2b28c8 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10e693bf nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1574fa2a nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ad0f7d4 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c116a7d nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c5ca491 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ecc0400 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25714ad1 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26df9c33 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27b3b089 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28d88804 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28e57edd get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a2f7ddb nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c8d06cd nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x304e534c nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30938c92 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x336d0104 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x362889b7 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x365badfe nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3839f99b nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a16b832 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a4461dc nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a4e7649 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a66d919 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cd023a3 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ec3d407 nfs_free_client +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 0x4425d095 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x486a1037 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4871f437 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x488c37cd nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48c58831 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x496127e1 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49a4805f nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dc7c5ab register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e8b6c0e nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5035ef53 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50a743f0 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51654e14 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5385d90f nfs_link +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 0x5bee09c7 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c167cf5 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d5f6934 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x605d51b8 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60ea9e17 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65428fbe nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x669f2cdb nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x690bf2ff nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a1903cf nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c9b6a78 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70b8a155 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x743e4b61 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74c38210 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76744d96 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76c98a5b nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x773010df nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x775a96a4 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77e53ed6 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x793c2209 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b7ed3f9 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ccdccad nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ef9e6e6 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x830dbf36 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x835d3419 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x845ce3ea nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x878e2ccf nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x887ef764 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a542435 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b563d08 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c3f65ff nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cf7b651 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dae9960 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fcb49f7 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fe01777 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9062f9e5 nfs_close_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 0x92dfba03 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93c3c958 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95e8d9bd nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x967349d0 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98f135b9 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99c71fc5 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99d656b9 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cf3dda0 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dbb981d nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0b34e58 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1e13a5e nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3622a2d nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa70f6e3c nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa92f1ccb nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb255add1 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb36a9790 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3bb2683 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb45e4769 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb52dda42 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5462267 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb59a3991 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5bdaf79 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb61eac81 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9a139af nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd64da90 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd80ec4a nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf88b605 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2e2d900 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2ec239a nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc44c64ac nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc65832a1 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc75b9733 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7c968d3 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbfc8d0e nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf12fd79 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0d407d1 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1e4cf28 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd251d454 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2e6b62b nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3204ddb nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd844b6ec nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda28f79d nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddbef149 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeb80f91 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe378a808 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5da1a4d nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6d272d3 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe83efd66 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb9aeb0f nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec677717 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecfee5e4 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed25b6e8 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3b1af25 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5587ed0 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf724a2c1 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbc1e9f8 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc29998b nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeff8377 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x616e60d5 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04f0a7d9 pnfs_free_commit_array +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 0x0c727092 pnfs_generic_ds_cinfo_release_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 0x108a13d8 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1401117b nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x157ae8df nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fb51247 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x211f7d92 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24badc3c nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2766eb23 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2aa9a500 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2be132a6 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2dbc15c4 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f4e8351 nfs4_set_ds_client +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 0x36ec2e44 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x379d3ce2 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38062d54 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e00cb8e nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43b37f7c pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4aa5c4bb pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b75ec1e pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bf2a26c nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c299312 pnfs_generic_pg_test +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 0x5b61a34c pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f2ecf97 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64f48ad0 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6686914f nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6701fe5b nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67b6d45e pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75953616 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x793d95c9 nfs4_delete_deviceid +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 0x81fdfcbd pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82f2a3d3 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8709cce4 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89efc1a9 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dd9797b __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8eb0a53d pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f41a368 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ff77df8 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91912170 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95fbd93c pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x981682c9 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98d41ca8 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99a5fce7 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a9f1c2f pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d4cf41d pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9daf3b25 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa615185a __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8892a34 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa99ebb3e pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa363a9c pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad46fe5b nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5ab0d7b pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5cb8a0b pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5e84724 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6bf734c pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9d67063 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9eb2941 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcd3ce16 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd9c5bce pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf6ba149 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc157e55a pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4af9770 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4b8b6b2 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc522d975 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc99a2fe6 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca2efeca pnfs_generic_clear_request_commit +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 0xd4a90ac1 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5bf865f pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8fdc06a __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9f10714 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdaebefa3 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde71404b nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0e85cea nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea42b76b nfs42_proc_layouterror +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 0xedf88746 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef909bc3 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf50478d6 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf63266e2 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb414e8b nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x4c2bc7ce locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8db35347 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa86517db opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x2eb9d42d nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x378209c6 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa1a3b214 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc4c9b18d nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x40997996 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2f3fde86 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x38af078c o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7dc5a5f2 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x97d38c4e o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb5a68449 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdc1bdcac o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe68a8f62 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x000ef4d2 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9219a1be dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa731495a dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa7adcf13 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbaad59c4 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc5ef09dc dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0d4017a7 ocfs2_kset +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 0xae841f1b ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb1e1f37b ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc0ca5b4e ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x2ab71c5b unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x56909351 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x1351ba7d register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x7dc1c99b 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 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 0x515d539a notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xbb137a29 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc +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 0x8cfb89c0 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xaaa7b2ed lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x1832211c garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x55afff99 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x66f05c65 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xaa4f0884 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xada3fd06 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xd208464f garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x46c14acc mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x59303509 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x82cdc362 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x9ac9832e mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xab447c2d mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xd1654655 mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0x11af68d5 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x72998521 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x27459e51 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x7195df6c 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 0x833001be 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 0x27106a26 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4ec7d8a7 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x55c25fb5 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x643025a6 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6b6181cd l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaf89fac8 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdc507d0f l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe24bcbb8 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xed3a2093 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x5d4c2f5b hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1742d6d3 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x24941492 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e5d5f78 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x31ebf91f br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x36130ec0 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x368dcbfa br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x494a3e64 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x49f45bc5 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x515789eb br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5b918dc1 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x76cf80e0 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8147c425 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x96d29e8f br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x971164d9 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaa0c1f3e br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaddd8303 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbf6a976e br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcb74551b br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd6180bfc br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdd0b006f br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdfc7a9e1 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe46acede br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe69d2d68 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xeb385e7c br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf111f634 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/core/failover 0x0fe6051a failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x4d5cc76a failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xf3f47208 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c1f03ae dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x10017892 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d78a2d1 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f38a2d2 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x201ea1a3 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2078c382 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x324767f7 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x340ca6fd dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37b881d7 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3fca7701 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x55ece1ef dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57d62250 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x585e6fad dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d18018a dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6022069a dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x65852ae0 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7132cad4 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x79a7e809 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7db42f6f dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f8d6788 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x869d135a dccp_reqsk_send_ack +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 0xa9efa4dc dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa134226 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaeaa1ad3 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc29c0d03 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8f30011 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf3d496f dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0d7d64e dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xebe263ed dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0cf2ceb dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf52e15f3 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf96c0b2a dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa16065a dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe34a822 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x09d9c5c0 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2ec7c13d dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4402608a dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8cedb245 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x93785b08 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb8deb2f1 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x04d40eac dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x177560b9 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x18baf4d9 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x24a51d42 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2dad45f9 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x32a3a274 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40eb5704 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x57a42bea dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5a2e1fab dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61e945f8 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x74ea9db5 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7a4c3ea4 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8ad914cf dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8c85dbf9 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8f9fc427 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x92f41ed3 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x94ebb97e dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x977cba02 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9d34464a dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa619cd54 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xabb5fdf9 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb9657a33 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc3235215 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xce0e405b dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xce10ae7d dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdd4a9594 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xde7e800f dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe61e31bf dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf46196fd dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9eef7ba dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1c3b2abb ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x516cf27e ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x72725f66 nl802154_scan_event +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7f5c85e6 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xde8dde42 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ife/ife 0x3de17f21 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 0xd35f66df ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0d286958 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x32a2383a esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf2970422 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x33f3ef3f gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa6079d1f gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3cef3409 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x51e15970 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5eae9c1a inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7a302616 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7b7e4549 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x96d79e2e inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc6631cdb inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd04f816a inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe82a5957 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xca6ece2e gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x065bc580 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x14fad7aa ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1e63b8fc ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x20c46792 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x242aa766 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x387e0eed ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3da53664 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3e80b14d __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x553f9d51 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x57ee80dd ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c95a1e0 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x620de423 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b436c26 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x76182b50 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x813adb73 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xadb4d537 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdd2758e0 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xa31ff1e0 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x689083e7 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x813db2d9 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xb35980f5 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x2589efcc nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x12e158fc nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5960d458 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x61e3377b nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8ffed03d nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbf27829d nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xccd8cec2 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe4b45a85 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xac8e40d0 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3018d7b6 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x455bd3d7 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa56a605a nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x35551a06 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x3aeedb4f nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x79b70062 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcad95cd8 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcbeae278 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdd5ce165 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf648b98a tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0a691782 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2d985c9e udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x41a7fb25 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9b20e5e2 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb4670dbf udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcb759578 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcdc440e9 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe256b7a9 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x47ecb8de esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc120cb5e esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe7dcab89 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x239ce369 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5cdc5889 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe92912bd ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x99a5fd65 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xf638756c udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe8825175 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6697a761 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x69b86626 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbd280ca2 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xca7520c6 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x052ffc77 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x10f45213 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x39559796 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4c75deaa nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7a097054 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdbf58ac3 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdf91d34d nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x2be9e1b9 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x070c626d nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x77836766 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x78790e27 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x9cb46dca nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xd258f492 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x19296e50 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fd3e014 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x395f48e4 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d9aab97 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6520bc67 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x67dc9e10 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6da93613 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73bd5e03 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x90e8f830 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb13075e9 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb24938bf l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb94f0797 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc48988df l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc5f98f5f l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2c591f1 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd408c2bd l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd8ded8ad l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeaebaa5f l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf6fe2087 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfa791f51 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xffdde56b l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xcbbf60f7 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x61e16d1a l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x02bfc9f6 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e69f138 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2772b0bc ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2a46658d ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2adb8a3b ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b91ad21 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3ee9bf8c ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3ff58bb1 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c993c3d ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5405d27a ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x65f39b77 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x84657351 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x87424141 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8dd0583c ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e90377a ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5b9a3c5 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcbcc7bc4 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd3c50fdd ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd5aa30e6 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8cb0a92 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe896296e ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe9354ad4 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed88c848 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2f25e40 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfad2e2cb ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1ddb9647 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4c6b76b2 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x710f3266 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x87a8739c mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfaf9ae3d nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0d5f8e96 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0defa48e ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x121bb592 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3297338a ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a8d3fd7 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4682ab26 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x60db0cd7 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x75cc45a2 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7795a109 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x791fac53 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x815bd497 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x822908ef ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ce34527 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 0xbc23a416 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc04ba335 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd069472a ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd7b192c2 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5a7b654 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xefe7c67e ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0c3b8786 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0f09c4e4 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x27f886b8 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xed4b98af register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1f0f56d3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x529d58b7 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5732ef62 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x70bd479a nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8fe60d8c nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd8fda737 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xeae4d278 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00627ec5 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02a907b9 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02ad5663 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x041fdb71 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x098bc87f nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c4ca2a3 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18922a05 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b82b117 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21db1de6 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x230a4d0e nf_conntrack_free +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 0x2965f2c8 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a232179 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a5fc1f3 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bf70d3a nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d41beff nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x315c90f2 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31f17be2 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33b6a24e nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x364f4601 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x395ab6de nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3980f67e nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ca575bc nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e70bac4 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46c9c288 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47c9bf52 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4870ff51 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a388038 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b05776a nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c256a4c nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x511e313f nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x521b3441 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x569917d0 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58c22bf0 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a2f8add nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d9d254c nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66a06d33 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d908864 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6daf58ce nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73773591 __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x740de71a nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7572618b nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f012a56 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x818c8ab2 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87426d8d nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x889bbc08 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6ebd3a nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e2efffd nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f07d3b6 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9742cf51 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x975ec903 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x982f30cb nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98d0732f nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x990608ac nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c98725c nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa24ae2dd nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa69d8aa8 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa48f5e7 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad3270e7 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae9cb231 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb27d48ea nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3c99ed2 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba8cfdf6 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbba36750 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbee60ef6 nf_nat_helper_register +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 0xc904e170 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc965e4ee nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaa08dcb nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcadf32af nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb9ea9b0 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbc379ee __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd77bf2c nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0b86e10 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 0xd58e2897 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd59cc782 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdafe0316 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc5e887c nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe149df53 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4e773ff nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6a80184 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec65c478 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf17a4dbe nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2d79131 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6e169a6 nf_conntrack_eventmask_report +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 0x0a34887c nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x8c46329f nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x724877df nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa54658a9 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb4059ecb get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xb7482253 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa4ff251b nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x357a6963 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3e3654c9 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x43ee839a ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x56803fd0 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x732aea25 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdd26ef4a ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfaa0eb93 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xaab2cc92 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x1fbc07a4 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x009a74f5 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xaa523664 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc6773d65 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x056955cb nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0c07bd43 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x23c0ce7e flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x27060783 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x30bb55fc nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4808bee7 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x536232a3 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5b803577 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6790f289 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x97ea364a flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa5daf73f nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa67426e1 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb6d05885 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc9ec693c nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe06e16d1 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeb626ce8 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf10c0bbd nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x03235714 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x354264a1 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x41e7f2a7 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x453eeef6 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5b1e35eb nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ed1c1a2 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6a007dfa nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7f9089e7 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x89a4cd5e nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x98b25f78 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x99c47f04 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9eb1061c nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbbc00772 nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbeca87fb nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0955a5c nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd147a649 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 0xead1cb8e nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfd3d779e nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x36bad9cc nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4fe7764b synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5a57a6d7 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x68c037e3 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6a86127d ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x733e543e synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9bbf0a1b nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9cfaae2e synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbe2b59d4 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc5c5e434 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd9c4596c synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03a397b9 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0523eda7 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07b693bb __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11e4f592 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17a4551b nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e7a0f11 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1eb20c6f nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x23275184 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x265461b9 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30b7e538 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35274556 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39250c21 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4996aeb7 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c9b0fd3 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x520cb5eb nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53bf9f58 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ddb5446 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f15a839 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61ac75f9 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71af1934 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80caaff5 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x893c899d nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9057f3e3 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x945306f9 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96831e4c nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9bfc395c nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cdf87cc nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cfe70b8 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2befeb7 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa50f01d1 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaab27bd2 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbaa435c4 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc2e7f0f8 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc31418c0 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6aeb6f6 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc977eae1 nft_meta_get_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 0xe77f8732 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe97d0d4a nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef0df720 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0bc0174 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf131dc70 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf486e9c7 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf66f8bae nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf98964b1 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x86ad7f93 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xab38ae97 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc6006a5a nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc65605a1 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcbd4ca5a nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdf83677e nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe442acde nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x14c47202 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4ddff4cd nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9103d0aa nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x314968c5 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9fde30d9 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7908b0cd nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7e9c729c nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x972ffb46 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb6befa88 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe01ee1b3 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x33170946 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x962abada nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9b2ed207 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0369032b xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1049c9dc xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1992a530 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1fc9ddf1 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20d6d4db xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x289a3820 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x37ae7edd xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3b737bab xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4ef826f3 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5627d829 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x62be39ac xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6807d932 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6b72b7e4 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7145e2d9 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cfc1cf xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ca58013 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e7fc12f xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa1834de0 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb17c1ce8 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb646881f xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdecada64 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea9d3248 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff845c0a xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x12b2c466 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x27098254 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc2980154 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xdb2d5fb9 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xed66775f nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x99bf5d5f nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb3fdc84b nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcfb54b33 nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x07c13283 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x84ba791c nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4604820a ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x76d25618 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9b6ec0a1 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc0bd902d ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd16bb982 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf23e40b6 ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x14ce8942 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x22290907 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x71102978 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xb45f53d0 psample_group_take +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7e231284 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 0xb77f52ae qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xfba2e818 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x028f6df7 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x082cad54 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x134645b6 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x1a543684 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x20146ed2 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2148ca17 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x2158bb79 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2837b887 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x2871dd67 rds_recv_incoming +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 0x411e7f7e rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x439a8181 rds_conn_path_connect_if_down +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 0x5e23a14f rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6203b2fa rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x6c8e459a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0xa1f6e548 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xa6bb8216 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa6e6e49a rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xb74b4ca0 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xbf62df47 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xc271060c rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc811bba9 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xcbe9b867 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xdbb98712 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xdc4b4ff9 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xdf46ec08 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xe04b4d37 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xec2664fc rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xee41973e rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xf8ad2b58 rds_conn_destroy +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x29957cf6 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x74c24102 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x41ddbe82 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x58955a14 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x60419b3c sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb0e05617 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x019f2f83 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x37c089c6 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x49e5d92f smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x6a9968d2 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x81443727 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xa2bb0e98 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xd1c86336 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xd4d2bd95 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xd67add52 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xfca5ac51 smc_hash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4896781d gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7c3b3a56 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc9d3632a svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd67408fe gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00d1f2dd xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00f5e64c _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01348370 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0423176b xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05344b28 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0542c6f6 xdr_stream_decode_opaque_dup +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 0x07f72d37 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x084d0485 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x085cc066 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a054cf1 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a8b6778 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b5cd6f2 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d28ee14 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e888729 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f0a4b07 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x102ca6e8 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11acf358 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13508e1f rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16dddced svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1890c96e rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a37f5d2 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c54f729 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e1741c7 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fd9a9eb rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x218e39c8 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x219e8d03 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21d619f1 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x221f5c76 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23f0488d rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x243944c1 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25f7bd75 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x288de6c2 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29c78dc4 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a62f97b xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb3cc2d svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2be52d15 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e8a8e55 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f19d06b svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x323eddd2 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3331058c xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33e3bdf5 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c25cc9 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x350d2c9d svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3550148f rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a542d6 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37262618 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37622e3e rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37e5aaaa sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38703ce6 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a096479 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b89e78e cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bcf105d rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c8d60ae rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cf22f9a rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cf32c3d rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d184545 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fa172fc rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fdac951 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x404c9b7d xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4082e7c0 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4148228f svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4277163a svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x428b82b2 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44e26603 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x482b8ea6 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488cec44 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488fb9ff cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ca0c40e svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dee4e1b svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f13ebee xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f33dc74 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fc39c85 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x507ffb41 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ac29cf xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50be0f8a xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53483737 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5395ccfa rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x568adb57 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58e88e80 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59ca6c08 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a35164a rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b573e95 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c543c40 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c6ab7be rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d03aee1 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d90c352 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f713e81 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6001d0c4 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62216ec2 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x631ff3d0 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64b2efa5 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64fd8ab3 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65dcc321 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65fc19d9 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66cced6f xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67848009 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x681803d6 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x687f9e61 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69caa86b svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ab7df15 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b3c8cb9 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74a0cb9a svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76ec3cae rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78b841fb rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79528c02 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79999fc5 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ab964d rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a24f3ea xdr_process_buf +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 0x7d1a65fc xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d1ad533 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d76a504 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80719ad9 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81488138 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x823fdda7 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84b65eac xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x873db60e rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88355839 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x887021a2 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x892a92d2 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aad1344 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b962ec8 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bfc4a3d xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c46de9b svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca7a66f rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8db43bcb xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dd6a265 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8de4e177 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e090ffc xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e11880a xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e140c9a rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e55e7df rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8edb8a1c rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f627e13 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9f0da6 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x901fc0a2 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x935ba2d5 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9366e315 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9471830e rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970d06f7 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x978d4a03 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97e59543 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983f6146 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99394943 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99dd54c7 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a9da9c3 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ac516ca xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b537091 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9be81d85 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d1e9d3b svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d682e45 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d77ec5a svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eb9e06f svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f8c0095 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa19ffe39 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3bd31d9 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa56552b3 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b92eb7 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60d45d7 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6779e8b rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6976f00 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d1719f xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa311f56 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb267b0 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacd7f2ac xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadcb8e4c xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf7fbfb6 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb007cbb7 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1ceecc5 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2573b79 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb26be4bb svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7593728 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb79f3a7a xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7fcff68 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb873ad6d rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbccc05cb xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbda85a8e rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec49434 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +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 0xc1eb5afc xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc410bdd1 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc53e5f9e svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b59ecd rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca5911a2 xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca6f644d svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb9efe6c rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbe795db xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc663e6f rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc846b16 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd7b568e rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdaf98aa rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdb9283e rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce99da79 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf0c2ea8 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcff43057 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd01ce6f8 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd082d6a9 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0ac800d sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd180da75 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2790c21 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd377ad54 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3c7ddd5 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd47ccfb6 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5697df3 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d6f0b5 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7c5bf60 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd84963d2 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd89719ba rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8af4ed8 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8f5a993 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd93a59fb svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda2f9cba svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbff70c8 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcf4bd58 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde1fb1dc xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde75e6b4 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfaf3db5 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe326d3de rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4671777 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7c38377 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe802ad11 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8480b7d rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8a38686 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8e5357f write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9295659 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c88e19 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaee784d svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed3f6329 svc_set_client +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 0xf0904af5 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf10ed742 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf27c8bd7 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf311e98b cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4a8820a xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4ec63e4 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf78f9e99 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf917557f rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa03fb2b cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa96ffac rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe11de23 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe26476e rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe70fa38 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/tls/tls 0xb3e4e4c6 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xbf004c39 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xc3028957 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xfbb5a156 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x00ae2aa1 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x02b5f395 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x04d1c947 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16943026 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24ee13a9 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x29642c90 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f5ac993 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32908647 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x389e254b virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a55dcf8 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ce274ab virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e53c300 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6095c13c virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68a5c1d8 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c3aaa09 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x703831b4 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73aa0460 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a56c556 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x89505619 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x89e5cf2d virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x922d04f8 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x94bd1c7e virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9698ed31 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x972c6b4f virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa7ceadf7 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb9afc183 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc207a743 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2b85d03 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd3a8c89e virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5cd5b6e virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd28686d virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xecd6e38e virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee3d4b93 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf394be0f virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x04b4d7bf vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ea66177 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25b426a1 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x351440e7 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ceb1b99 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d2f143d vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44a40b50 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e478d9d vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53647fc2 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x56c3ca7c vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6a1b5f23 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73303743 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73cc5dd4 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77714cdc vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x79c6e0b9 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7b37690d vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7d07893a vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8c196945 vsock_create_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 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc2a0b483 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc8b9172e vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe69acef9 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfbbf496e vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x03d73b9c cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0ba3740c cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x10b7efd6 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x144bd141 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1b2c718e cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x22c3d40b cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x30119f81 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x48b1b75c cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x49b038fd cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x56589db0 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x592dfb25 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7bc3376e cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbbc25428 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbde14391 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb4309a6 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf5ec0519 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x40097dc3 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6e651595 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7506dde9 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdfefc66e ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x0aaa800b 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 0x027bea8e snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x08252fb7 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x0ae7dc64 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x330fbd42 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x48214d67 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x61304fa9 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x63ceb1d8 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x7851ffd7 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x86279d65 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x8f493588 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xa49c0e14 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xb3facef1 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0xc0383ed0 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xc700ac99 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xcbc37325 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xd730bc5b snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xe2a437cc snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xe94443c0 snd_ctl_sync_vmaster +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 0xff08e924 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x1c7175e2 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xafeebe48 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x06351a11 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x12ba4a77 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 0x5db8d891 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x857f5c85 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x85ad0ad8 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8c5e3b5e snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x936ed5c2 snd_pcm_stream_unlock +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 0xb663d5c4 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc2ef219d snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xccf0c208 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdef0a4c0 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xed1e59f5 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf4dc71fa snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfceacb24 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x06893dec snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x08afd21b snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x425df5f1 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x436a165d snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4e008c4b snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x54ddb674 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5b30dbb1 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5d7c8760 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x78f1539b snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7a6e9ff2 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x89d98915 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb6455bc2 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x16c204bf snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xf6202597 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x15221ad5 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x19bd920f amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3abaa41d amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x401f0f81 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x48a64ba1 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6353bc32 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6af15eb8 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6bfb829d amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x87473a2e amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8a4f464a amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x94f3a974 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9ae37599 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf1a0c7e5 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x10e98fea snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x15a72470 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1f75712c snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2373fc36 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3514883d snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3b54d811 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x47ddd575 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4d9418c1 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x690d42ea snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6abc34ab snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6bd4d32c snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6cf30b17 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6d5c716d snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x77126c06 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x909949b4 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa372ff0d snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa4ab6960 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb12c9d5d snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb74fbbfb snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb76413a7 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc661af64 snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcfbca768 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd5b4d65b snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd625f481 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdaf3d90c snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe864fb7a snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xef0855fb snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf01d079a snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf462f9a4 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfc95a6a7 snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfca8b5f0 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04860ca4 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0548f38c snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x069b5bbb snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0760ffb6 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b9188f3 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f1b58e7 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x139c99f1 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17a2e9c1 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x199fefce snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x205a5218 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2068482e snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2278ab5e snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27655e3f snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3516cb4e snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x379140f7 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x385fa543 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b88afc8 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d7fb67b snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ff38647 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4118d164 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43b89f7e snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45b68b80 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46b71b40 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a1a7eaf snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4af8bd3f snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x523d4651 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5471eebe snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f416d90 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62488929 snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65a628dd snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x697e5232 snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a1a1715 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7279e249 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a556e12 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a769016 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e1c86f7 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f3765f8 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80d1cb10 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x818add32 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82cc655e snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8347c055 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x852728d0 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c63ffc1 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fd8dc64 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90402da4 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92d5d96e snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94aef3df snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a96ac38 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5097282 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa726a325 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa779fac5 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9415253 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9699185 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa98f6183 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf84e92d snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1c2ce96 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb28bae9a snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb366480b snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3b58e2b snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5f7a7d0 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb613f3a1 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb905c952 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba3a130a snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc023e8c 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 0xc006ec6c snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2274967 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc251b739 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc60dd767 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc84b09a6 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8a27816 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca92928d snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb5fad28 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0c8d533 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5c5c2d6 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb619073 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbe86938 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc0dd661 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1643007 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1c6d6c9 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2ad7e32 snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe60ea889 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe766cabf snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebb89320 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebd6da49 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefab4800 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf20b92b1 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2e29b42 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf35e5c1a snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf41f7b77 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf47c46af snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9716ec9 snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa0dbca1 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x67d694f2 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xcee111f7 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x13e9e35b snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x45096e64 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x751f5969 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa3283984 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf10e03db snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf6f37713 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00f6816c snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x020b0904 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03af57d6 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0645142c snd_hda_codec_load_dsp_trigger +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 0x097f006f snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a373569 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a9d0f35 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c60fcb4 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10da04ff snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12335e7a snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12f6d391 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13b0974f azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14649ed6 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x181efb91 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x196d6444 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19845c18 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e5909b4 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x218adc7f snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21a782c6 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21e17bb3 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21e76ef8 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2577b5cc snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x264cb59b azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27555771 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29854cab snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29943952 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29ff41ad query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2de92e10 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32206335 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35194566 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37599f90 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39b92467 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39d43f8f snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a5ab0ba snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a8175d9 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b7df2f2 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f2a0605 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42da88d0 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4489f856 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a6761a4 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c4548ca snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d866673 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e1647c9 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4efb6d48 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f131965 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f289c5a snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50abef70 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x517a0f49 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54f53b3a snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55675e11 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55eab0b7 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x575f806b _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58e08ad8 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5da78258 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f25c9e3 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f453fc1 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60843903 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x617a833d snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61cdfb42 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62ecfa62 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65399409 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x653caa4f snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a7f54ed azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a8a0354 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c141046 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d111367 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d7304cb is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x717e9071 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x777be624 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8067538f snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82cf424e hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x838e8876 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bfd4b4f snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d05f36b snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8dd14edc snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4fe632 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x907f6980 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91cab33d snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x926dd92f snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9319f177 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9368a9b2 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93c8649a snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fe69901 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa23416c0 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa89a0dcf snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabdbd6ec snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf6965ca snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb448c3c5 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4d015e0 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb57dc847 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7e58787 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbada37c0 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbba1c980 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbeb0c4da snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc64fad20 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca62fed3 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca91c723 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcaa99d71 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcad8b638 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbc00702 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1a8ac21 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd397da45 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4fc9750 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5fca2eb snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7c168e9 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda8dbdff snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc4e6bd3 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcf6111e snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd23918a snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd505d29 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddaa8f3f snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddc81cef snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf4d5fda snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe07a784e snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2dce017 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe301d4a6 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3848402 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe67ba7b3 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9eb0800 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea43120a snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xedcf89da snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee98c4bf snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf10c7b87 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf245cb15 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6d01e9b snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf78c002f azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf99a749a snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9ca418f snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe953a3b snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x032ff98a snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0b44e988 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0bbfa696 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x103b1b54 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x12f29545 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x133d8095 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15d313fb snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x499d4be8 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x52afcef6 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x703b5c6f snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7c2b7951 snd_hda_gen_parse_auto_config +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 0xabb50cd2 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba516a0e snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc3f188bb snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc5868e22 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd41be44c snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdf7d3939 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe44a2c54 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe61511f2 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeabc07a7 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xed608ae4 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xdc9857c6 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x361a4a90 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xad0923cd adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1fe0aed8 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4809b809 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4ad2edf7 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x56d501bf adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x64eeecdf adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x91686cd8 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbda06836 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe27db02c adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe5be4fd8 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf0ab1462 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xecadf474 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x83768c03 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xb85e2f38 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xd83726c7 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 0x1f5d332e cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2fc427d8 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 0x463ab196 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4cf06237 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x899dc6bb cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x92eda922 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 0x96aa679e cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa62dc9e8 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xbcef8ff2 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc878f24d cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xcf4964fe cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf113b2db cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xfaa564e8 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x14693eb6 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x91720d39 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0e7414c1 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0e8b6a16 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8a101b02 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd1685e81 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf7fe016c cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x02654e4c cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x256ea92a cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6e799acb cs42xx8_regmap_config +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-es8328 0x83f9afd6 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xdd66e1a1 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x15f7fb23 hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x70d13c14 soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xe806befa snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x7876e539 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xdfd86a30 lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5d318a98 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7c64df64 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x863149c0 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x9287bc21 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x99bcae15 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xa56d4f05 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xc704659f mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xed009b27 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x0210983e nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x32a867b4 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 0x0e6e60b7 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x16a0cb46 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x65077cd5 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1396d935 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x62b7d0fd pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x115d9dc8 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x4b71e5c6 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x02cc0e36 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9e744de9 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe485d3f0 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xf2aa27b9 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x60fd3848 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7e7779ef pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc8773869 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xebf819fc pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x01d32634 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2e7975b3 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x51a3ddf2 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x74ac5e61 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x95244bb1 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa8d31bbd rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9e6a6d13 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xa3152251 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x7d310420 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0909c667 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x093ad495 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x346bc544 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7b170d8c rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x86e7e577 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9020b68f rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x99dc3295 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9a0c6698 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xae0e2c53 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc077a9e0 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xec418165 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x10c1194f sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2d5ab798 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6f9c46ec devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf2d602a0 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xff68d3e1 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x35a766af devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x82728ee2 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x37b92999 src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x3e9150ad src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe7549712 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xfbccfbc2 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x17e279ed aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x1e3f2902 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x1da4a1e0 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 0x27c3122d wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4181f6af wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5810a82e wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6c30a04b wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x9471de97 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x02680df1 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x03623d71 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x03866f43 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x21d4bbea wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2471f974 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x44825b31 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x485ac246 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x48f928e1 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x515070c3 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 0x541a5500 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7aef2380 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7f4a611e wm_adsp_fw_get +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 0x8cf19a17 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8d9a94d5 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9b5bda54 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9e3a999b wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa3353ea0 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa5ff5ac2 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc99d88c9 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb32e32d wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcc962561 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd18535e9 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe52f03b8 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf011d507 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x7be40a78 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x8ce57353 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x05b12213 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x144e607d wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3e612c23 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xab60aadb wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xf421f25e wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x83ffefce wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x0b5ed921 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 0x366cd6ba audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x2e0ddc12 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x4544f1bc audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xc3affebb audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xd4ec7a87 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x02a33487 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0340ac94 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0d27c34c asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0efa3452 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1718d13c asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x21bc4efc asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2c5758e1 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x34d8d1fb asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x355b52d7 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5956cd13 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x70aafd11 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x773212a9 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9f049807 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc8b2fbda asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcaceb4cc asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xccea5282 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd84c936a asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe2e0bbf3 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xedd03474 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3097481 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf856be75 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfe9ca0c0 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x008b2e38 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x023ec13f snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02f35c00 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04ba71f6 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04e7c546 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x066baa83 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07a923e3 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x093c4ff2 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09fa0a0e snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a51a0e8 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a7f8cc6 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ac62c1c snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d3eec89 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e189223 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f39de59 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10b4d52f snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1103ccc1 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11dc500c snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x123121a2 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x127c44ae snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1380f4c3 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x149f2fd3 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18c079b1 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x196c1470 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a2dcd43 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a4aedb2 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1abef8ea snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1beecad5 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bfefaa8 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c1ac0d0 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e580f41 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e83a5d6 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f596316 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fb35fbf snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22118192 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2363a419 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25d5e8d4 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25eb9c1f snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25ed2884 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28d0d0a7 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2937cca5 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x297a4cfc snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bdcefd2 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c2f7ce6 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cbec48a snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cedc967 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fe96578 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3276cd37 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32cd7cf5 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34875f80 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3572b9e3 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36f2419a snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36f331d1 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37879b2b snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38241c84 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38bc3df1 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x396c0666 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a0c7c50 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aba9fef snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b80b89d snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c0725d6 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c31fcb3 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f78c0a6 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4090e37c snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x429db126 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44b74432 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44c5348c snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44f86b9b snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4647e68e snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46ca4092 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x488bb00c snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48b4a086 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b45a707 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b721717 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b7e328b snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c977bf4 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e858fe4 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f7cfaf8 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5020f053 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50e02d82 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x510ba7e0 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51a05563 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56e750bf snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58d96c59 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59300a12 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a1246ac snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ab00244 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bccf875 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e0c3e7b snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ea901d7 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60441f74 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x617ad365 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62757e4f snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x631477d6 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6473322b snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6507b377 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65cd4f4c snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65e62bb3 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x684b5bc1 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x688d25d0 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68b86756 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x695afb40 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69807746 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69e71667 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ab1992f snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e4c5191 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73148aab snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7633d9a2 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x775b2645 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dc18d60 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e35093f snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ec88b97 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f86c070 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80678e99 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x833b83b2 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87053648 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89ae4b64 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ccfa1b9 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ddc1911 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e17d098 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91c65d46 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9256f291 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92964b32 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x930cda92 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x944dbbdf snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x956bf0fa snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9599cc61 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x971f8ab9 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9785cf97 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x978bbf99 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98cd8ab6 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9901c9ef snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a72a92d snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d13daf6 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fb864cb snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa03d39fe snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1238604 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3673758 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa45613da snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa663f299 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6bc34c5 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7dc2716 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaebb188f snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaee47432 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafa1ee24 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0de44bd snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3cf11af snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4483bbc snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb51841d0 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb64be346 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb88ab3fb snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8b37080 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba5b0c19 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc2c8029 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd0fb3d0 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd2475e3 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdae077f snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc006df97 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc05a68ff snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc05cd07e snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0f58b28 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc15ec4bd snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc750bb05 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7f61dad snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc956d7dd snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca1dc438 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca94300c snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb2fa43b snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbb46eab snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc1e5c66 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdd05361 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd13f5683 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1b1fe32 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd219c101 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd22d8afc snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd280550d snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3a28bed snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd77dba3b snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9eec4ef snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda8aa1c8 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdad49b10 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbdf606d snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddf90e50 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe11c23f5 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1dc39e1 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe218bee5 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2400fd7 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3e62170 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4575692 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4c9ed46 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4d9cab9 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe515f446 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe76cf8fb snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe84f40a4 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8cf77e2 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe94adaa1 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea16a8a5 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeab9b336 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb0746c8 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecc4666b snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0054760 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf050f87f snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1fdc1b4 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf53043bf snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf697d27c snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9ced505 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa08b770 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb2b46e2 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcd868e6 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x22c0df23 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x35146cdb line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x37bb93b3 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x38a2bf1a line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x458ec045 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x49ab5389 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4a328dcd line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x63108688 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x69530c52 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6d280443 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7717572d line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaecf3eee line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb1648610 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb7b4842e line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc69761d8 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe653f724 line6_probe +EXPORT_SYMBOL_GPL vmlinux 0x000edeb4 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x001e5efe blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x002e836d ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x00302848 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x0032cdb1 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x006cff75 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x007fff25 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00a58f4d regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00b5e4a2 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x00c6a61f clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x00cdce86 pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00e2a120 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x00e359b3 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x00ea87ed nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x00ec05d8 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0112e0a9 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x01175adb dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x01318e0b perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x013d64dd sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x013f222c __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x0159c819 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x0177f122 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x017b27a6 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x01848d9a msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01907648 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x01953993 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x019a0863 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x019a6832 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01af75da blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x01b21950 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x01ba74a5 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x01bb6c4e blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x01bdb5b9 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x01d0fa65 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x01d7a8bc rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01f11c54 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x01f38102 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x01f5027d md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x02001e89 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x0205a907 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x0206a812 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x02261f31 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x02329eae __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x027acb7b of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x027bb5a6 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x029692ec disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x02a08575 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02cf5c83 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x02ef3af7 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x03026f99 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0317a695 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x031c6a26 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032810d3 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0328d4b5 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x03294a0a wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x032f448b of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x03321a23 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x0336fe3d dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034d1cf7 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x0353c29d switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x035d521c udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x03646338 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x03647c62 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0378f79d dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x037afe6b rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03978082 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x039dbb06 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x03a73a22 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x03bab6e6 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c13755 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d2f0d4 kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0x03d494ef bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x03e5e2b1 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x03e7c4c8 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03f5e5cb devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0424a10b nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x04258796 opal_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x042e3464 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x042f275b crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x043a2710 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x0444ed71 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x045247ae of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x04616d76 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046ef04f page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x04798f4f ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x0494a7ff cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x0497a672 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x04b72f5f platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x04b876f1 gpiod_set_value_cansleep +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 0x04ca1fc5 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x04ddde64 kvm_alloc_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x05017242 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x051f18cc fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x05256d81 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x0534296f device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x053cf9f2 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x053f5667 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054e8da7 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x0558ab4a freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x056ffde3 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x057697a7 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058d5183 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x05a0c9c7 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05b36968 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x05cfc89a wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x05f15309 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0620fa91 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x0622e9e6 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06285d2a leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x062c9986 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x0631f485 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x063b4b7f device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x064decc3 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x0654ff24 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x065a11d2 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x065ab2aa task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x0663810f ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x0683d0e7 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x0690c222 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x06949057 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x06a3306e balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x06a88b5c device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x06ae032a regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x06b510e1 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x06b97c50 pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06dad915 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x06de8276 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x07021ee2 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07060598 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x070e45b0 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x071ec5ae uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x073a175c dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x07449242 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x0744e2bd msi_lock_descs +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 0x075f829c dma_fence_unwrap_next +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x076ded36 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x0773c55d bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x077685b4 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x0780415c __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x078cd6fe pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x07a261cb blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c1a735 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x07c1ca44 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x07c42399 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x07c43fe8 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x07e62da5 decrementer_max +EXPORT_SYMBOL_GPL vmlinux 0x07e7fdd5 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07fd7add sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08448c0b fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x084c7610 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x085295c2 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x0852d2b9 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x0856aafc irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x08580828 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x0858dd7c driver_find +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x0882f5da of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x0892b094 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08c311ce dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08d5c014 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x08dc81e2 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x08e42e8e serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x08fcea3b crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x08fdc338 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x09058530 enable_kprobe +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 0x093bf326 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0951139b vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x0955c4ed ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x09673fab regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x0987f875 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x098b5f94 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x098cebae of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x0996b27c debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x09a021b9 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x09a5ac18 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x09a7409f xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b5b2e8 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x09c0921c class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x09d06fcb account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x09db4283 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x09eceabf crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x0a08fdd6 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x0a13d5c1 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0a2c9934 kvmppc_check_need_tlb_flush +EXPORT_SYMBOL_GPL vmlinux 0x0a2f7d55 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0a305646 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x0a41a37c hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a45add5 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a480ffb pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0a4d5956 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a5e0a10 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x0a638895 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x0a63c0aa gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x0a6f1d60 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x0a70ce89 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x0a72f564 split_page +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a9aec61 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x0aaa1dc7 kvmppc_save_user_regs +EXPORT_SYMBOL_GPL vmlinux 0x0aaf67f9 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x0ab316c5 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x0ac803ab of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x0ae12753 devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0x0aefcb60 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x0af4798b usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0afc7fcd fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x0b02d975 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b102e4c vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x0b1d3868 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x0b1de17b crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x0b213eca tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0b2cd010 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b2f2737 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0b3471ed platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x0b367771 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0b437540 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x0b5147c0 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x0b55f492 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x0b5906f2 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b678568 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0b68562b xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b74445a crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0b7b3423 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled +EXPORT_SYMBOL_GPL vmlinux 0x0b97f979 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x0ba0917f crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x0bacee7a gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x0bae8637 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x0bb003b0 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc1e629 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x0be8e6f6 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0c081983 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0c173a00 vas_paste_crb +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c2e641b xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c331012 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x0c402cac replay_system_reset +EXPORT_SYMBOL_GPL vmlinux 0x0c459330 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x0c7ffe5f wm831x_bulk_read +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 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc65cd3 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0cc7cddc usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0cd30389 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0cd73854 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize +EXPORT_SYMBOL_GPL vmlinux 0x0ce946f7 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0cfe3724 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d06b359 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0d075d24 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x0d099414 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x0d125ab6 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x0d138371 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x0d16ee65 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x0d1926c2 md_start +EXPORT_SYMBOL_GPL vmlinux 0x0d23b2ca virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x0d248094 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0d2614a0 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0d281509 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x0d30c7a8 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0d389db7 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d3a6819 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x0d3e778e raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d400678 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5a2950 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d5fb31d dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d7f0a73 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x0d88fd8f devres_release +EXPORT_SYMBOL_GPL vmlinux 0x0daae0af icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x0dacd741 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x0dae723b dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x0db9877c devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0dd5d1bb usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0df9b260 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0e0a168b btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x0e0b1ab3 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e25f6dd devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0e28c417 mas_store_prealloc +EXPORT_SYMBOL_GPL vmlinux 0x0e2a9ed6 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0e2b5dd3 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x0e465f74 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x0e4c02ff msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x0e521b82 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e70e2e8 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x0e798ff3 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0e892dcb devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0ea2a72b usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ec32fa4 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0ed32065 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0ed39c2b handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ed78f75 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x0ee37e19 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x0ee7b1a4 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0ee8e400 kvmppc_h_set_xdabr +EXPORT_SYMBOL_GPL vmlinux 0x0eea5a5c iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x0eea8dad blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x0eeb72c3 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0f097e24 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x0f11f0bf dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f39f035 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x0f3ea019 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x0f572e59 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x0f6d4b63 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x0f6e2294 mt_next +EXPORT_SYMBOL_GPL vmlinux 0x0f82855e sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x0f961789 alloc_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x0f9b2038 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x0f9ebfc7 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fc966e4 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0ff2d0c9 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x10078b63 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102370d5 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x103b3e84 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x1050f25e irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x10627d5f crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x107454e3 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x107ba32e devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x10a26931 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x10a64860 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x10a65e2f ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x10a8eef3 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x10b77a09 kvmppc_p9_enter_guest +EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10e31018 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x10e844f1 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f2b32e hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x10f5a2a3 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x10fe219a __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x1101222b __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x1101e201 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x1107bae4 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x111e6dfc pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x1141e784 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1144d1e8 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x11458888 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x11638a69 xive_native_alloc_vp_block +EXPORT_SYMBOL_GPL vmlinux 0x1168fddc fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x117ec9de nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1182cfdc fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x11858c48 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x118876ca __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x118b539e blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x118ca374 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x11904693 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x11a102bf usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x11b13fc6 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x11b563d3 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x11c2ec90 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x11d88d68 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x11d8a40b nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e880b5 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x11ef6e11 pci_p2pmem_find_many +EXPORT_SYMBOL_GPL vmlinux 0x11f85e71 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x11f87a34 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121e2057 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x122ce299 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x122e928e devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x122f4876 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x123537a0 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x1241ff01 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x125475af tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x1258a8d6 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x126588c0 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x12682b8c metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x126b520b inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x12749734 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x1279a388 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x12820cf5 switch_pmu_to_host +EXPORT_SYMBOL_GPL vmlinux 0x1283683d kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x129a29ab copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x12aa5358 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x12bc0d39 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x12c24faa dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x12d36f71 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x12d5ef88 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x12e6e6a0 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x12e92858 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12fa4dd9 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x12fae502 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x12fdcfc7 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1323c37b xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x132db64c __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x133729da hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x134f76bd rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1356487f vas_register_api_pseries +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x13722c17 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x1376982c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x137e955c iommu_tce_table_put +EXPORT_SYMBOL_GPL vmlinux 0x138368a2 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x1386bf28 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13935b2e add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x13969cb8 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13aa74d4 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x13b31678 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x13befdfe pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d02e76 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x13d2ca0c dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x13d83c05 get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14096b27 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x14352e53 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x1435b4e1 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x143c1e66 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x1453597a securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x1456e260 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x145bfcad regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14770373 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x1488f463 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x1490f431 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x14b195f8 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0x14d42093 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x1510e25e devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x15155903 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x151a431c raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x1524e416 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1537c7f2 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0x1538156b dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x153ab572 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x1546b673 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x154d141e vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x1562339f iommu_flush_tce +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x159444f7 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x15984535 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15aad462 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave +EXPORT_SYMBOL_GPL vmlinux 0x15c0981d usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x15c0b963 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x15c1e421 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15ed61af skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x15f36f87 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x1619e8aa reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x161e51ac tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x1622470f mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x162846f4 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x162b875a usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x162e9b97 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x16369a27 xive_native_sync_queue +EXPORT_SYMBOL_GPL vmlinux 0x163d97a4 eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x163e8970 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x1643753b gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x1644ada7 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x166190b4 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x16a27da1 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x16abf66e crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x16b9afe1 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x16bd36b2 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x16c1264b ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x16c5ec08 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x16d2286a vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x16d2855d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16de4671 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e8c8a4 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x16ed1323 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x16fd63c0 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1716e3ff xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x171874b2 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x171b3ff6 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1723755a fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x172c0b05 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1739cf21 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x174bf9dd __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174eedd0 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x17528d89 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x17533dd0 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x175ddaff iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1787c544 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x179a32ad cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x17a5320c devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x17a5d4e7 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x17a6bff5 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x17b80704 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x17bcc3e5 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x17c06587 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x17c2cbfc hash__alloc_context_id +EXPORT_SYMBOL_GPL vmlinux 0x17dcec38 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x17de6547 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x17ef85e9 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x17fcb161 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1807bc17 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1808681f device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x18094049 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x180e803c of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x181e9bf6 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x182b91f9 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x182e6d0e irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1843e540 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x1848a7dd srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x1849246e rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x184e2fac sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x18654dea trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x186eb8c3 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x1875fd6b hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18826cfa pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x188446f3 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1885fd8c fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x188c38d8 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x18953952 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x1898ae23 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x18b5779f dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x18b9a498 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x18be0194 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e654ea fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x18edb9d7 inet_pernet_hashinfo_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18f185f3 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x18f35394 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x18f459e0 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL vmlinux 0x1904ce4b eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0x1917d710 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x191e7167 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x19365ada dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x1938736f iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x193ceb05 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x19579b5f crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x196086f9 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x196f0c8b badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x1972a96b clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x197786a0 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x197b9cd7 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x197c282a usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x19879bf8 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a6ce1d gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x19b2c6d6 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c3c35b of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x19d06cfb modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x19d93f6d __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x19dab35b ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x1a002550 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1a078a0a usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x1a0eff98 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a207595 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x1a2550ec irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x1a2b567e devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x1a5bf828 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x1a63c748 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x1a6877bc rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1a6bbe5e gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a6de11b nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x1a6dece8 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc +EXPORT_SYMBOL_GPL vmlinux 0x1a8327ee device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a95078f tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1a9630ce __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1a9a70ef fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x1a9c20b1 xive_cleanup_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1aa263e7 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1aaba009 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ade69d0 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x1b2102a9 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b27420f usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x1b2b83be crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x1b31e8c8 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x1b320af7 pnv_pci_get_presence_state +EXPORT_SYMBOL_GPL vmlinux 0x1b3d6934 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x1b4c8502 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1b4d222f clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b5c2118 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x1b607a97 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x1b64dd02 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1b6c94a7 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1b6d7e12 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x1b71e83d irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1b7eb87b dev_get_regmap +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 0x1ba31864 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x1ba98696 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x1bacf7de pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bccc11d device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1bd35cdb dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x1bd91ebf fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x1bfe23cc perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x1c00357e of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x1c16795e pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0x1c1cddf9 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c1e0741 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c248ff6 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x1c25a5c8 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x1c25f066 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x1c2c526b serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c59077e kstrdup_quotable_cmdline +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 0x1c671826 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x1c69e41b class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c8144ea __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8bca8d emulate_vsx_store +EXPORT_SYMBOL_GPL vmlinux 0x1c906793 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x1caf2d71 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc5b61d relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x1cc764c2 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x1ccde2d8 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x1cd26704 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral +EXPORT_SYMBOL_GPL vmlinux 0x1ce006a2 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x1ce5ba2f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x1cef3226 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x1cf2a3d0 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x1cfce59a sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x1d066088 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x1d094a8b pseries_eeh_init_edev_recursive +EXPORT_SYMBOL_GPL vmlinux 0x1d1e9648 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d27d409 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1d464fdc dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x1d4c7940 iommu_tce_kill +EXPORT_SYMBOL_GPL vmlinux 0x1d562657 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x1d63feaf sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x1d64e40b __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1d73012d kvmppc_update_dirty_map +EXPORT_SYMBOL_GPL vmlinux 0x1d8d9d66 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x1d9ca8f3 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x1d9f2001 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x1da35a22 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x1da70447 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x1da94d12 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1db5cec8 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x1dba4062 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x1dba60f1 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x1dcd86e8 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x1dd395ea da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x1dde1bc3 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x1df33284 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x1df99605 trace_add_event_call +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 0x1e18c7b8 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id +EXPORT_SYMBOL_GPL vmlinux 0x1e1caff6 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x1e313702 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e5a6a29 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x1e6f72fc __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7f1c70 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e90bd0e da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1eaaf1d8 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec7ffda zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x1ec82a06 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1edac5c3 xive_native_enable_vp +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1f050e36 pnv_pci_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x1f0b780e spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x1f2e3b71 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4fa0a9 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f7d548e usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8699a2 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1f8b5369 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x1f8c0f15 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x1f919103 iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fc16eb4 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x1fca9e0f stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fd1128c ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x1fd8221a badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x1fdb2659 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fed5683 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x1fee58b1 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x1fee5cfd dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2011ebc9 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x202607cc devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x203d3fcd dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x2047deff switch_pmu_to_guest +EXPORT_SYMBOL_GPL vmlinux 0x204d5965 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x205036b9 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x20615020 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x206a1d01 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x2078c657 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x20816023 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20851521 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x208ae509 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp +EXPORT_SYMBOL_GPL vmlinux 0x20a566a5 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x20abe68d devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x20b3f4bb pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x20c0af29 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x20c7dca1 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x20ce6749 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x20cf8337 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x20e01498 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x20e86f71 dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x20ee9856 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x20f113a3 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x20f4eb19 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x210bbe24 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy +EXPORT_SYMBOL_GPL vmlinux 0x21385152 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x216ddcdb wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x217bbbb3 pnv_ocxl_get_tl_cap +EXPORT_SYMBOL_GPL vmlinux 0x21845173 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x2188a2e9 mas_find +EXPORT_SYMBOL_GPL vmlinux 0x2199e93c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c1d9dd nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d0febd da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x21de2a1b irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x22003c05 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2203e668 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x2218bdd5 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x22386d29 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x224f31e4 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x224fb900 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x22652cbf nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2267b331 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x227ad3b6 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0x227ef0a8 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x2283f39d ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x228695e4 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x228716bb regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x2287a824 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x2293614c dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2295a1af pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x2299c0a2 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x22a1c70f dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22d55346 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22d9652a regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x22decdc8 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x22df4101 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x230d5a29 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x230d8659 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x2310605c __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x231747a8 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x232577b2 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2331ce42 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234353d2 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23505d1a extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x23693645 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x2371813a tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x237197af pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x237b5aa0 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23972d32 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x2397f316 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x239bee1d pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x23a749c2 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x23bacaed vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x23c334d4 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x23c3971d fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x23c60aa6 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x23cb1812 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x23d55377 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x23fa7591 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x2404b231 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x2439503e virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x246b0bc4 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x246e09ec genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x247d7017 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248deeb4 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24906a88 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x249ab1cf crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b7eacc ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x24b9f356 mmu_partition_table_set_entry +EXPORT_SYMBOL_GPL vmlinux 0x24ccd820 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x24d1a0bf kvmhv_vcpu_entry_p9 +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 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24fffb1b rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x250d4e6d spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2515c039 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x251da8d4 __blk_trace_note_message +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 0x25458e84 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x2559d24d kvmppc_h_set_dabr +EXPORT_SYMBOL_GPL vmlinux 0x2568e228 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x2576b597 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x257cd22b devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x258bb54b ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x259564eb __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x25a01f7c pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x25a97a92 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x25aea91a genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x25b629d1 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x25ba7369 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c337a9 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x25da3545 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25eb1f92 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x25f5676e uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2630026d edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2644a503 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2657ce0b crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x26731c2b xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26918054 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2693caae devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b10c9e devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x26ba48a7 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x26bd80f1 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x26c0d98c devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x26c70c79 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ce730f vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x26d613d0 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x26da8939 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x26dbb776 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x26e1495f add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x26e3f4a0 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26ff0e17 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x271fbd07 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x2730345a destroy_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x273a956b cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x27410862 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x2749a21f gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x276476c4 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x27658936 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x277d48c5 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x27886598 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x278fb42f ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x279d95e3 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x279dedd5 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x27a79eab __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x27aa7be0 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x27baefc5 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x27be1c8d debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x27c49fbb mas_erase +EXPORT_SYMBOL_GPL vmlinux 0x27ce3ec0 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x27d4138a trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27e7a41f dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x27ec87d1 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x27f4b812 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280427ba register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x280df93e ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x282aa692 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x282b44fa PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2833676a usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x2843b3da of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x285a31c4 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x285e8938 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x28623f5b pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x287236e1 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28996553 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x28a4fae8 ata_scsi_queuecmd +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 0x28b074c0 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28b41def bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x28b5aa28 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x28c8a3db mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x28d0a72a bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x28e3da6c debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x28f7b0c1 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x28fcc15a unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x29011398 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x2904add3 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x29108e6d cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x292ca22c sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x292e9abc vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2940032d pnv_pci_get_power_state +EXPORT_SYMBOL_GPL vmlinux 0x2944e7a9 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2950b972 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x295e7327 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x295ed5f5 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x2963cc58 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x29685948 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x296f065e dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x29726de6 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x297c4c78 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x297d97ef gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x2994fab1 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x29aa48d0 radix__flush_tlb_lpid_page +EXPORT_SYMBOL_GPL vmlinux 0x29c338c2 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x29cdcc8e gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x29d8ca4e pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x29da309f tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x29e22eb4 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x29e547d6 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x29e6dd99 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fb2fa8 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2a064081 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x2a0ad71f regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x2a23459d debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms +EXPORT_SYMBOL_GPL vmlinux 0x2a336698 opal_rtc_write +EXPORT_SYMBOL_GPL vmlinux 0x2a34e915 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x2a3b34cb anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x2a3b8dec serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x2a43af07 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2a482bdc vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x2a49617a nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x2a5d5bbb trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a69c8ff sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2a6bfdb9 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x2a6cb182 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x2a72ca96 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a741db7 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x2a86aea3 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x2a886054 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x2a8b1dab led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x2a90b0f1 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2a9e368c __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x2a9f4a31 blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0x2aa23ee7 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x2aa53581 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x2aaaa04f pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x2aaaafc3 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x2ab7569e power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2abaa1be bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2ad4b1d1 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x2ad55ac6 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x2ae37fc3 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x2aece11b led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x2af34d28 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x2b0e7181 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x2b14376d virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id +EXPORT_SYMBOL_GPL vmlinux 0x2b1fba0f xive_native_disable_queue +EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode +EXPORT_SYMBOL_GPL vmlinux 0x2b43614d iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4c0e1e mmc_crypto_setup_queue +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 0x2b7b5c38 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x2b7ca95d sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x2b856838 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x2b87c37b iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x2b8db853 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2b90993a pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x2b94544f task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x2bb35396 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x2bb37b0d __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2bb688f2 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x2bb9095f radix__flush_pwc_lpid +EXPORT_SYMBOL_GPL vmlinux 0x2bbccfaa dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x2bce968c genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2c020a06 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2c073d24 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x2c13ee11 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c216cfb __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x2c22bb7e devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x2c25bcee pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c33d044 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c391928 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2c4efbd4 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x2c54db67 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c74fb64 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x2c848fe0 mas_store_gfp +EXPORT_SYMBOL_GPL vmlinux 0x2c85fe56 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x2c88d49e clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c969eff dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9ef8c4 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x2cce4795 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x2cd5df3a opal_ipmi_send +EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2ce8afb6 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x2cf7e266 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x2d0920bb crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1b1e7b inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x2d26b8be inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d31976e __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2d39e723 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d65259b devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2d796213 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x2d7e20b4 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x2d95e72d clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x2d9bf618 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x2dad3353 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2daf946b of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x2db9b2f1 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x2dbe3456 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2dc4fa13 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x2ddc9aaf find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2dddb9e8 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x2de82a17 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2defb5b2 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x2df95d33 dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0x2e006a6c cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x2e009d2a devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e04943a usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e1f8089 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x2e209706 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e37f7f2 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x2e417793 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x2e497d88 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x2e543b27 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x2e59822f irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x2e5b3827 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x2e5b69c8 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e659c7b mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e7f8666 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x2e88a146 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x2e8ff5ec mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x2ea2a66d devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2edabe5b virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x2edf7958 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2ee08ff6 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x2eec0ef2 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x2efaf606 pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0x2efc3a60 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f11d8aa rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f3abc9c badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f855537 put_device +EXPORT_SYMBOL_GPL vmlinux 0x2f8a8f74 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x2f9023aa scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x2f9058be platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2f918b1a vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x2f9ec3fb devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x2facb798 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x2fbf7da2 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fd43f92 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x2fe250c2 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x2ffbd18c opal_message_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3001d090 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x30085af6 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x300ced54 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x3010647a pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x301952be gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x302cc1c7 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3032586c usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x30463011 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x305a817d netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x305baf84 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x305dcb48 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x306377f2 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x308aba4a icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x30a07ef3 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x30ab0798 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x30b5c622 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x30b88521 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x30c19e14 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x30d4e216 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x30d75a52 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x30e23660 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x30e2e1d0 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x30e4f299 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x30e88b1e phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x30fc505b crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310b7c29 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x31137150 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x31227ceb blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31269173 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x312b72ce gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x312e43a6 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x3135db05 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x313a5654 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x315fa4e7 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x31867584 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3187c4f4 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x31883085 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x31907a3c irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319bd528 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31acb309 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x31ae8650 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x31bd0156 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d87c17 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x31d99a9f ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x31f278a5 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x31fafc64 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3218f11f dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config +EXPORT_SYMBOL_GPL vmlinux 0x32342f92 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x32427eda power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32560fee skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x32682d13 kvmppc_h_remove +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 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x328647e9 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x32a2b06b trace_event_raw_init +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 0x32ca43db dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32e05115 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x32e9ea71 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x32ef8885 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x330ffbca of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x332bb537 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x3338c4e3 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x333e4a9b xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x333f275b bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x33591554 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335d8073 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x33685bb7 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3372f3f5 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x3377ed98 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x33c0a922 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x33e2fb1e __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x33e49ee3 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f08ae3 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x33f1fdf1 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x34079033 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x34109e58 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x341c4b70 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x342e4286 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x343d256d __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344799a2 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x3449e02c policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x346b0e17 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x347ca858 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x34863be5 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x3490c372 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x34926032 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34b331aa sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x34d8463c is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x34d8ebb7 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x34d93253 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x34dcfd33 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x34e0c9a1 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x34e79d18 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x34ff1642 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3515c197 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x3519573a dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x351c14dc hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353e969d clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x354dcbcb bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x3552c405 eeh_pe_mark_isolated +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x3569c647 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x357a6463 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x357f6874 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35903504 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x35a0c762 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x35cc4aec elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35cd56f2 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x35d62207 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x35e3fc86 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x35ec0eaa of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x35f2e575 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x360423df dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x360fca30 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x36164e71 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x36188043 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362d6ac6 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x36434812 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x367a35c3 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x36913b67 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36ac5f89 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x36b297fd ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x36b4aae8 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x36c09e8f of_css +EXPORT_SYMBOL_GPL vmlinux 0x36c744c2 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x36cf538b fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x36ea5bbe irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x36f97b02 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x3719b3d1 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x372feae2 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x3734dbdc inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x373711d3 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3740f4ca ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x37476e23 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x37588456 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x375a2a9e regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x375cd18c vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x376336be register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x37807a04 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x37927d5a pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x3796aeb0 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x379b4df2 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x379e112e crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x37b479b8 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x37b50fd8 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x37b6d9d9 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37d0527b d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x37d2c070 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x37ed6c11 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x37f60ddb pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x380c8a40 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x380c8f8c nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x3822b9aa kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383afd2e pnv_ocxl_set_tl_conf +EXPORT_SYMBOL_GPL vmlinux 0x38448626 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x385c7cbb regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x386c5f10 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x386ff5ab ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3886bbd8 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x388b582b dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x388ee6be ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x388f59a7 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38ba84b2 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x38c89f62 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x38d23562 badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e59a15 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f24da3 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x3912acd0 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x393a8a28 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x393acfe8 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x394bd38b nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x39500ce2 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x395f85dd bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x396347cd __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x397010dd __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x39791fa2 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39a349f2 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39ccc7d5 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39df2231 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x39eab030 dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x3a05d5da debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3a0c1837 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x3a0d4b57 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a2b1db8 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3a451a45 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a558dce devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a5cc773 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x3a5ecf69 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x3a5f28b0 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a85997b da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x3a8f1068 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x3a94304e __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aaa9756 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x3abf0d0b ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3ac5e1d4 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0x3ac7eca9 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x3ac9c0fb iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad8884f regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3ae54787 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3b0cdbc7 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x3b2bac01 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x3b2bc2d3 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x3b35ae51 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3b3c803c fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5ab98c iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b6dc4ce platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x3b6e5817 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3b757ff3 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x3b79cb43 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b7e9a14 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x3b8d0ce8 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x3b8f4788 rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x3bb53e6d perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x3bb9a422 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x3bcd065a clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3bd1fc6b device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3bdcb844 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x3bdccd00 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf7efad __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x3bf8fa8e pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x3c061b89 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x3c08bd19 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x3c0c30ae virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x3c0cf802 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x3c0d0deb pci_doe_submit_task +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c2a6890 pci_host_common_remove +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 0x3c4839bf nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x3c56c101 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x3c5e21c1 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c5f57f9 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x3c66efc9 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c8146e0 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x3c8357b0 rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0x3ca05bc1 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x3cb17059 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x3cb390ad ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x3cb3caa7 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x3cb3ef8b fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x3cb76904 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd626f7 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x3cdea365 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3cee2bad ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3cfb796d kvmppc_save_tm_hv +EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x3d0aa73c pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x3d18c1c6 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x3d2ad41c regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d4ecea4 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d6666d7 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x3d687d2e rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3d7f2979 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x3d7f8429 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3d9c6dd5 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x3da4a2ef ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dabba17 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x3db31b1d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x3dbdd719 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x3dd941e3 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x3de48abe __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x3de92bd2 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df02661 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x3df21b85 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x3df6efe6 pnv_ocxl_unmap_lpar +EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x3e4ce771 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3e511445 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x3e61a10e genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7651af extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule +EXPORT_SYMBOL_GPL vmlinux 0x3e8b5ecf cxl_afu_put +EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3e92676b pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x3e9a1ff8 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x3ea1ce8a virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3ea709e1 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3ebb9dd5 kvmppc_h_read +EXPORT_SYMBOL_GPL vmlinux 0x3ec412be wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x3ecdaa2b __find_linux_pte +EXPORT_SYMBOL_GPL vmlinux 0x3ed208db spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x3ed6c4a9 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put +EXPORT_SYMBOL_GPL vmlinux 0x3ee76f08 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3f2b6a03 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x3f3a65b2 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x3f41f306 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x3f42daa9 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4cbc31 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x3f4d74bc ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3f5be677 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x3f680e9e irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x3f7c2c79 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3f7feded crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ed689 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3f8fa808 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x3fa46b83 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3fb2234e sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x3fc73cdf screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x3fd02219 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3fd83940 usb_phy_get_charger_current +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 0x3ff96507 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x3ffea37f tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x3fffae8a vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x4003e77c regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x4008207b udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x40212e65 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x4021c3bd tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x402746f6 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x4045b8ab clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x4049ef07 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x405b6c1a fwnode_get_next_available_child_node +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 0x4082d417 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x40885b26 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x408a9dc1 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40b5be99 xive_native_populate_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x40b995a8 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x40c18627 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x40df1fca register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x40e77931 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f3f531 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x40f63bb2 trace_event_buffer_lock_reserve +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 0x41120670 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x411ae8dc usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x412dd4c1 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x414c2c21 __mt_destroy +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414d7aae xive_native_get_queue_state +EXPORT_SYMBOL_GPL vmlinux 0x414e5b68 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x417ab318 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x4194b81a tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a9e542 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41cb6a69 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x41cfd65f edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f3459e crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x41fcfaaf i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x4200452e platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x4203ccef iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42179050 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x4219cbcb dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x42278101 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x422fa56a pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x424795da mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x42571113 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x4258b96c metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4286b8a5 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42a7b4c4 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x42af19e0 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x42b1a79b dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x42d28ba4 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x42e6b765 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x42ef0bc4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x42efa839 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x4308eb30 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x430fdf91 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x43139cd3 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x4314f4e2 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x4327fced blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x43415397 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4349d9e8 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x434ffc15 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x435b885c devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x43698f23 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x43737c2c sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4387f381 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x439ab171 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43b5310f usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x43b6129d badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear +EXPORT_SYMBOL_GPL vmlinux 0x43e4bd7f nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x43e6fd2c switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x43ebdaca crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43ff064c irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x441f6919 pinconf_generic_dt_node_to_map +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 0x443d690f pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x4448c679 mt_prev +EXPORT_SYMBOL_GPL vmlinux 0x4454bca9 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x4456d619 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x447f237f pnv_ocxl_unmap_xsl_regs +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448a88c7 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x449fa45d btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x44a237e8 fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x44a45e07 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x44b09de0 iommu_tce_check_ioba +EXPORT_SYMBOL_GPL vmlinux 0x44b371af bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c2da39 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x44ca69fd unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x44caec28 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d2d9ff sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x44ebfb93 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x44fa8dc6 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450a8b7c pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x45143888 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x4533eebf crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x45426ca4 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x4550b703 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x45597170 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x45647566 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457a419c md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x45824c65 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x45878155 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4597a19b ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x459e22be dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x45a7fdd7 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x45bb24f1 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x45ec4ec6 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x45f0cdb7 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x460084c2 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460239c6 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x460595b1 spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x461dae35 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x46253492 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x46339739 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x464fa20c badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x4651419b ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x46546e69 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x46550f40 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x4668c380 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x466a83d4 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x466ab87e mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x46760fcf skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x467e2bb5 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x467e9716 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x467eb7de vas_unregister_api_pseries +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468f9847 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x4692f673 copy_mc_generic +EXPORT_SYMBOL_GPL vmlinux 0x46a35f70 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x46ae3e05 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x46b38d2c regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x46d6437c iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x46e465de klist_init +EXPORT_SYMBOL_GPL vmlinux 0x46ee6a7d dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x46f660c3 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x4705c76c trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x47154327 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x47156e13 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x4719a5e8 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x471dfea7 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4723e873 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x47387996 pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x4738e31d scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476bacef extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x47742075 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x477d39dd ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x4782a969 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x4786d81e nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x478eae60 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode +EXPORT_SYMBOL_GPL vmlinux 0x479a48be crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a1fbe1 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47ad06f2 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x47b7a692 cpu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x47c30c14 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x47d4483e ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f4196f watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x4801ded1 sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480307f7 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x480e83ce shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x4811c4e7 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x48506a20 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x487ac245 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x48844e71 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a9e36c devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x48b0d6af irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48d61956 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x48df171f tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48e0670c fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x48e3f6b9 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x48ef9330 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x48fca457 devm_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x490d414b iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x492ab2f8 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x494ff224 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x49537b54 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4975b8cb pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x49788096 pnv_ocxl_spa_setup +EXPORT_SYMBOL_GPL vmlinux 0x497fcf8e stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49b198d3 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x49b27edd dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x49c24812 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x49c3a87e regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d184d2 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x49d4c95c ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x49dab21e __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0x49dadf99 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x49e21fa5 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ebca80 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x49f0f98f __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x49f29e28 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x49f3b073 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a0b02dc of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x4a11ba0e static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x4a128efd rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4a176bb6 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a181706 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x4a396d77 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4a3d6329 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x4a466260 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x4a4a8c02 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4a5370bd __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x4a85df78 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4a92507c __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4a9f047a tm_enable +EXPORT_SYMBOL_GPL vmlinux 0x4a9f8e32 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x4aa6a1a1 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x4aa91321 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x4aab7fd3 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4ab0bb90 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x4ab1ceb3 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4abf9726 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x4ae68207 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x4aff86ff phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x4b1cdb74 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x4b20b281 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4b24c312 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x4b2d143a raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x4b30a30f regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4b50e93d irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x4b61088d fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x4b6474e2 vas_init_tx_win_attr +EXPORT_SYMBOL_GPL vmlinux 0x4b8ed523 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be9ace9 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4bef0884 pgtable_cache_add +EXPORT_SYMBOL_GPL vmlinux 0x4bef38a4 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4bf33a36 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x4bf4c50d gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4c0934ae usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x4c17f06f gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x4c217c2b gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x4c286603 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4c28758f blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4c2a2010 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x4c2a6e23 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0719 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x4c2e7e65 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x4c40f8eb tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c56eccd devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c5bc007 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4c5cabe6 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x4c8c1eb9 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4ca7bff9 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4cb08cc4 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x4cb0d149 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb72847 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x4cb73a34 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cc10679 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x4cc13906 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x4cc4339a of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x4cd922ca pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x4cf1c402 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4cfabe5f crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x4cfb2dc1 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d00ebd1 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x4d030e65 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x4d1f71ad clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x4d2778c8 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4d295880 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4d2ad129 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4d33fd2b validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d40fa8a unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x4d4b5ab5 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x4d5a5dc5 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d6e2e84 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d7db092 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x4d7e8126 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dc52c09 pnv_power9_force_smt4_catch +EXPORT_SYMBOL_GPL vmlinux 0x4dc8d8be ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de9ff08 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x4df59d24 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e03f59d switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x4e07ca68 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x4e17af6c wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e21e218 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x4e227224 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x4e2cd994 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x4e46aa18 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e57b1cd devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x4e584442 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x4e661ed3 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x4e684bbf ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x4e698590 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x4e6b5c0c dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e769167 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4e8e72e9 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x4e9e9ae2 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4ea16bd2 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4ecaabce vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x4eceaafb pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x4ed0a1ae blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x4edf6814 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x4ee5f80f pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efa2795 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f15a140 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x4f245a0c __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x4f274863 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f34948c io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x4f629b67 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4f65d1c1 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4f66d6e6 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6d8a67 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f883d45 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x4f9dd246 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x4fa52573 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x4fa60ab5 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x4fb147de power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax +EXPORT_SYMBOL_GPL vmlinux 0x4fbc39f3 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x4fda761d i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ffd973e fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5001f0b8 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x500f29c7 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x5017d1d4 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x502a0317 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x504460bf verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x5048d5a0 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x50519a1d vp_modern_set_queue_reset +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 0x508aeb99 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x50919fbf of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50c357a8 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x50c4f8ef pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x50c8dbea vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x50ca916f of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x50cb4c1e ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x50d950bb set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x50db1c8c soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x50dcdc61 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x50dd1af5 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f3ed90 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fe1f46 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x510e3e18 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x51173d4c switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x511a6e32 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x512016bc class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x513100a3 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x5137ef0c dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5146d2e8 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x514b2653 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x5150c37a devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x51522166 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5177930e device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a59a18 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51aaba68 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51ccea87 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x51e4ee8a tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x51fcfa1f iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x520cb1ac cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x521719a3 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x5218135e devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x521d26ac tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5228bbc3 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x523aeaf2 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x52699f36 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x527f5d65 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x52830c76 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x528aa281 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x5292051b thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c064df rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c803e0 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x52c9a973 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x52cb17b7 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x52d48d30 iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0x52d4d5bb crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52d8e80a synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x52e65a48 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x53042261 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x531ebfa1 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x5327f813 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x53389db8 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x5343e795 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x53533841 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x5357cbd8 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x536c3a51 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x537167e3 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x537d0e90 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538e4d7f tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x538eea4c l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x53b300c2 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c4d71d power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53d9f73a sensor_group_enable +EXPORT_SYMBOL_GPL vmlinux 0x54062372 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x54084e05 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x540ffc40 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x54193ffa of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54267fc6 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x542cb188 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x542ecda3 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x54337c73 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x54408483 generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x544ecbf6 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x54503ff1 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x54644f4f devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x5478f2c3 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x54914113 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549b9db4 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x549c7813 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0x549cca4d cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x549e9680 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x549ed095 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x54b3dc6d devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x54b8ab22 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x54ff0640 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x55039444 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x551acd8f rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x5520c8bf blk_crypto_profile_destroy +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 0x554c086e thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x554c1494 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x55548b5e pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x555ade5e devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x55676c9f __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5570910e iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x55728311 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557c0e1f __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x557c622b wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x559c0148 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x55a261ba watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x55ab5615 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x55b6c10a usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x55bb4a35 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55cd711c devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x55e6acc2 devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f093a9 opal_write_oppanel_async +EXPORT_SYMBOL_GPL vmlinux 0x55fb2b25 fscrypt_mergeable_bio +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 0x5617638e pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x56186d6f pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x563233b4 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x568320c1 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x56a64d1b mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x56d2c43a usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x56d59f91 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x56dde73c free_uid +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x570c55bc tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x57121e1f ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x5736a330 mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0x574491d5 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x5749983c __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x575f1c02 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x5765512a spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x57730f7d led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x57789bc5 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x57824660 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57950bc6 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57ad4be0 opal_int_eoi +EXPORT_SYMBOL_GPL vmlinux 0x57b7ed12 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x57bd99c8 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x57bf0ac0 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x57c901de iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57ecdda0 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x580a36fc pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583bcebc lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x583cd84b cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x58611807 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x586bef6b of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587f1ad8 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x5882f996 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x58841961 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x58bb6e0d regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e2a18b bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x58fdc66f fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5909fc18 opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0x591c8c2d trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x591d4c88 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x592aee55 device_add +EXPORT_SYMBOL_GPL vmlinux 0x593eeb3f gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x594291cf __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x5947a26b devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x5954a3f3 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x59571063 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index +EXPORT_SYMBOL_GPL vmlinux 0x5979832b seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x5980720d rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x5987e19f device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x598ee43e __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c5b962 buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0x59cc8c9a mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x59d66f47 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x59db5254 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x59dbb577 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x59e10531 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f43600 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5a122ac3 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a1c4500 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a3b11c4 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a5fe6cd __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a87949a devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x5a9ab1f7 user_update +EXPORT_SYMBOL_GPL vmlinux 0x5aa60b4d gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ac742cb tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x5ac8acf9 regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x5ad19839 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x5ad2f4bf invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x5ae31244 kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0x5aeaab73 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x5aeb5cfe crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x5aed5392 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x5b041b62 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x5b0c0d69 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x5b0de5e8 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b329808 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x5b347a8c inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x5b40dbc7 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x5b5d3ebc skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x5b61eac7 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b72e566 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x5b8997f5 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x5b95431a of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x5ba6fca6 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bbecf3e xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x5bc66c26 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x5bc8e5d4 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bcb5523 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bcd3347 fsverity_file_open +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 0x5bff0c88 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x5bfff303 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x5c0593df stmpe_dev_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c0ff02f copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x5c10f79a inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x5c2b763f bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c47f61f mm_iommu_is_devmem +EXPORT_SYMBOL_GPL vmlinux 0x5c49247c mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0x5c524822 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x5c56b6ef dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x5c58a56b mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c85146b xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0x5c86488a vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x5c8c5de7 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x5c98a862 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x5ca59ba4 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb40e95 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x5cb99d97 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x5cbff1a0 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x5cd305ed digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x5cde4d0c pci_traverse_device_nodes +EXPORT_SYMBOL_GPL vmlinux 0x5cdf5421 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf01cbf crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x5cf0ee5e init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5cf892f4 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x5d16310b bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5d244e22 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3322ab pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5d3dcd72 pnv_pci_get_slot_id +EXPORT_SYMBOL_GPL vmlinux 0x5d5007ca scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x5d7ee9ac __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d8ece8a xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x5d90c988 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da55d97 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db2e2c7 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5db6e76f usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5dbba8f2 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x5dd2df69 kvmppc_h_bulk_remove +EXPORT_SYMBOL_GPL vmlinux 0x5dd7c0ab iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5dd8ff1c fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x5df3e2fc devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x5e00aea4 ucall_norets +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1f1fe4 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5e3b0640 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5e4a0b79 kvmppc_hpte_hv_fault +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e52a2d9 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x5e695473 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x5e6ce5b5 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x5e70492c irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +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 0x5ec8c322 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x5ecc3407 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x5ece6049 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5ed0da6c tm_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ed59440 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x5eeafa5a phy_put +EXPORT_SYMBOL_GPL vmlinux 0x5eed2e38 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x5eedf1af xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5efa1ef9 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5f10e33d regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5f14a33c sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5f14e2ff device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f168bc5 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x5f188468 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x5f19e0e6 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x5f1fa65d balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2ba98d extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x5f512bf9 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x5f58db42 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x5f6c3267 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f9fef7b blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fa8ee3f gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5fb02e4e of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x5fb4ae40 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x5fb74f98 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fe05b93 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5ff89b3f devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6000187c opal_check_token +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600cc455 mmu_slb_size +EXPORT_SYMBOL_GPL vmlinux 0x601fd85d kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x601ff720 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x60367a69 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x60498968 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x605432c9 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6057969d trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x6059c0e8 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x606a1917 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x606cccb2 pinctrl_dev_get_name +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 0x6082a6de devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x6088fc74 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x608f26c6 __traceiter_ata_bmdma_status +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 0x60ad9686 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60ba9d77 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x60bbbf46 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x60d2da88 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f531cb blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x60fa4a70 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x60fb21c9 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x6107ca3f edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x610e952e devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x6118877e rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x611acff7 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x6129c0db xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x6137e97d ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x613f20a4 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x6146c01f hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x6173619c posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x6180322b register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6184b169 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x6185166b fscrypt_fname_encrypt +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 0x619de72d encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x61ae1671 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x61af85c5 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x61b3974f pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x61bc264f pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61bfcb14 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61dc7f0d devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x61e40996 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x61e95643 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x61eeeb2c of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x61f11de7 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x61f4f7be dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x62061069 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0x622a8028 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623e38cc rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6240dc03 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x6241f682 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x6276e60a iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x628148be _kvmppc_restore_tm_pr +EXPORT_SYMBOL_GPL vmlinux 0x628b2c35 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x629ae27e fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x62a05f78 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x62a82b6b badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c8d2c3 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x62cc677b vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x62d6b25b switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x62f24665 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x62f29603 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x63075982 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631e6b0d sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x633b8a55 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x635815c8 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x6359b212 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x63655d8d is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x6377ad1e skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x63809c35 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x63917e5d led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x6392a69b device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x63bcc36a generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c4178d regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x63cac623 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x63de83a7 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x63ec2431 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x640819a7 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x64120456 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x64120f39 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6418789c xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x64223a72 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x643e3cfa ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x643f2e7d class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64417601 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x6446d84b pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x644849f3 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x6456af65 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6466f90c pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x646e3f98 cxl_afu_get +EXPORT_SYMBOL_GPL vmlinux 0x6473301d pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x647ba3d5 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x64b11d6e led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x64bd934e tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x64c48021 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x64dbc106 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f38d18 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x64f3b2a2 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x64fe7302 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x650f74dc ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x65289270 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x652cc648 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x653e8eb5 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x654be426 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x655641ee __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x6566a7ae shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x65675b05 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x65682b21 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x65713431 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x658f6a0d fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cefc7d xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x65d27115 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x65ec5535 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x65ee17da rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x6615ed80 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661ae1d6 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x662c2ee2 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6637cc9c gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x6670e9a3 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x66731dfb vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x667d705e usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66859d4f usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x669368aa ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x669b0a38 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66b9d05a debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x66c247d3 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x6704be78 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x67079948 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x670d2458 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x671cd115 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x671df070 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x6731bbec bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x6739e242 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x675b7fa9 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x675baf40 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x675ea3cd is_pnv_opal_msi +EXPORT_SYMBOL_GPL vmlinux 0x67614ea1 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x67796f9a devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x677a5549 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add +EXPORT_SYMBOL_GPL vmlinux 0x6782a038 tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x67874cc4 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679d94b4 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x679ff8bb devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x67a2838a bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x67b114e3 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x67d014d4 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x67d86f1c ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67f7262e thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x67fe75d1 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x6805feb1 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x6808cc94 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x6809cde0 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x6821be13 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x68252576 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68434f3c bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x685570d4 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x6872a812 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x68786f2e xive_native_configure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6888b164 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x688a8eb5 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x6897b22c devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x689f73ec sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x68a2c50e gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x68b3e7ae nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x68b85bd7 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x68c9dc6c vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x68eff24d phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x6900a24f bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x6909a38b opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0x690bd638 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x690dce3b cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x690e3d05 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x690fe0a9 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x691d4c28 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x69270c8e eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0x6928269b xive_native_disable_vp +EXPORT_SYMBOL_GPL vmlinux 0x69313675 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x693b549e tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x694e558d elv_register +EXPORT_SYMBOL_GPL vmlinux 0x695f5b68 devm_memunmap_pages +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 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x6982d96c remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x69909c13 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x6990ac9c sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x69a54b4c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x69aeddef atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x69b11774 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x69b1fbb7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x69ba690c cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x69c82032 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69da0eb6 regmap_write +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 0x69f3415a clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x69ffdfaf of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x6a03b5be fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a0a5a3c usb_autopm_put_interface_no_suspend +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 0x6a4a1e7c vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x6a4c2a68 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x6a4d3316 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a605cea dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x6a758d2f clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x6a7c9800 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x6aa94658 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x6ab12157 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x6ab1323f housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x6abaf82d nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x6abcd291 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x6ae5d56e cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6ae97d1d inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6aefbd1d tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x6b0020ec to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b2cebc2 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b54f830 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x6b6c8ca1 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x6b7aeb1d of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x6b802daf __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8b6fa5 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bac005b led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x6bac4507 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x6bb09c0c iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x6bc1da14 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6bc846f5 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x6bcbd192 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd1ad74 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x6bebb3d2 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x6c0dfddc nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x6c183bb0 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x6c19deea validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x6c1aaf08 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x6c1bbf31 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c3da2b7 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c3f9ad9 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cc10332 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x6ccc3ef8 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6ce78857 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x6ce9302c set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x6cf3294e blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x6cf4d123 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6d001f88 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d256c94 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x6d2c3cc3 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x6d2e8df1 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d50ffe4 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x6d5e9d64 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x6d628dd6 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6f8656 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d768971 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x6d7a5a51 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8d503d cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6d925856 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbad31e sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x6dc9ac5d i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x6dc9e2f3 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x6dd2ae46 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6ddc9492 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x6df8d3bd usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6dfef2e1 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x6dff44f9 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e09f750 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x6e0ae0b9 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6e13057b iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0x6e23ae97 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x6e2aaff0 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x6e2ae6d9 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e3bf122 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x6e3f4479 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e6170be gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x6e67a0f3 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x6e752ff8 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x6e75cf17 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7970a9 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8f0010 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6ea40cf4 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x6eab5d9a _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x6ebbad5f clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x6ebc8d48 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ed498d0 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f0088d9 xive_native_sync_source +EXPORT_SYMBOL_GPL vmlinux 0x6f0dbd70 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f199cc2 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f3d35f8 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x6f4080d6 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x6f554633 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f70c394 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x6f7bbe6a msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f7fef31 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x6f902270 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x6f927410 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa37985 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x6fb41712 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x6fb92cf6 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x6fbbb413 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x6fc8f83b bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd18466 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x6fd84890 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x6feb5fdf crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff9bce3 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x7004162b scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x70054c4f sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700a16d7 kvm_free_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0x700aff5a inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x7013d02b devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x702c50c9 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x7030dbf5 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7041f2b7 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x704f24ae kvmppc_restore_tm_hv +EXPORT_SYMBOL_GPL vmlinux 0x705358c4 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x70558573 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x707394ef pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7074edaa apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7089c979 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x709965c3 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x70a02e01 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x70bb6840 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x70be15d6 net_ns_get_ownership +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 0x70da689b led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x70e25e0d xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x70f117bd flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x70fbd334 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x70ff6b81 pnv_ocxl_map_lpar +EXPORT_SYMBOL_GPL vmlinux 0x7103b545 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711bf34f fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x711c8d9d int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x7138cb4e sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7141accf pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x7142d492 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x71460087 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7148dee5 kvmppc_h_clear_ref +EXPORT_SYMBOL_GPL vmlinux 0x714c101a devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x71549330 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71693ee4 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x71846179 srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7199d782 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a28f18 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x71a8b307 srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71d8bac0 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x71e5cf93 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x71f3472a pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x72124c9a divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7213768e regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x721623cd percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x721aeb83 pnv_pci_set_tunnel_bar +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x7238ba66 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7249701f genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x7249b860 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x724c2a4c eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0x7251fa8c serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7269e0b8 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x726ea92f divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x72742af9 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x7276f153 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727fb5e2 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72c1f097 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x72cedf04 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d9c4c9 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x72e4ac04 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x73187825 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x733265b4 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x734705c0 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x734e0b01 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x73527863 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7362b694 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7363357b tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x73741ede dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x737895e7 vas_init_rx_win_attr +EXPORT_SYMBOL_GPL vmlinux 0x7384f0e2 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x73938f73 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7399a30e debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x739b3ef6 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b3da08 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x73c11cbb pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x73c24961 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c4029d cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x74050dab noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x74113b85 of_msi_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x7418487e bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74190ba1 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x74199b26 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0x741f989f ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x74376601 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x7445071f switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x746d4fbc get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7483a912 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7489eaea pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x7498bf71 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bd47fd device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74c8c8a7 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x74c949f4 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x74c98ef9 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x74cdfe5f tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x74dbee3c regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x74dcb776 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74e73f70 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x74ee02e4 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x74ef9faf dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x74f1a529 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x74f57712 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75150f15 vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752cdb54 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x7537a344 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x7547cf4c page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x754ba823 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x754ec445 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x756b0191 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x756f6361 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x756fe21c udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x757cfe35 xive_native_get_vp_info +EXPORT_SYMBOL_GPL vmlinux 0x7582deb8 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7587c336 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75aca63f nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x75cec5e5 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x75d33d6d hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x75da0238 phy_calibrate +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 0x76081c88 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x762ea152 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x763e014e to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub +EXPORT_SYMBOL_GPL vmlinux 0x76582de1 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x766215ed ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7663736c phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76684e31 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x767cf17b fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7692695c ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76ae21ac fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x76cee790 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e8dfe4 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x76e9044e edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x76e9b42d dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f2abe0 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76fdf2a4 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x771b6d3f sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x77241934 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x773ea5df kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x774622f3 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x77472864 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x7756ad4c devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7766f7f6 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x77722b90 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x777371c3 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x777d05cc device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x779a6bab aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x77a9d772 irq_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77bc9baa vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x77c5b823 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ea05e3 of_regulator_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x77eb8c3b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f2df7d virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x782fd4d0 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x78417ba6 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x78579053 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785f0586 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x78641d8b __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x786aae26 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x787ad048 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x787bdf99 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x788e538d divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a6966e __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78b25d37 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x78c121f3 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x78c393e5 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x78e58a4e xive_native_has_single_escalation +EXPORT_SYMBOL_GPL vmlinux 0x78ebaade pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x78fd3daa devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x79113e69 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x7924c0cb find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7934db1c clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x793f98bc __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79466167 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x79529664 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x795371a7 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x795881d5 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x79664190 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x7967a0b3 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x799c337a page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x799d0510 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x79b0b23f kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x79b42cb8 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ebe446 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x79eca389 copro_calculate_slb +EXPORT_SYMBOL_GPL vmlinux 0x79f4863e ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a047852 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x7a07207d kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x7a0e7420 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a60a16a adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7a6d903f adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x7a6f773f gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aac88a8 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x7ab12e64 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x7ab26743 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7ab94df0 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x7abf441b ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7ac3dbc8 devlink_port_health_reporter_create +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 0x7ad935b9 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x7adc8edf strp_done +EXPORT_SYMBOL_GPL vmlinux 0x7af33d02 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7af4beb8 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b1df89f pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0x7b228684 pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0x7b2e2bf8 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x7b31d41e dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x7b3929cc rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x7b3c204b __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7b40b87b store_vcpu_state +EXPORT_SYMBOL_GPL vmlinux 0x7b4d443c pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7b4e92ae iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b4ff8f4 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5e1ee3 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x7b783824 ppc_breakpoint_available +EXPORT_SYMBOL_GPL vmlinux 0x7b785f4f tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b802221 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b84b28b of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b8dbf93 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bcf5893 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x7bd97682 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x7be810cc ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x7bffb117 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c438705 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x7c4c537e fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x7c50a6a8 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x7c5db677 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7c66a2a6 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7c70fa02 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7c73a9e0 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x7c9271f8 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca5b4f3 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7ca83412 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb6c90d dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ccda633 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd3a6a0 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cedcb12 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0f896d devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x7d16654a clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7d1957c7 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d1cc97a register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x7d237cf9 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7d279aef icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x7d2c1680 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x7d4445d6 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x7d533714 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x7d557737 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7d55a0c8 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d63bfd7 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7d6ca1b1 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7d734b4b lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x7d74f61d pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x7d7e2df9 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x7d91e5d0 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x7d965846 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x7dac51be usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x7daee516 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x7db8eef6 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7dc18c8c __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7dc2b25e ncsi_vlan_rx_kill_vid +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 0x7de88ba1 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x7df034e8 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x7e016902 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7e0679a0 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x7e07f6c7 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x7e0bb8c2 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x7e0f4331 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x7e1d9017 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x7e1e1bd3 iommu_tce_check_gpa +EXPORT_SYMBOL_GPL vmlinux 0x7e2c1895 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e4a600a phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e640566 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e745cd7 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e7f437d pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e95e698 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x7eaf91c8 pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0x7eb0c5da tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ebc38f8 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x7ec544a7 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7ecf89b6 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x7ee7a2c6 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7ef82e46 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7efcdef6 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f029f19 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x7f2e1833 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7f5fa321 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x7f64638e rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x7f649e44 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7f67b86b debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x7f6fa756 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x7f75a5f1 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f828d9b blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f88a3be phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x7f98918f ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fa5db59 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fc912f8 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fcf95b5 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x7fd960c1 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fe97d84 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x7ff645ab device_create +EXPORT_SYMBOL_GPL vmlinux 0x8005c661 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x80074106 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x800d5fe9 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x802c3a62 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x802c3a6d __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x804092cc ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x8059f639 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x807693e4 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x8078f750 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809b5de5 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x80aa7c8a vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c20c4d fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d44d4b crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80eb3bbc nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x80fa86bc pci_hp_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x80fccd38 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x810c84e7 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x81117221 do_h_rpt_invalidate_prt +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812bcf8b usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x812c9fba crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x8139bbc5 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x814ce0de set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8160df97 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x81614992 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x81634980 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x81674f78 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x817b3e4a sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x817ba166 pnv_ocxl_map_xsl_regs +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8181af08 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x819c577d tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81d06987 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81fe5736 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x820bc6f0 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x820fc801 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x82277312 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x82366d0e mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x823f9a08 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x8259dd91 mas_empty_area_rev +EXPORT_SYMBOL_GPL vmlinux 0x826a048b to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x8298f755 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82b18c41 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82cba9ec sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x82d34227 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e79fae perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x82ed9431 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x830944fa debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x830a1e71 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x830e8e17 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x831f0f77 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x8323159f housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x83269e97 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x832a97b1 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x8335d003 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x83389073 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833b5211 mce_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8345d63f smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x835ca9e8 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x836f02a5 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x83743837 hash__has_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x8379de23 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x8381916d phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x83938e91 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x83aa63b6 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x83b6b3f1 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x83ba232f power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x83bcd0ed irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x83c112fc usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x83d0dcf1 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x83d7b173 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x83d91701 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x83e52e5e cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x83f05de4 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x83f49084 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8413c52a clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x84289934 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x84387314 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x8444a2fa blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x844a6a16 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8467702f securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x846b872a icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x848ce62a cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x8490092e vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x849263f7 blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x8494c460 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x84a72451 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84b8ae40 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x84ba32ed crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x84bf345b ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x84c69890 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x84cdbe20 iommu_tce_xchg_no_kill +EXPORT_SYMBOL_GPL vmlinux 0x84e6f6b3 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x84ec8eee crypto_unregister_ahash +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 0x851aa952 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x852bc0cc proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x852fba90 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x853eac25 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x8541514b vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x85455936 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x8549cee1 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x8556b616 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x855b5f0a css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x855c5218 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x857e558d dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x8583c12b nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x859cf8f4 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x85a9fd9c crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x85b91aff of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x85c02941 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x85c2d8c6 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x85ca5e2c genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x85cdc67d proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x8602ae61 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x8604c3da dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x86124988 led_get_default_pattern +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 0x863ce334 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x8649afe9 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86586596 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x86632908 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x8673a907 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867b0174 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x8683f06d cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x869869b7 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x869c441b pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x86cc428e ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x86d137fc dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x86d163ec led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86e7f044 clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x86eb7fb1 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x86f2d200 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f87600 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x86fb1a4a tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x86ff35b0 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x87087c61 hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0x870e054f __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x87144343 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x87180b75 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x871a3302 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x871a62c5 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x8725b356 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x872724fd pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x87280326 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x873a25ed __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x873ecdfb skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x87510e8d of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x875aaa3c devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x87607dc1 kvmppc_h_clear_mod +EXPORT_SYMBOL_GPL vmlinux 0x878ebbc5 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x87a3a036 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x87ad608d pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x87b547a4 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x87b5b6ff device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x87bc89f5 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x87c22bd9 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x87ca6545 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x87d9459b dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87e5e246 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x87ec184d fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x87f906f1 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x8804974a skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x880ef2b0 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x881638f5 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x8824eaac blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x883ffe3f dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x884dfde6 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x8861ab59 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x886caf0e blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x8877e50b free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x887855fb ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x8894867f virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x88954efb crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x8896df7d mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x88974e53 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x889e356b wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88ad9cee get_device +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88d241da umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x88dd0f3d gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x88dee351 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x890805a2 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x89197277 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x891ab0e6 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x891d58bd phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x891ee666 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8920ec3b ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8927bcba devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x892c4a93 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x892d8fd7 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x8939afc9 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep +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 0x89587ebb netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0x8967f78c crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x896eb302 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x8973e41b usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x89814eae sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8987ae45 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x89ab65bc usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b25c8b thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89ce3e40 fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x89e3608e crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x89f3528a fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a01d28f __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x8a217fb9 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8a23c45e vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x8a34992b of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x8a4e7284 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x8a511d24 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56dac3 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a687a7c __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x8a7d3251 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a90c001 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x8a942fa9 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot +EXPORT_SYMBOL_GPL vmlinux 0x8a9dbcad opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x8ac635d6 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x8ac8ef5e tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x8af85d47 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x8afb1fc3 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8b022f71 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x8b102479 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b15eb69 pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x8b3cff88 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b4100aa rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x8b487f00 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x8b6c761a __xive_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b6d609a irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x8b7275f1 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b7f820f __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x8b97aa56 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x8b9e0d38 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x8bac0665 pnv_ocxl_get_actag +EXPORT_SYMBOL_GPL vmlinux 0x8bbd2b25 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8bd1c05e bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8bd63df0 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x8bd76d5c __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x8be3754a devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x8be43b84 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8bfe82f9 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c2cdea5 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x8c390938 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x8c3fedcc ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x8c636e10 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x8c665421 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x8c6e3107 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8c718d78 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x8c723383 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8da424 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9cb4ab evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x8c9cfad3 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x8ca20266 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x8cc30b1a iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x8cd24869 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x8cd8134f crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8cd94f86 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8ce434a1 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x8d04a8a8 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d0afb98 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x8d0b5b3c sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x8d1246c9 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x8d13b318 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8d146922 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x8d1c8752 devm_thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d1cb9af cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d260880 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d396da6 ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x8d414d3a icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x8d41ac6f of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x8d431ed3 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x8d67b4a4 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x8d6dc201 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x8d73bcc7 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d9368e1 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x8da2d392 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x8db28bc8 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x8db325d5 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x8dbcfd37 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dc9a43f replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0x8dce284b xas_split +EXPORT_SYMBOL_GPL vmlinux 0x8dcf8a98 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8df51555 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x8dfa5b4a simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x8dfe7de0 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x8dffeff4 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x8e2b92db pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x8e3acb50 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e47ce06 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e71edbd nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8e7a762c pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x8e85140a ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x8e89a1de tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x8ea77dba fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x8ea9affa regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eb7f8c4 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ed982f6 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8eddf621 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x8edf6d3a crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x8ee20fb0 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x8ee6f72c ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eed9731 pnv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8f02b965 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x8f05f527 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1d9337 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x8f1e2352 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x8f21a366 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x8f354cf5 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x8f3879f3 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x8f3f0d80 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x8f3fb884 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x8f429005 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f831100 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x8f83f157 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x8f8bf918 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x8f906235 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x8f91d32a dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x8f97c0bc cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x8f988d36 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x8fae1086 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8fb04d68 pnv_ocxl_spa_release +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc476bf devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8fc7c6c0 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8fcf2130 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8fd4022a msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x8fd68790 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x8fe631ef dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ff8da44 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x90388779 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9041dbd2 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9057bc70 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x907d91c1 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x90831986 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x908c1c66 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b3fe2c ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x90cbe1f8 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x90cde6f0 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x90d23c45 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90f44b17 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x90f8a352 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x9102c651 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x91062a87 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x910a3e0d pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x91113ccb pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x91173a48 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x911d18ae dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x9129a855 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x912a5afd noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x913ae2fc fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x916b3ec2 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x9177dfec dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x917b8ba2 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x917d5496 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91a2b50c mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x91a5572f bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x91a69eb8 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x91ac9e25 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91c1049f tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d36627 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x91d40441 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x91e50aba scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91eab245 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x92005a6a gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x920959a3 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x9234b21c device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9253d0c4 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9263fab5 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x92641b5d pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x928a90ce blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x9295a175 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter +EXPORT_SYMBOL_GPL vmlinux 0x92a13e8e __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x92aa373b idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x92b4e433 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x92b54180 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x92ccb70a dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x92cd7e08 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92ddd74e device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f01df5 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x92f0aa28 opal_tpo_write +EXPORT_SYMBOL_GPL vmlinux 0x930d0dc9 init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x930d4e22 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x9321881b desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9327c693 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x93306dbb dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x9331572a pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x93383b72 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x933fbf83 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x934a0aee kvmppc_subcore_exit_guest +EXPORT_SYMBOL_GPL vmlinux 0x93538866 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x93b4e992 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93fec87a _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x9410b4f3 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x941b4799 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x94371509 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x9438b3f9 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x943919a6 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x94421cd7 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x945a449e pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x94637b74 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946c73c5 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9472d2d8 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x947a02c9 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x947d5a4e dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x94832036 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94cf3f51 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x94d9aa44 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x94d9d7b0 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0x94e17ef8 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x94e9dc62 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95068af9 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x95132560 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x952b60e2 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x952e5909 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954f5665 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955f3851 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x955fd120 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x9562685b blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x956b8fe5 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x95780aa2 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x957e37a4 input_ff_upload +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 0x95966eea fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x95b6fec4 xive_native_free_vp_block +EXPORT_SYMBOL_GPL vmlinux 0x95b8cb33 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c391fe serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x95ca505c mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x95ce20ac ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x95cecf5d devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x95cfb6c9 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9612db00 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x96358014 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965f85c3 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x965faf02 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x967c0b30 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0x967d9a33 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x967e3335 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x968d024f mas_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9691e8f5 vas_tx_win_open +EXPORT_SYMBOL_GPL vmlinux 0x96aea154 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset +EXPORT_SYMBOL_GPL vmlinux 0x96b67ccf xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x96b762de hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x96c192a5 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x96cc48b9 xive_native_default_eq_shift +EXPORT_SYMBOL_GPL vmlinux 0x96cdbe20 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x96da3a00 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96fb23be ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x97030333 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x97053efa smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x972565c9 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x973c2269 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x9740d372 pnv_ocxl_get_pasid_count +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97659231 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x976a7ba0 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x97826702 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x978d9dba crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x97b82519 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x97baf80b blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x97c0f740 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x97d4cd40 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x97dbdcca sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x97dcdb7a cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e0f6d6 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0x97e36123 of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x98070b73 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x980ea8f1 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x984561b8 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x9846a1b7 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x9847d9e2 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9855a697 opal_xscom_read +EXPORT_SYMBOL_GPL vmlinux 0x986325e5 kvmppc_h_enter +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987b805e tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0x9886459e lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x9887281a iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98b48da2 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98dc0ffc ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x98e4539e pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x98eb2c87 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f024b0 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x992a00bd pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x993f6ae4 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x993fb55e iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x99473096 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995dd1d0 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x9974135f devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x997d00b1 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9981952a devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x9986cabc hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x9994e9f3 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x999d5f51 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure +EXPORT_SYMBOL_GPL vmlinux 0x99a23e59 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x99d33b38 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x99ded003 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x99e1d451 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x99e5d4dd pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x99ec4503 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a082568 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a22abee fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x9a35aea0 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x9a37b2bd __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x9a3a0c18 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x9a3bc6bd synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x9a405d9a extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x9a4b6998 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x9a5c728a pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x9a5f39e4 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x9a6520e6 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x9a74b5e4 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x9aa0d510 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x9aa1c7e6 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x9aa2a6f6 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x9aa4ba44 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x9aa4e89f md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x9ac11a3b tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9aca02dc ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x9acb3729 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule +EXPORT_SYMBOL_GPL vmlinux 0x9ad55b99 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize +EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9ae175b5 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9b0750ac serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b0c74d6 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x9b130ca5 h_query_vas_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x9b147bc9 save_p9_host_os_sprs +EXPORT_SYMBOL_GPL vmlinux 0x9b255931 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9b4661bc rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x9b54a58d gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5ca46e mas_prev +EXPORT_SYMBOL_GPL vmlinux 0x9b5df07b lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x9b682cc5 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b770552 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x9b7a4d07 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x9b7b196e pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x9b7e9d24 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9b8bbab8 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9d698a genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x9ba0b128 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bbf1186 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x9bc94569 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x9bcb56f0 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x9bd10dce pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x9bd8b242 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x9bdde7ea mmput +EXPORT_SYMBOL_GPL vmlinux 0x9bde79bc xive_tima_os +EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c12a8f7 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x9c266066 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9c2b1137 eeh_pe_state_mark +EXPORT_SYMBOL_GPL vmlinux 0x9c33c4ff device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c71065c dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9c7f75b3 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c8e8aa0 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9c8fc617 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9c986275 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9ca40806 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x9ca728c6 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x9cb59a02 xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd59b91 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x9cd71fc9 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9ce05629 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d02d228 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9d038913 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d10a720 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x9d1b105a sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x9d2714fa clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x9d4a5c10 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d4c11c8 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x9d519884 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x9d5aa94f serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x9d6e0e9b bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d8f666b dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x9d927dc1 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d98b1b7 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x9dab0985 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x9dac551d dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x9dbf0ba3 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x9dc09131 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x9dd8f340 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x9ddc8cd3 dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9df2044a srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0x9e097d0b blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9e1e3b7f synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4b4b5c of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x9e591fd4 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x9e5b7126 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x9e8a6691 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9ea8d3f8 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x9eaa3c12 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9ebea721 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9ebff373 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x9ec1f364 kvmppc_subcore_enter_guest +EXPORT_SYMBOL_GPL vmlinux 0x9ecef163 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x9ecf009f devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef6d1d5 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x9ef956e0 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x9efcc83b hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x9f200e30 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x9f29392c irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x9f3168c2 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x9f4415d0 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x9f44586a pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9f515925 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f95fd81 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x9f98dc9b iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fa86d9c of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9fa8818b ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x9faa4c77 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x9fb51ee3 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x9fb7c3a4 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd2a252 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff101bc skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xa000dd3d virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01eb2db ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xa01fe8f2 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xa02b71c9 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xa03fdfb4 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0511eed blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xa054de37 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xa0721c29 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xa0790a17 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xa07ec456 devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa08337ed btree_init +EXPORT_SYMBOL_GPL vmlinux 0xa0874b8e iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0xa0bdeb17 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa0befe43 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xa0c60300 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d465b3 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xa0d6abe3 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa0e94ef1 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xa0f6fce7 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa0fff21f devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0xa10e5350 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xa136fade blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xa13b2962 pnv_ocxl_tlb_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xa144ba3f sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa15843d4 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xa15c155b gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xa16286eb irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0xa1670571 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xa170933f usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa181a971 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xa184d5f2 mmu_vmalloc_psize +EXPORT_SYMBOL_GPL vmlinux 0xa185b2ea inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0xa1ac6a7b hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa1b26377 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa1cc4648 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xa1d5d2f0 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1ddb4a2 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa1def852 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xa1f4677e devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xa20399c4 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20e0a6e component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xa21bcb01 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa2261ab6 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xa23023ea crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xa2372674 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xa247d12b mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa2524c17 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa26340e2 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xa264ff4d device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2726a57 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xa27851ff regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xa2964bd7 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xa2985345 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa298af95 xive_native_get_queue_info +EXPORT_SYMBOL_GPL vmlinux 0xa2ac9bfa __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b13982 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0xa2c74d89 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa2df3b07 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2ec24ef tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa3342616 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa336a003 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xa3391dc2 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xa339fb82 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xa33d91a8 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xa33fe785 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa341b154 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xa35dfc2c mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xa3627037 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xa3644195 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa379c1df fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xa3844a00 kvmppc_inject_interrupt_hv +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa396c756 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xa39ea6af md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3a39065 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xa3b56555 hpte_page_sizes +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3d96623 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f57cee kvmppc_host_rm_ops_hv +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4190065 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xa43b7014 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44ebe69 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xa450c3df io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa4818140 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48809bf power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xa4895e04 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4adecbe devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa4aea4c3 dst_cache_get +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 0xa4c88828 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xa4ca075d spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xa4d9046b of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xa4f10802 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xa4f1dbd9 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xa4f71c9f pci_remove_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0xa521a66b proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xa52f0915 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xa5833765 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xa58b5f58 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xa5949b9f sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xa59fc543 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5b4097a tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xa5b60c94 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xa5c2b1fc ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa5c889ea of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xa5c8a11d phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xa5cd2904 bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0xa5ce0332 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e25376 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f66070 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa60444f7 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xa629cf88 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xa6383453 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0xa65afcbf blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xa65c7b5e msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa67bad98 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xa6a02d98 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a381c2 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa6a79d2c adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xa6a8e054 device_remove_groups +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 0xa6bd200b sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0xa6bd922e irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xa6cc8f40 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xa6d1e06f splpar_spin_yield +EXPORT_SYMBOL_GPL vmlinux 0xa6d1ed49 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xa6d7f724 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa7041b7a regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70c1ba6 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xa7170da6 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa721f4cc led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa722dc1d sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa727e9ad fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xa730616b folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0xa737c18f regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xa7536a06 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xa7600ac6 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xa7615985 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xa766f7c9 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xa777ce80 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xa77b59dd pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xa781aa14 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xa785d859 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xa78d6624 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xa7937435 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xa7941706 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xa7ac11f9 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xa7df22ca fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xa7e7ccd6 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xa7fb6368 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xa8019666 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xa81d80b5 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xa81e2ef9 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8278273 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa8396e56 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xa84911b5 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa84b82fb vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa852766e devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa86d557f fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xa8830e9c kvmppc_msr_hard_disable_set_facilities +EXPORT_SYMBOL_GPL vmlinux 0xa8879450 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa89d09ce __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xa8b234a2 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xa8bf54f7 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xa8c05f19 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xa8c36664 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xa8d2c373 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xa8d56376 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xa8e23258 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xa8eddd6b mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xa90e3b96 timer_rearm_host_dec +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa935a42b skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xa94c89f5 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa96c5d82 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xa9791fcd tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0xa9808aee __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xa9840a48 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xa98bca88 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa99a5342 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a0ee26 pnv_pci_get_device_tree +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9d08c30 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xa9f16460 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa9fe22b6 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xaa05b933 mas_empty_area +EXPORT_SYMBOL_GPL vmlinux 0xaa1758c5 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xaa180fde mas_expected_entries +EXPORT_SYMBOL_GPL vmlinux 0xaa24622d xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xaa341f84 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xaa4a3e95 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xaa5bf91f fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xaa5fbcae nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa842591 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xaa9207a3 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaaa5ec9 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xaaacabbe gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xaab32fed divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xaabed25b pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xaac6e1e7 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xaad9ed8a ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xaae714ef xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xab0b386f folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0xab1307ac driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab1f8b6b disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xab44ebb0 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xab521ca1 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xab7433eb dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xab7a7d3e start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xab9bf022 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xab9ef32e __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xac19826e pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xac1d3025 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xac3f95ae __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xac498019 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xac4f125e iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xac553bbe rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xac5831bb __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xac6e4dbc agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xac76918f ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xac7c8185 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xac894034 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xac8ade3a raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc149e0 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xacc3c289 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xacd61fc7 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xacd90146 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xaceb09b2 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xacfaa362 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xacfdbc32 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad12bb7a gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad29c53d cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad44b183 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad52c838 mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xad599356 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad8bfdab attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xad9108ba dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xad95488f mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadcbb2a4 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xadd066f0 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xadd394b6 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xadd6dc14 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xaddba80a mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0xade36f60 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadf6ae9d irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xae0af066 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae1c019c dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xae1ff730 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xae2ae416 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xae2b739f of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3dd931 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xae439a43 pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0xae442152 dawr_force_enable +EXPORT_SYMBOL_GPL vmlinux 0xae641523 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae72047b regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xae7800b5 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xae7bd4d8 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7e156f xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xae87cad0 memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xae91eac5 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0xae9df408 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xae9dffee devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeb0e48f devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xaebaebef pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xaec7d879 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaecfe128 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xaede5323 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0xaeedc286 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf10cca4 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xaf1e10da opal_int_set_mfrr +EXPORT_SYMBOL_GPL vmlinux 0xaf28f627 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf3c6c59 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf47b735 zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0xaf4810c4 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xaf4a8ee0 set_thread_tidr +EXPORT_SYMBOL_GPL vmlinux 0xaf4b3f78 clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xaf5944df of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xaf6665a8 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xaf667cca usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xaf670b6c usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xaf6929ad pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf8c928d ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xaf8e9b9b tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xaf9a6dbc fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xafa0d811 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xafa245cd ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0xafb13149 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xafb2a970 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xafca15f6 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xafd3542e pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xafd5fb96 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xaffaec9c devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xb006f956 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xb0085e43 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb0584ccf ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xb06634ec opal_xscom_write +EXPORT_SYMBOL_GPL vmlinux 0xb068e987 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb06b50d0 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xb06b6a65 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0782125 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xb087df4c led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xb0ae0d35 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xb0af85df __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xb0b74c1a sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xb0b7dacf pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0beb2ec devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb0c08cc7 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0c3d978 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xb0cc7398 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xb0cf94f1 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d6fb39 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xb0eb6764 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xb0f11ec3 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb0f73f8e __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb10943ea vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb11e30e7 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xb11fc00a agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb122c318 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xb12d3357 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xb1394303 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xb13e7b01 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xb15e4516 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16cdabe gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xb18a56b2 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1901cc9 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xb19837f7 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xb19eb0c6 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb1a99186 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1d8917c ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xb1e1d70f usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e42f0d iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xb1f50088 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb21390db perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb218bdbd wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xb21b6342 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2266cab dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xb22a6704 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xb22d264d clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb2346ad1 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xb2398120 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0xb23dbe6c hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xb23ff82d devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24174fa scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xb24ec012 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xb258f61f icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xb25fb085 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb281829e debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2a265ed kill_device +EXPORT_SYMBOL_GPL vmlinux 0xb2a653fc confirm_error_lock +EXPORT_SYMBOL_GPL vmlinux 0xb2a6f828 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb2b1c675 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xb2b333d9 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xb2b84228 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xb2bd7f5f crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2d9db45 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xb2de5a97 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f3daaa cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb30054b6 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb33e2f35 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb35732b0 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xb35a570e ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xb35aa2fd __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb36d7f27 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xb37671e9 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xb37cfb8e led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xb37d73a6 user_read +EXPORT_SYMBOL_GPL vmlinux 0xb37fa0d6 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xb3893843 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb38a2cf8 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xb3920276 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xb39aca9f blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb39c1c08 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb3aa690a rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb3b745f1 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xb3b81ce1 device_del +EXPORT_SYMBOL_GPL vmlinux 0xb3c53bd8 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xb3c5c91b ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xb3c7561b rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xb3cb34d0 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xb3ceeeec iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xb3d06861 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb3dfec7d usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb3f954fd netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb4185407 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xb42cb38f nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4463846 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xb44de8c0 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb4531bb6 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xb457f420 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xb481529e ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb4834db4 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb48e8df8 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb493238f virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c81bc9 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xb4d131bd fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xb4d3dc02 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb4dbd63f pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xb4de03da usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xb4de5374 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4df4c99 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4eee804 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xb4f73e50 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb4f7dba2 klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0xb4ff903d cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list +EXPORT_SYMBOL_GPL vmlinux 0xb50c7448 vas_register_api_powernv +EXPORT_SYMBOL_GPL vmlinux 0xb50e94c2 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52d7304 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb5359c25 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb53af49b key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xb5408184 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xb5491ca3 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul +EXPORT_SYMBOL_GPL vmlinux 0xb56fe0f5 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xb57b58ac fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xb5849d3b gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xb58ce2d1 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xb5a01a33 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xb5a04f05 xive_native_has_save_restore +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5ad1d76 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xb5bfe6ee usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xb5bffb27 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb5c7c927 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xb5d27e0e tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb5d4c1ab i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xb5d54f6b __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xb5de3a52 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0xb605a9c8 iommu_tce_table_get +EXPORT_SYMBOL_GPL vmlinux 0xb606c4a9 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb6084be0 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb61ed48b regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63856bf dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xb63d7a9b gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb6430d09 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb6490b11 pnv_power9_force_smt4_release +EXPORT_SYMBOL_GPL vmlinux 0xb651b529 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb658a724 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb65cd10a ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb675ac25 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67fcd77 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb69c44ef eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0xb69e1569 inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0xb6a9997e ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xb6b28514 xas_load +EXPORT_SYMBOL_GPL vmlinux 0xb6ba9d1e badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xb6be08dd of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xb6c3584b extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xb6c4b94f ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6d2e399 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f072aa ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xb71be50f ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xb7236e5c proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xb72ec284 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb733fbf9 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb74c01b6 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb7634b15 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xb7825ceb pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb78cc0d3 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb78f9db3 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xb794e085 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xb7955bca onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7a9ab1f platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xb7bb5101 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c87760 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7d17fa0 pgtable_cache +EXPORT_SYMBOL_GPL vmlinux 0xb7d361a1 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xb7e031b0 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xb7ee7ff3 sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0xb7f50423 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xb7fb64fd sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xb8010ae6 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xb80bde55 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xb80cebe7 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xb8445ee5 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xb8559890 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xb8680ced regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0xb86a1d62 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xb86c3fb9 input_ff_flush +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 0xb8b14362 phy_restore_page +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 0xb8e22623 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xb8e26489 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xb8eb8f1f scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xb8f8a618 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xb8fdc9ee simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xb9011658 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xb90b01b2 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xb9102b1d regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9299cbf balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb92e00a5 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb9614885 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb9720f69 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb994d28a regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xb99df747 xive_native_has_queue_state_support +EXPORT_SYMBOL_GPL vmlinux 0xb9b2fda0 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xb9b6ceea ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9ca6ffc filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0xb9cc15bb blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9ffb949 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba206537 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xba223baf pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3d8011 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xba4b1b3d alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xba76d33e handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xba7a4b97 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xba7a5f95 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xba986685 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xba9bf1b3 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xba9d3a0d gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xbaaab94c regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xbaadba18 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbad4f902 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xbadf17f1 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xbae718f9 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xbaf207f1 pci_epf_unbind +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 0xbb1ad335 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb393088 devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbb4a2da0 hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0xbb5280cc nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xbb53cdb5 wakeup_source_destroy +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 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb91e861 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbbaaeb96 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xbbad1846 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xbbb45bcb bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xbbbf9c43 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xbbdbcd67 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbebf3cf vas_unregister_api_powernv +EXPORT_SYMBOL_GPL vmlinux 0xbbf517ce crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xbc1d0e62 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xbc1d6a93 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xbc2a80f8 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xbc2d6c81 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap +EXPORT_SYMBOL_GPL vmlinux 0xbc3995e7 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4bb931 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xbc4c28c8 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xbc56181c __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xbc6161d7 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6ebb77 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xbc7643cc hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc7f7f04 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xbc97b99b mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xbc9b9698 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xbca3d681 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xbcb32b55 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xbcb5d948 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xbcbc4b94 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcdbcd6b tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcec8a11 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd1c529a devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xbd28f71c ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xbd2d8f02 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xbd2f1621 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xbd2f2965 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd478548 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xbd488b0d uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xbd4a8d31 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xbd4ae6d3 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd5c23d4 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xbd69a677 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbdb204bf wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdbd349e device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbde45bb3 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xbe196ca7 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbe3ab91a iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xbe47edf2 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xbe517b02 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbe5f3d94 clear_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe714e8a gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xbe726308 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xbe86c245 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xbe92586f sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea63e77 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xbeb8a2ad unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xbec420fc usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xbed085a3 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xbed100e6 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xbedb5d2c fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0xbeeedc18 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xbef63b50 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0c4fbb sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xbf0e2354 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf1e1fad rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xbf2750b0 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xbf2b3191 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf300656 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xbf314b6a rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xbf345c06 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf495c6f __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xbf57f6f4 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbf637302 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xbf70c117 icc_get +EXPORT_SYMBOL_GPL vmlinux 0xbf75292e mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0xbf873e2e of_device_compatible_match +EXPORT_SYMBOL_GPL vmlinux 0xbf8a5f33 virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0xbf95697e power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0xbf9c2997 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xbf9fc851 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbe2bd1 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xbfc69071 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed8aab vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0xc014c13d __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc0178888 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xc0179afb to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xc01a9fe0 mnt_idmap_owner +EXPORT_SYMBOL_GPL vmlinux 0xc02bebb8 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xc03f8d25 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc046de95 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc0491f6a devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xc0536e47 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xc056f5ae pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xc06198b1 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc079988b tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc08cb41f devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc09f862f of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xc09ffd24 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xc0a1cb21 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0aeade5 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0bd9c53 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xc0db58a5 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e5c38a xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xc0e8612b fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc104598e pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc11865ae xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xc1196db2 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xc12b201f receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xc12cf607 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xc153e60a __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0xc1639ea5 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xc171f630 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1a288fb max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xc1aef69a fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xc1b7c3ae regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc1bc6256 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xc1d3d78d device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xc1d5d254 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xc1d7720c crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc1e3e08f subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xc1e4525e regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xc1ed9c89 cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xc1fc4d11 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc2064bfe wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc209fe1e vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0xc20c1951 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0xc20df694 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xc21d9f14 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2319fd5 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0xc23e24df call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xc24a79c1 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xc24d1ab7 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xc2544ce3 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc257e6ec fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xc25e126a ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xc261fd69 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xc26669d1 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xc267a63f flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc287d3c7 device_move +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc29ddd97 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2a8e79d fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0xc2af5429 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2c13b69 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c275ff opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xc2d6c4ee mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xc2d89086 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xc2d995f8 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xc2de3124 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xc2e80609 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xc2ea096d disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xc3056351 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xc309141a crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc30c54d9 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xc315b5be devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34422bb devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xc34a0316 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc34e0626 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc38404e0 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc386319d inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc388bfc5 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xc3944258 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xc3955cb0 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xc39af01f usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc39c04f2 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc39c3900 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xc3a23698 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc3b9f45b tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xc3ba436d reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xc3bc2b0c blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xc3bff61d subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3dcc40b of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e04f1d sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc412fdf3 radix__flush_all_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc417055a crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xc421120e devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xc42467dc tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42ab296 irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config +EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc451b067 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xc4541900 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45bced0 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc46b5e00 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xc46d32eb irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xc47127e5 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc479ffe0 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc4934535 transport_class_unregister +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 0xc4c00770 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xc4c38e05 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xc4d97760 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xc4ecbc98 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc5152aa4 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xc53197bb of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xc531ed3d gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xc534df1f device_attach +EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc54b5052 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc54cd6d4 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xc55a12f4 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc55bd3cb __udp4_lib_lookup +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 0xc57609c5 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc57d80ae __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xc589d0a5 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5a16f47 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xc5a365a9 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5a6b8fc devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xc5cd8360 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc5d96028 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc5dd8d64 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc61217e8 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xc6134ef2 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6244341 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError +EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xc6299625 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xc629df12 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xc643db0c pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc64b4a3a extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xc64fdc76 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc660ce3a serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6705962 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xc6770e1f mm_iommu_newdev +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6799c00 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc68309b3 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc68d5953 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xc695de86 pcie_reset_flr +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 0xc6ad0400 devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xc6b5df5e vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0xc6bd5c2a to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xc6c27c8a relay_close +EXPORT_SYMBOL_GPL vmlinux 0xc6c754fa __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xc6d76ef2 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xc6e384c0 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6ef354f attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xc706cce2 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc70aa0e3 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc73539af regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc746a50d vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0xc74e5b97 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xc750b478 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xc75a01ef shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xc76e8128 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xc78ad932 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xc7916221 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xc7919c20 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc7a03795 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a2ae7b devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xc7a66fd5 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7a7f53d bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xc7c1b6d7 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc7c2ab5e tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xc7c67445 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xc7e376d4 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7eedba2 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc7f245ec __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f5d64a sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fd68b4 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xc80f5e1d device_rename +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc80f9fdb pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xc81fe498 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc83debff __class_register +EXPORT_SYMBOL_GPL vmlinux 0xc83e4194 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xc83f9bc6 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xc840f3ee pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xc846bd5a devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xc84865ad usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc850777a locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85c3b10 cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0xc861f05f __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xc870b3a1 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xc8733b6e fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets +EXPORT_SYMBOL_GPL vmlinux 0xc89bedca of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xc8ae8a89 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xc8c7adde pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xc8cef68d handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xc8d7e8ac software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc8dbac6f clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e29046 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xc8ee46ff iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc92ccd3a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xc93018a7 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc941e6aa to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xc94d9f08 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc96550c3 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc985c58e iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xc9af6ebd clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xc9b9b613 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xc9c56873 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc9c6a27a xive_native_set_queue_state +EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9d1ef23 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f167fb tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc9fd2ed4 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca005995 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xca2cdfa5 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xca3eba3c user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca47a869 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xca4b5c51 idr_remove +EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName +EXPORT_SYMBOL_GPL vmlinux 0xca71a482 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xca74ef12 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xca7a06a5 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca925034 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xca928e30 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xca94bf41 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa172d0 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xcaae9fe3 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac65414 shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0xcadab7df blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0xcaf825d7 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xcaf8924d __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xcb0c7b0d folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xcb11e2cd phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb11f4e4 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xcb23480d sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xcb258628 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2dec9c sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcb376475 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xcb3ed692 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xcb430368 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xcb4528e5 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xcb45b867 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xcb4b46a4 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb63015b skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xcb793db5 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xcbaef822 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xcbb01e1b rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xcbb05ff9 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xcbb1e976 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xcbbfcb2e usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xcbc5746d perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xcbcd2dc2 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xcbd34dd5 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xcbe1ac3b nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xcbe4e5e3 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbfe0dd7 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xcbfe4648 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcc0267ac serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xcc0552a4 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xcc099e49 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc189990 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xcc1a2f06 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc39effa rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xcc492397 eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0xcc4d2fff pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xcc5c0daa adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcc630316 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xcc7006e8 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc835010 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xcc8733a8 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xcc889f94 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcca2f4b7 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0xcca2f4c9 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xcca63059 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd80c8e ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccdbcf08 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xccdf8f36 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xcceaddeb dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccfb9a2d gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xccff9609 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xcd06ec42 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xcd0f343a rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xcd15b2b4 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0xcd163011 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcd2015b8 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xcd238056 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2e42f3 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule +EXPORT_SYMBOL_GPL vmlinux 0xcd3a7b47 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xcd415681 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xcd58a191 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd5f953a key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd814c32 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda34cca mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xcdb0681a proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xcdb2b4f0 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xcdb351b7 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xcdb5970a pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbc513a pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xcdbd1eeb clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xcdc7c215 pci_find_bus_by_node +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd1a841 xive_tima +EXPORT_SYMBOL_GPL vmlinux 0xcddbd4d1 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xcdde655f crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xcde7ca57 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xce07686e fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xce079552 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xce125afc device_register +EXPORT_SYMBOL_GPL vmlinux 0xce16923b pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xce2d3cb1 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xce4e80f3 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xce52385e usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xce62c8d6 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xce65cb28 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xce68ea43 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce890d70 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xce93e80f pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb3e558 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xceb4b99c klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcef18531 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xcf04e605 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xcf133159 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xcf22304f usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0xcf28e12f vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf5661d3 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcf587c4f misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xcf7ed706 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xcf878114 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xcf9101a1 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xcfb9258e nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xcfb9f84e rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xcfbef8af i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xcfc18620 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfdc7775 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xcfe08367 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xcfe92df7 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd001c92a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xd0186b54 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xd029cf5e cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xd038248a devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xd03ce80d i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd043d862 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd05d5ced usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067bac0 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd069f8e0 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xd06d0c90 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xd088e886 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xd0922eb9 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xd0926218 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd0949a04 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xd0a451cc crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd0ba5e6a serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xd0bad8c6 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d95967 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0ef8411 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xd1066749 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xd120d558 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0xd132a84a pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd14e19fd devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15d7436 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xd16a2c14 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd172b7e4 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd176af60 vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd1a35844 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xd1a9951b rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1b3f1f8 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd1c0a7e0 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xd1c80cc3 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d22907 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xd1daa52a ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd25effa0 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd29225e8 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xd294b0a2 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd294b79a rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd298920a i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2a806cc ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xd2a822c7 pseries_reloc_on_exception +EXPORT_SYMBOL_GPL vmlinux 0xd2ab9a14 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xd2acfa53 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xd2aecd18 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2d05a0e usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2e1a47a usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd3065f4c net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xd313250b devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd32403fb ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xd3388575 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xd339170e report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xd33b9990 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xd342ced6 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd34306dd md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xd348747c crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd3529031 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3684e07 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xd37290ef scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0xd38d06a8 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd393887b vas_rx_win_open +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a57fcc phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd3c2f489 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xd3c46a5e pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xd3d47723 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xd3e131b8 gpiod_get_index +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 0xd3f3a156 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xd3fe9d3d devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40bf635 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd41c5172 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xd4240258 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd4317d01 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xd4478dca sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4776c5d of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd483388d irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd489e950 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd49aebf7 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd49e72dd phy_driver_is_genphy +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 0xd4c53a75 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4df5af3 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd4e2255a cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4eea497 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xd4f21d5a regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xd4f562b5 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xd4f58d3c auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd4f6d449 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd4fad83e md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xd4fd11ff kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0xd4fe0f75 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd501e8fe regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xd50f2da6 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd517d4f3 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0xd526188b dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xd526e88e check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0xd52b56e5 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53db1c0 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd54f396f simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd565eb96 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd580c17a tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xd582582c scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd594f96c platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59a77f2 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0xd59eb99a mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5afa49b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xd5b0bf79 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xd5b2cd6a kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0xd5b63c61 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5b92a38 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xd5d4e9cf uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xd5dc8156 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xd5de9afd sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xd5f10022 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xd5f50183 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd5f8a0a2 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd6117f4e mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0xd6197ef9 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xd621fc5a klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xd62b92a4 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd62ea3c1 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xd641b790 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd64fa8ff perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd65f3102 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xd66e6258 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67d61c7 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xd6a42d4a sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6b9e656 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xd6bbd8af register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd6bf625a btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xd6ce1c25 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6dae79f em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xd6deca82 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd70858fd regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xd726197d tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72ab70c fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xd7365035 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd75bc428 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xd7615ef4 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xd7621190 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd769edb5 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xd76e4a35 ioremap_phb +EXPORT_SYMBOL_GPL vmlinux 0xd76ffb4e __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xd778bfec xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xd7832683 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xd7886630 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xd799de96 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xd7af5ff8 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xd7bd4b0d blkcg_policy_unregister +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 0xd7dde737 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xd7dfbb0c of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xd81f285b of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0xd83ce31f dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd85c9131 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xd85ecb4b devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0xd8748a63 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd896618b usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xd8a39b48 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0xd8b343fd gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd8b4f740 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xd8bc9f4a access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xd8ca5bc2 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd8d6dab4 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xd8dbce99 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xd8e18701 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xd8f15c4e do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd93f38d6 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xd94106ce irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xd943fe21 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xd94439bb devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xd94d103b crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xd9580251 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xd95f6f8a scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xd96a8056 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd96af057 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd99519c0 mm_iommu_new +EXPORT_SYMBOL_GPL vmlinux 0xd9a64f72 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd9aadac6 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xd9ac5547 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd9b22f2c cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xd9bb076e sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xd9c17674 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9d8a5cc of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9fa28c1 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xd9fb2f0c serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda05d5e2 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0d1713 vcap_rule_get_counter +EXPORT_SYMBOL_GPL vmlinux 0xda2b42c7 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xda2e3c07 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3a37f9 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xda45b713 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xda72f9cb devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda96d872 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xda9d605b usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xdaacc2f2 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdab7e366 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xdabce260 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xdac04bd5 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xdad0307c fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xdad51d76 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xdad65e16 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xdae5801e genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xdaeda3f4 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf7c6c3 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xdb05f5eb devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xdb09a99d __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xdb25df32 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xdb3794ce emulate_vsx_load +EXPORT_SYMBOL_GPL vmlinux 0xdb3cbead clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xdb4e9a88 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset +EXPORT_SYMBOL_GPL vmlinux 0xdb77c732 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xdb7bd941 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbac1e01 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xdbc72ac2 xive_native_alloc_irq_on_chip +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 0xdbfa2500 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdc01463e ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xdc05892d sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xdc0b2b5b opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xdc0b9a16 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xdc0d29fb __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xdc10d4aa init_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0xdc115de0 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xdc14f244 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xdc227880 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xdc2340bf vp_legacy_config_vector +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 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc897b41 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xdc8c387b memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xdc941e44 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xdc9638b5 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc99435c led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xdc9f254e sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca43c05 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xdca679a8 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xdcaa586f sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xdcaff29f ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xdcbcffbf rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd2c3377 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xdd3420d7 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdd34c678 __srcu_read_unlock_nmisafe +EXPORT_SYMBOL_GPL vmlinux 0xdd449d14 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd53bde6 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd70623d ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd82cee3 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xdd8a8bb0 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xdd9f052c regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdda2be10 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xddacbcec device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd96a94 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xdde0dbbd ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xdde4863d mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xddf2e96e create_signature +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde1812ca vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xde1b1d2c filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xde1c83ae vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xde1fa48a fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xde27113b bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xde2b5baa usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde4075dd ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xde465295 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xde4baeb5 iov_iter_get_pages_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde5c24ae pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xde6930df rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde795a32 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xde84d664 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xde92db72 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xdeb66931 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xded372f6 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xdede3c17 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xdee40b1e platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf013f42 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xdf0a9663 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1e9cfa btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2e3585 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xdf3d21eb handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xdf5d3bba pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xdf79d91b pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xdfa12202 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xdfa66b39 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0xdfa76cb8 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xdfaad864 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xdfbfa6fc serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd05250 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdff568cb klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xdff82ab4 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xdffb8ebc __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xdffd5ff5 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xe015a12d kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xe0235356 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xe02d2ecf sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xe03eb8c6 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xe04ae63b __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xe054a6d2 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06ce86b fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xe07361ad usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xe085c604 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xe0899795 md_run +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0a00954 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c0be89 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe0c126c8 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0xe0ca68a8 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xe0cf6343 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xe0d1b926 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xe0d83b88 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xe0d8b11e driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe0db3965 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xe0e89f6d nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xe0f4f230 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0fdba95 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xe1036e72 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xe108d302 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xe10eead0 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xe110528b blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0xe11f8895 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xe1250fc4 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xe12566ea bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xe12a4479 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xe13cbf02 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xe1421184 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xe149b1da __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xe161b07b trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xe16eff9e blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17dcc68 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xe182c25d pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xe1a39b50 vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0xe1a4747e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xe1a6f2d9 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xe1b13df6 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c54c08 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1cea560 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xe1e9a8f8 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xe203ca66 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe203d292 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe20baeb3 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xe2208daf xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xe230d195 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe236bb61 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xe23e3275 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xe2540e11 is_xive_irq +EXPORT_SYMBOL_GPL vmlinux 0xe268af04 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xe26af08e ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe2737533 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe273e0b8 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xe2741d28 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xe284fc7e thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xe28bc09d kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xe2a237c2 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xe2a75451 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b3792e ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xe2b6d362 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xe2b90f0b pci_add_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d15d00 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xe2e032cf devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3017e84 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe323e7c7 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xe33da7ae sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3453737 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe3545567 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xe36bd426 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xe37cad6f dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe390ae99 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0xe39503b2 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe3955139 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe3998193 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xe39b4e14 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a6c811 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xe3aeaa03 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b21071 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xe3ba6c23 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe3c3e43b ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xe3cb5e4c vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xe3d74119 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3eecda9 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xe3fc241e devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xe403de46 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe410f001 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xe41c1fbc __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xe42513d2 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe42723cf extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe429848e eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4374975 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xe447900b list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xe448ba6c sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xe463e9f1 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0xe4771162 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xe4783935 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe47d9546 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xe47e4990 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xe480d1c9 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4afe95c regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b946b6 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4d1230d __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xe4d31fdf unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xe4d512c8 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4dcdd9e __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe50e77f2 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xe5188704 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xe51fd870 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xe544c1ba dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xe551d270 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xe56005fb ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xe566f5eb sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xe5681a52 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xe56cabd6 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xe57c181d msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5892a12 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0xe5b41cda gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xe5be7c46 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xe5c5c911 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xe5ec503b __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5ecc7b0 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xe5ee4005 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xe5f99450 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xe5faf28a regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xe601eb6a class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe6068c4b rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe61262b6 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xe613aa47 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xe61a0835 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe626bf88 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe6307833 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xe63c82c2 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xe6658b50 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xe6756dc3 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xe68044a0 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xe684f5dd device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe6920bb6 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xe6999cb8 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xe6a13e7d xive_native_configure_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6a70cfe crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xe6aeafd4 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xe6b1d3fb __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log +EXPORT_SYMBOL_GPL vmlinux 0xe6c46418 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xe6cd969b ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xe6d0f38e dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xe6d7fc79 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6fd62c4 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe716f53d of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xe71fe38a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xe72ba990 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xe72c0af5 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0xe74df9cf pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xe74ec350 accumulate_time +EXPORT_SYMBOL_GPL vmlinux 0xe7515eae ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xe7519e85 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76caac3 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7924b6b crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe79c4dd6 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xe7b5ef17 __srcu_read_lock_nmisafe +EXPORT_SYMBOL_GPL vmlinux 0xe7be906b xive_irq_free_data +EXPORT_SYMBOL_GPL vmlinux 0xe7beaba7 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xe7c3b2c4 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xe7d34db2 opal_async_wait_response +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe819af48 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xe8362d42 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe84b9828 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85e088e dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xe861509a scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe863a8de iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe866f7d1 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xe87370a9 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8837b0c skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe8918964 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xe89a3912 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe8ab26bc do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8d6dc14 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe8d8c91b security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe8de24d0 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xe8e42d4f blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0xe8ec9d51 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xe8f43507 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xe8f67936 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xe909eee3 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xe90b8a4d spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe91e0d73 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xe928e688 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xe931949c __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xe932e84e usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe945f8b0 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe95a60ff rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xe975518c gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xe97e3c81 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe9935115 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xe9a2c010 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe9a31519 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xe9a85765 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xe9a9a6eb fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xe9aead96 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xe9b04a07 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xe9c3cd98 pnv_ocxl_get_xsl_irq +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9ecf62b init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xe9fefc01 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xea01147e iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea0875b2 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xea0e2aa4 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xea0f03f3 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xea1056e2 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1a3ce5 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xea1d0412 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea430fe0 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xea47a79d crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xea4ab805 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xea5445fc usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xea58a9e8 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xea74331f sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xea88c866 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xea9ca951 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xeab78552 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xeabe2a44 pm_genpd_add_device +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 0xeadf72e1 tm_abort +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae29647 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf38a83 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeb02c023 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xeb06f2a5 devm_thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0xeb094fd5 thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0xeb1a4f29 opal_error_code +EXPORT_SYMBOL_GPL vmlinux 0xeb2dd21b devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb50be6b devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xeb67139e perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xeb6fd738 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb748089 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0xeba0032b srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0xebb5d220 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xebc081d6 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xebcc49d7 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xebd46dfc wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd6eee2 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xebe5beef free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xebe76adc regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xebf5b8a4 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xec0b11ca gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xec2dd813 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xec354e16 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xec356c53 msr_check_and_set +EXPORT_SYMBOL_GPL vmlinux 0xec4a7f63 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xec560683 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec6b487b devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xec71f884 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec78d710 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xec84bfb9 opal_leds_get_ind +EXPORT_SYMBOL_GPL vmlinux 0xec86512f gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xec965f54 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xec974456 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xecbd4a66 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xecc3185f tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xecc81a4b mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xeccf0c7c extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xeccfcdd9 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xece86019 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xece871c2 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xecfc83a5 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xed023255 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xed028be4 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xed099ae1 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xed0e5eff __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0xed0f4f22 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xed1e4ae8 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xed255233 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xed2c0579 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed2f66e0 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xed34d63a sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed518c54 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xed683878 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xed868b0a dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xed86d7f7 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed91e852 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xed9a1810 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xeda31df9 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xeda33d8a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xedceaf82 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xedd26008 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xedd28f33 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xeddb9189 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xedf0b88c devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0xee026b20 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xee052008 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xee143d7f mas_walk +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee2e4b04 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee54e518 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xee5fd83d __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xee68eb6d pci_pasid_features +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 0xee7821ca pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xeea4cc59 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xeeb50db5 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xeebb4069 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xeebc8a4d open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xeed6f596 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xef0dbf04 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xef2411b4 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef33f6a9 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xef3d2032 vcap_chain_id_to_lookup +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef48c667 led_put +EXPORT_SYMBOL_GPL vmlinux 0xef505bde tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xef5722d7 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef619fd1 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xef6821b8 blkg_conf_finish +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 0xef81243b sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xef874ffe pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xef96147c thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefbc4843 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xefc484fc find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xefc9a355 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xefce3430 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xefd8c93d preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff0320f devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xf01ae533 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf020ffa1 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xf046eb6f power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05adac2 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf0610936 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xf0794a84 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xf081703b debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xf08df1dc bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0be810e devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xf0eef204 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xf0ff4fa5 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0xf101ab2c srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xf10abdbc devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xf1320e31 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xf1412584 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf1437c9a rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xf1451422 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xf154a2ca pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xf15bccc3 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf185d5ce __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf1870c63 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xf195cb7d iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf199afd9 mas_pause +EXPORT_SYMBOL_GPL vmlinux 0xf19d3911 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xf1a2ca93 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1bf85cb lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xf1c2bafe irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xf1c60a8d restore_p9_host_os_sprs +EXPORT_SYMBOL_GPL vmlinux 0xf1d545b7 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xf1ded581 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xf1eac831 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2214567 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xf2282faf hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xf22977c4 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xf22bfbf3 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf22f7ad8 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0xf240c7b9 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xf242ebcb rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf244cea2 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xf26941cf devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xf27c657f sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf27f1a3a __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf2909824 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2a34fe7 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2c8bb71 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xf2cc9764 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xf2d4e6b1 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xf2d55940 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xf2d9c3f5 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xf2e30036 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xf2f0b73a xive_native_get_vp_state +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported +EXPORT_SYMBOL_GPL vmlinux 0xf300e269 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xf304fefa usb_get_intf +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 0xf3186f98 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xf319c605 vas_copy_crb +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32016b3 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf32fab47 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf342426e platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf345dfd9 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf3579d63 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xf368958c mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xf36bc98c ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37cea08 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38e6a0f usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xf38e7444 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xf39263cd unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3a69bdf add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xf3b08126 kvmppc_set_msr_hv +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3c6ded8 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xf3d9d62b tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xf3ecfda0 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf4131556 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf418f970 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xf4273dd5 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xf43de8c8 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf459ad8b rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf4641007 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46a230d dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xf46f7c73 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47ba417 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf482d05e devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xf48978ca usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xf490f7a4 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf493f3bd msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4a5146c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xf4a95fc5 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xf4ae33f4 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b5452a fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xf4b72236 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf4c6cef5 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xf4cb863a bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4da7374 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xf4dbd16e synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xf4dfe12f l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf5185a33 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf518e160 load_vcpu_state +EXPORT_SYMBOL_GPL vmlinux 0xf5388f23 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf540c67c power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0xf5457826 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xf546d0c4 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56aa7f6 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xf56c18ff platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf57328f3 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf578d86b iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf581a836 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xf59d9711 wm8350_reg_write +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 0xf5ac11e3 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xf5bdca6a ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xf5cd3243 pnv_ocxl_spa_remove_pe_from_cache +EXPORT_SYMBOL_GPL vmlinux 0xf5d82386 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0xf5de203d phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xf5e9de54 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f55069 pci_hp_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0xf5fca2d0 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf6075329 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xf60e7404 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xf61ad5af kernstart_virt_addr +EXPORT_SYMBOL_GPL vmlinux 0xf61f6332 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xf620bcab __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xf6326b8f kvmppc_h_protect +EXPORT_SYMBOL_GPL vmlinux 0xf634171c sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf63961c6 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xf64c0654 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xf654054f of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf66a35a9 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xf68b4d30 vas_win_close +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a6a0e0 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xf6b32650 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf6b87276 component_del +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c51471 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6c9bb81 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xf6d305b1 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xf6e05d25 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xf6e355ee dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f080af led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xf70e3b96 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xf71744a7 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xf724f20a usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf733f4d6 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xf737e50f sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xf73afaf4 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74ad115 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf75ed3e4 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xf76ac1f6 mas_store +EXPORT_SYMBOL_GPL vmlinux 0xf77ac4dd inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf78c6579 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xf78ea9b0 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xf79dd950 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xf7a37930 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xf7a9ab8a bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf7ad2647 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf7b5790c alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf7bb99bc dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c073d5 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xf7d8c5da transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xf7ddd623 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xf7fc7241 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xf8033d80 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf81200a3 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf822a3b1 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf839aaef __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xf84a6d3b ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf8589bb5 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf88f8d0f dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xf8a74746 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xf8ab6363 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0xf8c8a803 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf8db5a48 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8ff501b power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xf90105e4 dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf933524a devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xf93ef8d0 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xf9500362 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xf9529ffd xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf9631dc8 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xf96564d5 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf96dae3a of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xf9708d5e pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf97471ef opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a2bbe8 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xf9a3702b register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xf9a6a72a bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xf9b13d03 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xf9cec159 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0xf9fcec1a sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xfa019405 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xfa0fa4c7 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xfa151379 mas_next +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option +EXPORT_SYMBOL_GPL vmlinux 0xfa240d9b ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xfa2ad936 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa2d30cd dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xfa2db33f tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule +EXPORT_SYMBOL_GPL vmlinux 0xfa41a174 disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa445d82 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xfa471996 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfa4db066 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xfa60ef71 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa6bd751 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xfa7ac68e pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xfa7d2ad8 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xfa9d811d inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xfaa2cffa pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xfaa83c6d input_class +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 0xfab7ac8b screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xfabb6aff opal_flash_erase +EXPORT_SYMBOL_GPL vmlinux 0xfabe351f rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xfac43815 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae179c2 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xfae94158 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xfaf1761a dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xfafdb253 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xfb02d701 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xfb100fa9 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xfb12af83 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xfb16d4ab evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb398d5d br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xfb467388 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xfb4a1df1 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xfb54e57c pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb5a3fdd platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb738290 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xfb7f8928 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfba6efa8 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc7ca8e iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xfbcfea1e led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xfbe40ce6 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xfbf5aa35 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc1f1d80 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc226fa2 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc234177 _kvmppc_save_tm_pr +EXPORT_SYMBOL_GPL vmlinux 0xfc28d5cd of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xfc2a48c9 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xfc3eb126 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfc51b499 mmu_lpid_bits +EXPORT_SYMBOL_GPL vmlinux 0xfc683b45 has_big_cores +EXPORT_SYMBOL_GPL vmlinux 0xfc77d26d component_add +EXPORT_SYMBOL_GPL vmlinux 0xfc81bdbe vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0xfc9d8441 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xfc9db7ab sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xfcaf49b0 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0xfcb31b34 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc0f47f vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfccc2779 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xfcce6297 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xfcdf90a8 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0xfcf0543c tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0xfcf5e7f1 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd01560f register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xfd0e4628 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfd1a0f7f vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xfd20a7b9 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd4e2dd3 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd793bc2 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfd8adfef cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xfd8ddbe5 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xfd9cf73e component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xfd9f5ff7 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xfda98b4d device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc9a73a usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xfdd0182a devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xfddd34d2 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xfde1185a crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xfde8dac0 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xfdea672d device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xfdeec67e tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xfdf5a200 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfdf78451 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfdfcf877 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfdfdcab6 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xfe109050 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xfe2821a1 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xfe2c3286 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xfe3d548e tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe536f5e xhci_run +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 0xfe9afb6c phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xfe9dac17 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfea70283 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xfeaa1558 opal_async_wait_response_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xfec0c46b devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfec43358 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xfec52650 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed3348a __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xfedd63ce pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee9665c crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xfef152cf blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff12f576 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff314ba5 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xff33ff2f pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff566368 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xff56c62f phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xff6db3e5 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xff6e3ae4 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xff746fce eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0xff7dd3ce i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order +EXPORT_SYMBOL_GPL vmlinux 0xff8643f5 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xff89d05e class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xff8ebdc8 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa45071 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0xffcb54dd ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xffcda2d9 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xffe88d7b handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xffef5cda regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xfff07244 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xfff5e6bb netdev_walk_all_upper_dev_rcu +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 +FW_CS_DSP EXPORT_SYMBOL_GPL 0x025c6927 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x08f0d458 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x09785098 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x18ec236b cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1a7f15dd cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1ddcabd3 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x26b3747c cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4acd55dc cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4c92005e cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x56f6dc93 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7d86ca74 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x83198aa3 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x8b35d592 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9128efcd cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x99f8ad7f cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9cb0f391 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa2e87400 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb8658513 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xba46b195 cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xc741c3a4 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xcc4d3ef4 cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xcc5b9a99 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xe0f491c4 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf72943d4 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0xca9f1aa9 hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x7aac026c ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xdd7db4af ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x00b61b53 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x4dfa6f2c ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x23541d5c ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x52f6b86a ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x185a721d ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xdf6c27fc ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x549aa453 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x781633a4 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x040b4691 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0fed309b __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2120b490 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x376a742d __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5af5bd3c __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x67a8c76a __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7045375e devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x79b05449 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x95e059fd __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xaf8e064a adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x0e930b0e __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x6d6f8131 devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xedacb6b2 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xaa8b47ac adxl31x_chip_info drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1d8d09c adxl314_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6a9935f 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 0x4d2f5e0f adxl35x_chip_info drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6a63e2e8 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 0xc7123cbf adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x76543b97 adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x93db6b9d adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1637f18e ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x36c11876 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5ee1b433 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x612051a8 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6d178d50 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6f9f7487 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x95bf6ba2 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xbf7a53ff ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xbfdd6c84 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe2e6973e ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x9e1f38ec bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xc0a40995 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x21cb852f bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x321149ec bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x7adac22e bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xc9528989 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x291c4b4d bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x4067dbab bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xcec388fc bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xd4143866 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xf928a0e0 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x231def0c bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x0b44f11c bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x207156ff bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x8ad43430 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xa1509d16 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x88d0b79b bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0x8e22822c bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x11ee04ea bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x143a6f69 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xabfa1aed bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xfebcb20b bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x80c7fc64 bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x83a37986 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x49a614e5 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x51d356a6 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xee29363c fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x7e0cbae5 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xdcd22e20 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xea0764d1 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xfa4aa28f fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x406d3b87 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x55d9cace hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6ed4e616 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x8e9069cc hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa4ce07f7 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xbc444707 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xbeab030b hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc3872e23 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xca836dd3 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xccb9ecd7 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd79a4e3f hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xdad661f1 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x21a0b816 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7c14885f hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xcdc21301 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd20547a9 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x09516d35 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x4ff21124 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xd824e72b hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x8124c1a8 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xa6a1431a hts221_probe drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x118e1ce7 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x17b2621a inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xc1998506 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x4283fc57 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0xebf95750 kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x4e0da57d kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x830b0b99 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xad5f90be kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x27e8ba1f st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xf8d3cfeb st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +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 0x0b61be9c ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x17c4c272 ms_sensors_ht_read_humidity 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 0x4fee1b40 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x9899a304 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa831c864 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb92e31d8 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb950303c ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xbe6f69f8 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xce04a210 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x2e696ed2 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x3975a903 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x6e14fdcf mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x0eef0dcf mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x139d3b2a mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x19718b7e mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2385da19 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x24e47ef3 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 0x498edb83 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x52c1a8bf mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x6151a87f mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x69cfd55d mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x71e1d924 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x9f2713e6 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb032e78b mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbadf8ec5 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbffe0f52 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd1245676 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd58eddf7 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0xff60b612 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x213c5a9e mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x5626999b inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x8ebcffdf inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x496a1e38 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0x7da66d07 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x975b79ae rescale_process_offset drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0xa413efca rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RM3100 EXPORT_SYMBOL_GPL 0x00ab0474 rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table 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 0x5e29d416 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xeec04d1c scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0x65eea47a sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x006e409c ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x11fd553d ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x4ee9b282 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x520bcea0 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7707ab1d ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x83361695 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xefb1e47f ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xf6918c31 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_ST_SENSORS EXPORT_SYMBOL 0x013cda9d 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 0x0cfe869e st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1332bff4 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x168a3ca0 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x219c7fb2 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2c8ce9dd st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x475c67a6 st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x5bd0f01c st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x62d7e25a st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7615c529 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7e53c668 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7edb4e75 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7f22c8db st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x877ef701 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x962c5e99 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xa38919bb st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb92b3d81 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xbedbdfbf st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc7b1f601 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xcd285840 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xdc47b6e6 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xe10f58f7 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xe76b72b9 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xe854c436 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xecbeb047 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf87c9521 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xcbb8b132 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x3d3104d7 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0xb14d00e5 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x165112d2 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x2aae41bc zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x54ce01e7 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x9fec45e5 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xc13d7c63 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xcfce15cb zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IOMMUFD EXPORT_SYMBOL_GPL 0x156bbf74 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x364e35f1 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x3a8140b7 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4b6f5846 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xae169835 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xb16c8eab iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xcc3c5275 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xd5ee4c9e iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xf8cbb52a iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x17b04906 iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x00439db2 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0bfa8a0e iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0f36beb9 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x115af8d6 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1b01e8f8 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1ee1c386 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x21cf6ba5 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x21e2d2f8 __iwl_err 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 0x22baf518 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x24be2999 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 0x2a860c61 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2c66b404 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2e4a143a iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x33f57875 iwl_fw_runtime_resume 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 0x35408647 iwl_parse_mei_nvm_data 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 0x385c3b34 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45a7e815 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x470c1d7c _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4932081e __iwl_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 0x4d634e09 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x50b6f3db iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x53e2fc45 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5a34deec iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5a81a278 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c14d016 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 0x5f7d2656 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x632ad9f7 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x65ff5082 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x691f1fa0 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6aa3339f iwl_set_bits_mask_prph 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 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 0x7348f1df iwl_pnvm_load 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 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 0x892f6776 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8a48b885 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8cfd14d8 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x907d4ea8 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x972a082c iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x97337dc0 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa57233fe iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa926ac95 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 0xb6eaebe9 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb86bf121 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbc322ae2 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbe614987 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc1785c03 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc9c48ff0 iwl_fw_dbg_error_collect 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 0xd78a1188 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd95f91e0 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xda8589e1 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdb55e3fb iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdc2c325a iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe66242b5 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe7425b2f iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf284c184 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf5158f32 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf8ad1d51 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfa5ec394 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfb68d3b9 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x2e8680fa ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xe7316acf ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x07051529 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x23caa18c mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2759316c mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x328d5e89 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5503bec0 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x59e6c38e mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8467c1c9 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x87d2b134 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9fdf8c47 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa9fc3564 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb59703da chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xecc4943e mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xee048024 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf3efd90d __mcb_register_driver drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x2bedf732 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0xce184139 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0x60e57340 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5dd5c7fd nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7890dbe2 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa4fcd7ba nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb86466e4 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xcaa37596 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xecac1e79 nvme_find_get_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x002206e7 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x00320732 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0c0221a4 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x15b50f32 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x18a9cd91 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x23490cc8 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x37e32a9f peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3afd8ff0 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3b9832a7 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5d9ccb9a peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x71c20763 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x74e269c2 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7abef573 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x81a78599 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8e650ffc peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x94f96851 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9b663d89 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9c77111e peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9dc5118b peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa3b98d01 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa61d1bea peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xaa6603d2 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb0d2f365 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc15e0660 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcf91c296 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd129293d __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe51c58b7 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xedeffc38 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xee74ca63 devm_peci_controller_add drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x1045bd14 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x7767452c peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xa170c426 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xaafc5855 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xf8cdabe2 peci_temp_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x255b295e pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x25d792d4 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x39490a75 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3bfc0fff pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3ec47b11 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4426f104 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4a18cb5e pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x518cb348 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x544db3e9 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5d47036d pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x663ec2c3 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6890d8a4 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7f2bc168 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8d7efe29 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8f062866 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x923086f3 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9bf6e00e pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc1228eef pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf367ad5e pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x197e925a sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x449d7be6 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x87660487 sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xcba24e8e sx_common_probe drivers/iio/proximity/sx_common +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x6e99b7ab cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x995fcec6 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xcc2dd4ac 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 0x97705ce1 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xd4489dad cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xe6fa957f cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0c073440 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3650833f cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3fa52f82 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x42bacbc8 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x6382afd8 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x87d518d5 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x88084f77 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa1b0c391 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xae3a2d5d cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe4fb0d2f cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf015fe5c cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x0e50a20b dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x13361029 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x252b3bdc dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x471bc4e8 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x49cbf3d5 dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8766db73 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xc8be0a75 dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xdd252eec dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf47351b6 dw_spi_dma_setup_generic drivers/spi/spi-dw +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x0df37937 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x16224ba9 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 0x1c7d633c fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x32c86473 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x39a11a5a usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3aa23de8 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x43ed7800 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5010f515 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x54851961 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x556be91f usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5d9f5f40 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x68816fd1 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8bd905dd usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8c73ab06 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9bb66e04 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9caf9318 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9dfcc7a0 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb7f3ba16 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc024daec usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd12e3c80 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd9bb1a22 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xddddb56d usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe1207a6c usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfb2eed31 usb_stor_probe1 drivers/usb/storage/usb-storage --- linux-gcp-6.2.0.orig/debian.master/abi/ppc64el/generic.compiler +++ linux-gcp-6.2.0/debian.master/abi/ppc64el/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 12.2.0-17ubuntu1) 12.2.0 --- linux-gcp-6.2.0.orig/debian.master/abi/ppc64el/generic.modules +++ linux-gcp-6.2.0/debian.master/abi/ppc64el/generic.modules @@ -0,0 +1,5954 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +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 +BusLogic +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 +ad4130 +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 +ad74115 +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 +adf4377 +adf7242 +adfs +adi +adi-axi-adc +adiantum +adin +adin1100 +adin1110 +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 +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_dwc +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 +anx7411 +anx7625 +anybuss_core +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +apple-mfi-fastcharge +appledisplay +appletalk +appletouch +applicom +aptina-pll +aqc111 +aquacomputer_d5next +aquantia +ar0521 +ar1021_i2c +ar5523 +ar7part +ar9331 +arasan-nand-controller +arc-rawmode +arc-rimi +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +aria_generic +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 +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-phy-ptp +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 +bno055 +bno055_i2c +bno055_ser +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 +brcmfmac-bca +brcmfmac-cyw +brcmfmac-wcc +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 +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 +can327 +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-versaclock7 +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 +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 +cyttsp5 +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 +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 +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_buddy +drm_display_helper +drm_dma_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-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 +emc2305 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +envelope-detector +epat +epia +epic100 +eql +erdma +erofs +esas2r +esd_usb +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 +fit2 +fit3 +fixed +fl512 +flexcan +floppy +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +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-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-idio-16 +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-latch +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-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_bcm4377 +hci_nokia +hci_uart +hci_vhci +hctr2 +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 +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-pxrc +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-topre +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-vivaldi-common +hid-vrc2 +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +himax_hx83112b +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 +hynitron_cstxxx +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-elan +i2c-hid-of-goodix +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mchp-pci1xxxx +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_qat +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 +iommufd +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 +kionix-kx022a +kionix-kx022a-i2c +kionix-kx022a-spi +kl5kusb105 +kmem +kmx61 +kobil_sct +komeda +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz884x +ksz8863_smi +ksz9477_i2c +ksz_spi +ksz_switch +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 +lattice-sysconfig +lattice-sysconfig-spi +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 +libwx +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 +logicvc-drm +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 +lt7182s +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 +ltrf216a +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 +macmodes +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 +max11205 +max11410 +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 +max30208 +max3100 +max31722 +max31730 +max31760 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +max6621 +max6639 +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 +mchp_pci1xxxx_gp +mchp_pci1xxxx_gpio +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-spi +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 +msa311 +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 +mt6331-regulator +mt6332-regulator +mt6357-regulator +mt6358-regulator +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6370 +mt6370-adc +mt6370-backlight +mt6370-charger +mt6370-regulator +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 +mt7996e +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 +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_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 +ngbe +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-common +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 +nvmem_u-boot-env +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 +occ-hwmon-common +occ-p8-hwmon +occ-p9-hwmon +ocelot-soc +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 +ofdrm +offb +ofpart +og01a1b +ohci-platform +omap4-keypad +omfs +omninet +on20 +on26 +onboard_usb_hub +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 +ov08x40 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov4689 +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-ebbg-ft8719 +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-jadard-jd9365da-h3 +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-nv3051d +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-epf-vntb +pci-pf-stub +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcs-altera-tse +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-cy8c95x0 +pinctrl-da9062 +pinctrl-lochnagar +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-rk805 +pinctrl-stmfx +pinephone-keyboard +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +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 +polynomial +polyval-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 +pse_regulator +pseries-rng +pseries-wdt +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-clk +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 +qat_4xxx +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +qca8k +qca_7k_common +qcaspi +qcauart +qcaux +qcom-emac +qcom-labibb-regulator +qcom-pm8008 +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-vadc +qcom-vadc-common +qcom-wled +qcom_glink +qcom_glink_rpm +qcom_spmi-regulator +qcom_usb_vbus-regulator +qcserial +qed +qede +qedf +qedi +qedr +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1b0004 +qm1d1c0042 +qmi_helpers +qmi_wwan +qnx4 +qnx6 +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quota_tree +quota_v1 +quota_v2 +qwiic-joystick +qxl +r592 +r6040 +r8152 +r8153_ecm +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723bs +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si470x-common +radio-si470x-i2c +radio-si470x-usb +radio-si476x +radio-tea5764 +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ramoops +rave-sp +rave-sp-backlight +rave-sp-pwrbutton +rave-sp-wdt +raw_diag +raw_gadget +raydium_i2c_ts +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rc5t583-regulator +rcar_dw_hdmi +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-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 +reset-tps380x +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 +rk817_charger +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 +rt5120 +rt5120-pwrkey +rt5120-regulator +rt5190a-regulator +rt5759-regulator +rt6160-regulator +rt6190-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-nct3018y +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 +rtq6056 +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_8723du +rtw88_8821c +rtw88_8821ce +rtw88_8821cu +rtw88_8822b +rtw88_8822be +rtw88_8822bu +rtw88_8822c +rtw88_8822ce +rtw88_8822cu +rtw88_core +rtw88_pci +rtw88_usb +rtw89_8852a +rtw89_8852ae +rtw89_8852b +rtw89_8852be +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 +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +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-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 +smpro-core +smpro-errmon +smpro-hwmon +smpro-misc +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-ext-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-cs42l42-i2c +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42l83-i2c +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-es8326 +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-utils +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hda-codec +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-rt1318-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-src4xxx +snd-soc-src4xxx-i2c +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-tas2780 +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-wm8961 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wsa881x +snd-soc-wsa883x +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 +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-microchip-core +spi-microchip-core-qspi +spi-mux +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pci1xxxx +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-sifive +spi-slave-system-control +spi-slave-time +spi-sn-f-ospi +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 +st-vgxy61 +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 +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 +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_none +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_rtl8_4 +tag_rzn1_a5psw +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 +tc358746 +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_mt6370 +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-dlpc3433 +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 +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 +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps546d24 +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 +tps65219 +tps65219-pwrbutton +tps65219-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 +txgbe +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ublk_drv +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucc_uart +ucd9000 +ucd9200 +ucs1002_power +ucsi_ccg +ucsi_stm32g0 +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 +vcpu_stall_detector +vctrl-regulator +vdpa +vdpa_sim +vdpa_sim_blk +vdpa_sim_net +vduse +veml6030 +veml6070 +ves1820 +ves1x93 +veth +vf610_adc +vf610_dac +vfio +vfio-pci +vfio-pci-core +vfio_iommu_spapr_tce +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 +visl +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +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 +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 +xctr +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 +zram +zstd +zunicode +zzstd --- linux-gcp-6.2.0.orig/debian.master/abi/ppc64el/generic.retpoline +++ linux-gcp-6.2.0/debian.master/abi/ppc64el/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED --- linux-gcp-6.2.0.orig/debian.master/abi/s390x/generic +++ linux-gcp-6.2.0/debian.master/abi/s390x/generic @@ -0,0 +1,14061 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x674c165c crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xb5b26985 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xb7425e3d crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x077e4473 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x08c6b6a0 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x15cc08dd dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2b251f56 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2f86456c dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x38344711 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x398deb12 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3b6ce6f5 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x430e926b dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x60a84540 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x63e44f71 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8f0ba501 dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x91e686d9 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa37cb66b dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb4ca9456 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb8d1aff6 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb9c3f158 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdb2e56b4 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdb44429d dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe54905e3 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf89ebf5d dma_buf_map_attachment_unlocked 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 0x17e11786 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x6412bada crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x841784cd crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xb65714f5 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xc09e0b62 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xcd75cd96 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/sha3_generic 0x6e24d6c8 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0xbc0c4e6f crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xbf4dca72 crypto_sha3_update +EXPORT_SYMBOL crypto/sm2_generic 0xee584d6d 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 0x01577397 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03156232 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x035732ff drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0406f8f4 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05ccedb1 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07c3b3f7 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08763e75 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c5d3b1 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08d7146a drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08e02679 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09d15e90 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09fd3bcc drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac4c93e drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ad7782d drm_gem_lru_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aef3821 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e04b18d drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e320c3e drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f5abf5d drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fc9414f drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd4c655 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x102fef6b drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10ca6d72 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d77600 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12fc070d drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13beee32 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13e45631 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x144361aa drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14982913 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x159ad0ae drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x169d411d __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x178b978a drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17b33bc2 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f01d6b drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18ec8452 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c163d8 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a012184 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a374f29 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a6318b9 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bec95a8 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cbbb9f8 drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce6a1ab drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce6c8b7 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d4bffe5 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1db7b650 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de1ec69 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fa81e5f drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb09ec2 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fe29894 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x200fa773 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2014fb7e drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x219f0234 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x222c48f6 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23142086 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23aa43f9 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24399455 drm_atomic_get_new_bridge_state +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 0x257c138d drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25f2c757 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2652cb43 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x273f4dc7 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f4b5df drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27fb247a drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2815a341 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29512238 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2957807c drm_property_add_enum +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 0x2ae620e2 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b09c81a drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b31d0be drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bbab1c5 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c384504 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c4e564e drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d1e06b1 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d5fc465 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb2e089 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ec50454 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x309a5fff drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30c3227c drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e7442e drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31cdbcb4 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3251c907 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3340204d drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346d2227 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34af8428 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x351a9300 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x353db15a drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35806970 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3646f7b6 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x369e8e50 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a19eaa drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36bf49ce drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3745b51e drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d3c69c drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37e3c4bd drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38158325 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39335139 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39b3e4e9 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a0f8fe6 drm_vma_node_allow_once +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a879064 drm_dev_enter +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 0x3c988d70 drm_gem_private_object_init +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 0x3d1bdc42 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d5b2734 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e6ff2f3 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e7dc740 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ea8201c drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41766ce0 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a0b424 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x427cf720 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42861d18 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42b6f2d9 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42e22408 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x436bde0c drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43865bd4 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f83a0d drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x446e7675 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw +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 0x45d0990a drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x466c39dc drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46c412dd drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a1eec5 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a3354d2 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b699a4d drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc65451 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cdd4b36 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cee3e73 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d1e14db drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d1f07f4 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d267f9b drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e243e93 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e936969 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f08765b drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fd0bce0 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50503853 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x507110e9 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50ce2fa6 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50f2708e drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5166cc30 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5182e7f0 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51e85fae drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x523a6ac4 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x530a04e3 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53440879 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53d878a4 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5415e937 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54873dc1 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5558a957 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56d532f7 drm_gem_create_mmap_offset_size +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 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5964c873 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59e9aaae drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a0bc930 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a69edcb drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a6d2efd drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5adcd6bf drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b60ecfc drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c2feb1f drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d57967e __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5d8dff drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d8eadcc drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dd25176 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e37ec15 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ee3850c drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc117f0 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fef3d58 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60714d7a drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61f4acf3 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63287be5 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63e9f82b drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6591dacf drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6715185d drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x678dabdd drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67e28416 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x682fbda3 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68887f9b drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69146415 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a0c329b drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0d9d41 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c6ba4b2 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c6eccf1 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cd3e0d2 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f003712 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x705cc0f6 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c7e46e drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7346da06 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7357df50 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73786a9e __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74472cb6 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x752509ce drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75291b8e drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x759bba97 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x763d0834 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b93ed8 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7764afe6 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x783a9357 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a3f8ef9 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a989ce3 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b7c8567 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b8bef16 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bfe3b00 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c583d14 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d185ca7 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9b3370 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dabe74c drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dfd4fe4 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ea1bed4 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f1d862e drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f7f5cb4 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80629ecb drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82badce5 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82da1546 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8323dabb drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8363913a drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83c05d11 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8403ee30 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8487744d drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84dae278 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x851b4e2c drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85873c79 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86359430 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871e6cc3 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8781541c drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87a0e835 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x888e0fb5 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b46570f drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c619b47 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd1f61b drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f7e24e5 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9003d6c1 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x903e8cac drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x909e524c drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91718bfb __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9218f594 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x925b5532 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92bdd3ed drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9395fa39 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9465ff25 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95808016 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x962029b4 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x967d9aaf drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96eef999 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9841c80a drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x998423b8 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99b1c9b9 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac89720 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b319378 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b54d645 drm_framebuffer_plane_width +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 0x9c0eaf60 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d3da124 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e65f0ef drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd60883 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fe6738c drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0536e50 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa084fd64 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa090c3be drm_bridge_remove +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 0xa43274f8 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa434cbe8 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ec2523 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa600d1c5 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6255714 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6943fc6 drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ff050f drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa82ecbb2 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8b7bd58 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae0e481a drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae326120 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae37cd3d drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae961d3b drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf4ead28 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb07b6225 drm_client_modeset_commit +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 0xb212dc3e drm_edid_dup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3479aba drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4fe0501 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb51b2bb1 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb57c5639 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7428e9a drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9126c28 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb96e44a3 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba808d89 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb0d3706 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc1cf448 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc84c2ab drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd666eed drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0058c72 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0368319 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04c6597 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0584d2c drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc086502c drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19c20bf drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2ae80a8 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc34bb2d8 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3538e76 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3c0c3d9 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5409cfb drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc587b527 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5f0269c drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7838f1e drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc87f5340 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8be69e8 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8c55a1b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9a2143e drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa8f84c drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaee595d drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcceab205 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf03408f drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd06fb4ac drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d8d2b4 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1eba02b drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd215cb9f drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd254e5f0 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd296bafd drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd39c313a drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3d59ef7 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60f524b drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6684272 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7001bfb drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76a89af drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f67afe drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda31820c drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc1da87c drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc79da31 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd12d680 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd9c3bbb drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddccfe73 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde19d7cb drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf2d0cea drm_gem_dmabuf_release +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 0xdf749291 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfbf6cf7 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfe5be84 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1726152 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2471cc2 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe25bfb3c drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3914fe7 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe477c0e0 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ed4096 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6653020 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6a085b9 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7024620 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe734201a drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe74af95e drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8230c47 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8ca36dc drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8cb8aa9 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe914d395 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9f5faed drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9fa3d37 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeab4f2cd drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb47b74b drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeced72e1 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee04ee68 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee538a80 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed2da6b drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef2fc70c drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeff82141 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeff8e3ec drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf015882f drm_crtc_arm_vblank_event +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 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf16960d5 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1a6f83a drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2b998ab drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2c00f45 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4763c41 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4e64d91 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf57fad52 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6b623a3 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7591f4e drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf944cd6d drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a24a34 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa45a8cd drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfafdd773 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc1818d1 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5da374 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfca9a552 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcb70695 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd1432cd drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd2e27de drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdfa143b drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe41e6d4 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe9ffffd drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffdce28e drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x050969ac devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0856598e drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08983376 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08a8a5d2 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x093bdfae drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c33fbce drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d3f2df7 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0da188ac drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dd8723e drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e312884 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fa51fd9 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1077f633 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x110923a1 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x124c5ff6 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12596d48 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12cc2fa0 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15c6fae1 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18698394 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b275e6a drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cd9179b drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d1263cd drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20404057 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x205c79da __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22720caf drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24436c9f drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24879abe drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25ce17ce drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26bca6e6 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28174a1e drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b556039 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c58dfd0 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e4c4876 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f725bfe drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f77a136 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3142fbe1 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32fe8fc2 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3313cc5b drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35645c31 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36e7a155 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38cfd019 drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a1421d2 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aab7da9 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b33208c drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b9aedc8 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c4489cd drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c6666f7 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40fa8120 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4134bedb drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41f92fa8 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x442334c4 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x459ab1e0 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45de06df drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46fe2203 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47727311 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49d6e982 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49e27fc4 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a17c000 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a1e9430 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b41a7bc __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b76c580 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c8b9705 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c9ab092 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e2aad48 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4faea6d5 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51fa4c92 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53744362 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53b257c6 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53e0a492 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54fc1b69 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5574751e drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55db7dc7 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5656ffbf drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57e79ccd drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582728d9 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x598b1c22 drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59c03fd0 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a105fdc drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a539c66 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aa2b037 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ae6da8d drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5db396bc drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5de06010 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e657213 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x610aa1e2 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x621146e5 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x637aecb4 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x654d564c __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x664a9228 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67383e25 drm_atomic_helper_bridge_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 0x6c907892 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e56c004 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ea1727b drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ed3dba0 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f1d3916 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fa64b3c drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7216baff drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7382a5a5 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x751f50e6 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77b771d5 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7964f9dc drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79d9f5d9 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a2c67aa drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b1af727 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c7bcb5b drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cb057db drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fac3659 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fb1b150 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82d96847 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8426185d drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x862f7154 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x893c41be drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89591e0f drm_fb_helper_cfb_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a83ee49 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b0c5868 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b4bcc6a drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f682847 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fa49b78 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x906e629b drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9130380a __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9147e6ae drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x930ab914 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93cec5c7 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9481b6c5 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9770f9ce drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98f8e52e devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bde1b86 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c2098f8 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cb8a9da drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d971d1f drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f5ec342 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa04a5749 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2242e04 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa42af98e drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7e97305 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa83a76eb drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843acc9 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab670818 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacb1570d __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae7c72b7 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf182317 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1fd85dc drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3151ee0 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3c2b76c drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4b52483 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbf3ea6b drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc3d42e1 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbde93c91 drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf4d5d49 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfac863d drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbffe2237 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc460392a drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4ade59f drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc666ce23 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6b15bc2 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc72dab95 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc775f53f drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce43d1ab drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfb84e1d drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd13f8d40 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2648c83 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2d058dd drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd48b0047 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd54fc2d7 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5517942 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8511bd3 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9d75edf drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbbbdf1a drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdce68b75 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde490725 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf804134 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0ba7c33 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe27a7369 drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3462ec6 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe394ccf6 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3f654dd drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4f8dd52 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe54a91a8 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe659cba9 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe69208fa __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe97518b9 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9b282df drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaf58708 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebc6bba6 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef29e523 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef40829e drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0308ac3 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0a519fa drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0fdc49e drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf29d21f2 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf512972c drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6811b85 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7061119 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7c2ca57 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7d02535 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf82eb96a drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa5a2e2e __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfce55cf4 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdfc73e6 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe8edbe5 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfea6a427 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x04f12ff2 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x09dbfb06 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x31d310bf drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x41bad042 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x90edcee8 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x91b00e65 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x97153ca7 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc47d06b2 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd71b44fd drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf49e4a23 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x34790b3b drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x55b7938d drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x59d4758d drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xba656f44 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xbe2fa5c6 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0bb43808 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x302662d9 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x32148b49 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3c4b459e drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4d519f17 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x523164c4 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5ece322d drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x63f7e8b5 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa52e2e79 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb730b4e1 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xba1998f0 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc4001879 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc614aa20 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xce84a421 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe9ea611c drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf0e17426 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00686154 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05791c56 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07d6c44d ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08beab78 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12ff95be ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18182121 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x188662cb ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18f613b8 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21850397 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28de673d ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a2ae098 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e5bcc3a ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x300258d6 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32982d51 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3340b45e ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3377c216 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39511b16 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3dfd546d ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44d10d5e ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ab0236d ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5209cfd0 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5277a721 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56db9d80 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5911723e ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d425e43 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f263760 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65cc0c2c ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f598d55 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73a41384 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75ecee16 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a766fcf ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f33d6b0 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x894242ff ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91b4f863 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98b97ff5 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c62c69d ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d7ca2f3 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0c3ff86 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1737a8b ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xabd7795e ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae575f31 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb73e63fa ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc981eb04 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbeadf7e ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd01b052 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd268350e ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6a87063 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd759f423 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdaf03895 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe08b8c2e ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe656c7f5 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea66de31 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea85eb5a ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb004e54 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebf80e94 ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed413d48 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed7f124f ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee1517d1 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef992600 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf328c2d8 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc543b44 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x216ae03e i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x40efef21 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5fb4b1f4 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/i2c-core 0x01c7f81f __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x035d555e i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x064815c8 i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x0cbb1616 i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1e3f6ef9 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x27b560af i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0x28075451 i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x28a4a8f2 i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2c40938a i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2dc54b9b i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3491d1ae i2c_smbus_pec +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3bfab799 i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x422bb116 i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x55e95678 __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x59f7f05d i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x5e50e169 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x60acdbe0 i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa1f88737 i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa43c512a i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb836eb05 i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0xbcfbb367 i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc8a938c4 i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xcce17718 i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd1eda738 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe3dcca01 i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xea6146f6 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14cfa69d ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x196e6667 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2f116832 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x574c5e0d ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5a0ff936 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5be56932 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d3958a7 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x758fb974 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7c2e7bc8 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x833c3fc4 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x86c9a193 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x96f2f2eb ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9ace3bd4 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb8b9272c ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbfb35798 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00165d06 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0053f1cd ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01ee4b78 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x030f6e3f ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03a59884 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03d16698 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x048ea200 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05b1b73b ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0609d716 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09a0301d ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a74b603 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ea2002c ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f9663ea ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11c63631 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12402ae2 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15c0874d ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16940851 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17024825 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x174dccfc rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19b25fd0 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c7d2b00 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d371b4f ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e6979b4 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21edd46f rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22eb6c0c __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2360fb2b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24895161 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24991bf9 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24eca5a9 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2510dbaa rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2650253b ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x265946e2 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27e9aa32 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a0bbd2e rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b056c8c rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c68ad3f rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cc775af ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d4bd704 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dda3896 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2de712e7 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e08f4af ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e0ee53f ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x304f1a71 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3071af59 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33336828 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3490ab30 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x368d7bb1 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x381f2f3b rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e8116ac ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f413c9c ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40815538 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42212bdb ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x450e9ca9 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47244a66 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47399bd4 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47a00135 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a45b294 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4aea42ec ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c0f80b9 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dd87c5b ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dde9613 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e30fe25 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fd9a61d ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x502da698 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51656355 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52701a77 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53ab84d2 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55b05b23 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57eb69f3 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59319cb6 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e330981 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e3b8c8e ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eed5bb0 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f8b9038 rdma_query_ah +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 0x64e0cb3c rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x663b6518 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6662ca44 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d0e241 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x684b191a rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68a6e783 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a640eaf ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b7c1366 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bddcc94 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c5e3abf rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6de4ef90 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7048935f ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x708ec7c0 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72131ff7 ib_mr_pool_init +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 0x763cd662 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77603de9 ibdev_crit +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 0x7a172d20 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a5c5747 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8099a452 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80fe99a8 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8297ab28 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84c369f5 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84f5cbf8 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8958e396 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fdd8eed ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90957444 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91696d65 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9184cb95 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9573ffe4 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97fd1ae5 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9966dfdd ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a38f298 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c1cc0cb __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c22bfef ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e01a2ec rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0148043 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa097bb5e rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0bfc5a1 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1138f09 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2833970 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5000703 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa579c0da ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7adc863 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa865c22c rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa943bdd7 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa5222bf rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa6cde5d ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad10559a ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae08bcac ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae556cf6 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf626513 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafa73d8f rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb022ec8d ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1b8eca7 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1e54f3e ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2d61820 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3dfdc8b ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb41c916c ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb78792c1 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba469085 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd31d996 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0b3a904 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc157de0e rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc24948a5 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2838adc ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2a4de37 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc360c653 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4dba8ec ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc519ba02 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5ef6173 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8f502ed ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb2f4d88 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd769da0 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd12f00fc ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd245aea5 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2722321 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd345387d ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd41e8537 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd54cc773 rdma_rw_ctx_post +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 0xd767951c ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd88f692d ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8c6a71a rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8f3c616 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd95e9add ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd97065cc rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd9325f3 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe04a93de ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe22e4986 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4b013e6 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe55993f9 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5818938 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5ca62e8 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe71c05f6 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe836b465 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8fd66e6 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe90d31ee ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe95e4c86 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb31252d ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebdd34df roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed59d773 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedb618b6 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee1c719e rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeec681e4 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf14a5364 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6092895 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7109a1d ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7926197 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9cb55f3 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa4558c6 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa9b3683 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb2bd8ec ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb962b57 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbc3a9a8 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdc4858f rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe502383 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe725ce9 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x031aea6a flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0aac8b3c ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x12765212 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x193532d9 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x38936849 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4147f363 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x43550203 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4577ffd1 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4937eb49 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5046e103 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53d1c276 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x55c73e5b ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5655ec02 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56c06d6b ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x58e8ad7c uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c746e21 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6128d95f ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61fa7f83 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x623e6240 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6c0df2ef uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x843ccc94 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88b26df5 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b373151 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9f1e8b3b ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa57b6ef2 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa61e1fca flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb85ab055 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc012c6c3 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd653df99 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdd89e02a uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe08b0f67 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe7cc1e5a ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe836b882 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xefbb1fbf _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1d8e6f4 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8a4114f ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfbc7cd6d uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x10ff6d88 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3a81eeac iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x46a29e1d iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x53850fdb iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x538fb33d iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x74014615 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8a62cb60 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe461b0f6 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x06ee8fb8 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e9d1bdd rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x194a50c6 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x271b4f04 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27ef4445 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x331d3f99 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41f653a4 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x49512fde rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a2d04a6 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x507f76f5 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x554afd17 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x64f5d99a rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b629751 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f42ad87 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f976d47 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7113e8a7 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7380b89d rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8c6fa5b3 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94f8b5c6 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x966e5107 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x98d3bc11 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa819f40e rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa9491c2a rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xadab45e4 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf958f0e rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe21a424 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc00f0d09 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0ac2402 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc908602d rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdedd95de rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf4a1ea6 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe388d5fd rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf356a784 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8c2f376 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x00029e47 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x161b5c03 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x22ed4627 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3699ee06 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x76169bad rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe8164d04 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf3027ae1 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x3bbc6854 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5cc818a0 sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5fc4bb57 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7d5654e1 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f6c7edf rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xb4db700d rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc28750dd rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x12433cb9 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x15672a5f rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2b25231a rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x39cd2ef4 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x943ad5e1 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd262cb39 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/md/dm-log 0x6a2c6acf dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x7fe9b74d dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x83dd4eaf dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xb02793d0 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x54e62028 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6eb2955b dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x71aecfff dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x82648007 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbafe4119 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc2715383 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x7ff46fc7 raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0xb146cc4c r5c_journal_mode_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02fdf831 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x089dd676 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x161b0203 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x276548b4 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x281578b4 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ee8aaa6 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ef17c75 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c498f62 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3db88e45 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b978a3 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47a83b3c mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eb064be mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50efd09b mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b6a13e4 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6109e011 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x629a2bdc mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63ee02f7 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69e932ca mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7357c032 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ade1949 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d67bc2d mlx4_get_slave_pkey_gid_tbl_len +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 0x8354ad65 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x889f36ba mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f1fd81d mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9430ca87 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98b971f8 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa25140a4 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7add390 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2cd57d0 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba0f500b mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd132ddc mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0430de6 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc73f8cf8 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdea0134 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf5061ae set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8bc9af3 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd3effc5 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdda59bf1 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdebb3539 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfbd4fef mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5953919 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7fa9829 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb5aee09 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfff48853 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01c5ebc5 mlx5_core_destroy_psv +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 0x05ec5d0c mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x063d7067 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0685ace6 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07974e06 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08a35763 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0946e340 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c00ae34 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e52ef8b mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ed1e650 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f7b1c60 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10b311cc mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11bb8ea5 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15242493 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16d418cb mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19585ace mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19d5460b mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a09aafc mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1adef9fc mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b73257d mlx5_rl_remove_rate +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 0x1e5cbc27 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21c27e2c mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24722638 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2613e0f2 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27ec34c7 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27f20805 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29e9c71c mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b7fa954 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x309a0ec5 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30e64717 mlx5_core_dealloc_pd +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 0x33d5b9a2 __traceiter_mlx5_fw +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 0x359be43c mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d545a53 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eeb9c25 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x404c85cc mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43634b3e mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43764d59 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47ce00e5 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a51c19b mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c2c558e mlx5_debug_qp_remove +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 0x4e193b5b mlx5_core_create_tis +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 0x51544807 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52713f99 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54c9c79a mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54fa751f 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 0x5a45374d mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c452095 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fe950ad mlx5_get_fdb_sub_ns +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 0x64827211 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x649012c5 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65df1981 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6702d699 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68478f93 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68d60a0e __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69784191 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6acfd3c2 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cc4a821 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6da237fb mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fcfcb02 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70596ef6 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7107e9f7 mlx5_core_roce_gid_set +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 0x74698b7e mlx5_fpga_mem_read +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 0x7cb452c2 mlx5_create_auto_grouped_flow_table +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 0x7e770057 mlx5_vector2eqn +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 0x83b5b105 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8670457d mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8700c4fe mlx5_eq_create_generic +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 0x87be0c6e mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888791d0 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x899f49fb mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89f41a88 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c9f2277 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d1b8f88 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dfc1126 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x909afd57 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x918f5511 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94b3379d mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9500254f mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96256564 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96b9fb20 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x985e1ec8 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc81b54 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cd0b1a8 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cddbc60 mlx5_core_destroy_tis +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 0x9e461694 mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa347f330 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa511c089 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6372731 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6502d4b mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabc66e25 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac0f8d4b mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf335351 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafb21898 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb112362c mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb11422ae mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb23230b6 mlx5_core_create_mkey +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 0xb6fb8733 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72ab986 mlx5_vf_get_core_dev +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 0xb98170b6 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd1ea0ac mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc093f285 mlx5_rl_add_rate_raw +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 0xc5fb9e0b mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc72d459a mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7dfe29f mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8105798 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8737e65 mlx5_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8f78e31 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96dae22 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbe4137d mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc8f4bec mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce55047f mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce818d8d mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xced688f3 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf2160ed mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1eeb5f3 mlx5_packet_reformat_dealloc +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 0xd7414ea1 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8b7ccc7 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda0cd841 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde599878 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe21088e0 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a8b511 mlx5_core_query_vendor_id +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 0xed558ccc mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedf6a6c3 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeff42b2e mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf14d3ebf mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf22c00af mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf44e93f7 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf46a6995 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7182ee8 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7cf3d6b mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf880808d mlx5_lag_is_roce +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 0xfbf052d9 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc2430c6 mlx5_notifier_unregister +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 0xa94ee689 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 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn +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 0x0f4a209d mlxsw_core_read_utc_sec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode +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 0x16f4221d mlxsw_core_irq_event_handler_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x288d16e3 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 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35d1fd56 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a679c4 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e2424ee mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e4ae04b mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x510a2cc7 mlxsw_core_rx_listener_register +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 0x59b374c0 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d4ffdc9 mlxsw_env_reset_module +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 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio +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 0x718d28f4 mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7520a75c mlxsw_core_trap_unregister +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 0x7e08c6e0 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x83fb69af mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x84755cd2 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86817014 mlxsw_core_read_utc_nsec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8e2760b0 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9475e30a mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa2f75c4d mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa58339f6 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xadddd049 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb4839e16 mlxsw_core_driver_unregister +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 0xb7954b1d 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 0xbda212df mlxsw_core_irq_event_handlers_call +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc8c29e39 mlxsw_core_traps_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 0xd111d3e8 mlxsw_core_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag +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 0xd888ffb3 mlxsw_afa_block_append_ip +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 0xdc5c95df mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde534aad mlxsw_core_ptp_transmitted +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 0xdf1818cf mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1860dde mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop +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 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf8afd924 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x4092d2c1 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x75da88f5 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x90224775 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/team/team 0x2e618175 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x34bf1aee team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x3bf6ad4e team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x43f92402 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x5401739b team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x5974e8de team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x617d316b team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x7b9a6582 team_options_change_check +EXPORT_SYMBOL drivers/ptp/ptp 0x27b14d03 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x34bbc919 ptp_cancel_worker_sync +EXPORT_SYMBOL drivers/ptp/ptp 0x461b0e2e ptp_schedule_worker +EXPORT_SYMBOL drivers/ptp/ptp 0x70c08409 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x94bd2fa9 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x9ac5250c ptp_find_pin_unlocked +EXPORT_SYMBOL drivers/ptp/ptp 0xd54df3e4 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xd8409e28 ptp_clock_event +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x00b0adb8 dasd_path_create_kobjects +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1b42c16a dasd_smalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1d9ecd96 dasd_log_sense_dbf +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1ed9ac8c dasd_sleep_on_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x200e560a dasd_path_create_kobj +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x228467ee dasd_default_erp_postaction +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2390320e dasd_ffree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2dbda5c1 dasd_diag_discipline_pointer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x32cb7852 dasd_block_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x48c7886b dasd_eer_write +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x565cd82c dasd_path_remove_kobjects +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x59c83a76 dasd_kick_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5dc38a63 dasd_schedule_block_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x67aa306a dasd_log_sense +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x6ecb9c1a dasd_add_link_to_gendisk +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x748b13bc dasd_int_handler +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x76f21dce dasd_debug_area +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x802287a0 dasd_sleep_on_immediatly +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8bc11668 dasd_schedule_device_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x90993a10 dasd_device_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x925d2d0f dasd_schedule_requeue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x965678c5 dasd_start_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9a262e5d dasd_sleep_on +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9aa64aff dasd_term_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9ec6d448 dasd_sfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa4395f66 dasd_add_request_tail +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb7233f0e dasd_alloc_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc00e0bd7 dasd_add_request_head +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc134caac dasd_sleep_on_queue_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xca945d2c dasd_enable_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xceb518ec dasd_block_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd0c2e7c9 dasd_device_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd174dd9d dasd_free_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdc30f46c dasd_default_erp_action +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe3e1784e dasd_fmalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf08d08f4 dasd_set_feature +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf34f301e dasd_reload_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 0x03b13e9a tape_put_device +EXPORT_SYMBOL drivers/s390/char/tape 0x124be742 tape_do_io +EXPORT_SYMBOL drivers/s390/char/tape 0x13f7b072 tape_std_unassign +EXPORT_SYMBOL drivers/s390/char/tape 0x1b157b39 tape_std_mtsetblk +EXPORT_SYMBOL drivers/s390/char/tape 0x1c063c1b tape_std_mtbsf +EXPORT_SYMBOL drivers/s390/char/tape 0x1eb77e80 tape_cancel_io +EXPORT_SYMBOL drivers/s390/char/tape 0x25228930 tape_std_mtreten +EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x2558cb5f tape_do_io_interruptible +EXPORT_SYMBOL drivers/s390/char/tape 0x26343f63 tape_generic_offline +EXPORT_SYMBOL drivers/s390/char/tape 0x2e0136f8 tape_std_write_block +EXPORT_SYMBOL drivers/s390/char/tape 0x2fcd9744 tape_std_mteom +EXPORT_SYMBOL drivers/s390/char/tape 0x336f6d72 tape_std_display +EXPORT_SYMBOL drivers/s390/char/tape 0x3992d559 tape_std_read_block +EXPORT_SYMBOL drivers/s390/char/tape 0x3b6ca2b1 tape_std_mtcompression +EXPORT_SYMBOL drivers/s390/char/tape 0x4e0eb526 tape_std_mtnop +EXPORT_SYMBOL drivers/s390/char/tape 0x4e60a1dc tape_dump_sense_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x4e6926f6 tape_get_device +EXPORT_SYMBOL drivers/s390/char/tape 0x5a4fb416 tape_std_mtfsfm +EXPORT_SYMBOL drivers/s390/char/tape 0x5da6e51a tape_std_mtfsr +EXPORT_SYMBOL drivers/s390/char/tape 0x65044327 tape_core_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x708dfafe tape_generic_online +EXPORT_SYMBOL drivers/s390/char/tape 0x7440a038 tape_std_mtbsfm +EXPORT_SYMBOL drivers/s390/char/tape 0x851f689e tape_do_io_async +EXPORT_SYMBOL drivers/s390/char/tape 0x877b0fa0 tape_std_process_eov +EXPORT_SYMBOL drivers/s390/char/tape 0x935ac606 tape_free_request +EXPORT_SYMBOL drivers/s390/char/tape 0x936e188a tape_generic_remove +EXPORT_SYMBOL drivers/s390/char/tape 0x9a6c9b1f tape_alloc_request +EXPORT_SYMBOL drivers/s390/char/tape 0xa71f9366 tape_std_mtfsf +EXPORT_SYMBOL drivers/s390/char/tape 0xae677087 tape_std_mtreset +EXPORT_SYMBOL drivers/s390/char/tape 0xb75f4d02 tape_std_mterase +EXPORT_SYMBOL drivers/s390/char/tape 0xc35ac177 tape_std_assign +EXPORT_SYMBOL drivers/s390/char/tape 0xc5434efe tape_std_mtweof +EXPORT_SYMBOL drivers/s390/char/tape 0xc79098aa tape_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0xd0c22457 tape_std_read_block_id +EXPORT_SYMBOL drivers/s390/char/tape 0xd4b7a021 tape_std_read_backward +EXPORT_SYMBOL drivers/s390/char/tape 0xdcacb82a tape_std_mtload +EXPORT_SYMBOL drivers/s390/char/tape 0xe320ea99 tape_mtop +EXPORT_SYMBOL drivers/s390/char/tape 0xe3a550a2 tape_std_mtoffl +EXPORT_SYMBOL drivers/s390/char/tape 0xe3f6ac5a tape_std_mtunload +EXPORT_SYMBOL drivers/s390/char/tape 0xe46198d4 tape_std_mtrew +EXPORT_SYMBOL drivers/s390/char/tape 0xe6bf4a67 tape_std_mtbsr +EXPORT_SYMBOL drivers/s390/char/tape 0xeb945d40 tape_med_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0xf4a75f6d tape_generic_probe +EXPORT_SYMBOL drivers/s390/char/tape_34xx 0xaac8489a tape_34xx_dbf +EXPORT_SYMBOL drivers/s390/char/tape_3590 0x6715bec8 tape_3590_dbf +EXPORT_SYMBOL drivers/s390/char/tape_class 0x37d6db24 register_tape_dev +EXPORT_SYMBOL drivers/s390/char/tape_class 0xe4ffb1c4 unregister_tape_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x0d2e8161 ccwgroup_create_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x3e9480b6 dev_is_ccwgroup +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x72c7f69f ccwgroup_probe_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x74965d42 ccwgroup_driver_unregister +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xb155d6aa ccwgroup_driver_register +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xd112aaec ccwgroup_set_online +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xde03e449 ccwgroup_remove_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe8d44488 ccwgroup_set_offline +EXPORT_SYMBOL drivers/s390/cio/qdio 0x134673fb qdio_start_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0xefdb442e 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 0x004671fb zcrypt_card_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0327b454 zcrypt_send_cprb +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x097e8f77 zcrypt_msgtype +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 0x13776891 zcrypt_queue_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x17a7ba6e __SCK__tp_func_s390_zcrypt_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1c8c6b9a ep11_check_ecc_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x274ee02a ep11_findcard2 +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x28f251de zcrypt_queue_alloc +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 0x3a24166a cca_check_secaeskeytoken +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x404502d2 __traceiter_s390_zcrypt_rep +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4921ce1e zcrypt_queue_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4aad03c0 cca_gencipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x52190334 cca_sec2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5284b5ac zcrypt_card_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5ce0ec1a zcrypt_queue_get +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 0x7daa2e4e zcrypt_queue_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x7dd52fc2 ep11_clr2keyblob +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x85ca4e1d __traceiter_s390_zcrypt_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x864f8448 zcrypt_queue_free +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x8dfbf011 ep11_check_aes_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9032dd84 zcrypt_device_status_mask_ext +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x93265130 zcrypt_card_get +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x989f544c zcrypt_card_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9992a66f cca_clr2seckey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9c21765e ep11_check_aes_key +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 0xb11e8fee cca_check_sececckeytoken +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 0xd04c5de3 zcrypt_card_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xdb0adadb ep11_kblob2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xdc46d367 cca_check_secaescipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xde81d722 __tracepoint_s390_zcrypt_req +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 0xfa128312 zcrypt_send_ep11_cprb +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xfa75400e 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 0x488ba516 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5b914a0c fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x666f7410 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x949c30fa fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9bb1eb43 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9d2a9e1c fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbd673acd fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xca4ddf70 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf3e2a734 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf6dee721 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf7e9e96f fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1670a649 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17045051 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1801077a fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1bda4876 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21b3b10e fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x293af6a0 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30c8d3e6 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x321723b1 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3275be18 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a694ae9 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d2946f3 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x423f8c46 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47d780b5 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4af808a4 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c942b34 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ce0da4e fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50464572 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5579304d fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5aba00b3 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d8d4e71 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63b3f65f fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63e89388 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66582098 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ad550c1 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a571942 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x801dc1c9 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83787bbd fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8946a81c fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f4cfce2 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x917adf45 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95d6064e fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97f1c578 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x989c6bd3 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a5ef534 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a639c3d fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9aa596d8 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f8d78f7 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa12310e5 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5a1694f fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7f24aeb fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabf756bd fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae641daf fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb661880a fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7e3c407 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9983700 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9df38c3 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc30d3be7 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6d90a52 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc80cfcd6 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd003d4d fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcfd0a359 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd189c37c fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd972891 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf8148c2 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe77f4875 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1e0571d fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3788742 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3d6b592 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfef61e80 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x062ee951 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x17cb2f7f sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2938f3d0 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc8edd23d sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/raid_class 0x3edef6f7 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x8a021015 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xa898cbf9 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x00619823 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x04ee748c fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0a747008 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4f382da1 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x508e51be fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6d98bdf9 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6ffdbd9a fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7deed027 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8320e3e4 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x884e91eb fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x925ea998 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa115f32d fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa71595db fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb344ae26 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbdd9434e scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe2198584 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe68ca8b3 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0eed2589 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x107d6a8d sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3422a437 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3513ab3b sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x392baa36 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41f2f9f6 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x48964e1c sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x51176bc1 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x546378dc sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5795ddb9 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e6a1add sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x72259a7a sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74ea8bdc sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87450d4c scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8869547b sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88bb6d1f sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92e51ce7 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93488a95 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a7f277f sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa37bd9d6 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa8687291 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb76a55b8 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1f7e78c sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6bd8470 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd92a5293 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9867ad4 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa7ea5c9 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfbeb3dfd sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff481cdd sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1c380648 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5598038f spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8cf5da26 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd369afc9 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf3bc9c5a spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0de66008 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6bf8f54b srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6ffe9469 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x949552de srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa1d0b434 srp_reconnect_rport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x025f75c7 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06fefcf3 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0db471c8 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10fcbd01 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x143b2ad8 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14a11803 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f92887d iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x212797ab iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23c8d109 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ba16fa0 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32ea23f7 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x362861ad iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d0c5c18 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3de8661c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f99dee3 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x446501ca iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d88bcbd iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62d1bace iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e26ea82 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x714fac42 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72499a31 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73d4befc iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x755f7974 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93c6d009 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9455d5f0 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8ca8af8 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xabc575fd iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaee6aafc iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbe80744 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbb88c56 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc5f73b0 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xccd36b90 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcecb3bab iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf423a86 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd26f061b iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2d4245b iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdceb7e3b iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde487692 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde760eb9 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe592ec1d iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe80c983c iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeba22d6b iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2f1f81b iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5b482df iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7d61cd3 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/target_core_mod 0x012bbfb8 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x05f3f7c4 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a1812e5 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x167a6149 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bc23147 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x26bd1c57 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b12d77f spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c860679 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f054939 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f66a5c4 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x3291ee43 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x39ae3299 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x39cc1cfc core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x44fc938d __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x48861f90 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x491d7e2d target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4afcc182 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x4efc1983 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f82f979 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x51e9633c sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5470d1b1 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a1a6e44 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f49293f __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x65601adf passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c0b77ed target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e21a5f8 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x70242ce2 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x71a861a0 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x72c7018c transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x736c2cdb transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x768f5658 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7826e5dd target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a179b25 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7affd010 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c90621e target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x836cabf7 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x85c9c3ea target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b6928c5 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e480b94 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9254532e target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x933256af transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x940e61d5 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x95b0c242 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9694b10e target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x9893ef74 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a10256c target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b0ab538 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f2ee8ac target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4d29f3c target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7349dd6 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa897b469 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0d5985c transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xb30983b4 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5d829ff transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6c7f5b6 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6ef5fbf transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xb88ae708 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xba1a383a target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf52d137 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf95e190 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8925248 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd31c2f0 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd171a515 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6965962 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7002543 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd73d59f6 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7cd172f transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xda3ebc73 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcd4aa87 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xed031cd6 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf20445f8 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3209954 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd06bb76 transport_free_session +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x057b40cf uart_register_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x0d57440b uart_remove_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x0f183c3d uart_suspend_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x19dc7644 uart_write_wakeup +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x230098e1 uart_update_timeout +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x41db8619 uart_add_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x4607881e uart_get_divisor +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x851d6d65 uart_resume_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xbfe638cc uart_unregister_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xdbfc4e99 uart_get_baud_rate +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xf0209ebb uart_match_port +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7678d1fd mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8ac9075d mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8e82f757 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xba0bbe75 mdev_register_parent +EXPORT_SYMBOL drivers/vfio/vfio 0x34afb3e2 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x4232a0c3 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0xaf8a4a7f vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xb5354493 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xce586852 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xf3411eb8 vfio_info_add_capability +EXPORT_SYMBOL drivers/vhost/vhost 0x962a1d0e vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xfefa03c7 vhost_chr_write_iter +EXPORT_SYMBOL drivers/video/fbdev/core/cfbcopyarea 0x08cda14f cfb_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/cfbfillrect 0xa9bfa452 cfb_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/cfbimgblt 0xc8e3feb7 cfb_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x9d19a774 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x3c6ba269 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xef0bc2e7 sys_imageblit +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x12921e60 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x589dd6e7 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x70ba0529 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xd2197f4b virtio_dma_buf_get_uuid +EXPORT_SYMBOL fs/fscache/fscache 0x13e251b9 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x14562a69 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1a25cfa0 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x21e1ff86 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x251b7221 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x292d3e89 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2e1fdcb6 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x342e5e36 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3f591399 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x4851e6dd __fscache_acquire_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 0x6c5e41e7 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x77a93b1a fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x782a8fd7 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x7b5d0529 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7e29cb60 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x7fd37769 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x844bbaed __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x877cab7c fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x9d27a297 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9ef5af8e fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xadddea42 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb0c7358c __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0xb3ac4808 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xb8d64790 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xc3516626 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xd067d0bb fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xde0e62d0 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe34c16f5 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe5bc2eec __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf2d02056 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0xf68b44dc fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0xff20eabd fscache_clearance_waiters +EXPORT_SYMBOL fs/netfs/netfs 0x4bd6a129 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x7c0d9e82 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x98fd1f13 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xc480e632 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xf3433480 netfs_subreq_terminated +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x18113552 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x2919433e qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x49c47b03 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc0cc7b95 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdf9034ee qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xec9aa381 qtree_get_next_id +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 0x1df0ca1d lc_get +EXPORT_SYMBOL lib/lru_cache 0x55ef57af lc_find +EXPORT_SYMBOL lib/lru_cache 0x57c12aac lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x5f8e9bc8 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x5fcc5043 lc_reset +EXPORT_SYMBOL lib/lru_cache 0x6c0e9649 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x6d34adaa lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x82d556b7 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xa96da040 lc_create +EXPORT_SYMBOL lib/lru_cache 0xb5ce3732 lc_put +EXPORT_SYMBOL lib/lru_cache 0xbb4ab7f7 lc_committed +EXPORT_SYMBOL lib/lru_cache 0xd2c9f32a lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xdca3cd72 lc_del +EXPORT_SYMBOL lib/lru_cache 0xe8d41b56 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf23b2791 lc_seq_dump_details +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 0x20d940a2 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x3a929b7d register_8022_client +EXPORT_SYMBOL net/802/psnap 0x3a44869f unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xa3dbec01 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0a85e3aa p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x0e42e43c p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x0e8723d4 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x16df3f8e p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x1de99b1d p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x1efe4749 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x22d0ff53 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2471e132 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x29da088a p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x2e70f4bb __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x2f5c8e7e p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x340c8c20 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3576e9a4 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0x3d22a595 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3eef6d5b p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x40994778 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x4bb518b4 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x4fd851d9 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x50771f68 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x59109163 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x6461620c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x669daad7 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x674989f6 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x74593ee5 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x7488eaab p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x75c4ed47 __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x762c74eb p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x7a4d6f23 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x7f0a224a p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x8a593dd2 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x8a749ad0 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x96a13304 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x9bc57462 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9dfa770e p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x9e1be876 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xa80d6235 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xbcfd0ab4 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xc7bad4fc p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xca2744df p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xcbada82e p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xcd68839c p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd55de6a9 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xd8ab23b6 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xdb7281da p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xdba39761 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xe57367d5 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe6fa3d49 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xeb20507e p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xf503c9ce p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xfa6c2eb9 p9_client_unlinkat +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x113e9094 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4028320b ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4fc86ace ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcc05fe5a ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xda3a0698 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdc1c63e4 ebt_register_table +EXPORT_SYMBOL net/ceph/libceph 0x01cd221b osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x022dbd8e ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x07d1e2e8 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0a5dc704 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0ce74839 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x0d1fe700 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x0e776b7e ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x11889fec osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x1c395dd5 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x1d957fb8 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x1f211dd5 ceph_copy_from_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 0x21bda66e ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x2894fb74 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x2c99a52b ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x2d206c10 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x310bed8e ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x321f5e2c osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x328ea068 ceph_monc_init +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 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3c3c095d ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3ce2ab65 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4a5aa4fe ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x521399f0 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x527bb3a8 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x52e131f0 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5a183175 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x63ab2af8 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x66a3f227 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x67b24e6b osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6bd074e6 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x6f672f2d ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x720f265a ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x740ec8fa osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x75d659b8 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x7790a91c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x77977725 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x77f87a75 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x7d9a69f1 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x7f910e4b ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x7ff33361 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x8111e973 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x81d82bea ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x8375650f ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x85f3cab2 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8619cdf8 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x8699c0c3 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x89d6b045 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x8d2cec4b ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x905ef6ef ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x90ee4a42 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x92d4efff ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x93be3b8e osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x93c76dcf ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x97ec9d2e ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x99094ffb ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x9bfb0fba ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x9c3c1aca ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9cb24924 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9d03fdaa ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9d49719c ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x9f0ccee5 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x9f59eb97 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa0e8c5a9 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xa376f5df ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xa4b44082 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xa5136196 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xa58b7e99 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xa5f12980 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa798d940 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xab48cc66 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb213434c ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xb2c9a223 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xb52d2dda ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb7c65542 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xb7fca606 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xb8028006 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xba80b3e1 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbb880973 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xbc57bc66 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbc73acdc ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xbc98cee2 ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc0a0de0e ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xc0e52889 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xc19cf490 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xc475a040 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xc49476f0 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xc6b7aa2c ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xc97d7f52 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc9bc4591 ceph_osdc_flush_notifies +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 0xcd91fe7c ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xd1255bd7 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xd42725dc ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd69ec763 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xd791555a ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xd7c4dbee ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xd8a7f817 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xd97de220 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xde9cc67b osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xdeddd368 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xdf007051 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe1271767 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xe3cc459d osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe3f103c6 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xe539e0aa ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xe669cc76 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xe6ae2e49 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xe85108a4 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe8f82c10 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xea908c11 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xf23849b5 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf3186e01 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf548e012 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xf9a61cf5 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xfcd58415 osd_req_op_extent_update +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x4317266b dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x83fef95a dccp_req_err +EXPORT_SYMBOL net/ipv4/fou 0x1657d64d __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x3899cd11 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xb56fc632 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xdef70806 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x0a8e0176 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4916cc3b ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5396cefb ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x98387608 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa0c6247b ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2228a58b arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5e54e6c1 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7bef653c arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdc86cb29 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0c016a74 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1ce51602 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6a2cb97f ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd8100432 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x6cad4976 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xb93906f1 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x82643c61 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x05563259 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x195dcd6f ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x768661e1 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x82c27655 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x93192cff ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x958fadc7 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa25c3370 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaa709d66 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd4049147 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0b8f06ba ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x79f28c4a ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7bd7649a ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x861283c8 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x3f7929ad xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x72699c0e xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x19e98ffd xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xfde32968 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/llc/llc 0x1eb85f6d 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 0x58d70044 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xaa26c465 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xb7190ee5 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xc753e3ec llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xf03b6391 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xf1076473 llc_add_pack +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1197fa62 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x13b3ad2b ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x157bda1a ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x16c115db ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2114f245 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2a10b62c unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5a083240 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b7b45a6 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5fb847ae ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x86bdb833 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8c30821f ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc65e1c74 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe786ada6 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec222039 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf3a034da 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 0xe548a3ef nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x4cf323b9 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x62e707c2 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7a2b5289 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xa963f341 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x1c4b82fb xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x4391539d xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x55c940eb xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x634f1e08 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x63a5c13f xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x65401a3b xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x69c07fd6 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xb1a1b3d5 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 0xdcbf1f02 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xf694b5fb xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0da68316 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x38f4f504 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x444fb3b4 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x50da744d rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x58978679 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x662e20ca rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6b65198e rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8bbb5b73 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8ff60f5e rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9d31a51a rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa039a682 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb0d89bb1 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbdf504d2 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xccd9a78d rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe10c5227 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe233783c rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xec650ee2 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf2b418e6 rxrpc_kernel_check_life +EXPORT_SYMBOL net/sctp/sctp 0x78b13a11 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x03e48e9e __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 0x497725c2 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x6eec0675 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x766d236c __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 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6d1b9bd1 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8b9c2afb gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdf9d42ec gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x39780eb7 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb45867fd xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc38c4979 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x00565b94 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xc793347b tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xcea68b46 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xfee35100 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0xad083954 tls_get_record +EXPORT_SYMBOL vmlinux 0x000016e9 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x000320fe __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x0010d89f send_sig +EXPORT_SYMBOL vmlinux 0x002b48e1 input_open_device +EXPORT_SYMBOL vmlinux 0x00391426 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x005bd642 debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0x008b371e tcf_block_put +EXPORT_SYMBOL vmlinux 0x00b1d728 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00b84e7e inode_get_bytes +EXPORT_SYMBOL vmlinux 0x00cfdb28 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x00d8e84a mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0x00ebf98f seq_dentry +EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0119678b kbd_ioctl +EXPORT_SYMBOL vmlinux 0x011a4054 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x012579ba inet_protos +EXPORT_SYMBOL vmlinux 0x0134ebd2 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x0135d6fc skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x0140f5c7 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x014529d6 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x014716eb hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01534586 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x0157e414 dev_load +EXPORT_SYMBOL vmlinux 0x01585ca5 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x019b92b0 sget +EXPORT_SYMBOL vmlinux 0x01a20ede radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x01a59b6a flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x01a807b0 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x01a9df30 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x01b49a57 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x01b50c6c skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01dfa534 flush_signals +EXPORT_SYMBOL vmlinux 0x0205d411 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02536cb2 rt6_lookup +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02922c73 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a6076d kobject_del +EXPORT_SYMBOL vmlinux 0x02a67501 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x02b5bcb6 override_creds +EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x02d8d13e __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x02f034a1 xz_dec_run +EXPORT_SYMBOL vmlinux 0x02f4d77f __SCK__tp_func_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0x0328b1c6 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x0332c029 kmalloc_size_roundup +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033626c9 registered_fb +EXPORT_SYMBOL vmlinux 0x03413ed3 vmemmap +EXPORT_SYMBOL vmlinux 0x034833a8 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x034a7afe idr_destroy +EXPORT_SYMBOL vmlinux 0x035ea440 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x035f5cb7 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x03736e9f param_ops_long +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037f8f53 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x038762c8 idr_get_next_ul +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x03b8a1ac nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x03c2b1f6 proc_symlink +EXPORT_SYMBOL vmlinux 0x03d04acc dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x03d2240c add_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x03d76108 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x042cf239 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x04374924 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x043fa8a0 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04444662 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x0493a50c generic_read_dir +EXPORT_SYMBOL vmlinux 0x04a77229 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x04bd93ea netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x04c182c8 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x04c3219e elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x04d3aaf1 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x04fca5b7 percpu_counter_sum_all +EXPORT_SYMBOL vmlinux 0x04fecbcb __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x05082c88 kobject_add +EXPORT_SYMBOL vmlinux 0x0513f708 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05483c2a nf_log_unset +EXPORT_SYMBOL vmlinux 0x056c3b2e tty_lock +EXPORT_SYMBOL vmlinux 0x056f79ba scsi_print_command +EXPORT_SYMBOL vmlinux 0x0584d4ac __traceiter_s390_cio_ssch +EXPORT_SYMBOL vmlinux 0x0585d526 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x059da95c sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x05a363c8 raw3270_request_set_data +EXPORT_SYMBOL vmlinux 0x05a44d76 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x05b872f7 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x05df72e2 proc_mkdir +EXPORT_SYMBOL vmlinux 0x05f20b7b nla_reserve +EXPORT_SYMBOL vmlinux 0x05f2d06a input_get_timestamp +EXPORT_SYMBOL vmlinux 0x061651be strcat +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 0x0662f3fd tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06786f19 audit_log_start +EXPORT_SYMBOL vmlinux 0x06a35dcb kset_unregister +EXPORT_SYMBOL vmlinux 0x06bc5d1e blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06d29560 unregister_key_type +EXPORT_SYMBOL vmlinux 0x06e276df qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x06f0a409 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x06ff319b input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x07014243 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x070937a5 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x070c08c8 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x0734fb0f kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x0736c3ff fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0x07477af5 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x074970e9 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x074a7912 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x075439c7 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x0770d4e5 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x07760cb9 register_service_level +EXPORT_SYMBOL vmlinux 0x077ac8a5 generic_update_time +EXPORT_SYMBOL vmlinux 0x077aceb6 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x07956794 set_groups +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07eb4f6a __put_cred +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07ff4ad7 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x08002b11 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08129c4d param_set_charp +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082d687f udp_pre_connect +EXPORT_SYMBOL vmlinux 0x083a7bd2 slab_build_skb +EXPORT_SYMBOL vmlinux 0x083b1ce5 pskb_extract +EXPORT_SYMBOL vmlinux 0x083b489d xfrm_state_update +EXPORT_SYMBOL vmlinux 0x083f7b59 kset_register +EXPORT_SYMBOL vmlinux 0x08456553 match_string +EXPORT_SYMBOL vmlinux 0x084fb48f eth_validate_addr +EXPORT_SYMBOL vmlinux 0x0863cc0e blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x0874293b fasync_helper +EXPORT_SYMBOL vmlinux 0x087d0105 netif_rx +EXPORT_SYMBOL vmlinux 0x087eaf0d tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x088c96f6 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x089491de _dev_warn +EXPORT_SYMBOL vmlinux 0x08ad8521 register_adapter_interrupt +EXPORT_SYMBOL vmlinux 0x09180b03 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x0920b173 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x0928aeea page_get_link +EXPORT_SYMBOL vmlinux 0x0941b92a gro_cells_init +EXPORT_SYMBOL vmlinux 0x094df992 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x094effa5 __iucv_message_receive +EXPORT_SYMBOL vmlinux 0x09605342 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x0970102e zstd_compress_bound +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x09797d96 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09a54afe proc_create +EXPORT_SYMBOL vmlinux 0x09abc2d6 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x09bd7735 single_open_size +EXPORT_SYMBOL vmlinux 0x09c17568 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da36bd simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x09eeabf5 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a115627 default_llseek +EXPORT_SYMBOL vmlinux 0x0a1707d9 km_policy_notify +EXPORT_SYMBOL vmlinux 0x0a2dfa75 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x0a3b0d94 raw_copy_from_user +EXPORT_SYMBOL vmlinux 0x0a52f79f pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x0a613d0d vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa55da2 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0ac20aa4 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x0ae5c97e pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x0ae66751 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1cedc3 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba520b2 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x0bb42d5d pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc5ebe1 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x0bda9933 posix_test_lock +EXPORT_SYMBOL vmlinux 0x0c17a68e zlib_dfltcc_support +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c333a7f radix_tree_insert +EXPORT_SYMBOL vmlinux 0x0c35f91d pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x0c4a7ccf simple_getattr +EXPORT_SYMBOL vmlinux 0x0c6ccf20 s390_isolate_bp +EXPORT_SYMBOL vmlinux 0x0c71cbcf has_capability +EXPORT_SYMBOL vmlinux 0x0c75ce3b pci_iounmap +EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask +EXPORT_SYMBOL vmlinux 0x0c8be6b3 udp_prot +EXPORT_SYMBOL vmlinux 0x0c904c5b mempool_exit +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cc0f4c5 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x0cc91626 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0ceaf83a inet_frags_fini +EXPORT_SYMBOL vmlinux 0x0cf15ee0 seq_read_iter +EXPORT_SYMBOL vmlinux 0x0cf9ff9b input_get_keycode +EXPORT_SYMBOL vmlinux 0x0cfe3a26 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x0cfeedc1 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d1373d8 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x0d1bcba4 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x0d40261a ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x0d4350f7 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d8b7d63 init_pseudo +EXPORT_SYMBOL vmlinux 0x0d8cc418 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x0da19605 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x0db795e4 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x0df1951c kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x0dfcd40d mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x0e04bd2e csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x0e0e03b7 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x0e11564c pci_set_master +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1af29e register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x0e1ee435 _copy_from_user_key +EXPORT_SYMBOL vmlinux 0x0e23c59e param_get_long +EXPORT_SYMBOL vmlinux 0x0e3ffe8c netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x0e51ae3e skb_pull_data +EXPORT_SYMBOL vmlinux 0x0e56b80a __SCK__tp_func_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0x0e7395f9 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x0e90c0ae jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait +EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x0eb59595 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x0eb69051 ccw_device_start_key +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0eba687b unregister_console +EXPORT_SYMBOL vmlinux 0x0ee0c935 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x0ee61a9b airq_iv_free +EXPORT_SYMBOL vmlinux 0x0ef7cbe3 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x0f044f16 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f322579 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x0f3c3415 bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x0f4dd889 prepare_creds +EXPORT_SYMBOL vmlinux 0x0f59acca __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x0f779aba neigh_seq_start +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f900308 md_check_recovery +EXPORT_SYMBOL vmlinux 0x0f9d6185 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x0fad9ed8 notify_change +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbf4c56 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x0fd5c759 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fed4c92 skb_split +EXPORT_SYMBOL vmlinux 0x0ffc9609 ap_recv +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x100953b5 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x1016a94d iput +EXPORT_SYMBOL vmlinux 0x1016e81e __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x1020a954 folio_unlock +EXPORT_SYMBOL vmlinux 0x102b0c9d unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x103bafd6 down_read +EXPORT_SYMBOL vmlinux 0x10497616 memweight +EXPORT_SYMBOL vmlinux 0x106591a9 ap_queue_init_state +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10776fb9 xa_extract +EXPORT_SYMBOL vmlinux 0x10789c6c udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108dac78 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x109342d6 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x1097ac3d kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x109ac0f8 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x109eeada phy_error +EXPORT_SYMBOL vmlinux 0x10a202b8 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x10ca9b6b netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x112121f7 __traceiter_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0x113e29a0 zap_page_range +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11886599 proc_create_data +EXPORT_SYMBOL vmlinux 0x11b3e13c find_inode_nowait +EXPORT_SYMBOL vmlinux 0x11d02d38 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11e9e089 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x11ee8f7e filemap_fault +EXPORT_SYMBOL vmlinux 0x11efa1d4 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x11f0f083 kernel_cpumcf_avail +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d121a generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x121b8191 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x12236f2a __netif_rx +EXPORT_SYMBOL vmlinux 0x122823bb sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x1239fc2d sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1251a12e console_mode +EXPORT_SYMBOL vmlinux 0x12641250 get_phys_clock +EXPORT_SYMBOL vmlinux 0x126f21c8 key_link +EXPORT_SYMBOL vmlinux 0x1273d83b scsi_print_result +EXPORT_SYMBOL vmlinux 0x127c3e96 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down +EXPORT_SYMBOL vmlinux 0x12a211f3 seq_release +EXPORT_SYMBOL vmlinux 0x12ac62c9 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x12b036fc cdrom_check_events +EXPORT_SYMBOL vmlinux 0x12b3f1d6 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12cf81ad write_cache_pages +EXPORT_SYMBOL vmlinux 0x12edcae4 d_splice_alias +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fe638d diag_stat_inc_norecursion +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x13222fd6 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x13330de6 security_sock_graft +EXPORT_SYMBOL vmlinux 0x1335cc85 commit_creds +EXPORT_SYMBOL vmlinux 0x1343d21d make_bad_inode +EXPORT_SYMBOL vmlinux 0x134ae78e input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x1352be91 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x1363758b blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x137d050f pci_disable_msix +EXPORT_SYMBOL vmlinux 0x138fb38d security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13d929a0 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x140e2c4d bio_add_page +EXPORT_SYMBOL vmlinux 0x140e45d7 input_register_handler +EXPORT_SYMBOL vmlinux 0x140eb704 tcf_block_get +EXPORT_SYMBOL vmlinux 0x1415f5ef seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x14288699 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x14581d06 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x147d7290 xor_block_xc +EXPORT_SYMBOL vmlinux 0x148a4f88 sk_common_release +EXPORT_SYMBOL vmlinux 0x148f097d submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x1490cb52 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x14bc5e76 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock +EXPORT_SYMBOL vmlinux 0x14eb1f01 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x14fa4a42 bio_put +EXPORT_SYMBOL vmlinux 0x15085e41 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x1509f713 give_up_console +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1527a504 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x1535c5a3 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x1538f6d6 iget_failed +EXPORT_SYMBOL vmlinux 0x154960c5 netlink_ack +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1557776e lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x15699296 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x156f00f3 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x15809344 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x1583941b xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x15b0bcc4 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x15b49bac vscnprintf +EXPORT_SYMBOL vmlinux 0x15b6cc6c dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15cfb2b3 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0x15d85a57 down_trylock +EXPORT_SYMBOL vmlinux 0x15e8df23 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x15eab6c6 _dev_info +EXPORT_SYMBOL vmlinux 0x1618ebda tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x161f0527 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x16445432 vc_resize +EXPORT_SYMBOL vmlinux 0x164c0ca8 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x165d15e2 down_interruptible +EXPORT_SYMBOL vmlinux 0x165d2a20 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x16736a23 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x16ac9d66 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x16bbe515 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ea3703 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x17069cf1 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x1715a3aa scsi_host_put +EXPORT_SYMBOL vmlinux 0x172f1421 netif_tx_lock +EXPORT_SYMBOL vmlinux 0x1751c52f genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x17780d1f rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x1779caad nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x178685e4 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x17a51530 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x17b54e90 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x17cc1f16 user_revoke +EXPORT_SYMBOL vmlinux 0x17db7269 init_net +EXPORT_SYMBOL vmlinux 0x17e76d56 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x181773da pci_dev_put +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x183aa29a md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x186b1f50 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x187e5286 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x18894fc9 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x189c6af7 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x189e23c6 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x18a771a0 phy_detach +EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate +EXPORT_SYMBOL vmlinux 0x18cb2e19 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x18d8d861 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x18e48a9c __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f38c8b thaw_bdev +EXPORT_SYMBOL vmlinux 0x190e18f7 inet_bind +EXPORT_SYMBOL vmlinux 0x1914f96b netdev_emerg +EXPORT_SYMBOL vmlinux 0x19258227 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x19320d2d scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x19363e60 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x193c1f56 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x1954f10a xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x196bd847 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x196c3917 ccw_driver_unregister +EXPORT_SYMBOL vmlinux 0x19802579 find_vma_intersection +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 0x19da4055 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x19fb591d tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x1a03f5f1 finish_swait +EXPORT_SYMBOL vmlinux 0x1a08d2ba VMALLOC_START +EXPORT_SYMBOL vmlinux 0x1a0ecc6e jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x1a150ff5 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x1a22c10f ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x1a286e76 fiemap_prep +EXPORT_SYMBOL vmlinux 0x1a37831f do_clone_file_range +EXPORT_SYMBOL vmlinux 0x1a4171c6 pci_get_class +EXPORT_SYMBOL vmlinux 0x1a5740cc sock_alloc_file +EXPORT_SYMBOL vmlinux 0x1a6065da debug_register_mode +EXPORT_SYMBOL vmlinux 0x1a6355a8 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x1a658fd3 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x1a846e7b ccw_device_dma_zalloc +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1a9e07a8 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x1aa1a656 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x1aa7fb28 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x1ab1081e tcf_classify +EXPORT_SYMBOL vmlinux 0x1acd20f5 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b132904 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x1b1d308e module_layout +EXPORT_SYMBOL vmlinux 0x1b2ec795 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x1b36ba9f tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x1b40103f generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x1b42914b jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x1b5b796f tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7d9b0f tty_check_change +EXPORT_SYMBOL vmlinux 0x1b9314a7 touch_atime +EXPORT_SYMBOL vmlinux 0x1b9bb208 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x1ba04458 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1ba61965 bio_split +EXPORT_SYMBOL vmlinux 0x1ba7a258 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bc931be scsi_ioctl +EXPORT_SYMBOL vmlinux 0x1bf36f95 dev_addr_add +EXPORT_SYMBOL vmlinux 0x1c299266 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x1c2b918d sock_no_linger +EXPORT_SYMBOL vmlinux 0x1c385a43 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0x1c396042 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x1c3ea836 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x1c4112fd input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x1c56610a blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x1c65d1e3 ioremap_wt +EXPORT_SYMBOL vmlinux 0x1c664434 __write_overflow_field +EXPORT_SYMBOL vmlinux 0x1cb3a737 pci_get_slot +EXPORT_SYMBOL vmlinux 0x1cbfb123 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cc64518 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x1cc94dae task_work_add +EXPORT_SYMBOL vmlinux 0x1cd08ecc tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x1cd32281 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x1ce26a63 zstd_flush_stream +EXPORT_SYMBOL vmlinux 0x1ce35c00 logfc +EXPORT_SYMBOL vmlinux 0x1d04cd5f flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x1d0b954c kthread_bind +EXPORT_SYMBOL vmlinux 0x1d17602d make_kuid +EXPORT_SYMBOL vmlinux 0x1d1ae916 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x1d216a6b mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x1d3b4a27 filp_close +EXPORT_SYMBOL vmlinux 0x1d3d034a cdev_del +EXPORT_SYMBOL vmlinux 0x1d3e2765 iucv_path_quiesce +EXPORT_SYMBOL vmlinux 0x1d449b90 dfltcc_can_deflate +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d688b6f inode_permission +EXPORT_SYMBOL vmlinux 0x1d975748 ns_capable_setid +EXPORT_SYMBOL vmlinux 0x1d9bdb1b blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x1dadd920 __kmalloc +EXPORT_SYMBOL vmlinux 0x1db24a42 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x1db60eab neigh_lookup +EXPORT_SYMBOL vmlinux 0x1dc4041d take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dc9abb8 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddabf67 __debug_sprintf_exception +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de5127e kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1deea95d show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x1defc3cb tcp_ioctl +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e43f061 keyring_search +EXPORT_SYMBOL vmlinux 0x1e63fe69 vcalloc +EXPORT_SYMBOL vmlinux 0x1e65ae87 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1e90b916 arp_create +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eaface2 uv_info +EXPORT_SYMBOL vmlinux 0x1eb0f7d4 invalidate_disk +EXPORT_SYMBOL vmlinux 0x1ecb0682 dev_uc_del +EXPORT_SYMBOL vmlinux 0x1ed4d063 ihold +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ef7a464 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x1f11f742 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x1f420b62 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x1f47278e reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x1f588448 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x1f5c8006 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x1f68def8 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x1f6c364a dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x1f72a44a __scsi_add_device +EXPORT_SYMBOL vmlinux 0x1f7b5e81 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x1f89e0e8 input_unregister_device +EXPORT_SYMBOL vmlinux 0x1f95657b mempool_resize +EXPORT_SYMBOL vmlinux 0x1fa445b1 kern_unmount +EXPORT_SYMBOL vmlinux 0x1fae65af sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x1fb27078 tcw_get_tccb +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc1322b md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x1fc380c8 follow_down_one +EXPORT_SYMBOL vmlinux 0x1fcb720d tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x1fcbb1a7 bio_copy_data +EXPORT_SYMBOL vmlinux 0x1fda8755 __memset32 +EXPORT_SYMBOL vmlinux 0x1fe30cc2 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20050ce6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200b563a crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x2014a246 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x201eea82 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x2038d781 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x204db17c put_cmsg +EXPORT_SYMBOL vmlinux 0x20592c6f arch_write_lock_wait +EXPORT_SYMBOL vmlinux 0x2064b715 from_kprojid +EXPORT_SYMBOL vmlinux 0x206bdc83 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x209684d2 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload +EXPORT_SYMBOL vmlinux 0x20a4c4f6 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20d9a5d9 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x20ee076e itcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x20f10ce8 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x21210653 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x212cf7b3 generic_setlease +EXPORT_SYMBOL vmlinux 0x2150b6df ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0x217c0893 ping_prot +EXPORT_SYMBOL vmlinux 0x2180e63c drop_super +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21bb51e4 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21bfb849 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21ea83bc zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x21f33704 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x221018aa console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x2210642c sclp_ap_deconfigure +EXPORT_SYMBOL vmlinux 0x221229f3 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x2215331a xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x221567e6 __traceiter_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0x22217ea5 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223bf3ea truncate_pagecache +EXPORT_SYMBOL vmlinux 0x223d6214 phy_print_status +EXPORT_SYMBOL vmlinux 0x223e8e65 lookup_one_len +EXPORT_SYMBOL vmlinux 0x2249556e devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x224bbecd set_anon_super +EXPORT_SYMBOL vmlinux 0x2294c26a mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x22aac078 inet_ioctl +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22cf5b27 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x22dd6d51 tccb_init +EXPORT_SYMBOL vmlinux 0x22ee3688 simple_rename +EXPORT_SYMBOL vmlinux 0x22f73eb3 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x23133ee2 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x23450262 seq_bprintf +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy +EXPORT_SYMBOL vmlinux 0x238c8f60 init_task +EXPORT_SYMBOL vmlinux 0x23924a48 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x2395346e padata_alloc +EXPORT_SYMBOL vmlinux 0x23a414bd rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x23b12fca pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cb4621 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x23cf0bb4 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x23d04a9e genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x23d1f0f1 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x23dcc822 input_copy_abs +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2402e00c devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x24160bf9 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x2424e492 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register +EXPORT_SYMBOL vmlinux 0x2435c414 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x243e6289 kbd_alloc +EXPORT_SYMBOL vmlinux 0x24419c94 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246a351b kbd_keycode +EXPORT_SYMBOL vmlinux 0x2474207c neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x247954a1 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x247a3fe4 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x24ac6223 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x24b8528f mutex_trylock +EXPORT_SYMBOL vmlinux 0x24bc53b0 __traceiter_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0x24c79d62 km_state_notify +EXPORT_SYMBOL vmlinux 0x24cd09b4 seq_puts +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24dcb568 read_cache_folio +EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x24fd864a ip_do_fragment +EXPORT_SYMBOL vmlinux 0x25045b3f md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x250d1786 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x25251e7b xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x252cf375 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x252fe7e4 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x25363eea ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2582d208 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x2587729c __fput_sync +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25af57bd ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x25affe2d jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x25c3639e md_reload_sb +EXPORT_SYMBOL vmlinux 0x25d15fd9 dst_destroy +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen +EXPORT_SYMBOL vmlinux 0x2608f12b tcf_register_action +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x261181ca tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x2611ac46 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x26323e35 ip_frag_next +EXPORT_SYMBOL vmlinux 0x2635742b xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2641a1c6 diag224 +EXPORT_SYMBOL vmlinux 0x264adba1 ilookup5 +EXPORT_SYMBOL vmlinux 0x267a7933 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x267c1f48 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26a1746a phy_resume +EXPORT_SYMBOL vmlinux 0x26a5b938 sclp_pci_configure +EXPORT_SYMBOL vmlinux 0x26a88af8 nf_log_trace +EXPORT_SYMBOL vmlinux 0x26ab98bc generic_block_bmap +EXPORT_SYMBOL vmlinux 0x26ae767a flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x26c27caa kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e6c34a ap_get_qdev +EXPORT_SYMBOL vmlinux 0x26f484e8 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x26fa7b76 fd_install +EXPORT_SYMBOL vmlinux 0x27092a16 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x27260dad phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273694bf elevator_alloc +EXPORT_SYMBOL vmlinux 0x27466f1a md_bitmap_free +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 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 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27cd280b pci_pme_capable +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27e3247a dev_mc_init +EXPORT_SYMBOL vmlinux 0x27e6986b scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x27eac71a dev_mc_flush +EXPORT_SYMBOL vmlinux 0x27eb9cd1 tcw_set_intrg +EXPORT_SYMBOL vmlinux 0x27f17031 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x2809823b xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282ed24a scm_fp_dup +EXPORT_SYMBOL vmlinux 0x282fd6e6 phy_device_create +EXPORT_SYMBOL vmlinux 0x286a3661 airq_iv_scan +EXPORT_SYMBOL vmlinux 0x286cd60a md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x28712b0e abort_creds +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x289f6eef netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x28a0686a shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x28bf7360 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x28e4c189 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x28f8f1bd dev_deactivate +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x291798b7 arp_tbl +EXPORT_SYMBOL vmlinux 0x291cbf88 sock_no_connect +EXPORT_SYMBOL vmlinux 0x2927cd14 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x29347b18 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap +EXPORT_SYMBOL vmlinux 0x293c5404 ip_output +EXPORT_SYMBOL vmlinux 0x2956cf37 sclp_remove_processed +EXPORT_SYMBOL vmlinux 0x295c51ed scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x295eaa81 retire_super +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x2967f93b inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x2971b26a dump_align +EXPORT_SYMBOL vmlinux 0x29758255 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page +EXPORT_SYMBOL vmlinux 0x2989487b nla_append +EXPORT_SYMBOL vmlinux 0x298b9c6d bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x299bee87 phy_attach +EXPORT_SYMBOL vmlinux 0x29db5950 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x29e697b0 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x2a0246e0 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x2a078522 param_ops_uint +EXPORT_SYMBOL vmlinux 0x2a11ef0d vfs_fadvise +EXPORT_SYMBOL vmlinux 0x2a367be2 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x2a41d203 dql_init +EXPORT_SYMBOL vmlinux 0x2a4a695d dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x2a511ff0 dst_release +EXPORT_SYMBOL vmlinux 0x2a57bb0b param_set_hexint +EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable +EXPORT_SYMBOL vmlinux 0x2a7465d0 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x2a805563 __kernel_cpumcf_end +EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x2a99f336 mdiobus_write +EXPORT_SYMBOL vmlinux 0x2a9be21a kern_path_create +EXPORT_SYMBOL vmlinux 0x2aa71d0c proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x2abf6f37 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x2aef5246 sock_register +EXPORT_SYMBOL vmlinux 0x2af3f454 ssch +EXPORT_SYMBOL vmlinux 0x2b1640e6 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x2b1f09f0 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x2b21b559 raw3270_request_set_idal +EXPORT_SYMBOL vmlinux 0x2b2dd2a2 _dev_emerg +EXPORT_SYMBOL vmlinux 0x2b33b72a pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x2b4b0402 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x2b558d98 dev_add_pack +EXPORT_SYMBOL vmlinux 0x2b5ecbc6 __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x2b637ac0 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x2b774810 input_allocate_device +EXPORT_SYMBOL vmlinux 0x2b8d49e4 vm_mmap +EXPORT_SYMBOL vmlinux 0x2b8f169d configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba4546c dev_uc_add +EXPORT_SYMBOL vmlinux 0x2baa40ed unlock_rename +EXPORT_SYMBOL vmlinux 0x2bbe76f4 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2bc21233 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x2bd38b62 set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x2beb5f71 __breadahead +EXPORT_SYMBOL vmlinux 0x2bec2579 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x2beefd14 dma_set_mask +EXPORT_SYMBOL vmlinux 0x2c0295d1 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x2c238995 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2e9a34 xp_alloc +EXPORT_SYMBOL vmlinux 0x2c38a0f4 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x2c44b12c dst_release_immediate +EXPORT_SYMBOL vmlinux 0x2c540d86 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x2c5a6de7 ccw_device_get_ciw +EXPORT_SYMBOL vmlinux 0x2c697c2b free_task +EXPORT_SYMBOL vmlinux 0x2c6c214d pci_match_id +EXPORT_SYMBOL vmlinux 0x2c7bde50 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x2c7eb784 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c927736 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x2c976616 __check_sticky +EXPORT_SYMBOL vmlinux 0x2cb75ff1 __tracepoint_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0x2cbd23af trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd9367c simple_fill_super +EXPORT_SYMBOL vmlinux 0x2cded020 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x2cfb7aad update_region +EXPORT_SYMBOL vmlinux 0x2cff6b34 locks_free_lock +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d276715 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d37aa29 tcp_poll +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3e9823 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d5afa65 pci_release_regions +EXPORT_SYMBOL vmlinux 0x2d632e4e page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x2d776ba8 d_obtain_root +EXPORT_SYMBOL vmlinux 0x2d832cbf utf8_casefold +EXPORT_SYMBOL vmlinux 0x2d834384 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x2d9930f7 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2daa97a6 get_phy_device +EXPORT_SYMBOL vmlinux 0x2dc9beb1 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x2dcc1fc7 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x2ddb834b __xa_alloc +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2de1b87b genphy_suspend +EXPORT_SYMBOL vmlinux 0x2dea4802 dev_close +EXPORT_SYMBOL vmlinux 0x2e2fb3f3 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x2e3c5950 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x2e5e28fd __udp_disconnect +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e635a2a inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x2e64bcf0 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x2e6a17c7 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x2e6e6c9f set_page_writeback +EXPORT_SYMBOL vmlinux 0x2e6f7869 inet_addr_type +EXPORT_SYMBOL vmlinux 0x2e79b30a md_flush_request +EXPORT_SYMBOL vmlinux 0x2e9033b2 kernel_read +EXPORT_SYMBOL vmlinux 0x2e91ccd6 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x2ea55deb vmap +EXPORT_SYMBOL vmlinux 0x2ea62f3a pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x2eafc028 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ed7c8da kill_block_super +EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared +EXPORT_SYMBOL vmlinux 0x2ef89bc5 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x2efda6d1 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1e4e8d dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x2f1f7f1f fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f5a5635 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp +EXPORT_SYMBOL vmlinux 0x2fb1c565 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x2fbac292 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x2fd09944 blake2s_update +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower +EXPORT_SYMBOL vmlinux 0x300d6be4 __irq_regs +EXPORT_SYMBOL vmlinux 0x303cc154 set_blocksize +EXPORT_SYMBOL vmlinux 0x304a55d9 sock_create +EXPORT_SYMBOL vmlinux 0x304ea61f can_nice +EXPORT_SYMBOL vmlinux 0x3056b4f4 sock_wake_async +EXPORT_SYMBOL vmlinux 0x3056c025 sock_set_priority +EXPORT_SYMBOL vmlinux 0x307a286b noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x3089d055 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x308a20eb ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a428e5 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30da3c65 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x30e131f8 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x30ebcc98 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x30ecc4e2 param_set_ushort +EXPORT_SYMBOL vmlinux 0x30f622e1 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x3101323d path_put +EXPORT_SYMBOL vmlinux 0x310b093e dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x311290f5 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x3116b586 follow_pfn +EXPORT_SYMBOL vmlinux 0x3117e4e7 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info +EXPORT_SYMBOL vmlinux 0x313314c6 flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x31439edb kernel_sendpage +EXPORT_SYMBOL vmlinux 0x31475e37 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x315e7832 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x316fa41e __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x3184d96f udplite_prot +EXPORT_SYMBOL vmlinux 0x31958cec zpci_report_error +EXPORT_SYMBOL vmlinux 0x31a34dc6 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x31ae219c cond_set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x31e7b349 key_create_or_update +EXPORT_SYMBOL vmlinux 0x320f7601 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x3216e28c gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x3224b39b scsi_block_requests +EXPORT_SYMBOL vmlinux 0x32433cf0 dma_fence_describe +EXPORT_SYMBOL vmlinux 0x324bff8d tcp_prot +EXPORT_SYMBOL vmlinux 0x326f077d _dev_notice +EXPORT_SYMBOL vmlinux 0x3271bff0 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x32730412 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x327c8163 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x32832480 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32849335 iunique +EXPORT_SYMBOL vmlinux 0x3289eebb class3270 +EXPORT_SYMBOL vmlinux 0x329b8fb7 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x329c70a2 param_ops_charp +EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32f272dc netdev_err +EXPORT_SYMBOL vmlinux 0x33191f7d dev_get_by_name +EXPORT_SYMBOL vmlinux 0x331de0b9 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x3348bb19 dns_query +EXPORT_SYMBOL vmlinux 0x33492f07 tty_vhangup +EXPORT_SYMBOL vmlinux 0x33607f63 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x3362a5ac udp_table +EXPORT_SYMBOL vmlinux 0x336c1b43 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x337a96c8 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x337dc555 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x337e6236 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x3380f48e __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x3387c8fb tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x3389d8f9 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x339af240 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x339d00e6 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x33b488d6 sock_bind_add +EXPORT_SYMBOL vmlinux 0x33d75336 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 +EXPORT_SYMBOL vmlinux 0x33fa677f rename_lock +EXPORT_SYMBOL vmlinux 0x340b367e free_netdev +EXPORT_SYMBOL vmlinux 0x34182034 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x3441899c inet6_offloads +EXPORT_SYMBOL vmlinux 0x345edfce nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x3461f0cb genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34b587ee pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x34bf4b59 ptep_reset_dat_prot +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34cb4c4e netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x34dca4be tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x34e21630 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x34e23340 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352a4294 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x3530f0d1 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x35446376 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x35601ab3 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x359edcc7 fsync_bdev +EXPORT_SYMBOL vmlinux 0x35a6a044 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ae297a dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x35b831bc blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x35ba0e63 ccw_device_clear_options +EXPORT_SYMBOL vmlinux 0x35cd2dcd netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x35d0ad21 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x35d3e41c dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x35e734a8 skb_push +EXPORT_SYMBOL vmlinux 0x35f0c7fd get_task_cred +EXPORT_SYMBOL vmlinux 0x36019b2c lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier +EXPORT_SYMBOL vmlinux 0x3608ce6d seq_open_private +EXPORT_SYMBOL vmlinux 0x3609bf7b pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x3625050f fifo_set_limit +EXPORT_SYMBOL vmlinux 0x3640c58e netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x364721a9 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x364b007d dev_get_iflink +EXPORT_SYMBOL vmlinux 0x3656067d folio_mapping +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x366db323 security_sk_clone +EXPORT_SYMBOL vmlinux 0x368123ad dev_mc_sync +EXPORT_SYMBOL vmlinux 0x368a0869 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x36a51334 elv_rb_add +EXPORT_SYMBOL vmlinux 0x36adedc5 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x36c02403 ccw_device_dma_free +EXPORT_SYMBOL vmlinux 0x36d6526a kobject_init +EXPORT_SYMBOL vmlinux 0x36d8ce6c __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x36e41f33 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x36e7082f mtree_store_range +EXPORT_SYMBOL vmlinux 0x36eb8a1c fb_find_mode +EXPORT_SYMBOL vmlinux 0x36f7a3c6 eth_type_trans +EXPORT_SYMBOL vmlinux 0x3703a849 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x370756ff bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x372707f9 phy_device_free +EXPORT_SYMBOL vmlinux 0x3736d025 down_read_killable +EXPORT_SYMBOL vmlinux 0x3736d0c2 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375ac910 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x376c9726 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x377d81bf blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x377f245d inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x378f7379 dquot_transfer +EXPORT_SYMBOL vmlinux 0x37926622 tcp_check_req +EXPORT_SYMBOL vmlinux 0x37b31b51 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x37b35efe unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x37be4e5b mdiobus_scan +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x380ec283 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38231b1c unlock_buffer +EXPORT_SYMBOL vmlinux 0x3826e93d skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x382e75d5 fget +EXPORT_SYMBOL vmlinux 0x3831037e file_path +EXPORT_SYMBOL vmlinux 0x3832522f __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x384857d3 pci_enable_device +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x385a8ebd qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x3860e423 end_page_writeback +EXPORT_SYMBOL vmlinux 0x38705298 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x38740c03 mdio_device_register +EXPORT_SYMBOL vmlinux 0x3880cac1 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x3884ce63 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389ee54b in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x389fba47 generic_fadvise +EXPORT_SYMBOL vmlinux 0x38a52db1 dma_fence_init +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c0649b mdio_device_remove +EXPORT_SYMBOL vmlinux 0x38c935c6 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x38d7fe47 flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0x38ec682f ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x38f667a7 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x38ff8d21 clear_nlink +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x394059fb inet_stream_ops +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x39505db9 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x3978077a __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x397d151d flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39c2a0b1 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x39fd2b63 zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1733d0 dfltcc_inflate +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a588717 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x3a6ad845 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x3a8f22ce gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x3a8ffaed skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x3a9e8399 eth_header_parse +EXPORT_SYMBOL vmlinux 0x3aa52b19 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x3aa84422 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abdad2f phy_init_eee +EXPORT_SYMBOL vmlinux 0x3acc7dee mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x3ace0e59 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x3acf0520 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x3ae75144 param_set_byte +EXPORT_SYMBOL vmlinux 0x3ae8800b ccw_device_get_id +EXPORT_SYMBOL vmlinux 0x3afba250 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x3b176ce7 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x3b3c7f7c blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x3b413afb _copy_from_iter +EXPORT_SYMBOL vmlinux 0x3b48e9cc udp_read_skb +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b662342 sg_miter_next +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b756f6a crc32_le +EXPORT_SYMBOL vmlinux 0x3b79c19e iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x3b80a549 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x3b8c51a7 register_quota_format +EXPORT_SYMBOL vmlinux 0x3ba8a928 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x3bb39e71 ap_queue_message +EXPORT_SYMBOL vmlinux 0x3bb6ac95 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x3bd07521 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x3bf10041 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x3bf9f1c8 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x3c01d638 inet_add_offload +EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c0ebc8a dm_kobject_release +EXPORT_SYMBOL vmlinux 0x3c0fb1af xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c531813 zstd_is_error +EXPORT_SYMBOL vmlinux 0x3c55fb61 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x3c67afb8 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x3c67fd40 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x3c768b51 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0x3c781653 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3c9c0e3d tcp_time_wait +EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cc136a3 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x3cc56784 km_policy_expired +EXPORT_SYMBOL vmlinux 0x3cd6d7af kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce74b91 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x3d016a04 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x3d0cc309 seq_write +EXPORT_SYMBOL vmlinux 0x3d0fa22c filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x3d0fa3a4 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size +EXPORT_SYMBOL vmlinux 0x3d28ee42 scsi_done +EXPORT_SYMBOL vmlinux 0x3d2981fa utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x3d382f46 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x3d3c7e6a pneigh_lookup +EXPORT_SYMBOL vmlinux 0x3d4cb9d1 airq_iv_create +EXPORT_SYMBOL vmlinux 0x3d580af7 d_add +EXPORT_SYMBOL vmlinux 0x3d600a98 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x3d62fa44 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x3d6b3755 empty_name +EXPORT_SYMBOL vmlinux 0x3d78d84b skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x3d7aeec8 ap_cancel_message +EXPORT_SYMBOL vmlinux 0x3d7eb9fb __napi_schedule +EXPORT_SYMBOL vmlinux 0x3d8e8e18 key_invalidate +EXPORT_SYMBOL vmlinux 0x3d8ed963 register_md_personality +EXPORT_SYMBOL vmlinux 0x3d999cf8 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x3da6811c input_get_poll_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 0x3db3b5a6 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3dca0969 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e286517 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x3e2bfd0b vfs_mkdir +EXPORT_SYMBOL vmlinux 0x3e359c9c napi_complete_done +EXPORT_SYMBOL vmlinux 0x3e3aad1a __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e42bf09 inet6_protos +EXPORT_SYMBOL vmlinux 0x3e477cf5 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x3e61175f elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x3e703b20 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x3e8aac5c qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x3e8c7ed9 __bio_advance +EXPORT_SYMBOL vmlinux 0x3eb26d83 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x3ebba058 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit +EXPORT_SYMBOL vmlinux 0x3ecf689c mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x3ecfd550 PageMovable +EXPORT_SYMBOL vmlinux 0x3ed7574a d_alloc_anon +EXPORT_SYMBOL vmlinux 0x3ede110f d_exact_alias +EXPORT_SYMBOL vmlinux 0x3eeeaa9c set_bh_page +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f065f08 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x3f3f7461 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f48006c udp_seq_next +EXPORT_SYMBOL vmlinux 0x3f74fc49 md_register_thread +EXPORT_SYMBOL vmlinux 0x3f806266 tty_register_driver +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3fa7fb26 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fc437bd block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x3fd7212c crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3ff730d7 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x4005b352 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x402a960a jiffies_64 +EXPORT_SYMBOL vmlinux 0x40488812 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x405d7a5f param_set_uint +EXPORT_SYMBOL vmlinux 0x406c7302 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x40867183 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x40914c98 inet_release +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a52afe inet_listen +EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a763a8 ilookup +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40ac8beb iget5_locked +EXPORT_SYMBOL vmlinux 0x40ae3585 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x40bb3b36 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40dc9d10 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x40f64a65 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x41061a40 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x41258f30 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4147aa02 __tracepoint_s390_cio_msch +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4149b396 s390_isolate_bp_guest +EXPORT_SYMBOL vmlinux 0x4149dcd0 dquot_alloc +EXPORT_SYMBOL vmlinux 0x414f9b3b flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x41542792 config_group_find_item +EXPORT_SYMBOL vmlinux 0x415744b5 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x416052b4 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x41693e77 __do_once_done +EXPORT_SYMBOL vmlinux 0x417d9a17 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41913a59 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x41a39fd7 _dev_err +EXPORT_SYMBOL vmlinux 0x41a765e8 current_in_userns +EXPORT_SYMBOL vmlinux 0x41bf1b5e cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x42043c5d posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x42343e15 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4254644d phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x426f030c netif_receive_skb +EXPORT_SYMBOL vmlinux 0x4292544e dump_skip +EXPORT_SYMBOL vmlinux 0x429dcdc0 xa_find_after +EXPORT_SYMBOL vmlinux 0x42a452fd generic_ro_fops +EXPORT_SYMBOL vmlinux 0x42ae6d99 xa_find +EXPORT_SYMBOL vmlinux 0x42c0bffe netlink_unicast +EXPORT_SYMBOL vmlinux 0x42c4050a zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x431b896b inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x431ede65 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x432dbdb6 netdev_features_change +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435e2432 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x436de8c1 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x43737fd1 __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437a6821 from_kgid +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43880cf3 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43b27c4a devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x43b6771a seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x43bdbd7a crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq +EXPORT_SYMBOL vmlinux 0x43c3050b netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d9ba52 fault_in_readable +EXPORT_SYMBOL vmlinux 0x43f1dbc6 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x4402a3f4 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x4434b4c5 poll_freewait +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x44494d90 sock_edemux +EXPORT_SYMBOL vmlinux 0x44536f8e fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x448c704d mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44ac1c9e udp_ioctl +EXPORT_SYMBOL vmlinux 0x44b04520 flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0x44b2331f param_get_bool +EXPORT_SYMBOL vmlinux 0x44b30fb5 csch +EXPORT_SYMBOL vmlinux 0x44b85232 request_key_tag +EXPORT_SYMBOL vmlinux 0x44dadc84 try_module_get +EXPORT_SYMBOL vmlinux 0x44e848bf bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44e9b7d0 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x44ee053e inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x44eef00a ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4505b690 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x450cdb71 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x45254000 simple_link +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454e1574 sock_rfree +EXPORT_SYMBOL vmlinux 0x456ef08d param_set_invbool +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45b1fde5 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x45b9877f prepare_to_wait +EXPORT_SYMBOL vmlinux 0x45c70e26 revert_creds +EXPORT_SYMBOL vmlinux 0x45c99b53 __register_chrdev +EXPORT_SYMBOL vmlinux 0x45ce960c sg_miter_skip +EXPORT_SYMBOL vmlinux 0x45d3c773 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x45f17fb6 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x45fdb146 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461a8d3d kern_path +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x461f0fbb iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x4642a661 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x4659127d __mdiobus_register +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467f7a2b ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x4688a40d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x468c8df4 cdrom_release +EXPORT_SYMBOL vmlinux 0x469fd25e pci_map_rom +EXPORT_SYMBOL vmlinux 0x46ac6aab phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x46b0a3a3 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x46b26ff8 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x46c27b26 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x46cd8fce iucv_message_send +EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift +EXPORT_SYMBOL vmlinux 0x46d7a24b padata_do_serial +EXPORT_SYMBOL vmlinux 0x46de5075 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x46e319aa tcw_set_data +EXPORT_SYMBOL vmlinux 0x46e68ccb dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x46f41bd8 neigh_for_each +EXPORT_SYMBOL vmlinux 0x46fd9282 dma_pool_create +EXPORT_SYMBOL vmlinux 0x4710d995 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x47341e27 __phy_resume +EXPORT_SYMBOL vmlinux 0x47392e76 sclp_ocf_cpc_name_copy +EXPORT_SYMBOL vmlinux 0x47566e95 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x478077d1 param_set_short +EXPORT_SYMBOL vmlinux 0x4784612c pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x478cc02b sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x4791c6ea gen_pool_create +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47d5fe2f find_vma +EXPORT_SYMBOL vmlinux 0x47d60762 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x4812fac3 devm_mdiobus_alloc_size +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 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x484fc1cb dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x48511276 config_group_init +EXPORT_SYMBOL vmlinux 0x487370a2 fault_in_writeable +EXPORT_SYMBOL vmlinux 0x48814627 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x4887189a skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x48974234 inet6_getname +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48dbacaa lowcore_ptr +EXPORT_SYMBOL vmlinux 0x48ef3234 vfs_create +EXPORT_SYMBOL vmlinux 0x48f4fea3 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x48f6905b zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x48f737de tty_port_close +EXPORT_SYMBOL vmlinux 0x48fcf861 address_space_init_once +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490dddac dq_data_lock +EXPORT_SYMBOL vmlinux 0x492ab676 ip6_xmit +EXPORT_SYMBOL vmlinux 0x4932011e gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x4957752a vfs_readlink +EXPORT_SYMBOL vmlinux 0x4958728a tcp_init_sock +EXPORT_SYMBOL vmlinux 0x495990f3 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x495a6fe8 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x496467e8 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x49672828 node_states +EXPORT_SYMBOL vmlinux 0x49739c39 empty_aops +EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits +EXPORT_SYMBOL vmlinux 0x497aa61b fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x49833945 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x498370ca rtnl_create_link +EXPORT_SYMBOL vmlinux 0x49cb8e37 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x49cd88a9 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x49cec06d redraw_screen +EXPORT_SYMBOL vmlinux 0x49d751c5 mdiobus_free +EXPORT_SYMBOL vmlinux 0x49d948ed d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x49e5e7f3 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x49ec8bc7 kbd_free +EXPORT_SYMBOL vmlinux 0x49ed6fa2 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x49fc3e26 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x4a084ff7 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x4a2fbaae __lock_buffer +EXPORT_SYMBOL vmlinux 0x4a4516c1 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x4a572e3a swake_up_all +EXPORT_SYMBOL vmlinux 0x4a697b39 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x4a7a6f7c pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x4a7d7c74 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9da01a fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x4aa615ba dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x4ac38cbd blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x4ac3c578 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x4ad636ff input_set_capability +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4b0b019e add_device_randomness +EXPORT_SYMBOL vmlinux 0x4b192679 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x4b2af195 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x4b369167 __SCK__tp_func_s390_diagnose +EXPORT_SYMBOL vmlinux 0x4b44ff88 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b643047 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x4b65246a kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x4b828426 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x4b8f4e7a down_read_trylock +EXPORT_SYMBOL vmlinux 0x4b90609e textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x4b9f7047 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x4bc2537d bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x4bc51d12 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x4bd018e2 kmalloc_large_node +EXPORT_SYMBOL vmlinux 0x4bf7bb65 elv_rb_find +EXPORT_SYMBOL vmlinux 0x4c223c3e blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x4c294dc1 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x4c3491e0 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x4c3db86b ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp +EXPORT_SYMBOL vmlinux 0x4c5d9949 sclp +EXPORT_SYMBOL vmlinux 0x4c6dba93 inet_del_offload +EXPORT_SYMBOL vmlinux 0x4c7af6a4 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x4c7f95ac simple_transaction_set +EXPORT_SYMBOL vmlinux 0x4c84e1c8 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x4c8fc737 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x4c94eed4 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x4cab30db phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x4caea1de simple_statfs +EXPORT_SYMBOL vmlinux 0x4cb4eee9 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x4cc9386c dquot_release +EXPORT_SYMBOL vmlinux 0x4ccb1c04 napi_enable +EXPORT_SYMBOL vmlinux 0x4ccc5204 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4cdfb48b input_register_handle +EXPORT_SYMBOL vmlinux 0x4d1ff094 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x4d261aca fget_raw +EXPORT_SYMBOL vmlinux 0x4d35c3a8 security_path_rename +EXPORT_SYMBOL vmlinux 0x4d3652e9 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x4d3b9da7 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x4d46a02e pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x4d4f0763 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x4d5fe525 percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x4d6b353f get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x4d8952ba xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x4d98e592 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9deaaf pci_enable_wake +EXPORT_SYMBOL vmlinux 0x4d9e6a52 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x4db3b475 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x4dbc168f eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy +EXPORT_SYMBOL vmlinux 0x4de3d4ec copy_string_kernel +EXPORT_SYMBOL vmlinux 0x4dea1053 memchr +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e14fb7d __traceiter_s390_cio_msch +EXPORT_SYMBOL vmlinux 0x4e18a4b7 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e384b65 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x4e4924ea init_virt_timer +EXPORT_SYMBOL vmlinux 0x4e51739a dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x4e5323da sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e82162b nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x4e89ce10 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x4e8e2703 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0x4e9e6a05 downgrade_write +EXPORT_SYMBOL vmlinux 0x4eac9cc3 tcp_child_process +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eaec469 dst_dev_put +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ef1e1b9 keyring_clear +EXPORT_SYMBOL vmlinux 0x4eff32c7 bio_init_clone +EXPORT_SYMBOL vmlinux 0x4f07c30d nf_hook_slow +EXPORT_SYMBOL vmlinux 0x4f15fa2f locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd +EXPORT_SYMBOL vmlinux 0x4f3009e7 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x4f5aa411 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x4f5c6dcf md_unregister_thread +EXPORT_SYMBOL vmlinux 0x4f5f4797 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x4f6a1ca3 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x4f6f03f3 param_array_ops +EXPORT_SYMBOL vmlinux 0x4f88ebd4 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x4fa7ff03 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x4fb34099 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x4fc14b7d param_get_uint +EXPORT_SYMBOL vmlinux 0x4fd00522 dquot_file_open +EXPORT_SYMBOL vmlinux 0x4ffb377b __nla_put +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x5003d52a ap_perms_mutex +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x50176877 dquot_initialize +EXPORT_SYMBOL vmlinux 0x50327d9e folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x5042d633 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507144f4 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x507b25d0 kstrndup +EXPORT_SYMBOL vmlinux 0x50805454 simple_setattr +EXPORT_SYMBOL vmlinux 0x509092e2 proto_unregister +EXPORT_SYMBOL vmlinux 0x5093e9aa super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509c8019 vma_set_file +EXPORT_SYMBOL vmlinux 0x509cb8b5 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x509f1aa4 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a82930 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x50ae99ce simple_rmdir +EXPORT_SYMBOL vmlinux 0x50b4550f netdev_crit +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50bb096e tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cf69b6 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d9860d security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x50e087dc radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x50e5fc86 igrab +EXPORT_SYMBOL vmlinux 0x50f69ea1 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x511b1085 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x51237a93 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x512e2c7b kobject_set_name +EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x515a8d26 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5175c06d key_move +EXPORT_SYMBOL vmlinux 0x51765d2a netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x51788bec set_page_dirty +EXPORT_SYMBOL vmlinux 0x518bb9e6 diag204 +EXPORT_SYMBOL vmlinux 0x518ef6ac security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x519c5842 generic_permission +EXPORT_SYMBOL vmlinux 0x51dbb269 mr_dump +EXPORT_SYMBOL vmlinux 0x5203c4b5 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x52116a5d phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x52128d0f qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x525a8cc8 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x525d969f genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x526f44b8 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x52795ba2 netpoll_setup +EXPORT_SYMBOL vmlinux 0x52819990 kernel_cpumcf_alert +EXPORT_SYMBOL vmlinux 0x528a40bf input_unregister_handler +EXPORT_SYMBOL vmlinux 0x5297140d tcp_peek_len +EXPORT_SYMBOL vmlinux 0x5299f0b1 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52db1a14 zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x52fb2221 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x53008645 freeze_bdev +EXPORT_SYMBOL vmlinux 0x530bbc96 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0x5315ca37 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x531625b6 wait_for_completion +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x53424f34 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x5353fca6 inet6_release +EXPORT_SYMBOL vmlinux 0x53578846 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x53589748 page_symlink +EXPORT_SYMBOL vmlinux 0x539ea558 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit +EXPORT_SYMBOL vmlinux 0x53ab07d9 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x53b77d51 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x53bba13c d_instantiate_new +EXPORT_SYMBOL vmlinux 0x53c24b01 mutex_is_locked +EXPORT_SYMBOL vmlinux 0x53c36149 param_set_bint +EXPORT_SYMBOL vmlinux 0x53cb3461 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x53f0cdaf kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x53fd6dc9 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x540862e2 diag14 +EXPORT_SYMBOL vmlinux 0x540f0ae7 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x542b831b __neigh_create +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x546c9e63 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x547fbbd7 simple_lookup +EXPORT_SYMBOL vmlinux 0x54847109 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x548d17c4 airq_iv_alloc +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54c08525 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x54c44395 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x54cd23c1 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54eec8cd parse_int_array_user +EXPORT_SYMBOL vmlinux 0x550278c4 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x55066fad pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +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 0x552b07f0 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554fc4f6 tty_register_device +EXPORT_SYMBOL vmlinux 0x55569210 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x555ccb97 up_read +EXPORT_SYMBOL vmlinux 0x557df06e sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request +EXPORT_SYMBOL vmlinux 0x55bdb227 follow_down +EXPORT_SYMBOL vmlinux 0x55c55ea9 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x55c9d200 dm_put_device +EXPORT_SYMBOL vmlinux 0x55d58db9 d_find_alias +EXPORT_SYMBOL vmlinux 0x55d62a22 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x55d63108 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55eccdf5 mod_virt_timer +EXPORT_SYMBOL vmlinux 0x55efeb4b ccw_device_tm_start_timeout +EXPORT_SYMBOL vmlinux 0x55f156cf phy_modify_paged +EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback +EXPORT_SYMBOL vmlinux 0x56067056 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x5616d0a0 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x56265bf5 __pskb_pull_tail +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 0x5651b7ce phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x565d4df5 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x5660f88f raw3270_add_view +EXPORT_SYMBOL vmlinux 0x56718ead register_cdrom +EXPORT_SYMBOL vmlinux 0x567939fa phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56855dc2 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x56955d39 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x56a6d772 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d78870 chsc +EXPORT_SYMBOL vmlinux 0x56e58148 dst_alloc +EXPORT_SYMBOL vmlinux 0x56e70729 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x571050c7 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5752a5aa tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5768f81f mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x5775e3f9 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x578cf662 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x57939398 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x57aab812 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x57aca4cc sk_free +EXPORT_SYMBOL vmlinux 0x57b4b9a1 register_external_irq +EXPORT_SYMBOL vmlinux 0x57cb0eab fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x57f18433 swake_up_one +EXPORT_SYMBOL vmlinux 0x580fd5a8 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x581ff943 phy_init_hw +EXPORT_SYMBOL vmlinux 0x58278051 get_user_pages +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5857a67d scsi_remove_target +EXPORT_SYMBOL vmlinux 0x585d2c92 netif_device_attach +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x588c852a blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x58935f79 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x5897b350 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x589df66b __f_setown +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58af4f88 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b6d616 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58be1039 filp_open +EXPORT_SYMBOL vmlinux 0x58c0a0bb mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x58c0e884 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem +EXPORT_SYMBOL vmlinux 0x58d42789 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58e182b8 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58eae9ec gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x58eb96ec md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x58f9e4f8 __icmp_send +EXPORT_SYMBOL vmlinux 0x590f5e6a input_grab_device +EXPORT_SYMBOL vmlinux 0x591358d0 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x591b9a2c pci_remove_bus +EXPORT_SYMBOL vmlinux 0x591df6fe __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x591f6976 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x593cd673 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x593f4c34 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x595a67bb iterate_dir +EXPORT_SYMBOL vmlinux 0x595a88a4 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x595a89fa rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x595ba33e block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x595cde3f import_single_range +EXPORT_SYMBOL vmlinux 0x59616aef phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x5981de1c md_error +EXPORT_SYMBOL vmlinux 0x598f0a95 udplite_table +EXPORT_SYMBOL vmlinux 0x599a17f4 block_truncate_page +EXPORT_SYMBOL vmlinux 0x59a6c8e0 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b711f6 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x59bf808c vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x59c54b6c fb_get_mode +EXPORT_SYMBOL vmlinux 0x59d0449c set_disk_ro +EXPORT_SYMBOL vmlinux 0x59d1e55d xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x59d803d2 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x59e9f7cc bdi_alloc +EXPORT_SYMBOL vmlinux 0x5a070a59 dev_add_offload +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a107fdf skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x5a10f98e del_virt_timer +EXPORT_SYMBOL vmlinux 0x5a1e8623 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x5a2d19d4 __devm_request_region +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a4dfc16 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x5a4e9359 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5a630934 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x5a690528 proc_remove +EXPORT_SYMBOL vmlinux 0x5a6d1943 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x5a7621db tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x5a98539f shmem_aops +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5aa37fdf phy_get_pause +EXPORT_SYMBOL vmlinux 0x5ab4c7f5 kmalloc_trace +EXPORT_SYMBOL vmlinux 0x5ad24548 d_rehash +EXPORT_SYMBOL vmlinux 0x5ad5c38b qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae23ac6 pcim_iomap +EXPORT_SYMBOL vmlinux 0x5ae2c44d is_bad_inode +EXPORT_SYMBOL vmlinux 0x5aebd787 __quota_error +EXPORT_SYMBOL vmlinux 0x5afcf745 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x5affe688 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x5b041598 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x5b1b961d free_buffer_head +EXPORT_SYMBOL vmlinux 0x5b27e2d1 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x5b2b28ab tcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x5b3e624e tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type +EXPORT_SYMBOL vmlinux 0x5b679575 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x5b745a3d xa_load +EXPORT_SYMBOL vmlinux 0x5b95f487 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x5bbba74d simple_empty +EXPORT_SYMBOL vmlinux 0x5bbf2411 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x5bca5b7e get_tree_single_reconf +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 0x5bf2f43e dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x5bf37bff jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x5c17027d nf_setsockopt +EXPORT_SYMBOL vmlinux 0x5c207f71 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c77bbc9 may_setattr +EXPORT_SYMBOL vmlinux 0x5c8cd775 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x5ca52072 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x5cb4090a raw3270_request_set_cmd +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cd6f99b completion_done +EXPORT_SYMBOL vmlinux 0x5cf1b5bc __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x5cf1cfd7 noop_qdisc +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf58bb6 seq_open +EXPORT_SYMBOL vmlinux 0x5cf59bc6 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5d15a42d dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x5d16d8cd radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x5d2013d5 __skb_pad +EXPORT_SYMBOL vmlinux 0x5d420cb0 security_sb_remount +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d6c7a66 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x5d743736 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x5d7dee6b strscpy_pad +EXPORT_SYMBOL vmlinux 0x5d9f8b57 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x5da84b31 unregister_adapter_interrupt +EXPORT_SYMBOL vmlinux 0x5db87e3d __module_get +EXPORT_SYMBOL vmlinux 0x5dc96e09 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x5dd8355f napi_gro_frags +EXPORT_SYMBOL vmlinux 0x5dd8d2b2 ethtool_notify +EXPORT_SYMBOL vmlinux 0x5de02f12 debug_sprintf_view +EXPORT_SYMBOL vmlinux 0x5df756d7 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5df86ab0 sg_miter_start +EXPORT_SYMBOL vmlinux 0x5dfa2442 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5e023431 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e21cb82 ap_send +EXPORT_SYMBOL vmlinux 0x5e2571bf sock_no_getname +EXPORT_SYMBOL vmlinux 0x5e26b040 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e418d14 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x5e756302 param_ops_bool +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 0x5eb6a99e xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ec59774 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed28dd5 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5edcefe9 phy_start +EXPORT_SYMBOL vmlinux 0x5ee4a36d dquot_drop +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5f06f56a _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x5f074abe nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f11c748 nmi_panic +EXPORT_SYMBOL vmlinux 0x5f14393b fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x5f1489f6 build_skb_around +EXPORT_SYMBOL vmlinux 0x5f15b032 dquot_acquire +EXPORT_SYMBOL vmlinux 0x5f1ad8a0 inode_init_always +EXPORT_SYMBOL vmlinux 0x5f1be2c9 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f30688a phy_stop +EXPORT_SYMBOL vmlinux 0x5f38af90 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x5f508cb1 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f662d94 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x5f684128 dm_io +EXPORT_SYMBOL vmlinux 0x5f6c133d jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x5f83daab peernet2id +EXPORT_SYMBOL vmlinux 0x5f966931 vfs_llseek +EXPORT_SYMBOL vmlinux 0x5f9ede6c proc_dostring +EXPORT_SYMBOL vmlinux 0x5fa124d2 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x5fb7363b skb_append +EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr +EXPORT_SYMBOL vmlinux 0x5fd403c6 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x5fe447a9 bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602596b6 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x602637cf jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x6032ca1c free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60387080 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x604c9a65 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x605659a3 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x605e05a1 console_stop +EXPORT_SYMBOL vmlinux 0x6069a167 nonseekable_open +EXPORT_SYMBOL vmlinux 0x60736d29 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x60745a8a filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x607aa9f5 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a4104a unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x60ab4c38 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x60af2885 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x60c311d6 raw3270_start +EXPORT_SYMBOL vmlinux 0x60cf0d39 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x60df127a sock_from_file +EXPORT_SYMBOL vmlinux 0x60e4046a xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x60f0eaee param_get_string +EXPORT_SYMBOL vmlinux 0x60fbb176 inet_sendpage +EXPORT_SYMBOL vmlinux 0x610372cc napi_get_frags +EXPORT_SYMBOL vmlinux 0x6108288f complete_all +EXPORT_SYMBOL vmlinux 0x6117c72e dqput +EXPORT_SYMBOL vmlinux 0x611b5584 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x61201990 file_update_time +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61290f2d flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x61352f95 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x613fdbfc remove_proc_entry +EXPORT_SYMBOL vmlinux 0x61438d70 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x6152760c fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x616dc7a7 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x617090e1 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6188e819 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x61b610d3 make_kgid +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c6368f netdev_update_features +EXPORT_SYMBOL vmlinux 0x61d59668 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e71304 load_nls_default +EXPORT_SYMBOL vmlinux 0x61ea11a4 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x6206b93b iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x620773c4 xattr_full_name +EXPORT_SYMBOL vmlinux 0x6219175e seq_putc +EXPORT_SYMBOL vmlinux 0x621fb54d bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x624c45c1 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x624e3314 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627bc1c4 smp_ctl_set_clear_bit +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628d8f4e xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x629e5c77 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x62e4b100 ip_frag_init +EXPORT_SYMBOL vmlinux 0x62f53a40 ptep_xchg_direct +EXPORT_SYMBOL vmlinux 0x6302d945 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x6308cdcf __debug_sprintf_event +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631c7df2 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x632df719 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x63356f6b phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x6335be2a mr_table_dump +EXPORT_SYMBOL vmlinux 0x633eb4b1 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x63438deb set_binfmt +EXPORT_SYMBOL vmlinux 0x636a9429 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x636ace72 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x6371e098 cio_irb +EXPORT_SYMBOL vmlinux 0x637c2f94 __inet6_lookup_established +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 0x63a93ae3 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x63aa50b2 tso_build_data +EXPORT_SYMBOL vmlinux 0x63be6b19 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x63d0adb7 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x63d99dc9 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x63dec3de unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x640e41c9 pci_iomap_wc +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6420a5e3 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x6458f1e7 zstd_init_cstream +EXPORT_SYMBOL vmlinux 0x646a9b34 scsi_done_direct +EXPORT_SYMBOL vmlinux 0x64782272 skb_checksum +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b21807 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x64b55719 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x64bd9e90 tcp_filter +EXPORT_SYMBOL vmlinux 0x64d76bfb stop_tty +EXPORT_SYMBOL vmlinux 0x64df4c3f pcie_get_mps +EXPORT_SYMBOL vmlinux 0x6504b28e tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x6510ea97 bio_integrity_trim +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 0x652199d0 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x652c6978 kernel_accept +EXPORT_SYMBOL vmlinux 0x652c9cd8 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65427714 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x655fea22 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x657f5d1e disk_stack_limits +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a25626 netdev_printk +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65ffe43d xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x66027704 mtree_store +EXPORT_SYMBOL vmlinux 0x660a94a3 param_set_ullong +EXPORT_SYMBOL vmlinux 0x6623f2e3 vmalloc_array +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x66714857 sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x66718184 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6675caa2 unregister_nls +EXPORT_SYMBOL vmlinux 0x667c2c1d netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x66900af1 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x66bcfcfa thaw_super +EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x66fe865b zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x672144bd strlcpy +EXPORT_SYMBOL vmlinux 0x673530a4 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x6736881f filemap_get_folios +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x676155ff dotdot_name +EXPORT_SYMBOL vmlinux 0x6762e507 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x67694ec4 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x677206be xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x677d983c tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x67802331 fb_show_logo +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x678ec34d inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x679723b4 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x679ed18f pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x67aa4e39 input_setup_polling +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c8db47 skb_tx_error +EXPORT_SYMBOL vmlinux 0x67ce597c unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x67d36f2c dcache_readdir +EXPORT_SYMBOL vmlinux 0x67db76d1 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x67dee23c tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x67e2272e refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x67facf80 __seq_open_private +EXPORT_SYMBOL vmlinux 0x680bd54c rt_dst_clone +EXPORT_SYMBOL vmlinux 0x681768dc locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x681f8514 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x683e5b1f blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x6846fbdb dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x684dd835 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x6870244d inet_put_port +EXPORT_SYMBOL vmlinux 0x687d6df9 kernel_bind +EXPORT_SYMBOL vmlinux 0x68c4a3d8 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x68c93b01 ccw_device_set_options_mask +EXPORT_SYMBOL vmlinux 0x68cb33c0 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x68d31bf5 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x68d6ee52 register_filesystem +EXPORT_SYMBOL vmlinux 0x68d7e8af blk_sync_queue +EXPORT_SYMBOL vmlinux 0x68e59fb6 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x68fe9e66 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x69097457 crc32_be +EXPORT_SYMBOL vmlinux 0x690bf55f pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x690e33dd unload_nls +EXPORT_SYMBOL vmlinux 0x690f9dfa hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x69194f66 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x691d2db5 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x692e18e3 node_data +EXPORT_SYMBOL vmlinux 0x69387d1b dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x6942f7cf tcp_read_done +EXPORT_SYMBOL vmlinux 0x69604657 d_alloc_name +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971cd3f component_match_add_typed +EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x69850830 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x69954242 done_path_create +EXPORT_SYMBOL vmlinux 0x69a4ee55 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x69d7769c __tracepoint_s390_diagnose +EXPORT_SYMBOL vmlinux 0x69e17ec1 dump_skip_to +EXPORT_SYMBOL vmlinux 0x69f80e50 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a080436 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x6a26f932 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6de2ed skb_ext_add +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a79b2f8 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x6a8d2c72 import_iovec +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa51e88 xp_free +EXPORT_SYMBOL vmlinux 0x6aa69c54 ccw_device_clear +EXPORT_SYMBOL vmlinux 0x6ab23aa1 load_fpu_regs +EXPORT_SYMBOL vmlinux 0x6ac60385 bmap +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af75d4a kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x6af89f11 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x6afc2fe8 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x6b08071e __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x6b1059bf setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0x6b1a7dd1 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b4d6756 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b6fa046 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x6b7b5561 drop_super_exclusive +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 0x6bac671b __crc32c_le +EXPORT_SYMBOL vmlinux 0x6bb4e760 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bf424ef register_framebuffer +EXPORT_SYMBOL vmlinux 0x6bfe1653 iucv_message_receive +EXPORT_SYMBOL vmlinux 0x6c041e19 __xa_insert +EXPORT_SYMBOL vmlinux 0x6c0f08aa register_shrinker +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c433cee proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x6c4f5ed0 kbd_ascebc +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6aeaec scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x6c6e1173 param_get_ushort +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6ca774a8 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6ccc34dd sort +EXPORT_SYMBOL vmlinux 0x6cd35a87 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x6cdff3f3 vm_map_ram +EXPORT_SYMBOL vmlinux 0x6ce1aac5 fwnode_iomap +EXPORT_SYMBOL vmlinux 0x6cf192df kvrealloc +EXPORT_SYMBOL vmlinux 0x6cf397cc phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x6cf3d114 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x6d0c81f2 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d652056 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x6d65d208 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d8cb4bf dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x6d9ad473 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x6daea280 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x6daef55e netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x6dafc927 seq_read +EXPORT_SYMBOL vmlinux 0x6db84060 icmp6_send +EXPORT_SYMBOL vmlinux 0x6dba2552 cdrom_open +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbfc942 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x6dc2f646 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x6dcf77d1 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6de0a5d0 padata_free_shell +EXPORT_SYMBOL vmlinux 0x6de183c4 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x6de964b8 block_commit_write +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df89914 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc +EXPORT_SYMBOL vmlinux 0x6e230ec4 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x6e2da197 arch_read_lock_wait +EXPORT_SYMBOL vmlinux 0x6e3d4d25 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x6e5ea5c8 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x6e7161d6 generic_file_open +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e8b055f copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ecf85c3 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x6ed018e2 pmdp_xchg_lazy +EXPORT_SYMBOL vmlinux 0x6ed82b6b skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x6ef6e6ac pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x6ef84303 kvmalloc_node +EXPORT_SYMBOL vmlinux 0x6ef9db89 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x6efedca5 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x6f04f88d nf_reinject +EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock +EXPORT_SYMBOL vmlinux 0x6f1fca37 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x6f20e8a0 nla_strscpy +EXPORT_SYMBOL vmlinux 0x6f2df3ef dma_fence_signal +EXPORT_SYMBOL vmlinux 0x6f355d01 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x6f4c85cd always_delete_dentry +EXPORT_SYMBOL vmlinux 0x6f53043d wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv +EXPORT_SYMBOL vmlinux 0x6f640549 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x6f69fe4c xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x6f708002 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x6f79375c mempool_free +EXPORT_SYMBOL vmlinux 0x6fa97cef scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x6faf5574 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb9bca1 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x6fc0c58d dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fef7667 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x6ff6d93e xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x6ff79e77 input_event +EXPORT_SYMBOL vmlinux 0x6ff86ceb phy_suspend +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70007ead tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x701557d0 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x70336943 xa_set_mark +EXPORT_SYMBOL vmlinux 0x703c8d8d xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x70496206 debug_register +EXPORT_SYMBOL vmlinux 0x7049bcba config_item_put +EXPORT_SYMBOL vmlinux 0x70697bec try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x7073aa70 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x707ad237 dev_driver_string +EXPORT_SYMBOL vmlinux 0x708dd6bb pci_irq_vector +EXPORT_SYMBOL vmlinux 0x70a38fa1 set_cached_acl +EXPORT_SYMBOL vmlinux 0x70bcf7fb __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x70c13735 seq_vprintf +EXPORT_SYMBOL vmlinux 0x70e1e6cc scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x70e900cb __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x70f81b56 ap_max_msg_size +EXPORT_SYMBOL vmlinux 0x70f9b7ce sock_wfree +EXPORT_SYMBOL vmlinux 0x70fceb68 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x710a838b dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x711dd9e5 ccw_device_start_timeout +EXPORT_SYMBOL vmlinux 0x711e1491 ap_perms +EXPORT_SYMBOL vmlinux 0x7120f9bd LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7166e8bf eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718b021a fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x71932e64 ccw_device_tm_start +EXPORT_SYMBOL vmlinux 0x7198d2c1 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x719a8641 d_lookup +EXPORT_SYMBOL vmlinux 0x719d3067 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71bdd5cc init_special_inode +EXPORT_SYMBOL vmlinux 0x71c21101 sock_set_mark +EXPORT_SYMBOL vmlinux 0x71c34b4e xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x71ebcff8 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x71fdd410 __free_pages +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x7223ca4f param_set_copystring +EXPORT_SYMBOL vmlinux 0x72297f25 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x723620a7 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x723af4d0 locks_delete_block +EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x727f40e7 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x72aee47e ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x72af8ee2 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bff4ee debug_exception_common +EXPORT_SYMBOL vmlinux 0x72da70e2 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72fad567 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x730b096c ap_apqn_in_matrix_owned_by_def_drv +EXPORT_SYMBOL vmlinux 0x73286f15 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7355e0e0 irq_set_chip +EXPORT_SYMBOL vmlinux 0x735a21ee netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x735d9264 register_qdisc +EXPORT_SYMBOL vmlinux 0x73668190 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7382ea0a sock_i_ino +EXPORT_SYMBOL vmlinux 0x7389706a __memset16 +EXPORT_SYMBOL vmlinux 0x73932477 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x73968218 pci_get_device +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73b82ad7 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x73bb1490 dm_table_event +EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc +EXPORT_SYMBOL vmlinux 0x73cd60b7 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x7403d72b phy_disconnect +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7413bf76 netlink_set_err +EXPORT_SYMBOL vmlinux 0x741af036 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x7452bec7 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7470b01a tsb_init +EXPORT_SYMBOL vmlinux 0x747c936b __SetPageMovable +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74b4e420 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d66f26 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x74d7e09e put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x74d858a7 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x74dee1bd ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x74e4e172 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f28025 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x74f6e599 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x74f9ad0b tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x7502b522 module_put +EXPORT_SYMBOL vmlinux 0x750d83f2 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x751b55f9 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x7520ad5f module_refcount +EXPORT_SYMBOL vmlinux 0x752fe74c phy_find_first +EXPORT_SYMBOL vmlinux 0x7557e1e3 mpage_writepages +EXPORT_SYMBOL vmlinux 0x755efa9b xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x758034ee inode_insert5 +EXPORT_SYMBOL vmlinux 0x759a0416 __memset64 +EXPORT_SYMBOL vmlinux 0x759caf07 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x759dd32b qdisc_put +EXPORT_SYMBOL vmlinux 0x75a62797 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x75b9cf29 hsch +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 0x75d61ac5 folio_add_lru +EXPORT_SYMBOL vmlinux 0x75da027b single_open +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x761d6a4d con_is_bound +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x76426845 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7662898f scm_detach_fds +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x7696a7f7 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a1cc2e sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x76aca479 dqget +EXPORT_SYMBOL vmlinux 0x76cd7735 udp_disconnect +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d3d4a0 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x76f8821c tcp_splice_read +EXPORT_SYMBOL vmlinux 0x77247c5e ap_bus_force_rescan +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x774b1c71 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x7765e0e9 bio_uninit +EXPORT_SYMBOL vmlinux 0x7777f69f irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x777b8660 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x77801e77 framebuffer_release +EXPORT_SYMBOL vmlinux 0x77817886 dquot_resume +EXPORT_SYMBOL vmlinux 0x778f9c3d current_time +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f07ce8 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x77fbe237 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x77ff9e06 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x78051ee9 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x7819aea9 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x781ee9fe sock_no_accept +EXPORT_SYMBOL vmlinux 0x78215ab5 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x783a729b filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x7843957e ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x78569adf ida_alloc_range +EXPORT_SYMBOL vmlinux 0x78609a4e dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78a1155b nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78dc677f vlan_vid_add +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78effe53 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x78f1475a __traceiter_s390_cio_rsch +EXPORT_SYMBOL vmlinux 0x791b05c2 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x793fee70 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x795448f2 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x7970ef55 swake_up_locked +EXPORT_SYMBOL vmlinux 0x797d70f6 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x79809ec6 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x79816357 dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x79b3ebfd netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x79cd6498 down_write_killable +EXPORT_SYMBOL vmlinux 0x7a1a70d9 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a1d8056 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x7a2bbe1e debug_unregister_view +EXPORT_SYMBOL vmlinux 0x7a2d6348 dev_activate +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a386438 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x7a3e0a61 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x7a42bcd9 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x7a452997 dev_set_alias +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a7d60e6 iucv_register +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aaa5b4d __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x7abea743 kill_fasync +EXPORT_SYMBOL vmlinux 0x7acded2f inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad504ad pci_claim_resource +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7b03b139 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x7b133891 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x7b18dafd __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x7b1ac3dc deactivate_super +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b3e3ed7 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x7b43dd1a iov_iter_init +EXPORT_SYMBOL vmlinux 0x7b4b4a34 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x7b5502ba pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7ba02f34 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x7ba41ff3 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bd7dfd0 ap_test_config_usage_domain +EXPORT_SYMBOL vmlinux 0x7c14f503 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c23fc29 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x7c27f73b dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x7c3b1952 d_tmpfile +EXPORT_SYMBOL vmlinux 0x7c3b799d fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate +EXPORT_SYMBOL vmlinux 0x7c648329 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7caa0d59 mntput +EXPORT_SYMBOL vmlinux 0x7cb3e951 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x7cb523c6 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x7cca7fa1 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cea8c44 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d103fe0 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x7d328fdc pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x7d3c1585 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x7d3ccb0b security_path_unlink +EXPORT_SYMBOL vmlinux 0x7d3eb2ca __scm_send +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d522361 mempool_create_node +EXPORT_SYMBOL vmlinux 0x7d84bff8 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x7d956674 cdev_add +EXPORT_SYMBOL vmlinux 0x7d9d9fe5 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x7da56b4c inet_frag_kill +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7daf08c1 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x7db28b69 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dc95793 proc_set_user +EXPORT_SYMBOL vmlinux 0x7dd9aa98 d_alloc +EXPORT_SYMBOL vmlinux 0x7deae571 udp_poll +EXPORT_SYMBOL vmlinux 0x7dec65ff mempool_init +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df2c4ca filemap_check_errors +EXPORT_SYMBOL vmlinux 0x7df5312c tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x7e02caa9 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x7e0dd50f fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x7e105269 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x7e16e6ec __register_nls +EXPORT_SYMBOL vmlinux 0x7e17689c xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e352c6a netdev_alert +EXPORT_SYMBOL vmlinux 0x7e39e317 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x7e497546 set_pgste_bits +EXPORT_SYMBOL vmlinux 0x7e63c4ba neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x7e6f6753 devm_ioremap +EXPORT_SYMBOL vmlinux 0x7e71ec2b dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x7e821ba1 crc_ccitt +EXPORT_SYMBOL vmlinux 0x7ebc821e xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x7ed701b8 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x7ef76098 buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f05e95e __mdiobus_read +EXPORT_SYMBOL vmlinux 0x7f1da75f call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f372871 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x7f4c565b add_wait_queue +EXPORT_SYMBOL vmlinux 0x7f506e7b generic_file_llseek +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f7349e3 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f801c54 _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0x7f957121 dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x7fa1bfd4 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x7fac4642 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7fc121bb md_update_sb +EXPORT_SYMBOL vmlinux 0x7fcfa338 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x7fd96f37 __d_drop +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x800eee9b ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x801b6948 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x80318b30 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x80454b45 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x8047e1bd simple_release_fs +EXPORT_SYMBOL vmlinux 0x804b78ab jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x804fd662 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x8053173d pci_find_resource +EXPORT_SYMBOL vmlinux 0x8053525a sclp_register +EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x80548a30 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x805a770b pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x806f2c92 tcw_set_tccb +EXPORT_SYMBOL vmlinux 0x80753e45 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x807c8618 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x80937614 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x809baf1e free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x80b17cec tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x80b2cc84 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x80b9fde5 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d24b9b misc_deregister +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d7f717 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x80e29ea7 genphy_update_link +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80e71c1e inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x80fdfe0a sock_efree +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81164daa __SCK__tp_func_s390_cio_rsch +EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback +EXPORT_SYMBOL vmlinux 0x812f78eb xxh64_update +EXPORT_SYMBOL vmlinux 0x8137930d __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x814ebbfb vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x81573947 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8175c5ed insert_inode_locked +EXPORT_SYMBOL vmlinux 0x8182429f __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81844c9d vmemdup_user +EXPORT_SYMBOL vmlinux 0x818ba04f fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81a58001 mempool_init_node +EXPORT_SYMBOL vmlinux 0x81af3f27 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x81b42940 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x81b433f2 down +EXPORT_SYMBOL vmlinux 0x81baab1a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x81c521ce proc_dobool +EXPORT_SYMBOL vmlinux 0x81cd66ee blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e0037c __bh_read_batch +EXPORT_SYMBOL vmlinux 0x821c8e2b pci_disable_device +EXPORT_SYMBOL vmlinux 0x821e642c md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x823a3a4d unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x82489f2e mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x82509e05 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x825e9b9e seq_lseek +EXPORT_SYMBOL vmlinux 0x826c235f tcp_parse_options +EXPORT_SYMBOL vmlinux 0x8277d78b __devm_release_region +EXPORT_SYMBOL vmlinux 0x82929215 __destroy_inode +EXPORT_SYMBOL vmlinux 0x82997d55 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x82b54d49 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x82c78419 dev_trans_start +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82e46b12 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x83044102 dump_page +EXPORT_SYMBOL vmlinux 0x831b79ed arp_xmit +EXPORT_SYMBOL vmlinux 0x8327b111 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x833eabba input_free_device +EXPORT_SYMBOL vmlinux 0x83538ba9 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x836de67e request_firmware +EXPORT_SYMBOL vmlinux 0x83836856 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83bdb3e1 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x83c06f56 netdev_info +EXPORT_SYMBOL vmlinux 0x83ccdc07 param_get_int +EXPORT_SYMBOL vmlinux 0x83e19bdd pgste_perform_essa +EXPORT_SYMBOL vmlinux 0x83f802c0 phy_attached_info +EXPORT_SYMBOL vmlinux 0x83f995d9 key_validate +EXPORT_SYMBOL vmlinux 0x8401d4e6 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x841cc2f6 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x845048fe kmem_cache_create +EXPORT_SYMBOL vmlinux 0x8467bbef touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x847161d1 skb_copy +EXPORT_SYMBOL vmlinux 0x8499b061 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84c68fb4 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x84d4c8cc crc16 +EXPORT_SYMBOL vmlinux 0x84f36901 block_write_begin +EXPORT_SYMBOL vmlinux 0x84f56b46 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x8534c152 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85b4c625 dput +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d14264 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x85d2560d vfs_link +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e75254 generic_write_end +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f804f2 md_integrity_register +EXPORT_SYMBOL vmlinux 0x860efa2c mutex_lock +EXPORT_SYMBOL vmlinux 0x861461cc keyring_alloc +EXPORT_SYMBOL vmlinux 0x861d9125 vm_insert_page +EXPORT_SYMBOL vmlinux 0x86216acd __xa_set_mark +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x863055ee scsi_scan_target +EXPORT_SYMBOL vmlinux 0x86372848 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863c9c5c dev_lstats_read +EXPORT_SYMBOL vmlinux 0x863ffb19 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x8647a6e3 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x8676db46 get_random_bytes +EXPORT_SYMBOL vmlinux 0x867f6de3 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x86800cb6 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868bde1d down_write_trylock +EXPORT_SYMBOL vmlinux 0x869b7c2f phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x86a34793 _copy_to_user_key +EXPORT_SYMBOL vmlinux 0x86a4790b input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x86a7bcb0 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x86a8fb71 mutex_unlock +EXPORT_SYMBOL vmlinux 0x86adcf6d __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x86b93418 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x86bc3909 pci_save_state +EXPORT_SYMBOL vmlinux 0x86bdbe46 __tracepoint_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0x86c0574b copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x86d2335e mempool_create +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dc25d8 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x86dd1029 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86f40d24 file_modified +EXPORT_SYMBOL vmlinux 0x86fa6b03 iget_locked +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x871799a1 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x8736c6ca mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x87532703 raw3270_start_irq +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x876553fe scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq +EXPORT_SYMBOL vmlinux 0x8792470c ap_send_online_uevent +EXPORT_SYMBOL vmlinux 0x8797a32a skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x879bdb67 component_match_add_release +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87b33ed2 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x87b7cf12 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87fcab48 hex2bin +EXPORT_SYMBOL vmlinux 0x880a1eb5 ip_options_compile +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x8827f90c pci_bus_type +EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x88527786 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x885a440f __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x88721b7e device_add_disk +EXPORT_SYMBOL vmlinux 0x8873e9a6 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x887efc6f __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8882a23e inode_nohighmem +EXPORT_SYMBOL vmlinux 0x88834296 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x88999894 utf8_validate +EXPORT_SYMBOL vmlinux 0x88c8cfbb skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e52cdb idr_for_each +EXPORT_SYMBOL vmlinux 0x88f0175d inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x8917975f jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x891c86ca dec_node_page_state +EXPORT_SYMBOL vmlinux 0x895b5e8b fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x89621b96 __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0x8984fc43 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x898b19cc utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x8999883d devm_register_netdev +EXPORT_SYMBOL vmlinux 0x899c0d31 simple_open +EXPORT_SYMBOL vmlinux 0x89a09837 ioremap_prot +EXPORT_SYMBOL vmlinux 0x89a72572 __tracepoint_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0x89a920df phy_write_paged +EXPORT_SYMBOL vmlinux 0x89ca2d73 wait_for_completion_state +EXPORT_SYMBOL vmlinux 0x8a043365 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x8a18e59a fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x8a1ffd4c unregister_qdisc +EXPORT_SYMBOL vmlinux 0x8a2ba35e fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x8a35622c __nla_reserve +EXPORT_SYMBOL vmlinux 0x8a4ce068 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x8a53dfff load_nls +EXPORT_SYMBOL vmlinux 0x8a571a1c dump_emit +EXPORT_SYMBOL vmlinux 0x8a65338b percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ac08cbd __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ad4f3bf stream_open +EXPORT_SYMBOL vmlinux 0x8ad96211 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x8ae623c3 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x8affc595 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b0f61f7 register_netdevice +EXPORT_SYMBOL vmlinux 0x8b3fa76f devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x8b55fd4f hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8b56659e crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b644f40 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x8b649625 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b808e19 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x8b8e9044 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8bab396c fb_class +EXPORT_SYMBOL vmlinux 0x8bbcd0f2 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x8bcf1b6e sock_no_bind +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8bf1a143 sock_init_data +EXPORT_SYMBOL vmlinux 0x8c3727ed tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x8c3e9263 skb_trim +EXPORT_SYMBOL vmlinux 0x8c556217 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x8c5fa9f1 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x8c61dc14 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x8c6592fc hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8c7b14e4 file_ns_capable +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c875be0 tcw_init +EXPORT_SYMBOL vmlinux 0x8c8fcbc7 ap_driver_register +EXPORT_SYMBOL vmlinux 0x8c92f58d __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb062a8 iucv_message_reply +EXPORT_SYMBOL vmlinux 0x8cc379ce __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x8cc70f4d ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x8cdfc002 sclp_unregister +EXPORT_SYMBOL vmlinux 0x8ce60690 netdev_change_features +EXPORT_SYMBOL vmlinux 0x8cef78c1 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x8d052ed3 ccw_device_start_timeout_key +EXPORT_SYMBOL vmlinux 0x8d0fd4ef idr_replace +EXPORT_SYMBOL vmlinux 0x8d30b64d tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x8d3394a0 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit +EXPORT_SYMBOL vmlinux 0x8d402df8 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x8d45ad1e security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d57ffd5 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x8d5de2d1 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x8d6f65bd tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d73d8e5 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8ded8843 genphy_resume +EXPORT_SYMBOL vmlinux 0x8df11bf5 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x8df4bae6 cont_write_begin +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfdadeb km_report +EXPORT_SYMBOL vmlinux 0x8dffd6f8 blk_rq_init +EXPORT_SYMBOL vmlinux 0x8e06348d rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x8e1c5709 I_BDEV +EXPORT_SYMBOL vmlinux 0x8e1dbd55 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x8e294bb0 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x8e2b8f58 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x8e359542 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x8e4424c3 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x8e55b41d blk_get_queue +EXPORT_SYMBOL vmlinux 0x8e55e525 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x8e73ebce proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e9ed9f4 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x8ec4441d ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x8ec5790f sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x8ed8742b skb_queue_head +EXPORT_SYMBOL vmlinux 0x8ef22757 pid_task +EXPORT_SYMBOL vmlinux 0x8f0a0e13 napi_build_skb +EXPORT_SYMBOL vmlinux 0x8f17c574 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x8f2e8039 zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0x8f402e11 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x8f445509 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x8f5c975d wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x8f627244 ether_setup +EXPORT_SYMBOL vmlinux 0x8f74b1f5 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x8f7537b5 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x8f763db5 del_gendisk +EXPORT_SYMBOL vmlinux 0x8f77fe3c set_user_nice +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f99f8fa register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x8faa5b1b blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x8fc8ff7a d_find_any_alias +EXPORT_SYMBOL vmlinux 0x8fca0e7f xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x8fd0849b utf8_normalize +EXPORT_SYMBOL vmlinux 0x8fe81569 register_netdev +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffffe1f device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x900d5970 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x902cd854 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x905254d9 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x905d7aa5 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x906deb2f skb_find_text +EXPORT_SYMBOL vmlinux 0x907faabf zstd_compress_stream +EXPORT_SYMBOL vmlinux 0x9082deb8 sget_fc +EXPORT_SYMBOL vmlinux 0x90abb542 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x90ae3b1b prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons +EXPORT_SYMBOL vmlinux 0x90c03d31 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x90d4e6ed netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x90f398c2 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x91023969 set_create_files_as +EXPORT_SYMBOL vmlinux 0x910c7a0c alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs +EXPORT_SYMBOL vmlinux 0x912c7f8c get_pgste +EXPORT_SYMBOL vmlinux 0x913c60ec devm_memunmap +EXPORT_SYMBOL vmlinux 0x915db655 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x91905535 key_unlink +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919e2af2 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91b01f34 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x91c6d1fe blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x91db2458 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x91e72b19 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91faa9f7 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x9202552d mdio_bus_type +EXPORT_SYMBOL vmlinux 0x920af677 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9244d6b8 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x925d393f pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x926e368a blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x926efbc8 inet_getname +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x927e2955 xa_get_order +EXPORT_SYMBOL vmlinux 0x9280bb03 mount_single +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a16af7 lockref_get +EXPORT_SYMBOL vmlinux 0x92d55d02 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92d6ea76 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x92d79aa5 begin_new_exec +EXPORT_SYMBOL vmlinux 0x92d906d9 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x92eaa345 generic_perform_write +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92ece24e textsearch_destroy +EXPORT_SYMBOL vmlinux 0x930261dc scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x9311f89d netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x933afd98 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x93417965 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x9355c73d jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x93572ab7 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x935c8208 ip6_output +EXPORT_SYMBOL vmlinux 0x9361b4a0 fb_blank +EXPORT_SYMBOL vmlinux 0x93655b77 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9378575a dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x939161be ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93e1c435 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x93f47a07 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x93fb703f xsk_tx_release +EXPORT_SYMBOL vmlinux 0x940f16e8 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x94121962 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x9412c582 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x94138beb finish_no_open +EXPORT_SYMBOL vmlinux 0x94184f18 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x9425ceb0 tcp_connect +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942f4c5c iucv_message_reject +EXPORT_SYMBOL vmlinux 0x94349d73 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x945775a5 segment_save +EXPORT_SYMBOL vmlinux 0x946c4a4a __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x9473a1b6 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x947b82f4 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x9488fe15 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x948a964a flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94afa211 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x94b17acf genphy_read_status +EXPORT_SYMBOL vmlinux 0x94be7520 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c69c35 seq_printf +EXPORT_SYMBOL vmlinux 0x94c780b7 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x94d63326 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x94f57fd5 pipe_lock +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x9512aa50 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x951a2dfe iucv_path_accept +EXPORT_SYMBOL vmlinux 0x952ed32c __bforget +EXPORT_SYMBOL vmlinux 0x9530365d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x95360f89 task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x956f4f4e pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x9598ae77 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x959def69 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x95a96f47 ccw_device_set_online +EXPORT_SYMBOL vmlinux 0x95aff8b4 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x95b00c36 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x95b38ccc resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x95bfd5f3 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x95ceb864 key_update +EXPORT_SYMBOL vmlinux 0x95d81642 setattr_copy +EXPORT_SYMBOL vmlinux 0x95e63ced prot_virt_host +EXPORT_SYMBOL vmlinux 0x95f53e75 build_skb +EXPORT_SYMBOL vmlinux 0x95fe801b page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x961315ba inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x962701af xfrm_register_km +EXPORT_SYMBOL vmlinux 0x9627ca9b skb_put +EXPORT_SYMBOL vmlinux 0x962d0e09 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x963dd837 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x963fac16 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data +EXPORT_SYMBOL vmlinux 0x96491310 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x9660e41e udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x9666b212 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x967181f6 single_release +EXPORT_SYMBOL vmlinux 0x9695e032 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x969b5d34 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d92cf7 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x96f59a80 dev_get_stats +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x970f17a7 ap_parse_mask_str +EXPORT_SYMBOL vmlinux 0x972e65ca zero_fill_bio +EXPORT_SYMBOL vmlinux 0x972eb97c xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x974d0924 __kernel_cpumcf_begin +EXPORT_SYMBOL vmlinux 0x9758c8c9 simple_unlink +EXPORT_SYMBOL vmlinux 0x9763e6b3 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x976907c6 udp_seq_start +EXPORT_SYMBOL vmlinux 0x976c8673 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat +EXPORT_SYMBOL vmlinux 0x978f1787 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x979a85a0 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x979b5887 raw3270_start_locked +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97afba48 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c0e128 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x97ca6db5 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x97d36c53 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x97dd3612 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x97ee4cb9 bpf_map_get +EXPORT_SYMBOL vmlinux 0x982b511c seq_escape_mem +EXPORT_SYMBOL vmlinux 0x983d28e8 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x983e1604 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x98415967 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x9842e902 setup_new_exec +EXPORT_SYMBOL vmlinux 0x98514cce eth_gro_complete +EXPORT_SYMBOL vmlinux 0x9853a7ed nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x98543d9b pipe_unlock +EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 +EXPORT_SYMBOL vmlinux 0x985edd3a udp_seq_stop +EXPORT_SYMBOL vmlinux 0x987bafb3 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x98802ddd blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x9883c527 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x98996d89 put_watch_queue +EXPORT_SYMBOL vmlinux 0x989e1516 xa_destroy +EXPORT_SYMBOL vmlinux 0x98ada5fd bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x98b1a5e2 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x98b863b3 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x98c4a586 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98de1c15 snprintf +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98e748bd security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x98efaa5c folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x98f66ac2 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x9900761a zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9911cfde wake_up_process +EXPORT_SYMBOL vmlinux 0x99409b6d netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize +EXPORT_SYMBOL vmlinux 0x994a29d5 cred_fscmp +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x995e2ecb xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x996583dc scsi_partsize +EXPORT_SYMBOL vmlinux 0x99767a04 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x998d88f5 path_is_under +EXPORT_SYMBOL vmlinux 0x9990264c netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b746a9 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x99bdb903 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x99ca74a6 xa_erase +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e1360b mark_page_accessed +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a0aabf7 pci_find_capability +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a2e13d2 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x9a373e3a fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x9a3dbd5a _dev_crit +EXPORT_SYMBOL vmlinux 0x9a439481 consume_skb +EXPORT_SYMBOL vmlinux 0x9a4e6289 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a684448 do_wait_intr +EXPORT_SYMBOL vmlinux 0x9a716ebe generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x9a906daf memscan +EXPORT_SYMBOL vmlinux 0x9a919d05 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x9a9aa2c3 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x9aaae674 trace_event_printf +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9adb3189 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x9adc9c67 vsnprintf +EXPORT_SYMBOL vmlinux 0x9adf5f46 mntget +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9afce2fa config_item_get +EXPORT_SYMBOL vmlinux 0x9b051f6f reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x9b0959e2 key_task_permission +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b42ef0f dfltcc_reset +EXPORT_SYMBOL vmlinux 0x9b4662a2 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x9b493a67 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b59a6f7 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x9b61980b truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen +EXPORT_SYMBOL vmlinux 0x9b99db46 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x9b9e69ba unregister_cdrom +EXPORT_SYMBOL vmlinux 0x9ba6d255 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x9bc94568 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x9be58d28 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x9bedd673 dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x9c082410 sock_alloc +EXPORT_SYMBOL vmlinux 0x9c1a781c proc_set_size +EXPORT_SYMBOL vmlinux 0x9c6c801f __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x9c7e15f2 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9cadbd3b __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x9cd921b9 d_move +EXPORT_SYMBOL vmlinux 0x9cda15fe gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce239ed cdev_device_add +EXPORT_SYMBOL vmlinux 0x9ce98daf scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x9ceb867b set_posix_acl +EXPORT_SYMBOL vmlinux 0x9cf9840c rw_verify_area +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d105966 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x9d17de1f nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x9d1da73e raw3270_find_view +EXPORT_SYMBOL vmlinux 0x9d29e5cf bdi_put +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d3883da tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x9d4bff44 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x9d4fdc9b generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x9d4ff6ec from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x9d504963 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x9d509dca init_opal_dev +EXPORT_SYMBOL vmlinux 0x9d6afab2 itcw_add_dcw +EXPORT_SYMBOL vmlinux 0x9d7a1bb8 sk_stream_error +EXPORT_SYMBOL vmlinux 0x9d7e4edd iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x9df35cb1 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e3ff368 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6f8f8a genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e7e3459 vm_map_pages +EXPORT_SYMBOL vmlinux 0x9e9783e1 __tracepoint_s390_cio_ssch +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eaeb203 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x9eb14daf set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ee74fd2 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x9f0ac887 inet_frags_init +EXPORT_SYMBOL vmlinux 0x9f1e221f kmalloc_large +EXPORT_SYMBOL vmlinux 0x9f37fb43 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x9f3c8a49 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x9f3e344b alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x9f401512 devm_memremap +EXPORT_SYMBOL vmlinux 0x9f40c80e tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4d2791 d_genocide +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f5468ff nf_log_packet +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f7b6596 input_set_keycode +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9faafff7 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fc79fe2 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe43152 elv_rb_del +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff6c6de inode_update_time +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffde01d xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x9fff3e20 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xa00c856e xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa02878df __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03d51cb netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa054e8ed iucv_unregister +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa066d89f xa_store_range +EXPORT_SYMBOL vmlinux 0xa066fd6c __wake_up +EXPORT_SYMBOL vmlinux 0xa06e587a release_firmware +EXPORT_SYMBOL vmlinux 0xa0759065 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa0808293 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many +EXPORT_SYMBOL vmlinux 0xa0a26d2f jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b62f84 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0xa0c21476 unregister_netdev +EXPORT_SYMBOL vmlinux 0xa0c6f8e5 thread_group_exited +EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize +EXPORT_SYMBOL vmlinux 0xa0d4681b tcp_disconnect +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff0e94 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa114ebff ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xa141f899 sk_dst_check +EXPORT_SYMBOL vmlinux 0xa16303cc t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xa164e9fe netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xa18fe671 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xa19a9634 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xa1a28762 send_sig_info +EXPORT_SYMBOL vmlinux 0xa1a8cc6c crc_ccitt_false +EXPORT_SYMBOL vmlinux 0xa1b87900 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xa1d1c8b3 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv +EXPORT_SYMBOL vmlinux 0xa1e2ece8 iucv_bus +EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa1f59c62 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xa1fee353 tcw_set_tsb +EXPORT_SYMBOL vmlinux 0xa20532de poll_initwait +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa22cbac6 security_path_mknod +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa243f6cc pci_get_subsys +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25212d9 mount_nodev +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa2859bab sock_create_lite +EXPORT_SYMBOL vmlinux 0xa287e064 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28e1b49 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa2925fbd input_match_device_id +EXPORT_SYMBOL vmlinux 0xa29af339 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xa2a01b8c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xa2a9d479 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xa2cf46f0 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xa2d337c5 tcf_em_register +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2d85d90 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xa2fc75e7 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xa31d1dea __xa_erase +EXPORT_SYMBOL vmlinux 0xa32a6d64 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xa33f6426 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xa3509ddc dev_base_lock +EXPORT_SYMBOL vmlinux 0xa370d003 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xa371fb27 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0xa37eaec0 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xa3914016 path_get +EXPORT_SYMBOL vmlinux 0xa3a0cc12 raw3270_wait_queue +EXPORT_SYMBOL vmlinux 0xa3a5be95 memmove +EXPORT_SYMBOL vmlinux 0xa3b06dde percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xa3b071a1 get_inode_acl +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3ca9cc2 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xa3de5f12 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xa3f7aa51 __tracepoint_s390_cio_rsch +EXPORT_SYMBOL vmlinux 0xa3f8447b xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa401e150 generic_write_checks +EXPORT_SYMBOL vmlinux 0xa4051bf6 LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0xa41afd23 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xa41c1f11 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xa42943ef netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xa4390224 fput +EXPORT_SYMBOL vmlinux 0xa4438c33 vfs_setpos +EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command +EXPORT_SYMBOL vmlinux 0xa45c59bd __SCK__tp_func_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0xa46f5769 param_ops_int +EXPORT_SYMBOL vmlinux 0xa4724b5f dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xa47d400d truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xa48dc5d6 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xa49558ef inet_csk_accept +EXPORT_SYMBOL vmlinux 0xa4b8630a dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xa4c0cdf6 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy +EXPORT_SYMBOL vmlinux 0xa4f9f68b seq_release_private +EXPORT_SYMBOL vmlinux 0xa503dd04 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa519ce81 generic_listxattr +EXPORT_SYMBOL vmlinux 0xa51a2967 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xa53956cb sock_recvmsg +EXPORT_SYMBOL vmlinux 0xa54f31b4 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa562bd4d do_SAK +EXPORT_SYMBOL vmlinux 0xa57a6752 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xa57d10f8 pci_choose_state +EXPORT_SYMBOL vmlinux 0xa58b31da __wait_on_bit +EXPORT_SYMBOL vmlinux 0xa590ffe0 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xa59520ec seq_pad +EXPORT_SYMBOL vmlinux 0xa597b230 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xa5a03207 phy_device_remove +EXPORT_SYMBOL vmlinux 0xa5ae9d90 ccw_device_halt +EXPORT_SYMBOL vmlinux 0xa5bd3f89 phy_attached_print +EXPORT_SYMBOL vmlinux 0xa5d1422e __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0xa5e859e4 raw3270_deactivate_view +EXPORT_SYMBOL vmlinux 0xa5feec69 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa62d2746 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa6563243 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xa658f3e0 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xa66055f4 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0xa67068cf tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xa67d5921 dma_fence_free +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68522a1 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0xa68cb0ac alloc_pages +EXPORT_SYMBOL vmlinux 0xa6982713 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xa6a2ad30 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xa6abe394 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xa6e9c670 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0xa6ea1272 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xa7120e3f devm_release_resource +EXPORT_SYMBOL vmlinux 0xa7440a59 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa772d299 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xa77359b6 kernel_connect +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa799a92c security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xa7a41f7d reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xa7a4cb8d __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0xa7a9cfe0 iucv_message_send2way +EXPORT_SYMBOL vmlinux 0xa7ab1a4e phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xa7ab5329 fs_bio_set +EXPORT_SYMBOL vmlinux 0xa7b1706c file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xa7ce1788 bio_init +EXPORT_SYMBOL vmlinux 0xa7e69abc unlock_page +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7ef83a8 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xa809b89b __netif_napi_del +EXPORT_SYMBOL vmlinux 0xa810102d flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xa823bb81 kobject_get +EXPORT_SYMBOL vmlinux 0xa831c782 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xa8390ed4 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa85ac64e dcache_dir_close +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa8973e3f flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0xa8a1a9d9 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xa8a98f0f param_set_int +EXPORT_SYMBOL vmlinux 0xa8aebb57 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xa8b20bf7 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xa8cee393 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xa8dff896 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xa8e2413e genphy_loopback +EXPORT_SYMBOL vmlinux 0xa8e3fe19 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa9107fa1 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xa9191c40 d_instantiate +EXPORT_SYMBOL vmlinux 0xa92132d6 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xa92231f0 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xa92c9f8d __traceiter_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0xa9392430 xa_clear_mark +EXPORT_SYMBOL vmlinux 0xa95c4dc1 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xa9656051 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97e855b generic_write_checks_count +EXPORT_SYMBOL vmlinux 0xa9ce9b36 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xa9db132d sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xa9e141a2 pci_iomap +EXPORT_SYMBOL vmlinux 0xa9e6485d padata_free +EXPORT_SYMBOL vmlinux 0xaa16f7a2 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa1c6624 raw3270_request_reset +EXPORT_SYMBOL vmlinux 0xaa1e246a xxh32_update +EXPORT_SYMBOL vmlinux 0xaa233c5e skb_eth_push +EXPORT_SYMBOL vmlinux 0xaa2628ed sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xaa26c0c5 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xaa532956 debug_hex_ascii_view +EXPORT_SYMBOL vmlinux 0xaa53b33c gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0xaa5c9395 dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xaa620e39 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xaa7a1f77 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaa9a44e6 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xaa9ef922 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa66739 ap_wait_init_apqn_bindings_complete +EXPORT_SYMBOL vmlinux 0xaaac771b sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0xaaad8c21 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xaab12d5f read_cache_page +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaae299c6 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xaae4c295 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xaae76dad netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xaaf09ab1 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xaaf3d021 __skb_checksum +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab169506 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xab271b22 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xab2ead6e sock_create_kern +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab46c289 __SCK__tp_func_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0xab4a0100 param_get_ullong +EXPORT_SYMBOL vmlinux 0xab5a7f16 scsi_eh_prep_cmnd +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 0xab83b322 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xab86df3a xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xab9337ff xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xabb1b543 configfs_register_group +EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0xabd087fa d_path +EXPORT_SYMBOL vmlinux 0xabd149d2 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xabd1cc34 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xabe1431b trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac053a96 param_get_invbool +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac33b6f1 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xac40516c debug_unregister +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac74c9a8 inc_nlink +EXPORT_SYMBOL vmlinux 0xac81fd80 nf_log_register +EXPORT_SYMBOL vmlinux 0xaca0aef0 complete +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacab761e pci_reenable_device +EXPORT_SYMBOL vmlinux 0xacc6a9f4 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +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 0xad07a08f mt_find +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad1441f0 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xad162ff1 mtree_erase +EXPORT_SYMBOL vmlinux 0xad18ac99 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xad299b78 ioremap_wc +EXPORT_SYMBOL vmlinux 0xad2bf2e7 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xad3990c2 ap_queue_init_reply +EXPORT_SYMBOL vmlinux 0xad435aff f_setown +EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy +EXPORT_SYMBOL vmlinux 0xad528ae8 tcp_read_skb +EXPORT_SYMBOL vmlinux 0xad64b897 devm_free_irq +EXPORT_SYMBOL vmlinux 0xad6c3f78 dqstats +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xada09ad2 dfltcc_can_inflate +EXPORT_SYMBOL vmlinux 0xada7c8a0 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xaddb7373 _dev_alert +EXPORT_SYMBOL vmlinux 0xade3ec36 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xadea2e18 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xadeb3e57 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae06002a kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xae09e238 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae8659d7 tcp_close +EXPORT_SYMBOL vmlinux 0xae9259cc lookup_one +EXPORT_SYMBOL vmlinux 0xae977bd0 drop_nlink +EXPORT_SYMBOL vmlinux 0xae9f0318 tty_kref_put +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaebb6b87 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xaebdf85f refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaeccddcd phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xaecd1551 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xaf0fe540 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xaf3c305e skb_clone_sk +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf567f0f tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xaf6c3f2b bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xaf95a556 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xaf967491 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xafa8f2d8 vfs_get_link +EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit +EXPORT_SYMBOL vmlinux 0xafcb25fb param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xafdad1f5 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xafdf4548 pci_request_irq +EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn +EXPORT_SYMBOL vmlinux 0xafed9376 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xaff20fdd __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb00d362a dquot_free_inode +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06598dc register_sysctl +EXPORT_SYMBOL vmlinux 0xb0746390 inode_init_owner +EXPORT_SYMBOL vmlinux 0xb076e1ad inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xb086d2ad fqdir_init +EXPORT_SYMBOL vmlinux 0xb0a2e984 skb_copy_header +EXPORT_SYMBOL vmlinux 0xb0b1836a d_set_d_op +EXPORT_SYMBOL vmlinux 0xb0d75c4e xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e6d1de device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xb0eda7e7 iucv_path_sever +EXPORT_SYMBOL vmlinux 0xb0f59277 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xb0fb3673 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xb10cf0e5 __alloc_skb +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb110e629 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xb1176e59 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1309e8c inode_set_flags +EXPORT_SYMBOL vmlinux 0xb13444b9 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xb13ba51c posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb1707b48 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xb171ab59 debug_set_level +EXPORT_SYMBOL vmlinux 0xb18fc052 ccw_driver_register +EXPORT_SYMBOL vmlinux 0xb19be9f0 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xb1abef80 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xb1ac6405 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e8126c down_timeout +EXPORT_SYMBOL vmlinux 0xb1f05c1a sock_i_uid +EXPORT_SYMBOL vmlinux 0xb1f73d51 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xb2155f51 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xb22249b0 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xb229a6b8 km_new_mapping +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23108cb udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xb24a0802 key_put +EXPORT_SYMBOL vmlinux 0xb261a635 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0xb28d8adb tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xb2974d99 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0xb2c9fa84 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xb2e7ce02 netdev_warn +EXPORT_SYMBOL vmlinux 0xb2f9fc48 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fdae07 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb318ffcb blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb3278411 posix_lock_file +EXPORT_SYMBOL vmlinux 0xb32b0d68 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xb33ae8ce clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xb346a39c flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xb37bb41c pagecache_get_page +EXPORT_SYMBOL vmlinux 0xb381ff9e ida_destroy +EXPORT_SYMBOL vmlinux 0xb38b56a9 pci_release_resource +EXPORT_SYMBOL vmlinux 0xb38beebf sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xb3a4f087 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0xb3a7ff68 kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0xb3af6606 sync_blockdev +EXPORT_SYMBOL vmlinux 0xb3b3d9cc netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xb3ca78ec security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xb3cabb68 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d618b3 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xb3ee2d5e skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f95da8 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact +EXPORT_SYMBOL vmlinux 0xb40e9768 filemap_release_folio +EXPORT_SYMBOL vmlinux 0xb410db80 tcp_mmap +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb424c2e7 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xb4281ebd ap_driver_unregister +EXPORT_SYMBOL vmlinux 0xb442d8e2 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xb44f5678 dev_open +EXPORT_SYMBOL vmlinux 0xb456ca84 bio_chain +EXPORT_SYMBOL vmlinux 0xb47984ab is_subdir +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4939b4d napi_gro_receive +EXPORT_SYMBOL vmlinux 0xb49c699d dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xb4b9f3cd xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xb4c31574 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4fa400f blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb5004526 md_write_start +EXPORT_SYMBOL vmlinux 0xb5026ac5 passthru_features_check +EXPORT_SYMBOL vmlinux 0xb50b2253 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xb50bc7b5 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xb5134e79 vfs_fsync +EXPORT_SYMBOL vmlinux 0xb534f61f __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xb5399a0e phy_device_register +EXPORT_SYMBOL vmlinux 0xb53f2256 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xb545c43f tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xb54b76aa jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xb56e4ed1 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xb599ebf0 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5aee1da dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xb5b37a8b netdev_notice +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5ba3829 __pagevec_release +EXPORT_SYMBOL vmlinux 0xb5bd68e5 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xb5c14b5f grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xb5d1dd52 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xb5d3119d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xb5d36cbe handle_edge_irq +EXPORT_SYMBOL vmlinux 0xb5e13ad9 dcb_getapp +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5f4d654 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xb5f9c00e param_ops_short +EXPORT_SYMBOL vmlinux 0xb625a9b9 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xb6308446 __load_fpu_regs +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63486cb configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xb64f9a36 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xb66374bf no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb6774c31 setattr_prepare +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb692ef94 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6945e77 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xb6a9c227 lease_modify +EXPORT_SYMBOL vmlinux 0xb6ac307b tty_port_open +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b4f3e8 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xb6b73182 scsi_device_get +EXPORT_SYMBOL vmlinux 0xb6c65efd ccw_device_set_options +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6d14006 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6ee5a89 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xb6f4dbfc ___ratelimit +EXPORT_SYMBOL vmlinux 0xb6fbeefe xxh64 +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb702bba5 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xb70d5116 kill_pgrp +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb72aca2b migrate_folio +EXPORT_SYMBOL vmlinux 0xb73de729 kill_pid +EXPORT_SYMBOL vmlinux 0xb75d20b1 vfs_unlink +EXPORT_SYMBOL vmlinux 0xb76e1d1a bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb772b17d dquot_get_state +EXPORT_SYMBOL vmlinux 0xb7735ffa call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xb78700c3 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xb787772a pci_request_regions +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7a26d2f mtree_load +EXPORT_SYMBOL vmlinux 0xb7a5bdfa dev_set_mtu +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d46b95 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xb7d99b35 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xb7ee2a2c diag26c +EXPORT_SYMBOL vmlinux 0xb817c90f splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xb827d331 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0xb82a5e26 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xb8344a42 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86fa872 tty_write_room +EXPORT_SYMBOL vmlinux 0xb8707ef4 __inet_hash +EXPORT_SYMBOL vmlinux 0xb888f0b6 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89f892f scsi_device_put +EXPORT_SYMBOL vmlinux 0xb8a681d2 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b27e06 __sie64a +EXPORT_SYMBOL vmlinux 0xb8cad3ae pps_register_source +EXPORT_SYMBOL vmlinux 0xb8cdc90d dev_addr_del +EXPORT_SYMBOL vmlinux 0xb8d40c34 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb8da2651 inode_init_once +EXPORT_SYMBOL vmlinux 0xb8dcc270 dev_addr_mod +EXPORT_SYMBOL vmlinux 0xb8e315da tty_devnum +EXPORT_SYMBOL vmlinux 0xb8e62cdc fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xb8e97783 proc_douintvec +EXPORT_SYMBOL vmlinux 0xb8f6d6c5 param_set_ulong +EXPORT_SYMBOL vmlinux 0xb8fcfe27 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xb90244a6 finalize_exec +EXPORT_SYMBOL vmlinux 0xb910c7c8 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init +EXPORT_SYMBOL vmlinux 0xb91c9f93 param_set_bool +EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xb92c30ee km_state_expired +EXPORT_SYMBOL vmlinux 0xb93b1010 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xb93fc2fb sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb943c17e sk_error_report +EXPORT_SYMBOL vmlinux 0xb947a6db jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xb9491bef set_nlink +EXPORT_SYMBOL vmlinux 0xb94aad93 finish_open +EXPORT_SYMBOL vmlinux 0xb94f4d5d __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0xb9678790 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb9abbb2e arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xb9bcb554 iptun_encaps +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f61feb __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xb9fbd39f phy_connect +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba085ee6 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xba1b4506 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba6581d9 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xba8f727a config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xbaaa8045 vfs_mknod +EXPORT_SYMBOL vmlinux 0xbabd64e3 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xbac8c27a blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xbadcadf0 pin_user_pages +EXPORT_SYMBOL vmlinux 0xbae1ad43 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xbaf416eb vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbafbbcf0 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb3a315d blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xbb5934be __wake_up_bit +EXPORT_SYMBOL vmlinux 0xbb5a3366 sk_net_capable +EXPORT_SYMBOL vmlinux 0xbb5c87c4 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xbb673f8a rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xbb78f7a5 xfrm_input +EXPORT_SYMBOL vmlinux 0xbb942889 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xbb9a125f rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex +EXPORT_SYMBOL vmlinux 0xbbc05b5d generic_writepages +EXPORT_SYMBOL vmlinux 0xbbc439b3 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xbbddbd44 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xbbe2eb31 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xbbe97336 get_watch_queue +EXPORT_SYMBOL vmlinux 0xbbebfe4c mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xbbf5cdad pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xbc0ac6a5 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xbc136d5c dst_init +EXPORT_SYMBOL vmlinux 0xbc4afdf2 ccw_device_get_mdc +EXPORT_SYMBOL vmlinux 0xbc76641a __SCK__tp_func_s390_cio_ssch +EXPORT_SYMBOL vmlinux 0xbc8f9c24 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xbc9a23d5 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key +EXPORT_SYMBOL vmlinux 0xbd0a9461 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xbd0d8d76 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xbd15fd9e __netif_schedule +EXPORT_SYMBOL vmlinux 0xbd3e6608 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xbd4640b7 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd65f480 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xbd68ff42 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xbd7a6658 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xbd7b1223 netif_skb_features +EXPORT_SYMBOL vmlinux 0xbd885a59 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xbd923d3e tso_build_hdr +EXPORT_SYMBOL vmlinux 0xbdaa1041 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xbdfee682 md_done_sync +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe1c5d17 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xbe1db703 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xbe20a5f8 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xbe3f502b param_get_ulong +EXPORT_SYMBOL vmlinux 0xbe4e355d folio_mark_accessed +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe55d752 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe7a16b2 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xbe88af63 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xbe8f638e eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xbea20696 start_tty +EXPORT_SYMBOL vmlinux 0xbede3476 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xbeeccfaa audit_log +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef53f33 scnprintf +EXPORT_SYMBOL vmlinux 0xbefaf75b tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xbf07691b dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xbf19c12a filemap_flush +EXPORT_SYMBOL vmlinux 0xbf2b4ef9 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xbf4097e6 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xbf41b6fd simple_pin_fs +EXPORT_SYMBOL vmlinux 0xbf49aafa percpu_counter_set +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf607e37 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xbf8dcc37 __bh_read +EXPORT_SYMBOL vmlinux 0xbf9a5a1e __init_rwsem +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb06930 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xbfd9f046 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xbff9b466 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xc0081cff __block_write_full_page +EXPORT_SYMBOL vmlinux 0xc00dc276 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0xc02178c1 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xc0233799 vc_cons +EXPORT_SYMBOL vmlinux 0xc0259796 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xc02fe84a fs_param_is_string +EXPORT_SYMBOL vmlinux 0xc03ba62a netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xc05c20f8 pci_release_region +EXPORT_SYMBOL vmlinux 0xc06fa7e0 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc099384e pci_read_config_word +EXPORT_SYMBOL vmlinux 0xc09f9736 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xc0a03c9a default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc0bfb9d4 VMALLOC_END +EXPORT_SYMBOL vmlinux 0xc0c5279e xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xc0e0bfa1 pci_alloc_irq_vectors_affinity +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 0xc10eb400 input_flush_device +EXPORT_SYMBOL vmlinux 0xc11340e0 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc120caa6 diag_stat_inc +EXPORT_SYMBOL vmlinux 0xc1394dbd mod_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0xc14039ea ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xc1455104 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xc14aa706 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15a718c tty_port_init +EXPORT_SYMBOL vmlinux 0xc15b92eb tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xc16197d8 mount_bdev +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc16c04cd __folio_alloc +EXPORT_SYMBOL vmlinux 0xc174aa75 __scm_destroy +EXPORT_SYMBOL vmlinux 0xc1886701 block_write_end +EXPORT_SYMBOL vmlinux 0xc1afe18a mdio_device_free +EXPORT_SYMBOL vmlinux 0xc1c8f8be raw3270_activate_view +EXPORT_SYMBOL vmlinux 0xc1ca8779 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d75d0a lock_rename +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc21d12da jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xc23537de kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xc24828e4 ccw_device_is_multipath +EXPORT_SYMBOL vmlinux 0xc250590f strnlen_user +EXPORT_SYMBOL vmlinux 0xc25a45e3 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xc25bfc74 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc2770f07 add_to_pipe +EXPORT_SYMBOL vmlinux 0xc27ee138 __SCK__tp_func_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xc283bc75 skb_pull +EXPORT_SYMBOL vmlinux 0xc28c52c4 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xc2a7cf74 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xc2b86625 page_mapping +EXPORT_SYMBOL vmlinux 0xc2c6fb31 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc316ced7 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc3206e48 md_write_inc +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc366b9dc __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xc3675010 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xc37a01cf capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xc37da201 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc39fc22f pci_disable_ptm +EXPORT_SYMBOL vmlinux 0xc3a9a447 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xc3bd4c1e __folio_lock +EXPORT_SYMBOL vmlinux 0xc3c02a36 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xc3c8b08a generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xc3d6749e bdi_register +EXPORT_SYMBOL vmlinux 0xc3e45457 down_killable +EXPORT_SYMBOL vmlinux 0xc3e54156 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42eb449 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xc433a088 __read_overflow2_field +EXPORT_SYMBOL vmlinux 0xc46247b4 inet_accept +EXPORT_SYMBOL vmlinux 0xc464162a __put_user_ns +EXPORT_SYMBOL vmlinux 0xc4644a96 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xc469ae73 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xc475471a raw3270_del_view +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc48477a3 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xc48ecddc pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xc49b88da sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xc4a83cc3 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xc4b85c10 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xc4d5d508 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xc4d8f448 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xc4e9479d rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xc51396a7 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xc51b9d62 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xc51d90ec flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xc5346f73 may_umount +EXPORT_SYMBOL vmlinux 0xc53c4e62 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xc553e40e scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xc557ec7f bprm_change_interp +EXPORT_SYMBOL vmlinux 0xc567c451 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc572009c sk_wait_data +EXPORT_SYMBOL vmlinux 0xc57b8611 diag210 +EXPORT_SYMBOL vmlinux 0xc5997cf5 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59db615 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit +EXPORT_SYMBOL vmlinux 0xc5b0d06f lockref_put_return +EXPORT_SYMBOL vmlinux 0xc5b3772c kthread_stop +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5c8b56c raw_copy_to_user +EXPORT_SYMBOL vmlinux 0xc5cb559e tty_port_destroy +EXPORT_SYMBOL vmlinux 0xc5dcb4d6 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xc5e64d04 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5f98d64 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +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 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc67512c5 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xc675886e tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xc693d770 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xc69b4152 ccw_device_get_path_mask +EXPORT_SYMBOL vmlinux 0xc6b5af0e jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +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 0xc7206ef9 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xc729f894 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0xc72d8b7e put_fs_context +EXPORT_SYMBOL vmlinux 0xc72f7279 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xc7309e9e __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xc766dc12 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xc76c66b5 brioctl_set +EXPORT_SYMBOL vmlinux 0xc7789ecc xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xc781bb56 proto_register +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c7b252 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d2cf1a kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xc7d627cc param_get_charp +EXPORT_SYMBOL vmlinux 0xc7f12eb3 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xc8106878 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xc8139c09 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xc818e363 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xc81c2091 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xc81e3195 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84c844c fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xc84fddf6 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc851a3e6 do_splice_direct +EXPORT_SYMBOL vmlinux 0xc85671f4 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87ea0ef netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8920355 pci_free_irq +EXPORT_SYMBOL vmlinux 0xc8a2b9f6 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8c5a3b3 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xc8e173ed _find_next_bit_le +EXPORT_SYMBOL vmlinux 0xc8e649e5 genl_register_family +EXPORT_SYMBOL vmlinux 0xc90f038a vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc91ae9c8 dma_map_resource +EXPORT_SYMBOL vmlinux 0xc9238db9 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xc9252581 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xc94fbb53 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xc94fdebf __genradix_ptr +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9670ec4 __block_write_begin +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc97f0a42 zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0xc9807a9e ccw_device_is_pathgroup +EXPORT_SYMBOL vmlinux 0xc9814286 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xc98cc1eb devm_iounmap +EXPORT_SYMBOL vmlinux 0xc9954f38 tty_unlock +EXPORT_SYMBOL vmlinux 0xc9cf900e add_watch_to_object +EXPORT_SYMBOL vmlinux 0xc9d27147 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xc9d91b2a xp_dma_map +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9eb727f vfs_statfs +EXPORT_SYMBOL vmlinux 0xc9f29f4f fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xc9ffeeef __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca2a42c4 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xca2ce822 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xca385053 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca52229f iucv_root +EXPORT_SYMBOL vmlinux 0xca6d6dbc tso_start +EXPORT_SYMBOL vmlinux 0xca7397bb dcb_setapp +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcad99162 kernel_write +EXPORT_SYMBOL vmlinux 0xcae3a07a sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xcae3bbcf inetdev_by_index +EXPORT_SYMBOL vmlinux 0xcae694fe blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xcaf3bb46 eth_header +EXPORT_SYMBOL vmlinux 0xcb196b9d __vcalloc +EXPORT_SYMBOL vmlinux 0xcb34a6e7 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb42bf7d fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xcb5647c3 cdev_init +EXPORT_SYMBOL vmlinux 0xcb94a5ab param_ops_string +EXPORT_SYMBOL vmlinux 0xcb9d70e0 __break_lease +EXPORT_SYMBOL vmlinux 0xcba6550b __SCK__tp_func_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc2fc86 vfs_rename +EXPORT_SYMBOL vmlinux 0xcbd00385 would_dump +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbf75886 dquot_disable +EXPORT_SYMBOL vmlinux 0xcbfb492a crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xcc183c29 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xcc24c976 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc36b8b6 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcc398122 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xcc439abc arp_send +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5d7be2 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xcc6b1077 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xcc720a11 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xcc75a533 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xcc82d267 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xcc971fb5 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xcca30b44 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xccb491e8 bsearch +EXPORT_SYMBOL vmlinux 0xccc34279 kernel_listen +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xcce4be8b regset_get_alloc +EXPORT_SYMBOL vmlinux 0xcce973e9 ipv4_specific +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd055598 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xcd0c29d2 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd5494e9 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xcd61f64d nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xcd9ca194 tty_name +EXPORT_SYMBOL vmlinux 0xcdb51c74 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xcdb90ea6 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc3c0ff release_sock +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdf6ae70 devm_request_resource +EXPORT_SYMBOL vmlinux 0xcdf707d0 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xce0c1f34 dfltcc_deflate +EXPORT_SYMBOL vmlinux 0xce10dd31 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2be700 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xce33f4f3 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xce388922 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0xce42f1ce hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5d660b scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xce83e72b fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xce84c1f4 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xce8b41eb mem_section +EXPORT_SYMBOL vmlinux 0xce9a9fd4 make_kprojid +EXPORT_SYMBOL vmlinux 0xcea0d151 inet_select_addr +EXPORT_SYMBOL vmlinux 0xcea96b50 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceaff427 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xcebafe76 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xcebe3bd9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xcecbcd75 locks_init_lock +EXPORT_SYMBOL vmlinux 0xced8d8f2 inet6_bind +EXPORT_SYMBOL vmlinux 0xcedc0188 __invalidate_device +EXPORT_SYMBOL vmlinux 0xcede1f92 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xcedf5345 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xceeaf216 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xcf1c869a xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xcf2ed08c inode_set_bytes +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf5658e2 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xcf64b0d5 raw3270_request_free +EXPORT_SYMBOL vmlinux 0xcf93b390 dup_iter +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa59084 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xcfa7ae49 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xcfbe5c23 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xcfca4bd5 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xcfd0cd5e dev_mc_del +EXPORT_SYMBOL vmlinux 0xcfdd4543 param_get_byte +EXPORT_SYMBOL vmlinux 0xcfe403ca mtree_insert +EXPORT_SYMBOL vmlinux 0xd021b65d vfs_getattr +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd068177c __sk_dst_check +EXPORT_SYMBOL vmlinux 0xd0691285 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xd06ce18f phy_write_mmd +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd081c402 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xd087e6cd jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xd0b6a55a nf_log_set +EXPORT_SYMBOL vmlinux 0xd0bc2c91 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xd0e54a8a configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xd0f139f0 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xd0f42e81 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xd0f63e80 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xd11bac17 check_zeroed_user +EXPORT_SYMBOL vmlinux 0xd13f1dd3 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xd14957e4 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd1524019 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xd156424a pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xd16b3cce tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd178511b phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xd17de455 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0xd19b8227 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd1abfdc3 pci_pme_active +EXPORT_SYMBOL vmlinux 0xd1ad568d __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xd1b4b419 tcw_get_intrg +EXPORT_SYMBOL vmlinux 0xd1b8f635 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xd1c6518e pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd209e848 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0xd2260096 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xd22a41a0 netif_device_detach +EXPORT_SYMBOL vmlinux 0xd247a500 datagram_poll +EXPORT_SYMBOL vmlinux 0xd2504a8c arch_spin_lock_wait +EXPORT_SYMBOL vmlinux 0xd2510a63 up_write +EXPORT_SYMBOL vmlinux 0xd256c2ca flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd258411d phy_config_aneg +EXPORT_SYMBOL vmlinux 0xd259b552 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xd259c780 mt_find_after +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27242cb key_type_keyring +EXPORT_SYMBOL vmlinux 0xd2798077 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd2831f6a bio_endio +EXPORT_SYMBOL vmlinux 0xd2842f03 __register_binfmt +EXPORT_SYMBOL vmlinux 0xd28bc2ab fqdir_exit +EXPORT_SYMBOL vmlinux 0xd28ebf13 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xd2938b54 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xd2c768ed sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xd2caabb1 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xd2cec60f tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xd2d700df inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dc3046 get_ccwdev_by_busid +EXPORT_SYMBOL vmlinux 0xd2e3c8d7 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xd2f75fb3 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xd2fc5740 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd30c195c pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xd347ae49 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xd34bedab netdev_state_change +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd37573c4 param_set_long +EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd3a985a4 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3cf1c01 down_write +EXPORT_SYMBOL vmlinux 0xd3e4f89f ram_aops +EXPORT_SYMBOL vmlinux 0xd3f71a6d alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd417f4c7 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xd430c0c6 iucv_if +EXPORT_SYMBOL vmlinux 0xd4390c85 seq_file_path +EXPORT_SYMBOL vmlinux 0xd44ba387 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xd44d887f tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xd45cdb06 netlink_capable +EXPORT_SYMBOL vmlinux 0xd467defe sock_sendmsg +EXPORT_SYMBOL vmlinux 0xd4823987 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xd48f69c8 tcw_get_tsb +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4bbe566 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5160045 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xd5240497 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd53f043a gro_cells_receive +EXPORT_SYMBOL vmlinux 0xd543c467 ptep_xchg_lazy +EXPORT_SYMBOL vmlinux 0xd5499658 simple_write_begin +EXPORT_SYMBOL vmlinux 0xd566933c up +EXPORT_SYMBOL vmlinux 0xd56b1287 __bread_gfp +EXPORT_SYMBOL vmlinux 0xd572242a mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xd5a88d57 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5dca112 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xd5e65c98 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xd5e90454 ap_domain_index +EXPORT_SYMBOL vmlinux 0xd5eadbc3 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd62022d3 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0xd64426b5 __traceiter_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0xd6562524 d_delete +EXPORT_SYMBOL vmlinux 0xd65d8719 mpage_readahead +EXPORT_SYMBOL vmlinux 0xd6741b15 dev_get_flags +EXPORT_SYMBOL vmlinux 0xd6742a28 vm_event_states +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd6a15306 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xd6ae2939 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xd6bf3f5d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0xd6e810e0 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xd6e906e7 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd6e9863e mdio_device_reset +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ecb964 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd713f77a bio_free_pages +EXPORT_SYMBOL vmlinux 0xd735a907 kobject_put +EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active +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 0xd74c76a4 sync_filesystem +EXPORT_SYMBOL vmlinux 0xd74d6864 raw3270_request_add_data +EXPORT_SYMBOL vmlinux 0xd7776e36 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xd78385a0 ccw_device_resume +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7b96ebe __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xd7d0b04b file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d54ae5 param_get_short +EXPORT_SYMBOL vmlinux 0xd7e1c5e1 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ec95db jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xd805bf69 put_disk +EXPORT_SYMBOL vmlinux 0xd827fff3 memremap +EXPORT_SYMBOL vmlinux 0xd834dd08 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xd842f1c5 sync_file_create +EXPORT_SYMBOL vmlinux 0xd85b2700 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xd86ae388 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xd86d4266 textsearch_register +EXPORT_SYMBOL vmlinux 0xd8826b91 d_drop +EXPORT_SYMBOL vmlinux 0xd88dbbf4 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xd88e0faa input_unregister_handle +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a0f345 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xd8a2d382 seq_path +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit +EXPORT_SYMBOL vmlinux 0xd8b8e706 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xd8e41cc6 utf8_strncmp +EXPORT_SYMBOL vmlinux 0xd8eb88ff genlmsg_put +EXPORT_SYMBOL vmlinux 0xd8f4c98b netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd +EXPORT_SYMBOL vmlinux 0xd8fea321 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xd91ddf65 fb_set_var +EXPORT_SYMBOL vmlinux 0xd9279f27 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xd92c2afb zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xd93dd3c3 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd9454bbc raw3270_reset +EXPORT_SYMBOL vmlinux 0xd96de8cb __sysfs_match_string +EXPORT_SYMBOL vmlinux 0xd97ce5ca ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xd9859195 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98fe161 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0xd9992a49 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd9ab653f mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xd9acce84 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xd9ad8184 folio_write_one +EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9c12b82 vlan_for_each +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9de22c8 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xd9ebab2d skb_unlink +EXPORT_SYMBOL vmlinux 0xda0347fe pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xda0500cb nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda43fa30 inet_shutdown +EXPORT_SYMBOL vmlinux 0xda452b8b blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xda6fa05c _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xda789854 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xda876912 misc_register +EXPORT_SYMBOL vmlinux 0xda8c19ef input_close_device +EXPORT_SYMBOL vmlinux 0xdab83f92 release_pages +EXPORT_SYMBOL vmlinux 0xdab9e472 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape +EXPORT_SYMBOL vmlinux 0xdafa9f03 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xdb07595c sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xdb4da7e4 get_fs_type +EXPORT_SYMBOL vmlinux 0xdb4e6653 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xdb4ea925 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xdb4f7cc6 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xdb65c512 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xdb69b79c scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xdb7057a9 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdba14ea8 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xdba32f22 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xdba350ac t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xdba8e0c0 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xdbc48294 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xdbd566b3 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe6e780 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xdbe9bc5f write_inode_now +EXPORT_SYMBOL vmlinux 0xdbf51b4e scmd_printk +EXPORT_SYMBOL vmlinux 0xdc01e7c1 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc21d269 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xdc34e840 mtree_destroy +EXPORT_SYMBOL vmlinux 0xdc3f9771 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0xdc49688b register_key_type +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc54c573 unix_get_socket +EXPORT_SYMBOL vmlinux 0xdc557557 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xdc602c99 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xdc64a2f0 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xdc884618 console_start +EXPORT_SYMBOL vmlinux 0xdc96f398 __SCK__tp_func_s390_cio_csch +EXPORT_SYMBOL vmlinux 0xdcca8231 __alloc_pages +EXPORT_SYMBOL vmlinux 0xdcda8fda unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xdcdf1274 path_has_submounts +EXPORT_SYMBOL vmlinux 0xdce4bb87 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xdcf2e1f7 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xdcf84646 sort_r +EXPORT_SYMBOL vmlinux 0xdd066815 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xdd266dad create_empty_buffers +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd319684 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xdd4f0828 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xdd579219 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xdd5ad81a from_kgid_munged +EXPORT_SYMBOL vmlinux 0xdd667ca5 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xddb015bc scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xddc778fd md_handle_request +EXPORT_SYMBOL vmlinux 0xddd4a50f netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xddedf28b vfs_iter_write +EXPORT_SYMBOL vmlinux 0xddf727ab generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xde048ae3 phy_loopback +EXPORT_SYMBOL vmlinux 0xde097063 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xde0bdcff memset +EXPORT_SYMBOL vmlinux 0xde1371ce radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xde16bcf6 dev_change_flags +EXPORT_SYMBOL vmlinux 0xde1effac pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xde293963 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xde31a8fe phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xde3215ff set_capacity +EXPORT_SYMBOL vmlinux 0xde3eb972 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xde49f710 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde650cce sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xde664065 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xde739a8f unregister_quota_format +EXPORT_SYMBOL vmlinux 0xde810960 pci_dev_get +EXPORT_SYMBOL vmlinux 0xdeb8a120 simple_get_link +EXPORT_SYMBOL vmlinux 0xdebb8a67 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xdecaa9e2 scsi_host_get +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdeda2ae2 tcw_get_data +EXPORT_SYMBOL vmlinux 0xdedcb500 block_write_full_page +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef84f9f radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xdf089e7f inode_to_bdi +EXPORT_SYMBOL vmlinux 0xdf1ea981 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xdf2b4d24 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit +EXPORT_SYMBOL vmlinux 0xdf523771 ccw_device_tm_start_key +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf6d476e __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf97e48d pci_disable_msi +EXPORT_SYMBOL vmlinux 0xdfa67ff8 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid +EXPORT_SYMBOL vmlinux 0xdfaa8a02 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xdfb58842 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xdfbbbb9c sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xdfda453b key_revoke +EXPORT_SYMBOL vmlinux 0xdfdb8538 vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0xdfe29d11 __find_get_block +EXPORT_SYMBOL vmlinux 0xdff4e907 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0001c64 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xe01f198b ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xe02ace40 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xe033fe74 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe045a42b skb_dump +EXPORT_SYMBOL vmlinux 0xe04e9319 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xe057b2e1 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xe068a91c gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xe075cac5 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xe0be3c0c tcp_seq_next +EXPORT_SYMBOL vmlinux 0xe0c276a4 mtree_insert_range +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 0xe124d575 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xe13af26f sclp_pci_deconfigure +EXPORT_SYMBOL vmlinux 0xe1580129 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0xe15905b8 bioset_exit +EXPORT_SYMBOL vmlinux 0xe15cdcae register_console +EXPORT_SYMBOL vmlinux 0xe165a97e security_d_instantiate +EXPORT_SYMBOL vmlinux 0xe187244d reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xe1890494 scsi_add_device +EXPORT_SYMBOL vmlinux 0xe1b5212d block_dirty_folio +EXPORT_SYMBOL vmlinux 0xe1cc33a6 vif_device_init +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e52653 tty_port_put +EXPORT_SYMBOL vmlinux 0xe1e55556 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xe1f3fa9e sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xe20888ae netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xe20a81c4 secpath_set +EXPORT_SYMBOL vmlinux 0xe21005ee genl_notify +EXPORT_SYMBOL vmlinux 0xe2231ee2 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xe224be68 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xe2490f4b fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xe254f4f8 xa_get_mark +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe27d87a4 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0xe283f009 page_readlink +EXPORT_SYMBOL vmlinux 0xe28faeba pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xe29d06e9 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xe29d2d02 __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0xe2b5dab8 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xe2b7601e pci_scan_slot +EXPORT_SYMBOL vmlinux 0xe2ccf85a pci_set_power_state +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d5a2dd security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xe2f299e5 input_inject_event +EXPORT_SYMBOL vmlinux 0xe2f39e55 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe2fb1c44 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xe30be315 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe3402b7d __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xe35b0989 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xe35fb609 kmemdup +EXPORT_SYMBOL vmlinux 0xe366fe93 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xe36999d1 submit_bh +EXPORT_SYMBOL vmlinux 0xe377590e input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3b8cbc5 follow_up +EXPORT_SYMBOL vmlinux 0xe3bb9706 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xe3c65d15 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xe3cfd3bd flow_rule_match_vlan +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 0xe40dfe42 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xe412f9a7 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xe413f68a input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xe41a9527 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xe4301102 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe43d9ab2 slash_name +EXPORT_SYMBOL vmlinux 0xe452da7f pudp_xchg_direct +EXPORT_SYMBOL vmlinux 0xe46cd801 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xe47a7d0e kill_litter_super +EXPORT_SYMBOL vmlinux 0xe48b6f2c filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe48bbff0 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xe494ae60 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xe4ad44f6 dquot_operations +EXPORT_SYMBOL vmlinux 0xe4b5be7a phy_aneg_done +EXPORT_SYMBOL vmlinux 0xe4c3bff0 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xe4d56b9c sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xe4df9aec hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xe4e6f20c config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xe4f63793 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste +EXPORT_SYMBOL vmlinux 0xe5109e50 inet_frag_find +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe524e3e2 bcmp +EXPORT_SYMBOL vmlinux 0xe540d620 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xe5413e23 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xe55202f9 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xe555c7ab radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xe55f450a freeze_super +EXPORT_SYMBOL vmlinux 0xe56b0d0f stsch +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a56ecd idr_get_next +EXPORT_SYMBOL vmlinux 0xe5abe9f3 mtree_alloc_range +EXPORT_SYMBOL vmlinux 0xe5ade02f ip_defrag +EXPORT_SYMBOL vmlinux 0xe5b9457b _dev_printk +EXPORT_SYMBOL vmlinux 0xe5b95c15 md_write_end +EXPORT_SYMBOL vmlinux 0xe5bf967b tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xe5c5fdb0 generic_fillattr +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5e6753b pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xe615b2ff dget_parent +EXPORT_SYMBOL vmlinux 0xe6238afe kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xe62e7f5b vfs_mkobj +EXPORT_SYMBOL vmlinux 0xe63a1b95 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xe63be580 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xe63d6124 clear_inode +EXPORT_SYMBOL vmlinux 0xe63eabd6 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xe643e342 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xe650a429 user_path_create +EXPORT_SYMBOL vmlinux 0xe65446a7 km_query +EXPORT_SYMBOL vmlinux 0xe6577d8b __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xe673a55d sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xe67d33f0 tcp_req_err +EXPORT_SYMBOL vmlinux 0xe6c03845 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xe6c5dfe5 ccw_device_tm_intrg +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6ef7d4d security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset +EXPORT_SYMBOL vmlinux 0xe6f7cf01 input_register_device +EXPORT_SYMBOL vmlinux 0xe70e184a xa_store +EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister +EXPORT_SYMBOL vmlinux 0xe71be32c skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xe7200ff0 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xe777e808 sclp_ap_configure +EXPORT_SYMBOL vmlinux 0xe77bbf95 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xe7940816 neigh_table_init +EXPORT_SYMBOL vmlinux 0xe796f19a hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe798236d jiffies +EXPORT_SYMBOL vmlinux 0xe7a6acaa ap_send_config_uevent +EXPORT_SYMBOL vmlinux 0xe7c359e2 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xe7c498d7 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xe7d04db7 folio_wait_bit +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7eead18 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xe800a1c2 cad_pid +EXPORT_SYMBOL vmlinux 0xe80d4eec vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xe80f6e80 file_open_root +EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xe81b59f9 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0xe827fb9a generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xe82a436f dcache_dir_open +EXPORT_SYMBOL vmlinux 0xe8332b4b __tracepoint_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xe845a804 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xe846323a rtnl_notify +EXPORT_SYMBOL vmlinux 0xe8508beb udp6_csum_init +EXPORT_SYMBOL vmlinux 0xe854cdf1 iterate_fd +EXPORT_SYMBOL vmlinux 0xe869d6d1 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xe870a874 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xe8886aca security_path_mkdir +EXPORT_SYMBOL vmlinux 0xe88a9e6f mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe8901e29 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xe8907484 truncate_setsize +EXPORT_SYMBOL vmlinux 0xe89229b5 neigh_update +EXPORT_SYMBOL vmlinux 0xe8a8b2ab folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8ba125d kmemdup_nul +EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len +EXPORT_SYMBOL vmlinux 0xe8f2cd5c xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xe9020709 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe92d3c1e bio_reset +EXPORT_SYMBOL vmlinux 0xe947b2f0 __tracepoint_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95a5289 get_guest_storage_key +EXPORT_SYMBOL vmlinux 0xe96a2d40 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xe9787d28 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xe98bc9f1 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe9916209 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xe994130a __xa_store +EXPORT_SYMBOL vmlinux 0xe995eee3 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xe99c2001 get_cached_acl +EXPORT_SYMBOL vmlinux 0xe9aeaeaf flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xe9ba8632 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xe9c58a09 tcw_finalize +EXPORT_SYMBOL vmlinux 0xe9d48eba filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fcb616 mempool_alloc +EXPORT_SYMBOL vmlinux 0xe9ff75c1 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xea17d0b7 debug_event_common +EXPORT_SYMBOL vmlinux 0xea33c96d __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea5fe344 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xea6c9d2d pci_iomap_wc_range +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea72246d lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xea750e73 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xea771472 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv +EXPORT_SYMBOL vmlinux 0xeaa31586 pci_restore_state +EXPORT_SYMBOL vmlinux 0xeab69c99 param_ops_byte +EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeafcec71 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xeb0272e4 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xeb2a0a7f kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xeb311d86 touch_buffer +EXPORT_SYMBOL vmlinux 0xeb33bdf9 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb6123d9 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xeb6a81fc xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xeb7cf1b6 dev_uc_init +EXPORT_SYMBOL vmlinux 0xeb999914 xsk_set_rx_need_wakeup +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 0xeba8491d readahead_expand +EXPORT_SYMBOL vmlinux 0xebb46601 discard_new_inode +EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebcb8bdc kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xebd05b4f nf_getsockopt +EXPORT_SYMBOL vmlinux 0xebec8d53 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xebf03819 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xebf16639 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xebf8981b blk_start_plug +EXPORT_SYMBOL vmlinux 0xec107425 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xec231fc8 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xec278e1a skb_clone +EXPORT_SYMBOL vmlinux 0xec29e4c7 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xec2aee79 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xec344d7a sk_alloc +EXPORT_SYMBOL vmlinux 0xec407428 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xec41bf8b xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xec695069 neigh_xmit +EXPORT_SYMBOL vmlinux 0xec76707f pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xec7906a5 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xec9d7c8a __traceiter_s390_diagnose +EXPORT_SYMBOL vmlinux 0xeca2c1ac input_reset_device +EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and +EXPORT_SYMBOL vmlinux 0xecaaa7e6 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed106f7f pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xed2eff19 config_item_set_name +EXPORT_SYMBOL vmlinux 0xed4d82c5 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed7f571f jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xeda55005 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xeda77dfc mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc8b458 dst_discard_out +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xede49b0e regset_get +EXPORT_SYMBOL vmlinux 0xeded4458 input_release_device +EXPORT_SYMBOL vmlinux 0xedfc619d pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xee08cada iucv_message_purge +EXPORT_SYMBOL vmlinux 0xee1dd7b0 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xee233b21 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xee2496d0 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xee28a9af sock_pfree +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee405306 __scsi_execute +EXPORT_SYMBOL vmlinux 0xee4de4fb __traceiter_s390_cio_csch +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee596ade cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xee5b2f90 phy_driver_register +EXPORT_SYMBOL vmlinux 0xee7530d2 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xee7ce02d neigh_destroy +EXPORT_SYMBOL vmlinux 0xee7e9f81 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8c37fd invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0xeea365fd mdio_device_create +EXPORT_SYMBOL vmlinux 0xeea8c8db redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec8c590 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xeecfa533 eth_header_cache +EXPORT_SYMBOL vmlinux 0xeed26c93 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xeee3efac vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xeef52689 d_make_root +EXPORT_SYMBOL vmlinux 0xeefbbf9d __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xef0f5039 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xef38fcdf put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xef3e33c7 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init +EXPORT_SYMBOL vmlinux 0xef56296b dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xef5a7398 bpf_link_put +EXPORT_SYMBOL vmlinux 0xef5b70c0 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xef98ac15 pci_find_bus +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xefcbc616 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0xefded308 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xefff277f fb_pan_display +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0027739 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xf00dfbfd fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xf0127f75 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xf01a624d __kfree_skb +EXPORT_SYMBOL vmlinux 0xf053aa42 submit_bio +EXPORT_SYMBOL vmlinux 0xf05c64f8 iucv_path_connect +EXPORT_SYMBOL vmlinux 0xf06482e0 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xf0668e29 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xf071408f scsi_host_busy +EXPORT_SYMBOL vmlinux 0xf07788cb __fs_parse +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0b06063 bdi_unregister +EXPORT_SYMBOL vmlinux 0xf0b21dfa tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xf0b5297c kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xf0dec33e pci_iomap_range +EXPORT_SYMBOL vmlinux 0xf0e0e428 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xf0ea2318 __mutex_init +EXPORT_SYMBOL vmlinux 0xf0ec8f63 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xf0fc9aa8 sclp_cpi_set_data +EXPORT_SYMBOL vmlinux 0xf104cd1b phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xf1156e1c cdev_device_del +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf11ff57a tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xf1611fcf unregister_service_level +EXPORT_SYMBOL vmlinux 0xf1680d11 fc_mount +EXPORT_SYMBOL vmlinux 0xf1690224 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0xf179c239 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xf182f443 qdisc_reset +EXPORT_SYMBOL vmlinux 0xf1843671 mount_subtree +EXPORT_SYMBOL vmlinux 0xf1885629 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a92059 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xf1adc6d2 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xf1d40773 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xf1d992eb radix_tree_delete +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf258142c radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xf25ed853 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29520ab configfs_depend_item +EXPORT_SYMBOL vmlinux 0xf2bcf57c buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xf2c38162 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d64ba0 dquot_destroy +EXPORT_SYMBOL vmlinux 0xf2db43d9 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xf2e03138 ccw_device_tm_start_timeout_key +EXPORT_SYMBOL vmlinux 0xf2e4f82b __sock_create +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf303dfb6 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf3142fbe netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xf31c0d52 ioremap +EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xf33a9435 raw3270_request_alloc +EXPORT_SYMBOL vmlinux 0xf34490b1 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3479fc7 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xf34a77c1 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf38b29cf vfs_symlink +EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf3a0478a dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xf3b08000 open_exec +EXPORT_SYMBOL vmlinux 0xf3b74f79 __iucv_message_send +EXPORT_SYMBOL vmlinux 0xf3ca733b hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xf3cb4a35 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e27e30 nla_put +EXPORT_SYMBOL vmlinux 0xf3f040f2 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xf3f12e6c get_tree_single +EXPORT_SYMBOL vmlinux 0xf3f3b41b complete_request_key +EXPORT_SYMBOL vmlinux 0xf4005e05 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xf41f8ea1 pci_select_bars +EXPORT_SYMBOL vmlinux 0xf4257294 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xf43725fb s390_arch_random_counter +EXPORT_SYMBOL vmlinux 0xf43af0e1 may_umount_tree +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf4604c3e pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xf4634a7d reset_guest_reference_bit +EXPORT_SYMBOL vmlinux 0xf4703d6e ap_flush_queue +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47c786a page_pool_create +EXPORT_SYMBOL vmlinux 0xf486a6e7 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xf48f5367 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xf492c18f d_add_ci +EXPORT_SYMBOL vmlinux 0xf49c51f2 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xf4bb992f inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0xf4bef020 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xf4c5faad get_tree_nodev +EXPORT_SYMBOL vmlinux 0xf4d1fdeb sk_reset_timer +EXPORT_SYMBOL vmlinux 0xf4d9ac09 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e8a906 d_invalidate +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xf5128926 tty_hangup +EXPORT_SYMBOL vmlinux 0xf5393313 debug_register_view +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54de13b dma_resv_init +EXPORT_SYMBOL vmlinux 0xf55e44b5 dentry_open +EXPORT_SYMBOL vmlinux 0xf55e78fc blk_execute_rq +EXPORT_SYMBOL vmlinux 0xf567b5ca vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xf56bc2ac inet_sendmsg +EXPORT_SYMBOL vmlinux 0xf56d33b4 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xf573e78d __vmalloc_array +EXPORT_SYMBOL vmlinux 0xf58fef11 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xf5b25fa8 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xf5b49fda tcp_release_cb +EXPORT_SYMBOL vmlinux 0xf5d1bd7b tty_port_close_start +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5f7bf05 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xf5ffdbd7 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xf6010813 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xf617991f validate_slab_cache +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf6460472 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf67bd2ef ns_capable +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6a38f27 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf6ba255a pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xf6c3e4aa wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xf6cc580f md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf702c10e xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xf70860d2 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xf710bfef dquot_commit +EXPORT_SYMBOL vmlinux 0xf7115653 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xf71e4f2a dm_register_target +EXPORT_SYMBOL vmlinux 0xf72e623c tty_do_resize +EXPORT_SYMBOL vmlinux 0xf730e7fe get_vm_area +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73ba095 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xf73c46fd from_kuid +EXPORT_SYMBOL vmlinux 0xf73e3084 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xf74300d7 arch_vcpu_is_preempted +EXPORT_SYMBOL vmlinux 0xf75f6c49 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xf763d5b3 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xf7690769 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xf788332b dma_resv_fini +EXPORT_SYMBOL vmlinux 0xf79faab3 ip_send_check +EXPORT_SYMBOL vmlinux 0xf7a574bf skb_seq_read +EXPORT_SYMBOL vmlinux 0xf7a621a3 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0xf7aadc14 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xf7d5f508 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0xf7dbdcc2 zstd_end_stream +EXPORT_SYMBOL vmlinux 0xf7fb100b tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf81f25ef napi_disable +EXPORT_SYMBOL vmlinux 0xf81fd636 arch_spin_relax +EXPORT_SYMBOL vmlinux 0xf8280a0a jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf84e176a netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xf852fec0 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf855ad2f dentry_create +EXPORT_SYMBOL vmlinux 0xf85b0551 sock_no_listen +EXPORT_SYMBOL vmlinux 0xf87f3e38 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8aee09f key_alloc +EXPORT_SYMBOL vmlinux 0xf8b73bdc tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xf8c7ceb0 param_ops_bint +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf950e025 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xf9542fb8 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xf96305af sk_capable +EXPORT_SYMBOL vmlinux 0xf96a60d7 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0xf9741404 param_get_hexint +EXPORT_SYMBOL vmlinux 0xf983ecbf new_inode +EXPORT_SYMBOL vmlinux 0xf9901961 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xf995da2e dm_get_device +EXPORT_SYMBOL vmlinux 0xf9a06e0e ida_free +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9d3d576 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xf9e0302a __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xf9e16fd5 file_remove_privs +EXPORT_SYMBOL vmlinux 0xf9e44dc1 sock_gettstamp +EXPORT_SYMBOL vmlinux 0xf9fcfeb9 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa084a29 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa1c059a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xfa2fc882 skb_condense +EXPORT_SYMBOL vmlinux 0xfa355799 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5b9e3e tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xfa6cca76 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xfa953d24 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xfa9dec07 udp_set_csum +EXPORT_SYMBOL vmlinux 0xfaa1b145 cdev_alloc +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfabd424c skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xfabf9fb0 dev_mc_add +EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user +EXPORT_SYMBOL vmlinux 0xfac7255d skb_store_bits +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfadae51d phy_read_paged +EXPORT_SYMBOL vmlinux 0xfaf8082d pmdp_xchg_direct +EXPORT_SYMBOL vmlinux 0xfb10fc81 unpin_user_page +EXPORT_SYMBOL vmlinux 0xfb1d7196 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xfb276fea blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xfb307a14 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xfb37b36e skb_dequeue +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb39bab4 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xfb408103 __brelse +EXPORT_SYMBOL vmlinux 0xfb482dd1 __traceiter_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xfb4cbafa set_security_override +EXPORT_SYMBOL vmlinux 0xfb602306 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb92fb6b ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xfb9d6419 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xfb9d78a5 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcbc96e blk_put_queue +EXPORT_SYMBOL vmlinux 0xfbd3b7fd tcf_exts_change +EXPORT_SYMBOL vmlinux 0xfbd80fc1 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xfbda34cc dquot_quota_off +EXPORT_SYMBOL vmlinux 0xfc18d3d9 sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc5e0cab ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xfc78e2a9 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xfc8c86e2 blkdev_put +EXPORT_SYMBOL vmlinux 0xfccda8da inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdc9795 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfd218550 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xfd284749 noop_fsync +EXPORT_SYMBOL vmlinux 0xfd28fb8a ccw_device_start +EXPORT_SYMBOL vmlinux 0xfd54f4c7 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xfd76f166 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xfd81cb79 hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0xfd9a9866 stfle_fac_list +EXPORT_SYMBOL vmlinux 0xfdb7f6a9 finish_wait +EXPORT_SYMBOL vmlinux 0xfdc0638f __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xfdc8c84d vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xfdc98628 mdiobus_read +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdf00c62 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe166312 folio_alloc +EXPORT_SYMBOL vmlinux 0xfe452d22 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4af512 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xfe5b9267 bioset_init +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6364bd con_is_visible +EXPORT_SYMBOL vmlinux 0xfe771463 __tracepoint_s390_cio_csch +EXPORT_SYMBOL vmlinux 0xfe7c6837 __folio_put +EXPORT_SYMBOL vmlinux 0xfe94629f blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xfebbfb9a skb_expand_head +EXPORT_SYMBOL vmlinux 0xfeda14c2 softnet_data +EXPORT_SYMBOL vmlinux 0xfedb85d3 request_key_rcu +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee71f29 sock_release +EXPORT_SYMBOL vmlinux 0xfeef9974 pps_event +EXPORT_SYMBOL vmlinux 0xfef3fe21 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xfef6baa5 kill_anon_super +EXPORT_SYMBOL vmlinux 0xff078056 iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0xff1d4721 inet_offloads +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff1f0ae2 add_virt_timer +EXPORT_SYMBOL vmlinux 0xff5a7486 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xff64fe3c noop_llseek +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7ad1b5 krealloc +EXPORT_SYMBOL vmlinux 0xff7ec0ff dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0xff8b56a9 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xffa699fa ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xffa94483 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xffbf5a41 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffd59c26 pci_request_region +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff93872 pci_clear_master +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x5d03e239 s390_sha_update +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xbb24e2e2 s390_sha_final +EXPORT_SYMBOL_GPL arch/s390/net/pnet 0x315ed16f pnet_id_by_dev_port +EXPORT_SYMBOL_GPL crypto/af_alg 0x01382e6a af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x0ff030ff af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x1031e096 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x1b351ad7 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1cb95872 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x283a38b4 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x28c8611d af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x429f401f af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x4797734a af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x562aa75c af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x58c05abd af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x63ddf461 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xce750b8d af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xdc48770a af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xe5f199bb af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xea8050ed af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xfb6fc32c af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xff2af026 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xec01fe8c async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x51594f87 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x638073e4 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x10df492a async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb3c4df6a async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5109bbbe async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbdb7ec20 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc07f0aed async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x13f10c15 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1f563ad6 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5def4740 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xf6d8c7ca async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x0d7c4b0e blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x12826a41 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x29ed6e0d 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 0x2542f4b1 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x41c75617 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x6007dd8a cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x6ea4f614 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x90426057 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x924c88e2 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xb23f54d2 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xcabb92df cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xcf678e59 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xd4becd6d cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xe1aab46b cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xe99c483f cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xea81c57a cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1f10573c crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2bc509dc crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x472e1285 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4de331c5 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9256611e crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa3c4cc38 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xae2cf10b crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaf7da50e crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb0ff7db2 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcfac820c crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd7db88ae crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdc2402df crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe208ebfb crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xecf5e4d4 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfeeb3389 crypto_finalize_hash_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 0x3a4cebec 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 0x43a75771 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xa0a33a6a dev_dax_probe +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x267f72b5 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0d1bc1f2 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x22272132 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x38c3a444 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6a502f65 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6a8ab516 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7315ee0f fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb9d139ee fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc2d8ed5e devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc5382fbc fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc6339fe0 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe0edbfed fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe284ac2e fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xec2180b4 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xe73d5dd5 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x02a994f2 idio_16_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x1bf5ac5a idio_16_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x40f176c1 idio_16_get_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x8e08818b idio_16_set_multiple +EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xa143e5cb idio_16_state_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0a0763e7 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0b8ec5d6 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0dcc3cad drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x231af898 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3febd37a drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x466c11d0 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x60223505 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x86b3c3a2 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x89f25520 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8a54eb31 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdc188a33 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfae684c3 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x009ec5d3 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1d741678 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3127fb2c drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3a53c530 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4ece6aa6 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5a1a0fef drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x84de64ea drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x99b52bd3 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcb6f7251 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd4d2ed53 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x4c37b1f0 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x78c258dd drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x801b4b9e drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xaaf8a72a drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xbb13bcf9 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc59f1153 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe0356411 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe5380d06 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x10164209 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x31c15943 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x407ad8d4 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x423ad03e intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x51af6c56 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x65901624 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6b688cfd intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x743ff8bb intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa521784e intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x122d2d62 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x2ce9d141 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x6051dd03 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2228fed8 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x23856ee4 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x27062775 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2e2be6d7 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3a007265 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x466780ce stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7c347bd3 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcc3f687f stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe1a958f0 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x106348cc i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2302a818 i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3b95935f i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3daa8c73 i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x425482e7 i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x43794755 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4405401d i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x47b9bedd i2c_new_ancillary_device +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 0x5658bde3 i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x5ed72dfa i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x7d520815 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8eeaaa23 i2c_client_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa4616f4c i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa4a26b4d i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb1c12708 i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xbfb238f4 i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc7be0759 i2c_new_scanned_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xdfa8c0d6 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe17a8967 i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe5fcf730 i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe9339b7c i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xec9693b7 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6fb4fbc2 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xabaac99f i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb0b53b74 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf06364e1 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x293969ff rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3df79be1 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4231da51 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x64834530 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x651af610 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x67a7e72e rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7ba48261 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x929e7441 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xab7fdac5 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc69dd7b9 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd7fde26a rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfc9da18a rtrs_iu_post_rdma_write_imm +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 0x086e162a __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x1b035994 __traceiter_bcache_btree_node_alloc +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 0x274f7ffe __traceiter_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 0x28dc5c68 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2909bc5d __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297ce79e __traceiter_bcache_btree_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 0x30ef477a __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x395de20c __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x43c54818 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x671a8023 __traceiter_bcache_gc_end +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 0x73614b43 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74011853 __traceiter_bcache_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 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 0x9651c8ca __traceiter_bcache_btree_insert_key +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 0x9bdb0c1c __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9da2da3f __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9e447987 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ebf34f0 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa14fdbcf __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad775841 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xafea7e9d __traceiter_bcache_btree_read +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 0xc3240499 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc80e05fd __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8d57c02 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xccf1a442 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2bc9486 __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 0xf997f58f __traceiter_bcache_btree_set_root +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 0x1a0d623b dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x46802be2 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5d70e470 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 0x77306a4e dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7ee32e85 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8c9f637f dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9f77d989 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa109323b dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa43d0793 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa4a33e5c 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 0xafc44b00 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb1be185c dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb4353fb7 dm_bio_prison_free_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 0xddef9e2d dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xde8e287b dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf52274d6 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf9c2deca dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcc1bf079 dm_bufio_client_create +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 0x1810d700 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x36ed1ecd dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x796a703b dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd638ed27 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bb31c4 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe756dac6 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe8c5320d dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x038379b7 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x495637fd 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 0x34d04fd1 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 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 0x7fd5d103 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8ff94314 dm_rh_delay +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 0xb3eee1b5 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbbb693be 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 0xcdcb940e 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 0x00f5a3c8 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1b1be9e8 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3b45ed28 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x65fa2e1e dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0x3a8dd3bd st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9d3ddcb4 st_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0063c627 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01544962 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x058b7c6f mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fb8d466 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1222a303 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14d1279f mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x160409c7 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17cd27b0 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a4becd8 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bc212ca mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2212668b mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22174ace mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x230502db mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25e9079a mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x287132e3 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2880cfe7 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29661dd8 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2eb6d8bd mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fcb5086 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x313c6d23 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x321269c7 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x346df857 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d5a9c93 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e39fbc8 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x427d740a mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4311a024 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4432d91e mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4496a7a3 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4508de7d mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45eeb518 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bc7bacb mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4de5a1a9 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4def6b9d mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f7a7dac mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b663bbf mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x604959f0 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64136b04 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6418fd2b mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65ccf0e6 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65f36da6 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aaeadaa mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b7203bd mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6babe9ca mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e62659a mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f94e459 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7198b40f mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72317aea mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7751f0d7 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79edfc8e mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d2460c9 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ea82724 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fb52289 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82517cf6 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86cd11d5 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87529fd3 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87721cb6 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e5a2a5c mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f7fa22b mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90fff3f7 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x924a9e99 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9266917e mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92a16ca5 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9360dbbe mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94dd83cd mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d87b7f mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x981d1b5c mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bad616b __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c2cc8f2 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c54f815 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ca46e26 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cd43e7f mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d34bbe0 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dce76e5 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e98d6d7 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f8940ca mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f976038 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa84d75bb mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab4f3684 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac93c62b mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae179f2f mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb079ea79 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1b53db8 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1d72b53 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3d1cd40 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3ee58c7 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb54af862 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8c6e78a mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8e6f8c9 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb905b08b mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbae51e2c mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe51fbae mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf19cb67 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfba1385 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc06ee233 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc22cca7f mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc455206f mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5060780 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb2493bf mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce0388dc mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd51e79e8 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd64b4bc2 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7a7b96a mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb3f6d91 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde3a85bd mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe31bbc2d __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4888449 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4aa588d mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe578181d mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6624597 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6a0bfde mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe84c1dc5 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8e5fb1e mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xede38d9a mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee080624 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4a6b9a7 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf51f76f3 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9fcb53e mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa6c7ea1 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb26fee2 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfde59f44 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff2861e8 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0342a96f mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x071e814e mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x083fac18 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e912b76 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17052265 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x267920b4 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2863830c mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29a786c0 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a75e3c8 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a8cf788 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c257817 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x303b1830 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30844d4d mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x326f98a3 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35d675e9 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3847d5bd mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x435bc1c8 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ad0a5c1 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bfb82ac mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c127ffc mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e7d128d mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fe91eed mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5586ac0b mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58751c83 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66f19d6d mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69427e87 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d6a6433 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70b5df4e mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71ab75ad mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75a50a53 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8400e2f9 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x841b4e61 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84585f76 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x850a9b67 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x889930de mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89b5ef9a mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b596c5a mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cce9014 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92d31bc7 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93fc2c1f mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9458eded mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94fa4182 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0136d80 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0a72ddb mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2e002e5 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa42f8268 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac243b6d mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaea6134c mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb94d1049 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3ec3623 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca2ef39c mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf8b45f5 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd22a8998 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2f0b254 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd50b5366 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd72908c4 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd943079d mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb2ea61e mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde88d135 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe075d6bb mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe28b7701 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf24c8b10 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9107199 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9cf0117 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfab28dba mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcdfbd8b mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff6b9688 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/geneve 0x0b229340 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3b55c96a ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x49e34f0d ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8826a7af ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa7e8db07 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe43d9da6 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0xc468d869 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x931bfd31 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xba50e2b6 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd2d4ffca macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xef43acbf macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x71c5e7c6 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x28848f42 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x2d1328ed net_failover_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x034d7969 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x080cf0a7 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0b717ad8 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c2c6fff bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3035d59a bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30d09da4 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3b22ce2e bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3d8d1435 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x460d0ee1 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5858b286 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5f9ccffd __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ea0583e bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ff5762e bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7208b734 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7523f818 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7774d882 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7b9cbef8 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87d73b2d bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8fb74a10 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x97433be5 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b47ab33 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa1cedb15 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa78b3c2d bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb3434ae0 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbee855ef bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc79fd24b bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca621128 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd2e3bf84 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd6c94e50 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe554aa9d bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe752bc0f bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf57277e9 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf684104a bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfdb4561f bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x22076d20 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x3bcd3d46 bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop +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 0x20a6d4da phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x35f78a3f phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3f3a174a phylink_ethtool_ksettings_get +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 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x64a1a5ce phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x66e8b5b0 phylink_caps_to_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7cc9ae7b phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7ff478ff phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x81a1e5ce phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x859b1ff6 phylink_validate_mask_caps +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x87007e3a phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8d0bf802 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x95ea06a1 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd232d3b0 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd2ef6a40 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd903f419 phylink_get_capabilities +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd982f852 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +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 0xf926a606 phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL drivers/net/tap 0x056185cc tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x362d6556 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x44e3f40f tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x775cd379 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x7f85dbbb tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x85627e61 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xde7871b5 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xe8c7622f tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xf36d30a6 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x34eb21a9 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4083b5f6 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4db05d83 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb8452666 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x055078fe nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x3898cd06 nvme_auth_augmented_challenge +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x4acb4907 nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x4ba78f1c nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x50b431c4 nvme_auth_extract_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x60b59534 nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6804e9d6 nvme_auth_transform_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xaef4a750 nvme_auth_generate_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xbd3e3482 nvme_auth_free_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0290bcfe nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0428c914 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1c287728 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1eecc5e8 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x21bd0cdd nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2af4e4ed nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33caa773 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x47373821 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4a0203a7 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b05740f nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d796c0c nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4eeff848 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4fd7da04 nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5484d0fd nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54a45811 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58074318 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a398d89 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f2d56e0 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x600066c6 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x604bd31d nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64c57a7d nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x726b9771 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c9f2a7d nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ed95936 nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8567d1f6 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x879aacf9 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8cf442ae nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8da14d7b __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x95e0bfb1 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9ee9e9f9 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa38bbf70 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4c284ef nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa57a5d2d nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa91e94f3 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xae4d3f2b nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb134ece8 nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb2a73da4 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc6d39d0e nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc7df5733 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca80153a nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcca310b9 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd010a44e nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd07f7444 nvme_complete_async_event +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 0xd872164d nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe3eeaafe nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe65c28b8 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe73a6862 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee259322 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef5b2009 nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf04c711b nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf45784e4 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6f8dd70 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8d50640 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xffcba580 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2b89187d nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x31e4a780 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4f310414 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x577f6f2d nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5d59890a nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8255e66b nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8cad6fd7 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x94aaec39 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9cc931e0 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb0fbb1d4 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xee2f91bd 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 0x47ba58f1 nvme_fc_register_localport +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 0x02da30ae nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0a8cc5cf nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x169506d6 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x206e2bb7 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x23e14d51 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x49699678 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x618a96b5 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb6d3ad09 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xca4e0b6d nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xce0243c5 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xeb0769da nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 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 0xcb228af1 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x88eb42b2 switchtec_class +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0124a2ae dasd_generic_path_operational +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0aa34215 dasd_dev_groups +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0ee7b50c dasd_generic_probe +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x2210c43d dasd_generic_set_online +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x222b388c dasd_generic_read_dev_chars +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x253dc494 dasd_device_remove_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x26b92de7 dasd_flush_device_queue +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x2823a286 dasd_free_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x53d591e4 dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5a95fab2 dasd_get_sense +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x63383fc6 dasd_generic_notify +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6c2f9aa5 dasd_put_device_wake +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x73700b12 dasd_generic_shutdown +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x76f5ecf0 dasd_device_is_ro +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7d8b9418 dasd_generic_set_offline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8b66acc3 dasd_generic_requeue_all_requests +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8c2860e9 dasd_generic_verify_path +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9728be0a dasd_generic_last_path_gone +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9f7a701f dasd_generic_handle_state_change +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa0854b7f dasd_generic_path_event +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa158ac5c dasd_device_set_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xab373366 dasd_biodasdinfo +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xbc426e55 dasd_devmap_set_device_copy_relation +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xbdd2e79e dasd_generic_space_avail +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xbde489d0 dasd_generic_free_discipline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xcaad243f dasd_generic_uc_handler +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xcf2baf35 dasd_generic_remove +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xe6b45ea9 dasd_wakeup_cb +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xe78d6a8a dasd_generic_space_exhaust +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx +EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x85d9d140 eadm_start_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x23c0e637 qdio_alloc_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x27488bbc qdio_reset_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x30a5205c qdio_shutdown +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x497bef1e qdio_get_ssqd_desc +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x4a233477 qdio_free +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x4ee1f000 qdio_establish +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x5e7fa109 qdio_add_bufs_to_output_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x63d45561 qdio_allocate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x640d4b54 qdio_add_bufs_to_input_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa04bb255 qdio_free_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xb643fae4 qdio_inspect_input_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xbbcc7a6c qdio_inspect_output_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xbbe16290 qdio_activate +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x05806bf4 qeth_stop +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1147c4e3 qeth_set_real_num_tx_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1325aeca qeth_get_stats64 +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x290fef51 qeth_fix_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2b082aa2 qeth_resize_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x320e30b6 qeth_send_simple_setassparms_prot +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x33d63535 qeth_enable_hw_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3be3e1fe qeth_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x46757148 qeth_features_check +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x46c1e705 qeth_do_ioctl +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4dc1f258 qeth_get_setassparms_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5ee01084 qeth_set_offline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x61fcc48d qeth_vm_request_mac +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x659b62ef qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x709fd505 qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7c7045a2 qeth_xmit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80f7ea64 qeth_ipa_alloc_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x87d5fb91 qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8cebaf4f qeth_open +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x90973b81 qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa53aadc9 qeth_osa_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb4d05d78 qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbb9ac12d qeth_set_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbd48e84c qeth_setassparms_cb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbfd81cf8 qeth_get_diag_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd2e2a435 qeth_siocdevprivate +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe3e34a02 qeth_iqd_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xec1528e5 qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf06d4ce1 qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf226458a qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfb196ac7 qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x35d54686 qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x2f207b17 qeth_l3_discipline +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0329f4a0 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1865bcf8 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c1287c4 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c7a5c8d __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x280c8df8 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x337138c8 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x42b90c82 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x458f0105 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x55ad5ea7 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6220e7a8 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7a06f24b fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa7c00b4d fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3c1a6bb fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd54227ca fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf46a9c06 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf5b49a3c fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x35ac9186 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5347fe41 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x951d0278 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xae0c55dd iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb473d2f0 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb9cf2213 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbf541475 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x5b449075 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05b33790 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c31b8f7 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0daf2e33 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x147bcd79 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1f5d54b5 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a98d644 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ab63e73 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x345acd95 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d8df24f iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42e77e1c iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5236fd67 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x576c87db iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61ce4f84 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ca6fded iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e049c49 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x716c1e0e iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7302a30f iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a02e37f iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b4bbbf1 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a1d5031 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f21b5d2 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94cedcfc iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95fdd36e iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1139c0d iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa509ed33 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa840a81a iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa3ab9d6 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad506407 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaddacf28 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafd4dbb6 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb223b8d0 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4c315a7 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd3284ab iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc987955b iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc98bcbac iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xced2316a iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7b4ad0d iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd92526df iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda3fd29b iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc8a8137 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd1f27c7 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdeb85e11 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe56ba451 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed6dae8d iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefd79b73 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3c742ec iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf42ee18f iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfebd81cf iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x07ded93e iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x171cf1f4 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x244bbe34 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x24ab39d8 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x51aea6b3 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x592d0f41 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5b37776f iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6a86a825 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6aeb0203 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x702bbf8d iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7cc102ea iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaa65a33c iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xac57c03f iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb0eb72d0 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd7c15108 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe50cafe7 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xefe52d58 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05236b7e sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0af8699d sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14b0113b sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22a3d256 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35eeace6 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x38899bfe sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4071076b sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47752c21 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d924cf4 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ece9042 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53c9bf79 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54800f70 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x644513d0 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e58cc78 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6f38f96a sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6fc5b9fa sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b3044c5 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d7204c0 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x964ac6bd sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x981d6151 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2dc6570 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa7c12d2c sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaa558d25 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca14366e sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd87a416b sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd9382490 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc98eabb sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdedd9fdb sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe52bf86e sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe7b54fa7 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeeab82c6 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf5c0a1e5 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xa2ec1c94 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 0x08fb58ea iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b8c985c iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e619fe3 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x196eec21 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a0fa053 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fbf90e2 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ecbf37a iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f65525f iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39c4f368 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3fe03693 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46366668 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49068706 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4befec16 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5772cdea iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x580391e5 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b47aa55 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b7da3a3 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bbb4feb __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d3d6350 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d47a051 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61d3ebb2 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69ac0bd9 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b949a3e iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e88f08f iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75670a34 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c947b80 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d6c926a iscsi_lookup_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 0x9a5b9a51 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1906d93 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6671584 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c2aafa iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa45cafb iscsi_get_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 0xb1ab9ef7 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2cef96b iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2f91c4c iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3bd42c6 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe164918 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0a94f03 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc22d6d8 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce39fc86 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0530c26 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5afc53b iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe274bf0c iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe34281bc iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3853c1b iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe47bba60 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6c60677 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd746324 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4e3cc7e8 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x52b8eb74 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5fc5b425 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x62c84650 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x61f7b9e0 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 0x45732e91 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa9944107 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb9d4e453 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xed5a8caf srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf7e34d2a srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfba6f5e6 srp_release_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x21c0420b siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x248989c4 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x651da93e siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x69b622a9 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6ed67fa3 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc97456f8 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x31200bc8 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x40592cbc slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5c5dd323 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5dc88c1b slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x67f653a0 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7393ff83 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x74b62be7 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7bd06c87 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x80079651 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x846aab4d slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x85463a44 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8a6651ba slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa47c2a13 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa4881452 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa567635e slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa782c2b6 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa88dcc27 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa99c3b94 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb9e6db01 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbd52cdc3 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe644df3d slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe9a732d5 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xef6d2e19 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xefee8fef slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfa1e250b slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfc8b8a7c slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1d75dd25 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x253ace2d target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa3afb189 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xcefcc052 target_queue_submission +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x19a78780 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x3a8af97c uart_handle_cts_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x65cc3c1d uart_get_rs485_mode +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x8b190fec uart_console_device +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xae925bec uart_xchar_out +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xc2300b3f uart_insert_char +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xf0414bcd uart_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0015c4ad __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3d426b82 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x58ce4d27 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb6129b23 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x002b96f4 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x091acb63 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0b1fe775 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0f9b8a57 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1c9c27c0 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x329652a0 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x35b02793 vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3bfd4df1 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x58fbf7df vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5cbb31ef vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5eadafa5 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x63e96f8c vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6559fd82 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8eca0d77 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9314075f vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcd66154c vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xda695495 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe6bafd2d vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf8d438f6 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x065cab56 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0c9b826f vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0f558f3e vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x14a23f2a vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x32d1f021 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x37ef5f81 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3e8ea8ff vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3ff366a8 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x418c8472 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x529db99e vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5ef26957 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5f602dc7 iova_bitmap_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7018f704 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x793f0a3b vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xba9c05a4 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc3dd2ebb vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc6984055 vfio_device_set_open_count +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdf74962d vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03fc52eb vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1272687e vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15d1c2a3 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16befc6c vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ab7e06b vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b16f674 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c5eccac vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36498db9 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3fb48531 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x452df541 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e2df72a vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ee880bf vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x528a28fd vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5a387680 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b5eba96 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62822c76 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6622bbd4 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x732c5c2a vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x82d1c5c1 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a69d671 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96c3122a vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c407b05 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad12c116 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xade05293 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb26bfe42 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb53224e7 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb63e3492 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc49d1cb7 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc51a0eb6 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc795d93 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3092801 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd34640ee vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4be8213 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd832edcd vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf4c1703 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe217210e vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5661b33 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe84699a9 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf596ae80 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd265189 vhost_exceeds_weight +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/fbdev/core/fb_sys_fops 0xba9a7ad7 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xee12a433 fb_sys_write +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3355e24b dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xaa340a02 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 0xf121f324 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x22bf402b nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x474d2012 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x67df70d8 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7e102316 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbc69f39a nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcca6586c lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfc325959 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x003c4ce0 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01fdc072 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x033bb221 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0649f4f8 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06de6fa1 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x096b9837 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b1e1164 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b60146f nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cd3249e nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10220c56 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1109fde8 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11da32fc nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12bb2b37 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12e6780e nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1464284e nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14a12bd2 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1645abc0 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1688e221 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16cfb1aa nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1742a865 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x183ca218 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bc65c20 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d0e06a8 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d0ef7a1 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21db2a3c nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21e87562 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23cb0a5b nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24701a75 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26e46498 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b951c18 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2beb9446 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2daef2ed nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x329623c6 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34ba10f9 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3603bfa1 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x365ab832 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39197fc6 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x393fcb11 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3aee4364 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c847a42 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d628419 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ef16ae5 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40374351 nfs_file_fsync +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 0x44bb3074 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45da1bb9 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48455ca9 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b7d19c7 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c413e52 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e09c5f4 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e385f9b nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52a9633c nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54fd082e nfs_pageio_resend +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 0x5b360f02 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b46e39a nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c40326d nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c70cca6 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cb6cbfe nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d31b8f4 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x604de530 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60b672fc nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6391288e nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63db5296 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64482119 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68f3abdd nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69586ac7 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69938f53 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69a6677b nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a113264 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bd9aa2c nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c5d6965 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c641219 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ceee68e nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e7b522f nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76f48e75 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80317461 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82f868f4 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85746c39 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x864da679 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x867f8620 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x883022f3 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8922ac34 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8925e469 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x893241f5 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x896aad37 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e96ca8d __traceiter_nfs_fsync_enter +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 0x972805d9 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a344bd8 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1d78d69 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2ac553b __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa34491fe nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3589835 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4966ca0 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6db5594 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9e4b217 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa6e5627 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaae5438f nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab15d3d3 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacc56cfa __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaef36662 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3cffbb7 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6a2207e nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8aee7c4 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc11cb82 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc7ab031 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdd550a1 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5e0c458 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6a40898 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc9fb0e6 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcede225a nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd03f5880 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1a19634 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd33f5314 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3869e78 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd47cee54 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd60b6201 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda0de8f2 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xded36802 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe100d120 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe516465b nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5a9c876 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe89ff4ca nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xede712e4 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefc84558 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf25ef3e9 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf38c64cd nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3f5038c nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf643db28 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6d8e511 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf709c920 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf725131e nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9ef9849 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe454392 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfea6dd04 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff609eab alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffa64010 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffbd3187 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x8c37aba9 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 0x08f767e4 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bfb2433 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e4a132d pnfs_generic_pg_test +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 0x10a9fe39 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12eb19f6 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x132424c6 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15253c98 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x152558ea nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e247b7 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2664b251 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a5ea3c9 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31e24d8e pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39e4f3c9 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a966178 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43c80a95 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46604bb5 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x536c7302 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x537ebcda pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53f3c226 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55da6c33 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56c13914 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x596c20e7 pnfs_generic_pg_init_write +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 0x6352eae1 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c371373 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c567882 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f54f1fc pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7437d779 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x790f4e85 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79fbe0d6 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a2da8ab 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 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 0x7f3263f7 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f81f25e pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8078df87 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8452fcbb pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x898757c1 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b050e71 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9111a271 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930b2de4 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9711b7b1 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x978e6e23 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1855d1b pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1e8e275 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2ce35c0 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa47d9f95 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa74965dc pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8f9de0d nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9f97ca5 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaac2faae pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab2788bc pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae4e439b pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb57dc566 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb60dccb2 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb744b949 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbab4410f nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaf965b9 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc518a48 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe6f6597 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfb9bcd9 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6328d76 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9468f75 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd972ea7 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1b884af __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd76e19cf pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7bde278 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda1db682 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda4fae85 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe120b0fd pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe33e87cb pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5474f93 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe70a1254 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb8cb645 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebaa355e nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebb11310 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedc1450c nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeec3ab50 pnfs_put_lseg +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 0xf9eb6f3c nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa950fd7 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb4decf3 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfefce2d9 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x450ae1ef locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x719ac42d opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf2148d9e locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x082de6c9 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5496a698 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa1e53651 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc6b584da nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xa03a180f nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x03b7aa2f o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x157a0f77 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x334bde9a o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x468475e2 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x78dd3f53 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 0xa5a69aff o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_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 0xd3f64fec o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x2a2eca6a dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x524be8ad dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xadfa8740 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcbce4055 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd0ab9785 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf875c560 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 0x4b5984f8 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 0x81cfa920 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x876b87f3 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8872845e ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/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 0x88b42fb0 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xbfeb9ee9 notifier_err_inject_init +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 0x102e870d garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x5498a717 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x79b86156 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x8017f23b garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xe7d1a5cc garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xf055151d garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x04367b5b mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x531e6b77 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x573f6990 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x59b7726b mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x73585210 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa4e85907 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x603336cf stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xe542636e stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x8e25887a p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xfcb4b34c p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/bridge/bridge 0x02a124e5 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x06a8f46e br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0dc8f23a br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1949be1c br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e35c37b br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3a62a921 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x45ca5924 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4a7d9c89 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x56f92c89 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5b672c44 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5bb6b234 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x69320c89 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6992610c br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x72fe1210 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7ad309fe br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7da4dd55 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7e8fa4ee br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x96ec0f37 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9fa27cb3 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa182d5e7 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa5306916 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcf9fafc9 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd432da4f br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdb7276ce br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf015b814 nf_br_ops +EXPORT_SYMBOL_GPL net/core/failover 0x14b15289 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x9b8c8a40 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xdce3c730 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x224b6470 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x24f47d92 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2987a2d3 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b0fdb6b dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x411448d8 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57ec2465 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a5d94a4 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c34f9b9 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ea59243 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f953bbe dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x795f92ce dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ace72d9 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7af47f0d dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d6636e2 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8169b5f3 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x93d43433 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x952c5321 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa24c47cc dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa1a108f dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaaad451a dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xab6f92f2 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xabe0edb9 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaef355b2 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf79c260 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd0432891 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9fe9ad6 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd68a182 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe30060c1 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe8168b13 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea571635 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xec93d16a dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee483a2d dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee527d97 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3fc654b dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x359f5a04 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5630108d dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x694d4af1 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa056ecf1 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc7c92f1a dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc981ea38 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/ife/ife 0x4378ade2 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 0x9213f6bd ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x42a93736 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x56d60829 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe01fe81f esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x819c93b1 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa979a7f8 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x16ea9c68 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3c6ccdea inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c3bea9f inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7d2c9edf inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x868954ca inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc1e9a44f inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcf21264c inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe48dde21 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf14a7bdd inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x6a1315d3 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x20442cdd ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x28c7f01c ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2cf9acfa ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x592c0f33 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5bcebdda ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5dd08705 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x67d37c2b ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7f720e68 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9e6ba58c ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa8b37daa ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb3dd9db0 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcd07617f ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd15d1d82 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf1cb4a1e ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf76b511b __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf8392f94 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfec89f0f ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xbc50cb51 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x5e0d7a57 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x23313ec2 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x9878081c nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xf3372e4d nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6e814587 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8cf98db3 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x95c98fde nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa4552925 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa6a0feee nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc757b3b6 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdede855e nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x68fdf279 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x19caa1b1 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4890c3e1 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x51deedbc nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x659448d2 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x94a19bcd nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x08d1fbbc tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x30e271b7 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x627825d0 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb0011c99 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc93bee60 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1bd04ea9 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x49f4cd6b udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6361654d udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x82522d23 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa3deb2ea udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb7dc9ecf udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc0b845fb udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfef9a35f udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0bd1a0f1 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x251962e6 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2e6c02da esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2c29fed7 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2ee23fe8 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x60435beb ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x07f51f71 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4d1b206d udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe15c15f7 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0164c378 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x453b516e nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbe2845ed nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x547811a4 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1012ae0e nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x22fa068a nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6f35c0bc nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x97a21e6a nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa455a8bd nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc495d6b7 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf8ac6e77 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xef9a5310 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2d69836f nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf8303dd6 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf9af8cb8 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x6c8c657c nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x8a85118c nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0029f609 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ad7820d l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b8d3658 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x28750eb9 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d6e4ef8 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x515170de l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5668d549 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6a15e9a6 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x79feed9e l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7bf0c4a9 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84160f57 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8835ae18 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9032f248 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa4d8fb83 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa81fdf26 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb7fc4bd2 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba093871 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca61510e l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe8ede4d1 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeacc9478 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfe9e1d56 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xbb357fef l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x97826c4e l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0450c1f2 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2fc309f2 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3a784428 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x40593758 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7d2ce899 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x147a13e2 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1541c3c6 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1a2cf79b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2b60bc89 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x305ccb95 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4093e681 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c48bb36 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x735b6bfd ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7af9f058 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8254de6e ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ae8e968 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8b99d3ad ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f6713a5 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa8ed032b ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaef80083 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd5d0eb4e ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe89b90cd ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf18bfc8f ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf88d35db ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0df33c50 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1dcd3e1d ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x203227ab unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x54eb2fe1 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0ecc029a nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x10828233 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x419ab422 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9f055d9c nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xba20eec7 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf710f951 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf808bf82 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0012058c nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0021e806 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00d7cc3f nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x052b8428 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0642e17d nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09d1bdea nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f6f50c3 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fe022d7 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x123506ab nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18e3f89f __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1afaffd4 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f400329 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2529b132 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2586932c nf_conntrack_helper_try_module_get +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 0x29e4719a nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c94c4f9 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cfa02d3 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dfea31b nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30f26d45 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bb61459 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e33d03b nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41d161d4 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x444616a7 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45af3db8 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4aa321ba __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x508b7e89 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5278c4cc nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52a87851 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5839585d nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5855a211 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a9ccbc3 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b5488c6 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70f0e2ea nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77b81063 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c735156 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c81a89a nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83bdb236 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84219dbc nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86ef031e nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8796ea9e nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x886062ca nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x892212a1 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a83dcc9 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ac1f186 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95b59a68 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97d34f7a nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a172e2a nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9abf0715 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3c36370 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9b7b4db __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad047232 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae91ecd8 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6449259 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc5ebbcf nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd4453c9 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc01c6baf nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc05bf807 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc174e840 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc17a4789 nf_nat_helper_put +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 0xc6fce54e nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc851f554 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc995f203 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9ecfeba nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb380684 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb7ea7b9 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceaaac37 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcedf7e43 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf0093a4 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2f92549 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5b3fc61 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9cc99d7 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda7f349c nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe30853b9 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6cebbe0 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe812248d nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebe0838d nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec519913 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee8438ea nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee96045e nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0a88032 nf_conntrack_hash_check_insert +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 0xf64e8a44 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf655ebc6 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9fdec95 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb0e33ba nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff0dd005 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xac5a9cc6 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x118df2dc nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x07e9ecc8 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbf27cac2 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeecc8f30 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x8ce20786 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x994b6163 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x255712f4 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x25d81cae ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x53259f75 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6ceaf42b ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8d9faf6d ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x961df926 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe851a18d ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x728490ab nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x65c189a6 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4dfa3e94 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x528b6731 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x90db50e5 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1492d32d nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1899913a flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x22d2d8f1 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x293eb3d0 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x31556b33 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x393448e3 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6af2b228 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7f179a87 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x90c6d137 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x92eb41e9 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbe15625f flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc866069f nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd799b108 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf0ea474a nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf1829a55 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf5b56588 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf9ed71f5 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0a39ecf6 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x20bc5f90 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2169d894 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x22314658 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x801e3ab8 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8b72b3a4 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8d0fd9c0 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x96e19472 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbd85e31d nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc1e66d39 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc23d6560 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc5aacb8c nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc909dc59 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xca082cea nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcf7dbef9 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd1877618 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 0xede621ef nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfc75012c nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3616936e ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3bb5514f synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x42cf4086 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6018d48d ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x762e6cda nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x93a22cdb nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa7430087 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbee0b5a6 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xce5a344c synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe34937db synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf5d1dd4a synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0338a36a nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0fa20d46 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1280b9ec nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d6e8319 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x22fed5c5 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a56ad11 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e892284 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x32af9664 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39ad2c22 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40cf9d7b nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4115afa7 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x491d4eaa nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c412f6c nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cfea055 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x502b4f7f nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5612ba9e nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56b84e24 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e9007a1 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60e5020c nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6117aa25 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6145c7a6 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62186355 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63b8159c nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72c8e31f nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7320b5ed nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77d03eba nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x816f2b2a nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x840739a2 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8411dc76 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x946e8aa7 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa04bca38 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb47b9223 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb8b84ead nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc273ac21 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc41958f nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc74052a nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6247339 nf_tables_deactivate_flowtable +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 0xe678afe4 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe9d6e88b nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xebfe473e nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed7ee723 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeda36c1d nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0d0be41 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfdccacc2 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x394aec80 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x53820f71 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ccbb6f5 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7327c5bf nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7aa0d1aa nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9ae0b3b5 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc0258653 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x712d7248 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x87d32f31 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd42df0e3 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x0702f321 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x370f2206 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x17d717e2 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x69001b98 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x85b0e60f nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb2a8da46 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf5eb1af4 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x25d74b24 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x75174999 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x97df31f8 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0aeb28d8 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x217769ad xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29233843 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x380225ec xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x49392f76 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a010ae1 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5928581b xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6341c823 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x635c52ee xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x671b710a xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x69e01418 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a59900c xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x785423fb xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ffa258b xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x923ecdeb xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x92cc165b xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x983c7898 xt_table_unlock +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 0xa8199351 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad4c1ec3 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3f5905a xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc37e29a0 xt_compat_target_from_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 0xdbea9914 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf237362f xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c3139a8 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7a39887f xt_rateest_put +EXPORT_SYMBOL_GPL net/nsh/nsh 0xd9630c10 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xf693771c nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x30f6b65c ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x50d3c97f __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6b6099d4 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x86884dba ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x93d7fe9e ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdc6b109b ovs_vport_alloc +EXPORT_SYMBOL_GPL net/psample/psample 0x22d25ba3 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x9273a166 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xa978aaeb psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xa9ca6db5 psample_group_put +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x181f9996 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x19b9d3a2 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x30882fb3 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3ac5461d rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4273867a rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x458998de rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x4b94e038 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x4cc0dffa rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4de86637 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 0x59d0e50f rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x621f8d6a rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x6b701adc rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x6eb5b100 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x6eca41f5 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x78487f84 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x80e4337a rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x8d05389c rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x8debe465 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x9bc97162 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x9fb38148 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa1f1dd36 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xabc899fc rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xac582779 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xb38e8fe0 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xb4d33c78 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xb9a0075d rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xe1fcea9d rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xf0025744 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf1bbab74 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xf6a38c8d rds_send_ping +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3debda0f pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf66ee8c2 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x03789bbe taprio_offload_get +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x1470c8e1 taprio_offload_free +EXPORT_SYMBOL_GPL net/sctp/sctp 0x04468018 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x0de29a78 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x25fbd12f sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x6d060f00 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x05148248 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x15e48f94 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x1a42035e smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x2fdce0bb smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x6821d82f smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x786441df smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7c011a3a smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xaca7838b smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xd208d0d9 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xfeebe171 smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1d074737 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 0x57a25cb2 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x78f5b2f4 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa0d87ada svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0046b44f rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00d9c009 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03f7dec9 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0453371e rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05ec793d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x062aa0b9 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a78acea svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103944c1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10cda9e2 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x113638a1 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x146fea06 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15d64f4c xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1686e7e2 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16a04edc rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176deee2 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19c71890 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c493cc6 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ccc41d2 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dd3cea7 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2146cf3d rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21d015c3 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x222e9977 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26432a86 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26adf121 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27bedb82 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x283f10cd xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29431a3f xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29e38e51 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29fff0fc xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ad36258 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aee83d2 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ce82ffd write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed80d06 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2efb2f7e rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f63595b xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30c25a1e xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31b11d47 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x324f9269 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c611cc rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a832e3 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35f8e74c rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36129b96 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36535118 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a507e9 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c9a8fc2 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d175bec svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dedf9b1 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f0ffe67 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40a008cc rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x413ebdb2 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41db868d svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e83ae4 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x427276eb xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a9c6cf rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x465c0faa svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46d5bacf sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x474caf6c rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47d3606b unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ab80be svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a15b241 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aaa7bfe xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c075ab5 rpc_task_release_transport +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 0x502a56f7 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50785c06 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54aed34e rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56062499 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56686716 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x568ccfe2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58e44c37 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a4fd598 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aead445 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bdaee24 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d682e1c rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dd748a2 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6027b8d5 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60fd252a xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x612638ea rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c1d918 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c8610c rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62653c80 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x629164fc svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62e60a98 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63ac0e99 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6488a4d8 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6643ce4d xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67959ed4 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68a56708 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69b16de4 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c94f71 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a0e0cbc rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b48a075 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ba008e8 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c09afdc rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d24df7c sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dbb5318 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9516ec rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ef4971d svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f15e6d6 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f356271 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70b58378 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f98eec rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x732b4fbb rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7484e478 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x782c0b18 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x784d9004 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78da3366 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78f737c0 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a84c09d xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c4f2c39 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7ec16b xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dec8b8c rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x816fd33d svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x819d32a8 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x822125ee svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8228c662 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82f6e0e5 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8346414e rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84710099 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x859db211 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85cc37ad rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x873a30d5 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87dfe325 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x887cded4 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8892b10d rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88be57f9 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a5ad44e cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b217397 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d545aa4 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91a8753f rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9372aca3 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ab0583 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x947b9123 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94aad3fb rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x956c57a4 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x958200a2 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96dcf6f7 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98523e29 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98f6834c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x991a6411 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9adbf119 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2a8658 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f8ed226 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa10f0589 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1714dc2 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa27c1b91 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b9cdc9 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3a35f8b xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3df6b25 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5eb40bd svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6cbe627 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa82a04ad svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d3fd54 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9c5feaf xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad4743a8 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf794d0a svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafd49f28 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1030999 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1cce04c csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb235d498 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2c9d4d5 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb487a33c xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb510dd3e xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb525d31a xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5bbd0c2 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb70e1154 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8c264c4 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9311d6c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba6d49da xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbce042b7 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd7b1d70 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0d20203 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12f69c6 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc37319b3 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4e24af4 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc58d5c49 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b76757 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc72683f6 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7a78cbd rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8812b58 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9099a1b rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca725f59 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaa06d93 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbc6ed0a rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc5e22b9 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc793811 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdab2373 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce87e8fc rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcec5a717 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfaccab5 rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0ce4211 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0e7dcd8 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1531cff svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd21b9912 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd583be1b sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5a47f50 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6e906c5 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd71bb997 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8b0755d xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8ce3382 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda69176f rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc87a0fd svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0027429 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0029fd3 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe01b0651 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe01db78f svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5112c90 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe55383ff rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe718aefa xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe81616b4 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe83d1af9 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c7dfe9 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0a6b0a svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb90b025 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec32c3ee xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec8e645a rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed40245c cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed725f06 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeab2144 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeebd9b31 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef395af5 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef719c3b svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef7cb8b1 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf03e5456 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf116ab05 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1613f01 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf19191a9 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2fed1db xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6236e30 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf77b4fdf rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fca26f rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf82635ac svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9fe8ab3 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa3251e2 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbb83692 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfccd808f rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfceb2357 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe2e0bd7 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe78bf3b rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeed04ce xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfefc8152 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff84db8c rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd75d06 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/tls/tls 0x96d353aa tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xa1104c6e tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xaa1bb596 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xbe9efeab 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 0x157772de virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1969fed3 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ae36081 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28e9c250 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x441aaab9 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4800ea8e virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x485fdb55 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f2b6ad1 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59394f1f virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5b8f64b4 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5c4226ba virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7325cb88 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73c756bc virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74c49034 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7e330369 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8665782a virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87c7c9e2 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8b0e7c89 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a5528e5 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa2464eed virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa321d3bb virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa585e196 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb6c08287 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbb212d11 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc143878a virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1e7d805 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4f503e1 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc921ccb6 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd95f1d9 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xefb09676 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3a13a78 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf494e9ca virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf76fd02e virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf8e35d8b virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e6c4cc8 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x110d8a3b vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x21b2d61d vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x319b2d23 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x386a4729 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x488eb503 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x52d588e0 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x824501c1 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x87f808ec vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8832dcd3 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a6bc880 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x93abcca4 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa16530ec vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa4bcb377 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb14e8d8a vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb48d255f vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd00a591 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc8636e5e vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda0df2d8 vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdd538322 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdd8bad2f vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf31ed5e4 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfde7a04e vsock_remove_pending +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 0x7831ef2a ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x796a3a7e ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc81a062f ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xedefea4f ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 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 0x000a31b8 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x001bad29 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x002de4f1 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x004189ae dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00558a0b ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x0061cfac tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x007d1686 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x00831894 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x009c787c pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x009ca6e2 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x00c15ba1 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x00e31d78 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0110eb3a blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x011b4cfe blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x0128a846 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x013aae52 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x016ca213 cio_halt +EXPORT_SYMBOL_GPL vmlinux 0x0188b58c blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x019ca9ce inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x01a2d1d2 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x01c560a4 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x01f6e9b3 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x01fb3052 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x01fb98b9 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x0237ea5e pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x0289950b security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0297f243 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x02ba7aed mas_empty_area_rev +EXPORT_SYMBOL_GPL vmlinux 0x02bec234 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x02eb9c92 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x02f3a072 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x02ff5c25 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x031012d7 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a0c253 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x03baedea bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03cd6b1d dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d08dc6 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x03d44e0e bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x03eadd44 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x03fb9e33 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x04021110 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040b3c68 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x0411f735 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x0421d919 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x042dd20a dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x043180ed sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x044c2928 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x045b314c scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x046431e0 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x04716729 zpci_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x047f5ecd vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x0490aafb of_css +EXPORT_SYMBOL_GPL vmlinux 0x04a6fee6 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04bf023b dw_pcie_link_up +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 0x04c906e9 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x04e1304f unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x04f6722b crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x05180ebc __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x052418d7 shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x05347949 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0561fb19 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058df9f6 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x05974968 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05b94b69 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x05f11a76 dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0x05f66079 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x061a6a17 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x062d1955 receive_fd +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 0x06cfbdcd eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x06d6d2d3 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x06fac412 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x07140157 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0725294f devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07345308 device_create_with_groups +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 0x0767e909 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x078d22be platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x079b622f vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07cb7afb sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0x07fb07f5 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0807de45 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x080bb261 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08436119 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0859d445 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x087e886d pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x0890d3b2 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x08a01b02 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x08af2093 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x08b02901 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x08b2e9aa hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x08b6b0b4 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08c94bf5 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x08db126a iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x08e2eb62 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0x08e98726 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x08f5d3e3 scm_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0908a517 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09236351 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x09266dc0 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x093041bc gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x093d4679 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x0964ec15 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x098e382a crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x09b12dcf dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b98adc iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x09dfa85d lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x09eaaeb3 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x0a0526ae sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x0a116347 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a4f75e0 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0a60642b sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x0a6185ec devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x0a621c80 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a80684c fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x0a949f45 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x0ad16e41 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x0b06d017 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0a3884 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x0b11a171 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x0b1deb58 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b333d93 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x0b43d037 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x0b44cf1d blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x0b57a5d5 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x0b6e9525 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b7eae46 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x0b89658c pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled +EXPORT_SYMBOL_GPL vmlinux 0x0ba139bd virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc5481b clock_comparator_max +EXPORT_SYMBOL_GPL vmlinux 0x0bd60e1a __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0be5d5c0 ip_tunnel_netlink_parms +EXPORT_SYMBOL_GPL vmlinux 0x0be625b0 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf7380b chp_get_sch_opm +EXPORT_SYMBOL_GPL vmlinux 0x0c04b057 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x0c0a9c40 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x0c26bdd5 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c356490 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0cd408b6 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cd698ad perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x0cdb5f32 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x0cea846a iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x0d11d103 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x0d20dbdf pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x0d2caa2f vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x0d38801b mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d52aaf9 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x0d6070eb raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x0d64db4a nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d9a5df6 gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0x0d9ced1e ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x0d9ee27b xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x0da7027e dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x0dc3ed98 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x0dc7d0d9 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de2e7d6 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x0dedae48 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x0df60880 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0df7e4d4 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x0dfac6e2 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0e00472b balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e3d66c4 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x0e541f71 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0eb26af9 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0eb763b9 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0eff4ad5 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f357e39 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x0f3b8882 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x0f7432fa xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0f8dde75 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x0f9fd4b8 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x0fc17203 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x0fd23d57 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0fd299f4 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fda10a7 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0fe3259b mas_expected_entries +EXPORT_SYMBOL_GPL vmlinux 0x0ff57933 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x10039c44 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x100a8112 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101398e2 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x10215fa2 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x1034d8fa bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x108e77f5 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10c33482 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x10c70329 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x10d05ee0 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10fe5dd9 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0x110cb5b1 scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x11173b4c pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x111f2c25 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x114c9514 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x116a691c tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x11a8aee9 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x11a9a638 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x11b6c59c iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x11da35e2 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e255bb trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x11e636bd ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x11ed3995 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x11f2c706 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x11fdb47e tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x11fdf4ce hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x11ffaca7 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x1213db81 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1223f1d0 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x123e503d pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x1269f611 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x126efe24 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x1281a61a __class_create +EXPORT_SYMBOL_GPL vmlinux 0x129769e4 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x1297d055 vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x12bfa4cf kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x12cdbd51 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x12d36d25 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x12e052ba file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x12e58dd4 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f1f15c ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0x1308b90f destroy_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x131c8c81 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1344446a gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x134f90e4 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x13520458 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x1358b813 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x1386555b md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x138ca376 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13cecf88 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x13cef7a5 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x13dabd12 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x13e7fd83 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fa408f iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x1404adbf blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x1415907d net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x144c6725 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x145c31fc xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x14642491 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14995afd crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x149ebd4d crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x14a8939c kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x14b0414a fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x14b2aa2c device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x14b56a44 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x14e7a704 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x14fac336 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x1512ee34 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15693c41 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey +EXPORT_SYMBOL_GPL vmlinux 0x15840981 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15abef2c gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15c760d7 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x15cba8d0 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x15ce72e6 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x15d911d0 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x15e18dfd gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x15eb46b9 blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x163e62b8 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x164561b9 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x16623182 mt_next +EXPORT_SYMBOL_GPL vmlinux 0x1666e85d blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x166beaec enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x1676a90a kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0x16772a52 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x1678f30c crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x16b69bc8 zpci_store +EXPORT_SYMBOL_GPL vmlinux 0x16b81b26 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x16b8f823 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16ddea04 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16f1f797 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x17057794 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x17149987 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x17368689 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x1743fd59 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x17601ebf xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x1774e119 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x1776f956 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x177795f4 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x177d22bb __put_net +EXPORT_SYMBOL_GPL vmlinux 0x17903f07 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x179b4d6b fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x179c5886 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x17a1c916 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x17a72c90 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x17b76cd8 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x17cad69a firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1804a49b kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x182432f3 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x1830326c register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x1864813c ZSTD_customCalloc +EXPORT_SYMBOL_GPL vmlinux 0x18689799 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x18788a0d wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x1895175c kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x1895a760 tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x189991d1 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x18b9006e devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x18cc9ca9 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x18d018c2 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x18d0ad97 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18f06351 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1900754e unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x19293324 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x19412921 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x1949b364 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x194ea493 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x19738d3d fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x19808dda unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x19848b0f virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x199b6f3b netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19b1f935 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x19b3d421 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x19f7cbf3 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x19fafbb2 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1a061506 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a76e6a2 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a89bffb pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x1aa0bf5d query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x1aa3cbca inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x1aac6df6 blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x1ab489bd pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x1ac47e43 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x1acca66d nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1adda77c devres_add +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af4dcdd phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x1af7cff3 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x1b0f70f3 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x1b3b1d9e fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x1b4a5795 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x1b5646ff crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b97deb1 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x1bb6dc4d iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x1bc06686 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x1bc7b8bd software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x1bc87846 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x1bcb5e2c iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x1bda3f58 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bfad06e mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c2a816f fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x1c5378e0 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c678158 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x1c6e8b9c unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c971a7d component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x1ca0813c lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cd31ffa xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x1ce69a6c kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1d403c5c shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1d489415 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x1d922142 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d97a964 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x1d9da54b balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x1dba87a3 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1dbd3a5d virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1dbd63d2 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1dca8012 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1de237ba serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x1df2a563 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dffebe4 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x1e08b725 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e11927a ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x1e159315 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x1e1d8cdb pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x1e20f13f freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e323e54 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e87bcc3 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebab3c9 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x1ebb33bf __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec3e82a sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1eec1238 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1eee5baa device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1efb84ac serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x1f0d8d15 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x1f12247a tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1f15f809 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x1f17313c device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1f2d801a alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x1f2ec482 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f436eaf hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x1f4e0727 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x1f559ddd dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f68ab87 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1f720949 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1fa06ccc __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1faedc20 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x1fb403c8 devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x1fc9333d alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x20047331 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2020fa7c virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x2046d924 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20d87aba genphy_c45_fast_retrain +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 0x211e3caf sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x21230a77 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x2137eb0d ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x213943fe crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21483c81 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x216284cb perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x217f1868 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x218271fe tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x21a2c095 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x21a51369 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x21a97c11 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b74b76 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x21b89432 s390_unlist_old_asce +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d83a42 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x21e5c880 xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x21e7d4f7 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x21ea0ddf tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x21f8d95b ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x220d091b sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2211c935 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x221576a6 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x221c6f39 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x223e966a ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x22448f56 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x224f3efc debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x224fb9e2 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x225018a2 mt_prev +EXPORT_SYMBOL_GPL vmlinux 0x225808f5 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x226c8c18 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x22820171 ccw_device_pnso +EXPORT_SYMBOL_GPL vmlinux 0x2288db0e bdev_disk_changed +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 0x22e20b10 chsc_siosl +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2309bc63 ccw_device_siosl +EXPORT_SYMBOL_GPL vmlinux 0x230bca5e key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x230fe175 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x231383c7 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x231e2a39 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x2348f82b skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x235324aa bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x237397c2 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x2378e622 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2392732e devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x2398a895 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x23b53b7e gmap_shadow_page +EXPORT_SYMBOL_GPL vmlinux 0x23d32898 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x23d895eb inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x242cea50 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x243271e8 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x24535b41 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x245c53dd exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x24673e4e blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x2484e3c4 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x24961855 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x24d62481 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e8bf0c cio_enable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x25267ed3 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25284add list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x2546a962 fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x254dc38a tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x256097bd __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x256b716b strp_done +EXPORT_SYMBOL_GPL vmlinux 0x2591de29 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x2592b886 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x2592ba11 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x259766f5 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x25abbfbc subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c1f39d devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x25c3c13d skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x25ca3bd8 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x263500d1 __s390_uv_destroy_range +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2653ca04 ZSTD_getErrorName +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 0x26a63da5 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x26a7b377 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b0b011 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x26c80e8d subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ce982e gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x26d9f1da watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26fd6d1e dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x2700035e xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x27191ef1 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x271d2c26 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x271d6343 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x273d19eb iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x2745ca8a sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x275aaad4 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x275b9705 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x278ba30e crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x27a9cc79 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x27aa78ec auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27c3c9d5 kvm_put_kvm +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 0x281360b8 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x2849c663 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2897d290 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x2898c995 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x289b7903 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x28a3562a fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x28a5c2c3 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x28a76dd7 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28cd23ed dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x28d0285c rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x28d8b49a chsc_scm_info +EXPORT_SYMBOL_GPL vmlinux 0x28ec9ce4 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x28f50cf5 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x2921074c hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x293f7691 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x2963b020 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x298281d4 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x299a8149 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x29cb90b2 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x29d1e99d iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x29deb0ac add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x29df7ded ccw_device_get_chid +EXPORT_SYMBOL_GPL vmlinux 0x29e2c247 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29ee7ed9 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x2a054602 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a492d4a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2a4cd435 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a6f61b8 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x2a704cc7 get_device +EXPORT_SYMBOL_GPL vmlinux 0x2a72a950 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a7e9841 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x2a856d00 fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x2a891be9 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2abccb50 crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0x2ae9b35e is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2b02be69 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x2b3c2c72 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x2b3fbac3 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b68d7fa device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2b7aa44a vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x2b9f409a cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2ba4e796 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x2bd2915e kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2bd593b7 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bdb3356 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x2be6b326 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x2c03150b kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c32358b ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c5eda29 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7256dc synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c79f339 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x2c7d13e2 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x2c8bad56 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd57e xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x2ca303ce bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x2cb22529 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2cb9f814 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x2cd1a721 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x2cd92953 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2ce854bb tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x2d090379 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x2d149c25 task_cls_state +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 0x2d465f22 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2d546760 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x2d59fe06 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d6ba3dc crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x2d7727ae crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x2d871da7 gmap_remove +EXPORT_SYMBOL_GPL vmlinux 0x2d8f038f tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x2d91ee8e misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x2dba1c01 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x2dd46047 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2def96dd watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x2dfa6acd acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e0e8553 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e47f7ac msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e6fb622 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x2e7f0499 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec2e449 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2ee7d14c hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x2efbd831 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f2f4c3a xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x2f3a7606 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x2f3e23ed dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f4c8fcf fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x2f4d16e4 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f64be23 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x2f7ca335 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x2fbfce76 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fd28c8b rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x2fe59749 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x2fe81f23 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x2ff241c5 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x3026b39a switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x303023c1 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3062bf9d dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x30696079 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x307851bf device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x30a0a428 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x30a3136d crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x30c49215 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x30dbb341 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x30dd1682 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x30ffda44 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31079902 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x311b819d tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x311b865b fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31571770 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x3158d1da anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x31673e36 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31c15525 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x31d0b2e9 s390_reset_cmma +EXPORT_SYMBOL_GPL vmlinux 0x31d3199b rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x31db3c9e crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x31e55794 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x320429cc skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x3218ab37 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x323d8ea5 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x32512e0e strp_init +EXPORT_SYMBOL_GPL vmlinux 0x3253b48e devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3257de97 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x32a9f029 inet_csk_addr2sockaddr +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 0x32ed48c7 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x32ee5157 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x332a7495 register_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335df1ee serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x337c5970 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x33956349 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x33c0fe0c encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f8b1cb mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x33f90753 is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x3409ec54 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x3419f20d pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x342575d5 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x3451038e kvm_arch_crypto_clear_masks +EXPORT_SYMBOL_GPL vmlinux 0x345968eb kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x345a4913 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x3460c492 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x3488e5a0 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x349843d1 scm_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0x34a3e09e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x34cc5d98 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x34ebe638 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x34f6cee2 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x350d57f8 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3510623a crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x3526737c get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353550e1 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x3540d58d pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x354395b9 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x3549d4fa fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x3555788b debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x3555e6ec gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x356afa1a __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x3575a142 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3584114e alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x35a09d1b vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x35a90bd1 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x35b104df mas_empty_area +EXPORT_SYMBOL_GPL vmlinux 0x35e60e0f s390_pci_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x36015265 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x3607c5d7 sthyi_fill +EXPORT_SYMBOL_GPL vmlinux 0x3622a09e component_add +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x364354ba rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x364d3326 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x368cd8c2 md_run +EXPORT_SYMBOL_GPL vmlinux 0x3690bb01 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x369cafeb fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a557a3 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x36a6b445 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x36a80452 gmap_mprotect_notify +EXPORT_SYMBOL_GPL vmlinux 0x36bd03d1 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x36c80c36 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x36dce172 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36ebd60b perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x36f6a9a1 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x36fd42f4 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x371705b2 buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0x3726276b css_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x37416660 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3749e291 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x375f3186 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x3761d215 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x37693504 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x37a132fd crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x37b808f9 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37fef2f2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x38164bc6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x381ee1f1 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3843a892 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x38493a8b idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x384c9f93 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x3851cae7 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x385b610d nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x38606775 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x386d6eff crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x387880e8 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x38846835 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x389cf80a dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b4ff91 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x38c52ae5 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x390103f1 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x3943a3b0 split_page +EXPORT_SYMBOL_GPL vmlinux 0x3943eb38 gmap_enable +EXPORT_SYMBOL_GPL vmlinux 0x39466b77 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x394678e7 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x394e517d kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x39579087 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x396a3a8e devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x397407cf debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e47926 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x39ebf02e __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a037e36 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x3a0848da housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x3a0d292c tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a31831e pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3a337aaa crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3a51c747 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a54f08e iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a639e78 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a82ad32 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa6a96c blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x3adac4ba bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x3add9341 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x3ae03d40 xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x3af3ea65 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x3af811d9 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x3b16dda7 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3b239b0d devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x3b5ed1ff kvm_arch_crypto_set_masks +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b64c50d gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x3b680275 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x3b7ac4b7 pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x3b849ada irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x3b86f143 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x3b893098 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x3b8bf3dd ping_rcv +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 0x3bb33501 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x3bd43950 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x3bdb368e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3be03a51 cio_update_schib +EXPORT_SYMBOL_GPL vmlinux 0x3be1d882 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c20d96f unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c4c565c vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x3c5286f7 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x3c6395a2 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c96e8dc sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x3cc5d8ad udp_abort +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 0x3d250d2c crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x3d339dfa pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x3d4da286 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d61e09e pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x3d6efcce dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d93202c badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x3d979771 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3def47f0 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x3defe4b7 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x3e060c9a bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x3e1102d4 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x3e17de6e xas_find +EXPORT_SYMBOL_GPL vmlinux 0x3e1ea2b8 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x3e1ec3f7 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x3e202b11 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x3e34bc7a get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x3e425609 cio_tm_start_key +EXPORT_SYMBOL_GPL vmlinux 0x3e67eb83 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x3e6afa95 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3ea22dbf cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x3eb2aefb register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x3ec5e6b2 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef0fc13 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x3eff80ce sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x3f58656c __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x3f7869cf platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x3f802e8a __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f902e30 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x3fa88a79 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x3fb7123c platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x3fba747d fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3fc0abd7 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x3fe26fc3 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe9c527 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3feb2019 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x3ff3ad6c gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x40012f63 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4031fd97 cio_start_key +EXPORT_SYMBOL_GPL vmlinux 0x4037448b pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x403b795a debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40467286 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x404f097b tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x40577059 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x40666953 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x40874404 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x40923130 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a13568 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x40c4a43b cmf_readall +EXPORT_SYMBOL_GPL vmlinux 0x40cdfb30 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x40ec33f5 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40f906ae platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x40fec94e alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x41023d2b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x410f47ef scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x41132ea9 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x411bdcd5 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x413abf37 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x417d8076 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x419b487a unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a7a991 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x41b78afc dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41c7747d gmap_destroy_page +EXPORT_SYMBOL_GPL vmlinux 0x41c7d89b crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x41d2948d property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41fb68cb copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x421c4762 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x42342f90 tcp_parse_mss_option +EXPORT_SYMBOL_GPL vmlinux 0x423b97a6 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x42468543 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x4251c92a devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x42578a1b vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x4259bfac kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42bee41c find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x42bf58b5 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x42c00d62 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x42f36431 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x4301f8de unregister_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x430fa18b cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x431cbcd3 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x4323e357 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x432c1933 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x432d3f26 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x4330f0f3 dma_fence_unwrap_next +EXPORT_SYMBOL_GPL vmlinux 0x433ebc0a init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x43548c19 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x43785941 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x437ad635 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4388497f xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x43a59c0e sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43ca954e yield_to +EXPORT_SYMBOL_GPL vmlinux 0x43cb718c iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fef331 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x440be4b9 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x44112559 file_is_kvm +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 0x447285a8 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x449b09b1 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x449ed763 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x44a42076 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x44a43585 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44aabaf4 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bc125d generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x44cbcbb4 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44e0ccaa zpci_set_irq_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x44f91a72 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x45012bda cio_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4502414b serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x454a1dc1 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x454a4d14 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x456f2b49 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x45b9af85 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x45c04efa user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x45c85973 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x45db352d blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x45e25d5a trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x45ea5519 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x45ffa6c0 ccw_device_get_cssid +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4601e56f gmap_shadow_pgt +EXPORT_SYMBOL_GPL vmlinux 0x460ede9f scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x4627bd1a sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x4643487c kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46c36c5a wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x46c89c5d vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x46cffdc1 device_move +EXPORT_SYMBOL_GPL vmlinux 0x46e7174e ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x4702ae29 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472bd31b fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4735c96b init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x4740fa01 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x4742282f scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4746f604 cmf_read +EXPORT_SYMBOL_GPL vmlinux 0x4750201f ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4751c561 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode +EXPORT_SYMBOL_GPL vmlinux 0x47a39529 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x47b40366 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x47c43c15 mas_find +EXPORT_SYMBOL_GPL vmlinux 0x47caf5ed kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x47dfd0e0 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x47f0c77e gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x481458d6 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x484e5abd dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x486d1aa1 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x4895a875 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x48a09202 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x48abb50f __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x48ae8141 generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x48b8625b pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48cbef8c pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x48e59fca __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x48e5eb7b blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x48f36e59 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x48f4b710 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x48f7b626 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x4920c3b7 blk_queue_rq_timeout +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 0x494533c4 pci_proc_domain +EXPORT_SYMBOL_GPL vmlinux 0x49477422 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x494ea703 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4973ac98 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x498779d2 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49965656 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x4998849c balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x49b3ba5c bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d6ecf8 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a210d4b elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x4a46780e crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x4a4a8a23 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4a6029f9 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x4a73350e virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x4a833f80 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x4aa013e0 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x4ae46477 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x4af7ad1a iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4af90334 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x4b0e479c shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x4b18500f perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x4b262b83 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x4b316c70 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x4b675fc7 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x4b7ac70c device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x4b7b74b7 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x4b845f87 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4b8acf85 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x4ba88dcb chsc_sgib +EXPORT_SYMBOL_GPL vmlinux 0x4bd194e0 strp_process +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 0x4c0003cf pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4c56bd15 stack_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4c8b9692 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x4cac9d33 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb28c2b ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x4cb48cd8 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cc3d513 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x4ce91483 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d062750 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x4d30c5a1 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x4d30e714 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x4d30efee bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x4d402c9f fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d6fb722 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d773a9e devres_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7c5fad css_sch_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x4d7dc77e crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4d80cba4 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4d855979 mmput +EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x4dc5e0ef phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x4dcad304 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x4e0941b0 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4e0ce2de __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e41e607 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e55f542 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x4e5ae942 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e7fad92 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x4e92a7e9 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb261b2 ccw_device_get_chpid +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4ec2c6f8 cio_disable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x4ecc6f14 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x4ed759a4 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x4eedd6f3 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f071d0c blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x4f1d5065 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4f4a32a7 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x4f524e17 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6d5b62 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4f7e5062 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0x4f8121ff blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f91fd51 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x4fa320b1 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x4fa32b49 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax +EXPORT_SYMBOL_GPL vmlinux 0x4fb8f427 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x500b5b2f crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x50137023 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x50191c43 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x5024df1d relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x50333b3d synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x5036810d fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x5036b59b gmap_pmdp_csp +EXPORT_SYMBOL_GPL vmlinux 0x504032a4 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x505f9291 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50692075 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x5080ca5d unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x50891fb0 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x508c7432 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509ae3d0 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x50c67c68 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x50d84e1e skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f4a77a __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x50f895ce pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5107413a free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x512a8b9b input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x512c766b mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x515ad8fe devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x515ed417 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x51600cf1 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5165296f uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51686aa0 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x516960bd klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x516fe50c sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x51733aa2 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x51797eef dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x517a7975 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x519e367d input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x51c2a2d9 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x51c83555 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x51e51370 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x51f4c55f fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x522b4ace devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x523b3d13 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x52474666 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x5247834d inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x528d610e crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x529baa2e appldata_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x529c7bf9 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x52a8278d balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x52b0a9b3 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52ba6405 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52d0c5e2 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52da91df screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x531a1a4c sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x534cb398 gmap_shadow_r3t +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x53594937 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x53707c7a pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x537ce7e7 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538d4fd6 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x539f92cf pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53f4e5cd pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541e1b8b __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x5441703e proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x54679847 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x548a61b1 ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54b79dc4 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x54bf5304 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x54d28192 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x54e62051 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x55065982 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x5506e35f irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x5515d4e3 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x5519baa9 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x55236814 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5549357d io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x556a9ead xas_split +EXPORT_SYMBOL_GPL vmlinux 0x55a4d9c3 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x55d4d04b driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x55ea5eab kobject_create_and_add +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 0x55fd73cf inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5634cee9 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5663fbd9 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x568761bc ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x569e33e1 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x56a24498 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x56a6e174 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x56dc76fa disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x56dca3b7 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x57145bb0 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x571c03a6 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x57416551 iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x57622695 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x578fec54 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5791dd06 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x579d0641 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a1c46c css_sched_sch_todo +EXPORT_SYMBOL_GPL vmlinux 0x57c06a55 inet_pernet_hashinfo_alloc +EXPORT_SYMBOL_GPL vmlinux 0x57c3a33a ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x57e9925d watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f9e571 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5802dfce __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x58034505 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x581d8d98 __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0x581dedaf __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x581eb3a5 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x58313a51 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5855dbef __gmap_zap +EXPORT_SYMBOL_GPL vmlinux 0x5857a405 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x585ea1a5 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x5860ac13 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x586a07ba iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x586e2367 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x5882ff0e vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x588703ce switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x588eb254 gmap_create +EXPORT_SYMBOL_GPL vmlinux 0x589c9f31 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x58a13346 ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x58a68c77 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x58be7f82 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e47607 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x58f31f10 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58f60ce0 platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x593fa2c2 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x594fe160 tod_clock_base +EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index +EXPORT_SYMBOL_GPL vmlinux 0x5961418c scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x5970e6be badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x598603cb __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x59aad781 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59cc4266 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str +EXPORT_SYMBOL_GPL vmlinux 0x59efb76e pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f4d5c0 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x5a027e60 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x5a08b51e bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x5a0b4167 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a180c47 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a237706 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x5a27f3ff pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a671672 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7ad375 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a92a0f0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x5ab91dd0 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x5abf3483 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x5ae968cb dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x5af09d6a ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x5af102ef blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0x5af37750 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5b164321 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2bc741 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x5b2d1b19 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x5b34840a iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x5b37daf7 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b93f1e7 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ba197d6 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x5ba63bef property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5baf3ec9 user_read +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc21c0b gmap_get +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 0x5bebabfd skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x5c0bed51 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x5c266b04 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c7217ae filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c878b0a rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x5c893345 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x5cb588c5 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x5cbe9a85 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x5cd993c7 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cededcd kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5cf0939f xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5d051559 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x5d5428b9 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5d6b2f1a tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d6e043a devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x5d79245d dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d96111b bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da82008 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x5db5934d fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5dc610bd fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5dc9e529 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x5dd76e44 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x5df6796d devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x5dfc3be9 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x5e0b15eb get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x5e13d03c dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e380372 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e558fb4 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x5e71a785 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5ea060d9 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x5ea2c228 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x5eb12026 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x5eb289ea strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5eb5a39f devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ed5acc0 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x5eda7251 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x5f161a14 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x5f1f03ae pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x5f1f970e iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2f1866 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x5f3c9695 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5f429278 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x5f43a679 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x5f63b26c blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f8fbd99 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x5f92fcda irq_domain_create_sim +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 0x5fca29c0 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x5fd4259e pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x5fdb9983 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5feb3e5a mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x600cdeb4 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x60213fa0 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6029efd5 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x602e9e2f ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x60899067 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60934a2a __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a26dda cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b9e5f3 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x60cba6f6 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x60df257e switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x60e2930f firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60ebda70 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x61389eae fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x613e3b32 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x6148ae6a virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x615e5ba3 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x61664c5d ptep_test_and_clear_uc +EXPORT_SYMBOL_GPL vmlinux 0x6177373f rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x617a10a0 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x617cb755 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x61801e66 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x61886641 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x6195c125 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x61a7a1a1 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61ad8659 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61e875bc sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x62274eaa ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x6227efb0 vfs_setlease +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 0x6247690c crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x6249ca9b pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x62535dc6 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x628007a1 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bc4ca8 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x62bc65a6 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x62c1a21d platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x63064097 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x6308cc66 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x6316bd21 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x631ba529 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x63290dc8 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x632cd412 sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x632ef3ff sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x634c6082 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x634f0ccf pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x63510fe9 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x63611312 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x6369470a dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x638d6bba inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x63a123f3 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x63a3eea0 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x63b08cd8 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x63c920b4 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x63f63785 __mt_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6435f3c3 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x643e4d3e validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x64473fbd fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x64640d6f crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x64699807 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x64786375 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x64816c6b relay_close +EXPORT_SYMBOL_GPL vmlinux 0x64953be4 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x64a190ca fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x64ac83b2 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64b5a886 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x64bc1743 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x64c3ad06 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x64fa4d89 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x6506a8ef housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x65342f5d do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x6535f764 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x6572a5c4 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6579c00f crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x65be4153 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x65c84b48 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x65c9640f ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65dc1ef7 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x65de3021 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0x65f7a83d skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x65fde71d kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x66097752 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661dbee6 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663c825d devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6665e49e __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66ba053b kick_process +EXPORT_SYMBOL_GPL vmlinux 0x66c19df3 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66df0d36 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x66df930b device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x66e44d12 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x66e73b9c debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x66f1d8ee iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x66f9db7e dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x67145bb0 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x67244820 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x67278c44 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x672a2f1c pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x6752814a page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x6779f8eb clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x67808e5c set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679811e6 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x67d1b2d3 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x6802f4de irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x6810b291 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68449466 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x6848db3a mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x685904b5 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x685d09ac __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x685e2600 kvm_s390_gisc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x685e73c3 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x685ece36 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x68654c6e auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x686d8262 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x6879eac9 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x687c68d4 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x688ab225 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a0c9c1 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68c971ff sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x690b08de __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6918f50c sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x69305104 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x6940efee sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x694249a1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x69466c41 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69893920 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x698a2654 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0x69925d0e sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x69a05a2a kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x69ba2f53 kvm_s390_gisc_register +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69f1df3e __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x6a333b8f iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6a3ca020 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4a4d81 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6aa6ed55 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x6afd3dcc sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x6b02ffe9 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6b070e51 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x6b0e68e1 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x6b2a5875 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b7faa28 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x6bc2e2a5 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd99d8a pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x6bddd153 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x6c1566ca kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0x6c236b74 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6c315b3c blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x6c33381a rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x6c35ff52 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4967e8 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6c49c97c transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c64d854 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6c65cc17 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x6c74779b gmap_map_segment +EXPORT_SYMBOL_GPL vmlinux 0x6c81b8cb inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x6c878b5c kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca6492d arch_make_page_accessible +EXPORT_SYMBOL_GPL vmlinux 0x6cc416c5 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ceac29f gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x6cfb96f4 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d18c430 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x6d2334b6 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x6d242168 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d412dcd irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x6d4314fc gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x6d52f025 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6d54e278 zpci_register_ioat +EXPORT_SYMBOL_GPL vmlinux 0x6d679636 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d72b61d md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6da38d6e platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6df6d347 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x6dfd7bbb trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e364342 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x6e36922a vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e82bd73 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x6e95a00b iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x6ea632f6 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x6eabccd5 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec7b94c gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6ef02b47 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f0956d8 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6f0b5a96 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f7df2d0 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f87a478 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x6f885098 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fb216b9 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x6fb320fb __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x6fb99d47 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffaf605 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700c8470 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x700f2394 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x703e5ed5 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x70494fec phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x70832bef synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x70841b28 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x708f6a15 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x70964c59 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x70986901 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x70a2db82 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x70aafa2a nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70bd6fd2 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70be882d free_uid +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70da604f cio_start +EXPORT_SYMBOL_GPL vmlinux 0x70deb4cd nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x70f89d53 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x7105788d driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711a5235 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7174f903 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x7179c31c zpci_iomap_start +EXPORT_SYMBOL_GPL vmlinux 0x719f8aa8 gmap_unmap_segment +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71db8a02 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x71e5c82e crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x71f2a943 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x71f69a66 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72298f8c __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x724df274 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x7259a120 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7262aa4e of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x729089fa scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x729d19ff sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72b77bb5 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x72bfd0c4 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x72f77bbd xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x730fbb2c component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x731843b2 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x732a184a tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x7334483c s390_uv_destroy_pfns +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7353c3f7 gmap_shadow +EXPORT_SYMBOL_GPL vmlinux 0x73540244 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x7380f520 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x73a293c0 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x73abee90 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x73c93090 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x73ca0e53 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d80d52 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x7411064d page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x7420ab74 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x742e2755 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x745dda35 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x745e96a1 s390_replace_asce +EXPORT_SYMBOL_GPL vmlinux 0x74a45e45 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x74a78f23 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c6925d dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74e8cd73 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75261b36 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x754ee089 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x7554b896 zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x7561d8a7 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x756cb52f tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x756f1354 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7583502b __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x75851f50 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x75917f5b scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x75920e04 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x75a4a950 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e65a97 mas_store_prealloc +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75edf7b3 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x761cd232 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x7631e1b2 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x763e1623 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7641c19e crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x7641db1c dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x764b6835 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub +EXPORT_SYMBOL_GPL vmlinux 0x76986244 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76b12fd6 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76b93f84 add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x76c51430 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x76d3810f anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76ef5588 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x772af59e find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x772cbe0a folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x7735cdd4 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x7736a3b1 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x773ebf31 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x773ef1fb srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x7765b165 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x776be7ac rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x778608a0 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x779900a1 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x77a690cc ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x77bb60d1 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x77dee81b tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f2406a ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x77ff0529 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x78142cc7 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x782a4ac1 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x7835c7ba phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7838a1dc fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x7846c4b9 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x785232fd device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785f4e83 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x788331c5 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x789ac67e __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78addaf3 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x78fe9e75 alloc_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x7900625b get_ccwdev_by_dev_id +EXPORT_SYMBOL_GPL vmlinux 0x79033d4c sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x790dadcd devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x7912b0d7 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x7930662b gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x793b553f sk_set_memalloc +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 0x7963a136 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x79864b8f msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x79b9198c device_register +EXPORT_SYMBOL_GPL vmlinux 0x79bfc908 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ece3d4 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a3f440d tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x7a63c2e1 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x7a7dba08 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8f8e30 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x7a94e264 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7a990400 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x7aa97e66 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7abb7471 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acc9068 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad30a82 smp_yield_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ae716f7 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7af0844e dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b06e535 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x7b18d0c9 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x7b3b77e6 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x7b3c0639 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x7b524c91 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b623328 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba4f7da gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7ba7a756 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x7baa9681 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb94856 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7bc85908 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x7bcda317 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x7be224da blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x7c0d06a9 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x7c25ea64 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2d392d trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7c35182d pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x7c35e60a stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x7c514ca9 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x7c52af56 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x7c5c9e94 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x7c64ea1c blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7cab2385 appldata_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cc8c8cf crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cde6a0d ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ced7ba1 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7cf154e4 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x7d52136e genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x7d6059c7 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7d89da22 mas_store +EXPORT_SYMBOL_GPL vmlinux 0x7dae466f posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x7dd04b21 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de1b3e2 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de4296c fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7dfd5eca irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x7e31385f fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e4dab3b __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7e6562f1 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x7e661c3c __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e7eb6ef pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x7e8d341a rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7eae3dc1 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ed0f712 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7ed9d79c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f0d7163 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7f206d03 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x7f207a9e io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x7f291183 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x7f670698 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x7f7a007a kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7f7b20bd event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fc9a025 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x7fdb1528 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x7fe8bdf6 zpci_kvm_hook +EXPORT_SYMBOL_GPL vmlinux 0x802ee1c1 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x803639d8 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x804778d8 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x8062ceaf kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x80664128 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x807f8ee7 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x808a8938 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x8092be83 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x80ab8048 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5533e bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80fb44b1 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x80fe3908 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x811582c6 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x812ea476 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x81661bd2 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x816db540 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x81798e52 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8196fce3 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x81973f96 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x819c4315 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81d84dc7 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x81de34fb tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81e90ee6 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x822b330e irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x823cfa9d pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x82617fd2 device_add +EXPORT_SYMBOL_GPL vmlinux 0x8281f3fe dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82ae808c subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x82b59c0d fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dee399 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x8309605f iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x831ce44b fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x83479647 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x8347e287 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x835a406c netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x836021cc gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x837c29e7 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x83857b16 hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x839c82c7 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x83a58951 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x83aa84da ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x83b20f07 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x83b8d309 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x83e21d98 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x83ed2083 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x8404bdd0 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8414de85 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842a0198 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x842c87bf fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x842e65e2 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x84603c48 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x846f73a5 mas_store_gfp +EXPORT_SYMBOL_GPL vmlinux 0x84b0ff38 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x84c1f077 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x850270a3 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851bfb39 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x85432c4e icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x8559cd8c skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x85676ef3 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x857f6910 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x859568e0 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x85a2d4c2 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x85b93d17 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x85b9b2f4 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x85c0574c unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x85e0b4d9 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x85fa87f3 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x85ff40c9 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x86066912 pci_debug_msg_id +EXPORT_SYMBOL_GPL vmlinux 0x861584fe irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x864fa314 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865e366e paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a6da65 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x86b0b6ba zpci_barrier +EXPORT_SYMBOL_GPL vmlinux 0x86c5baf7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x86dd8b88 __fscrypt_encrypt_symlink +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 0x86fa08e0 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x8727fcf0 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x8735cbd6 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x8739d352 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x873f1d6b dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x8745bb47 cio_tm_intrg +EXPORT_SYMBOL_GPL vmlinux 0x87592f9f pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x875f6043 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x8771412b crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x8774cbc9 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x87800ba9 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x8792c2a5 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x87b7030f __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x87b78c01 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x87e0ff87 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x87e1c0bb sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x87fef0ba devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x880058db gmap_convert_to_secure +EXPORT_SYMBOL_GPL vmlinux 0x88023b27 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x8805e475 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x8840ee39 dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x884a59b0 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x8863a470 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x886f0f96 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x88a25e63 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b84606 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x88bfd864 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x88c01e8c relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x88c704d5 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x88cc53e7 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x88da1513 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x88dc3a08 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8938862d trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8939afc9 __cpuhp_state_remove_instance +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 0x8955503b synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x897d873f vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x89851375 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x89865400 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x8996c1f2 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89da4932 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x89e71304 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x89ea5521 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x89fb400f kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0x8a125a17 ipv6_find_tlv +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 0x8a67b0c1 clear_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x8a6890b8 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8c8d5e fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x8a95bf33 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x8aad51ee invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x8af7b2fa iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x8b007350 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8b0a7c2d tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x8b0c30b5 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x8b17ae4d crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x8b3b2bfa fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x8b3bd064 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x8b691b13 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x8b692dc6 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x8b6dd148 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x8b730aaa netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b9fa9a0 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8bad4ff4 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x8bba5fcc blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x8bd2be1f irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x8bded20f zpci_load +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c17836f __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x8c1822d1 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x8c1a139d ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x8c47afca idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c51c64b perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x8c55b41a crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8c5cc0be crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x8c75a97a sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c77f974 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9cfad3 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext +EXPORT_SYMBOL_GPL vmlinux 0x8ca98c2c ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x8cafc4d4 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8d0629c8 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d1b15b2 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d46182c irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x8d46f5a6 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x8d470dd9 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d4a0b8f dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d4f2b18 mas_pause +EXPORT_SYMBOL_GPL vmlinux 0x8da896f3 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x8dccdb8b ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8dced12b input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x8dd683a8 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8def61cc bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8df92675 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x8dff18ad device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x8e05c1b7 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x8e1597d3 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x8e2cc759 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x8e49a83f __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e588cac user_update +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6c45fd perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e77570f sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x8eaa846b misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x8ec11d01 kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x8ed0d264 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x8ed541c1 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f302141 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8f3c2ac0 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x8f48794b gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x8f517d85 cio_clear +EXPORT_SYMBOL_GPL vmlinux 0x8f58a8c2 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x8f5bf523 __zpci_load +EXPORT_SYMBOL_GPL vmlinux 0x8f5dc658 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x8f679e85 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f702ff7 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f844a59 css_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f8ac82b inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8fadb67e md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x8fc61a46 input_class +EXPORT_SYMBOL_GPL vmlinux 0x8fcdb155 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x8fd7a021 fuse_simple_background +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 0x9012b5ee fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x903296a2 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9049b427 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x9050bfa3 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x905fc1a1 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x9094cbd4 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x909a8abf nr_running +EXPORT_SYMBOL_GPL vmlinux 0x909fda42 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90dc57ca devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x90dcfd53 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x90e29d36 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x90eecbde kill_device +EXPORT_SYMBOL_GPL vmlinux 0x90f46ba3 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x91198f46 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x91571be5 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91a0e667 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91d085d2 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x91d58800 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x91dd330e fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91f63227 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x922162ce fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x9232c94b ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x926f1c81 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x927cfb58 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x928cd30a __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x9296c382 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x929a3bc8 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x929d0cb0 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter +EXPORT_SYMBOL_GPL vmlinux 0x92c4d24a generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x92cdfd59 tcp_reno_undo_cwnd +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 0x92f50ada component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x930f25ac relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x93247f45 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932d6144 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x9335222e kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x933eeff8 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x93679d99 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x936c7caf perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x93706d21 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x9381d641 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x939060c4 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x9390d0fe blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9391a607 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x9395b66e subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x93aeb4ed relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x93c7bf90 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x93cd3f54 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x93ec8776 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f2c18b irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943c37e3 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x9452d6b9 trace_add_event_call +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 0x947e26a1 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949da900 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x949dc76b fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x94bb5ece nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x94cc0392 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x94d08c05 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x94d2cc67 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x94db22d9 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f5b878 bpf_trace_run3 +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 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x95891b49 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x959c3c51 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x95a49194 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x95a62ebc pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x95bdb154 dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x95d9c60d device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x9604b092 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x960850e6 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9609413a pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x96130f15 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x961bdd61 PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x961c8a75 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x961cc880 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x9620aed7 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x96290b75 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x962afd99 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x9635b055 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x966a7ffc fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x9676d4ed blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x9677f139 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x968c7d98 ccw_device_get_chp_desc +EXPORT_SYMBOL_GPL vmlinux 0x96abc1eb crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x96c2dffa sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x96f0f35b crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x97310025 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x973d9070 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x973f35da platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x9753a169 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9759f248 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x9761629f devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x9775f2c3 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x97a0e803 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x97ab3818 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x97afeff8 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x97b84db9 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x97c1bb23 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x97c699fa set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x97cabe62 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x98040245 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x98157626 vtime_account_kernel +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98379544 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x984c4f06 gmap_shadow_sgt +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9857e9d5 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987a7a02 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x9880c462 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x988e0c6d apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98918204 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x98a3326e nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x98b23036 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x98c91d12 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x98d35c79 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x98ddd8dd tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x98e8618a gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9902c095 ZSTD_customMalloc +EXPORT_SYMBOL_GPL vmlinux 0x991ca3c2 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x996bed9a nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x996fadd2 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x99729a0c __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x9995ecc0 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x999c02e8 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure +EXPORT_SYMBOL_GPL vmlinux 0x99b31bee net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x99bc09b0 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x99d738a1 gmap_put +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f4591c key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x99fa168d crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x99fb098d pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a19c031 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x9a46caf2 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9a53a2fc exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x9aaccc52 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9ab44137 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x9ac180d1 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x9ad07ec8 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9ad3de36 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af99f8f fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x9b0fbe9d gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x9b1b651d open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b79c1c4 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9b88c932 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b94f8bf __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x9bbcadc2 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be8d4ba tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf602f2 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x9c19e74e virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x9c3576f6 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x9c390b48 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9c3aa3fc irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x9c40eda0 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x9c477abe tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x9c596bdb fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x9c6db9e2 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x9c6eee5e sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7b2dfb device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x9c867f29 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x9ca50b32 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x9cb59529 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cbd52c4 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9cd177c8 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9cede371 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d322ccf klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x9d53321d dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x9d559b10 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x9d5a9f5b pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9db1d9d7 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x9dccd607 mas_prev +EXPORT_SYMBOL_GPL vmlinux 0x9df4a2a8 idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x9df620c9 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x9df8a2c9 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x9e018752 pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x9e083c5c fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x9e197f84 chsc_scud +EXPORT_SYMBOL_GPL vmlinux 0x9e41866f rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e52da2b screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x9e6cff0e switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x9e75899c bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x9e8b0ecd __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9ec054d5 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef8dbfc kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x9f3676ba __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0x9f43cc5f perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x9f4a7170 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f5dc3c7 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x9f5e4ff7 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x9f87075a virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x9f925ffd sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fb77554 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x9fc1c9ba fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x9fc719dc crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd9fa84 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa03ca2b6 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa05256ce sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xa07ed3d5 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa099cd59 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xa0a62591 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa0c988dc pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0e30b1a __class_register +EXPORT_SYMBOL_GPL vmlinux 0xa0e9c359 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0xa0f36b69 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0xa0f77f07 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xa10866c6 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xa111e665 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xa112d1d7 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xa1160844 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa11ba30d cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xa11efbe5 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xa12c5e7e gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa15113b1 __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa19f4c23 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xa1aead2e add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1d24683 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xa1df3b65 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa1e0711a crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xa1f60014 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa202a407 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa22d72dd trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa2588d25 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xa25a06e8 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xa26bed8e bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa284d3aa tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xa2a91471 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2f716a9 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xa2fb4218 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa2fc8bfe mas_erase +EXPORT_SYMBOL_GPL vmlinux 0xa31bbb17 devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0xa32f1ccb devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa3373519 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xa34082b9 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa361a8d8 md_start +EXPORT_SYMBOL_GPL vmlinux 0xa3687f21 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa39d5d42 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xa3aea925 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xa3b0d5d6 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xa3b5be10 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c4228e dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa414414f devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xa41aa8b7 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44bb596 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xa44f5009 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa450b025 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xa452b457 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa470b39c tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa4772fec gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xa4a33465 driver_find +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 0xa4cd7fd8 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xa4d9abe8 gmap_make_secure +EXPORT_SYMBOL_GPL vmlinux 0xa4f4288b clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xa514f447 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xa5299c6b crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xa544bd45 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa5671283 scm_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa569f9d1 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xa56ebfc4 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xa5745f0c gmap_mark_unmergeable +EXPORT_SYMBOL_GPL vmlinux 0xa5af97a2 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xa5b6649e ccw_device_get_iid +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5ff9185 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa601c283 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xa60717b0 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa631bd05 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xa6549589 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xa65b3190 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xa65e1dd0 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa661a0e6 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa67eee36 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xa68c1da9 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xa6a90dc9 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ea5cfa iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa71be929 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xa71d03d1 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xa721240b fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xa75fd3ab freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa76aa20e tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xa76b2ab5 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xa780b4a7 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xa789d16d pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xa78c365c crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa7b9fbc1 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xa7d88b7f pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xa7e0abc0 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xa7e760c5 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xa825aef5 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa8334bda dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xa83e9591 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85b795b exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xa875127c sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xa875c362 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xa87cc6e4 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xa8856c95 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa8893eee put_io_context +EXPORT_SYMBOL_GPL vmlinux 0xa88d5f64 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa89e37a5 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xa8a47c7a md_stop +EXPORT_SYMBOL_GPL vmlinux 0xa8af38b9 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xa8df30b2 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xa90f9c53 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xa90fb08b raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa97b1969 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xa97ef64c ccw_device_get_schid +EXPORT_SYMBOL_GPL vmlinux 0xa99510be gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9b3af86 component_del +EXPORT_SYMBOL_GPL vmlinux 0xa9bfb8c6 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa9d0ab1f trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xa9d4cee0 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xa9e7bad9 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie +EXPORT_SYMBOL_GPL vmlinux 0xaa18e757 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xaa3bbacc skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xaa61de11 irq_stat +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa88b32d devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaac39600 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xaacaad7d device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xaad3f2a5 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xaafa5482 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xab174e6e platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xab2df6c3 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xab34dbdb list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xabb99ece skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd1f84b pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xac0e3bc5 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xac1e4c28 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xac2dd7f4 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xac475933 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xac4f0f65 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xac5a789c trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xac5dddc1 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac603ba1 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xaccd9a85 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xacce5ff2 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xacd12117 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xacd7472e init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xace3c119 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6a41c7 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad7ca70a __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 +EXPORT_SYMBOL_GPL vmlinux 0xadbc26f0 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xadcaee03 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xadf9414d blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xae02c1fb pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0xae094e29 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae0c47d4 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae21d9e9 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3d3cc3 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xae42d08c fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xae540132 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xae5c9c64 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae716231 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae97d5f5 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeb48100 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xaeecc7ec __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xaeed541c sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xaeff247e crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xaf1daac2 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf5d4237 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xaf89c1be mas_next +EXPORT_SYMBOL_GPL vmlinux 0xaf9b7a81 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xafa23f9d ptep_notify +EXPORT_SYMBOL_GPL vmlinux 0xafa97b38 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xafc7a41d hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xaffcb781 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xb01846db nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0xb02ae46e dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xb048a3c5 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb049a2c6 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb074fb1a tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xb0a89a3d tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0aa03c0 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0b87a1f pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xb0c1b46e do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xb0e938c4 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xb10cb9c4 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb12d101c vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0xb1366738 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xb13842f6 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xb1402007 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xb14192e4 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb17a8928 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xb17c9570 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xb18300a6 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb1881f2a gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xb18d2d28 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xb18f4763 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb1a069df tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xb1b1c93e atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1c33ea2 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb2099fd7 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xb211eda6 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xb224c070 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb239b95f xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0xb23e62a6 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2716ecf pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xb28fa999 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xb2ad3232 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xb2afe4e1 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xb2b8121c __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2cccdbe irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xb2e8f705 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb2eb58f4 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb315ac38 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xb31aa2bf vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xb33ceb6c xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xb357181e fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xb35b1926 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xb396dac6 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb39788d5 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xb39870d5 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xb3a71388 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xb3c6b097 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xb3d4b93c tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb40e7f63 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4147f81 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xb4339edb iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb45b412f modify_ftrace_direct_multi_nolock +EXPORT_SYMBOL_GPL vmlinux 0xb46950b5 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xb46fbe0b klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb471529c debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xb4a714df handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4d0c4a6 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4edb989 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xb4fb715a gmap_pmdp_idte_global +EXPORT_SYMBOL_GPL vmlinux 0xb504cdf6 gmap_discard +EXPORT_SYMBOL_GPL vmlinux 0xb5055779 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list +EXPORT_SYMBOL_GPL vmlinux 0xb50a3f4e zpci_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb51d17d9 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xb530ba2e mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul +EXPORT_SYMBOL_GPL vmlinux 0xb56e3558 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb576c611 gmap_read_table +EXPORT_SYMBOL_GPL vmlinux 0xb57ea635 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xb593fde0 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xb59ea385 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb5ca5ad7 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xb5ccdcbc __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xb5d3e11d clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xb5d47bd2 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb6088146 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xb61bd930 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xb624ad0b ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb6607c12 cio_cancel_halt_clear +EXPORT_SYMBOL_GPL vmlinux 0xb673d401 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xb67e0c56 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xb6842fae mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0xb685ecc9 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb68d7179 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb69df578 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xb6d979d1 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xb6fd6da5 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xb716dbc2 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xb730ef83 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xb737e364 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb789ca10 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xb78fd5fc gmap_shadow_r2t +EXPORT_SYMBOL_GPL vmlinux 0xb793d999 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7b350ed klist_init +EXPORT_SYMBOL_GPL vmlinux 0xb7c19193 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7e1dc2f fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xb7f7102f bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xb8178b6e trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xb849025c perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xb8679cd1 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xb86c15da handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xb872bd53 gpiod_disable_hw_timestamp_ns +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 0xb89e8538 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb8a00604 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb8a36c82 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xb8b8a619 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xb8beccbb gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb8ca6101 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cf2fe2 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xb8e42b89 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb900c629 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb935104a tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xb93a6a2e zpci_write_block +EXPORT_SYMBOL_GPL vmlinux 0xb94384fb tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xb94ec933 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb969da3a mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xb97a6d82 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb987045e subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xb98e0516 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb9937191 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xb99df866 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0xb9c206e6 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9f49f71 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xb9fc275c devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xba0467d1 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xba11792f virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xba2608fd __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xba2d2a07 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xba34b4f6 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xba4aae73 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xba6b73f9 zpci_aif_sbv +EXPORT_SYMBOL_GPL vmlinux 0xba7b7124 create_signature +EXPORT_SYMBOL_GPL vmlinux 0xba8976dc crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xba8af56e skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xba9865ee fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xbaad3bb8 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xbade07a0 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xbaf1b59c strp_data_ready +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 0xbb0ab25c fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb1ccabf fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xbb1f14af devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb28f6d0 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xbb32e49b css_general_characteristics +EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition +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 0xbb8a7c77 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xbb9f906e simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xbbbcaf02 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0xbbeb8ba7 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbbfc5612 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xbc00ad69 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xbc04f0da srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap +EXPORT_SYMBOL_GPL vmlinux 0xbc379873 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4c4bcc trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xbc512768 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc64ee06 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc78397c fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xbca4c9f5 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcdcb456 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbced9ddf blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd3231cc tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd43e8b9 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xbd52bf51 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd57efff dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xbd5de4c0 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xbd7560be thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd7f7a31 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xbd8ca411 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd8f6d10 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdbbfdc9 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbde22dd1 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xbde67e1b pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xbde8ef38 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe212729 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xbe322775 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbe43762f fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xbe5c6d8c inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe859b79 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbed113ad put_device +EXPORT_SYMBOL_GPL vmlinux 0xbed19d51 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xbeea0b02 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xbeef4460 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xbefb8c14 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf12bc10 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf5185f4 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xbf9149cd fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xbf91ca88 HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0xbfc693d9 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffa1c8f set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xc00383b7 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xc01ac64d bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xc027330d l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xc0426e16 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc045988c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xc04cbac9 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xc08170b2 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xc08c4c79 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xc08fc44f gmap_unregister_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b092fd platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0bb1c0b gmap_disable +EXPORT_SYMBOL_GPL vmlinux 0xc0d26122 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xc0d8abf8 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc0e62d5d pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f09f80 fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0xc104c0b6 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc1094c43 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc10d4ccb iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc116ddff gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xc11ccc60 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc132c453 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc146ea72 modify_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0xc15eb076 dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0xc1b4afa9 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc1b990aa sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xc1bd4cfc iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc1ddebba ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xc1e128ee tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xc1e21420 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xc1ea16bc irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xc1edf1ac freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc1fb8147 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23e90f5 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc2486935 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xc24e8e13 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xc25a899a ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xc25f6c48 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc26b669c crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xc28261de kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc285421f class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xc287c231 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc2a55e16 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2be46b0 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3003065 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xc30ffe30 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xc3217bb6 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc35e84ce bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3857bf8 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xc3ac0975 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c75968 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc3d66828 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc3d698cf bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e22375 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc40ba8dc crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc4167e74 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xc4172595 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xc41a0c51 chsc_ssqd +EXPORT_SYMBOL_GPL vmlinux 0xc4260aec rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc46ac704 mm_kobj +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 0xc4942666 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4abe190 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc4c11f1d pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xc4c9c75a synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xc4ccf265 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xc4e6adf3 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4fc46a6 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xc51b7a59 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xc52fa6a7 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xc53ba24f atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc53cd7e4 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc54abd84 gmap_sync_dirty_log_pmd +EXPORT_SYMBOL_GPL vmlinux 0xc553e801 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xc57411b1 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc592bab7 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xc5cbd7ae devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xc5cf6d3b inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xc5f19d41 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc5f2a52d tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xc5f48430 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xc6001d76 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +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 0xc67a1a1a blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xc6817e51 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a41f1b noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xc6bf96dd fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xc6df9242 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xc6dfaa21 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc6e34be8 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc6f6d4c9 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xc6f7a6e2 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xc6fa53e4 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xc70903c1 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xc70c36f3 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xc7209f90 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc72358fb netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xc723a0ac dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xc72cc59c kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xc732c7a9 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc743a22a public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xc755c93f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0xc75af3b9 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xc75d36f9 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0xc76ad84f device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xc78dfefd __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xc79892ee pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b31beb bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xc7d65bd3 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7ef4883 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc80acfca chsc_sadc +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8200c8b devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xc8246a67 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xc824f9d8 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc845df1f blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xc849bc9c class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc87fe0c5 ccw_device_get_util_str +EXPORT_SYMBOL_GPL vmlinux 0xc8ac5521 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xc8dc36fc bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e3db70 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc8f910ac unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc92c697e sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9666a62 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9838312 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xc9b6ce7e bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xc9c5a7a2 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc9c77806 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xc9c7b835 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xc9c8fb41 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f3cd85 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xca18988e virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca541308 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xca68bde9 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca99849e device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcac03493 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xcac38b82 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xcad29180 pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xcad6e999 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xcaea43dd gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xcb0ccf1b mnt_idmap_owner +EXPORT_SYMBOL_GPL vmlinux 0xcb24f041 devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xcb28e840 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xcb37df98 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xcb51f18f page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb567be1 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcb734294 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0xcb9b9c8f ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xcbb96754 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xcbd76e91 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xcbde4be4 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe9a78f gmap_pmdp_idte_local +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 0xcc60879a iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xcc6bf91f pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc9df0b7 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xcca89c26 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xccb4cf85 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xccd26eba devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xccd82f9c ping_err +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd05bf4e bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xcd0c82f0 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcd210fa2 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xcd23671e tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd420412 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xcd4cab4c genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xcd4f5e54 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xcd63e1f2 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd8e5b6f bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbb0b6b fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xcdbe89be synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0xcdbf34dd devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xce008fe5 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xce34942e phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xce3df6c6 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce946655 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xcea322e8 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xcea41753 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xceb98300 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xced43256 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xcedea32f pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xcee5b4e3 FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0xcf0afbfb copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xcf0f6020 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xcf130553 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcf1505a6 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf430dd1 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcf4b1427 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xcf735a91 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xcf86256d trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xcf963497 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xcfa5a68a udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xcfaeadaf klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xcfba3559 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xcfbad1d6 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfc835b7 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xcff0d4ae crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd04bc8a4 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06a82b6 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xd09cb0de mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xd0b86c7b crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0ca86a8 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd0cb3ff4 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0e1d116 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xd0eae5ed kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xd11826cd finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd14f35a4 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd1650f3d kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd185ac47 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xd1986945 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xd19cb791 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xd1a689d0 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1c84f6c synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d7d0eb gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1ff0302 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xd203dfd0 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xd20d7b60 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd213485a blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21ae17f pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27a358e rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0xd28e0c25 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2b07ee6 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xd2ca6f3d devlink_net +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 0xd309fe46 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xd324ff58 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd3399549 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xd33e760f irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xd36cd772 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xd394a0d4 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a5103c genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xd3bef9ec fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd3c9210d rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd3e3573e posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd3e56ef5 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3edbc8b ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xd3f067d7 ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd412439e fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xd42bd45f pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd43a88eb cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xd43cb95f vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xd45ee9f9 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0xd4832a88 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xd48bc13c crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +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 0xd4fed0a0 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd50e0b57 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xd511b9d6 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xd5163318 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xd53162e3 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0xd54e573d sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59bbde2 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xd5b41bf3 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xd5b448eb transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xd5be4b47 proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xd60e9619 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xd61246fe class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd619d56e compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd63cb96e gmap_fault +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd64f74d2 fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd65e0d10 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67380d9 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xd678a39e gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd6a1fa0d blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xd6a881b4 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6b5ec22 pci_debug_err_id +EXPORT_SYMBOL_GPL vmlinux 0xd6b9f0cc sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xd6d47a37 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xd6e4c02e lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xd6fe1b6f key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72c967c kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xd77044f0 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd77c7796 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xd7988743 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xd7a14cc1 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd7b6d7ce skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xd7bd13e6 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd7bd514e anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd7bf3090 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7dc7515 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd83af055 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xd841da58 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd85984d0 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd85f7bb2 ZSTD_isError +EXPORT_SYMBOL_GPL vmlinux 0xd86955dc devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xd87fb8fd input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xd888e555 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd88cc666 disable_cmf +EXPORT_SYMBOL_GPL vmlinux 0xd8ad994a raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xd8b42a30 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xd8e1742c vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd90333ff sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xd9068c67 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xd918f163 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd930cf92 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd93412d1 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xd9430329 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xd947b1c6 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xd9613566 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd965a9a6 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97bd964 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xd99d998d serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xd99ea9a5 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xd9b5fea1 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xd9b8cfda alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xd9cdde39 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9d9ff73 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9ebea67 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xd9f70c8a netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xda06e065 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0e00f8 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xda20f037 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register +EXPORT_SYMBOL_GPL vmlinux 0xda4ca4f1 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xda61ea73 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xda6d402c crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xda6f0f76 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xda795a61 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xda8cc4df elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xda8de34c pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xdaacf206 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdad7733e kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xdad90c89 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0xdadbf33f platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf887a6 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xdb1fba85 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xdb31d5fe irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xdb33eeba vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xdb38d104 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xdb4372a3 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xdb553d03 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xdb56fab5 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xdb6461b1 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xdb752925 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbafa5ce dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xdbba8eb2 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xdbc78f3e fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe1f5ca vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbec87f3 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdc0624ef dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xdc0ba369 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xdc12fd7a rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xdc13287e register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xdc2afaf2 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc445057 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xdc4e2193 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xdc5ebf75 kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0xdc6331fc device_del +EXPORT_SYMBOL_GPL vmlinux 0xdc69193b synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0xdc7b26f6 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xdc825b3e pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc925058 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb8a286 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xdcd41bb3 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xdce33005 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xdce40c74 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd1057f9 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xdd2fa821 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd524d8e trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xdd591e33 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd92b39f blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xdd9f78e6 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xddb5e3ec report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xddb91a12 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc5f9ab pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xddc97b82 HUF_readStats_wksp +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddf44384 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xddf5ed46 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xddfcfe6b component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xde052e95 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde282e46 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xde30cb2d ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde38b0da iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xde3da4f0 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xde4e7f42 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde769e74 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xde86fba8 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xde87d196 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xde8c7b5f platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xde91cd9d pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xde939ac0 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xdeae5a09 gmap_shadow_pgt_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdeb24a92 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xdebbeb34 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xdec8a326 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xded5dbff iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xded5e212 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xdef1a42d crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xdefa3be7 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0xdf037f06 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xdf08ffe8 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf13560c blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2b7c22 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xdf3ec107 gmap_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xdf5922ab ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xdf64b8d3 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xdf807f40 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0xdf9bc82b sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xdfaf27f7 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xdfbae7c8 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xdfe4eaf4 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xdff2555a iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xdffaa7ad bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xe0082ea8 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xe00a2ba4 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xe0113a19 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xe0548266 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0795c23 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xe081a2df kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xe0a08321 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe0ede650 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xe0fcf8f4 gmap_pmdp_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xe107c390 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0xe10d864b __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xe1269757 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xe14e89a8 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xe167ec83 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe179301c skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xe17c4234 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe180cb7c relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xe18de6b3 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xe1a0a2f5 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xe1a7c49f dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe1bd62c7 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1d9a1c7 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xe1eb8820 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xe2053147 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xe20a7f72 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe20c260d mas_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe21682a5 gmap_register_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe2376b24 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xe2552ae9 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xe258f2bd l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe2729522 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xe29453cb tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xe294ef77 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xe295c46e sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xe2a39f2a gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2db2435 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xe2dc1c6f xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xe307205a bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe316446a iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xe3176fae sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xe31d93a3 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe32268e7 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe3292a95 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xe33065a4 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xe357f42e dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe37a1868 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe387d7b1 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xe392c8db iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b9faaf trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xe3bb920b tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe3dc079b tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e66c24 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe3fc6e72 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe423f123 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xe451d2f3 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xe45451c3 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe4767eaa __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +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 0xe4da6a64 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f16792 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe4fb6d71 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xe50e2fad device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xe51a1c28 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xe53d07c8 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0xe54afe98 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xe5508373 iov_iter_get_pages_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe5544ecf rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xe5674669 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xe5770579 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xe58575dd get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5a62659 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xe5ae242b kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xe5b3f733 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xe5df8112 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe64dc1f4 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe68a47e2 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xe6a2ff37 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe6a452d8 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e53b5d device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe71e7b97 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xe7271da0 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xe7294e13 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xe72e844b __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xe740b60e fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xe7443812 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe74aa713 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75d8277 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe760fb70 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76af855 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe790c428 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe79abd3b cio_commit_config +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe79e38a6 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe79f3bad crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe7a6a7dc __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7ee6d11 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xe8050e07 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xe824197f blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xe82859ff init_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0xe86ab91a relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xe89ca151 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xe8a0145a kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xe8bf9ec6 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8cbaea0 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xe8f79063 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe91a3536 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xe931e431 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe967d990 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xe97491d9 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xe97a911b add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xe98a1a01 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xe997bb89 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe9b3e001 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xe9db1498 dax_finish_sync_fault +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 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea46b1af rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0xea6643c6 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xea6d4d7a fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xea85c2c4 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0xea8b7f71 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xea9de6a2 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xeaa2be23 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xeabd7f04 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xeac0322d start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xeac7bc5f device_create +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 0xeaf20034 __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0xeaf55923 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xeaf7d79c fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xeb123e57 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xeb221583 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xeb2a1207 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xeb317ee6 __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xeb5315aa call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xeb5df2ef __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xeb5fcde5 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xeb6b9995 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xeb7a6897 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xeb7d7f29 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xeb7f3121 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0xeb881708 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xeb8d8ec7 inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0xeb91a8c6 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xebc10b0b nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xebc7d04f platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xebd067c8 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xebd7255c nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xebe9b77a inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xebfa2bf7 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xec130f25 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo +EXPORT_SYMBOL_GPL vmlinux 0xec225687 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xec23d6db __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xec3c07b0 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xec6dc9aa attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xec72ab78 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xec7c2cc3 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xec809d4d ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec8202f5 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xecb9aeef serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xece0fb52 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xed08cabd __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0xed0d4e8f register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xed0f0ebd crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xed2d9bee xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xed48a163 __zpci_store_block +EXPORT_SYMBOL_GPL vmlinux 0xed4cac9a proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xed5ae04f pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xed5df0dc device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xed6a34ca xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xed70e442 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xed72ef4f sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xedd5835f kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xede06158 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xedeb1941 tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0xedf55abb zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3b8bf0 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xee594c67 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xee6f3f0d crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xee816a44 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xee84b20e crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xee9167bb __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xee942c74 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xeea834c0 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xeeb3b050 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xeebc4c68 iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0xeebfbc12 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xeecbca8b __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xeed091a0 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfea08 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xeef64d65 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xef052984 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70d6a5 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef83968a dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xef83d834 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xef940174 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xef9c8eef ipl_info +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb2e594 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xf00e63c1 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xf0184d13 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xf023b70c serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf028c967 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf03d9c2c __gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf079bc4c __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xf080db15 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf098436c ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf0a7173e mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xf0c72370 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xf0cd6449 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf0de8b5a pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xf0e96a0e md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xf0f153d8 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf0f2d8f1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0xf0fdad0b genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xf11d021c lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xf1244ba7 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xf126b288 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf193b631 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xf194c9c3 mas_walk +EXPORT_SYMBOL_GPL vmlinux 0xf1b035f4 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xf1b325ca l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xf1de5b51 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xf1e11f2d fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xf1ef106d inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22eaa46 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xf241c9d0 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xf264988b dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xf28025cf debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf2891460 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf28c7925 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf29dc0d2 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xf2b2e360 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2ca09c5 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xf2d3916a gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf2f7f70b driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3149ba0 pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf335b563 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xf33b874d gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xf33cb9bb elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf374769e disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3858398 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xf39568cb gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3b325d5 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xf3d1819b fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xf3ded01f dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xf3f39dfc fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xf40fcaf9 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf435d629 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xf43d619e rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf4434596 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf44ee038 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xf463fc33 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf472eb71 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xf4741f5d vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf47fec55 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xf4945719 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4ce8459 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xf4ed648b unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xf51c8143 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf52e068a gmap_shadow_valid +EXPORT_SYMBOL_GPL vmlinux 0xf53ddf0b switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf55a70e6 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xf564bbf0 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf585452a device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a09c24 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xf5a34bbe mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5d27b2f css_sch_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5de6909 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf600f4ca fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf601ee95 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xf61278af l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf62b88ca iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0xf62e0002 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6438d37 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xf652b5e6 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xf657be8f __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xf662ba90 simple_attr_open +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 0xf6fd4f6d mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xf702f0ae kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xf70fcae2 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf7358dc6 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xf7425921 skb_segment +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 0xf75c6a6e xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xf76bbfde gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf79767ea gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xf798d735 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7daf9e8 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xf80c6ad5 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xf8117c12 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xf81994a2 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf8204879 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xf8207807 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xf8277b73 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf835b550 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf83b6519 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xf84bf5bd device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf855ccce __zpci_store +EXPORT_SYMBOL_GPL vmlinux 0xf87c6714 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf8894397 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf88a1ed6 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xf89eb36f irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf8b0ae6e pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xf8b2dd0d cio_resume +EXPORT_SYMBOL_GPL vmlinux 0xf8c3dc85 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xf90488e9 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf92ea22a fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95b6acf sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xf96ecc78 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf9818518 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xf982310a pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0xf98e3157 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9bed7ef virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xf9e0fdce virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xf9ef1125 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa30e89e scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xfa484182 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0xfa526345 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xfa5c30f4 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa7d6a66 ccw_device_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfaac51c3 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab6ed2f __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xfabe41c4 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfadfde0f fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xfb1479de folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0xfb1f4508 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xfb268e37 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xfb29bb2d blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone +EXPORT_SYMBOL_GPL vmlinux 0xfb641966 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xfb9fae34 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xfba8ddbd dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd0eec3 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xfbed6c19 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfbf2412d iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc076769 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc37a7f9 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xfc635977 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xfc781ae6 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xfc84bad3 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfcb6fc5f strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcce77d2 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfcd8a83e filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xfce09330 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd2a481e lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd2fc139 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xfd3a57fd gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xfd43d558 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xfd4d74a9 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xfd55d397 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xfd58d204 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xfd5d2d60 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd8a7b64 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xfda82ee8 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xfdba355a vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdef2808 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xfdf0831d ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xfdfefb5e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xfe01e7e2 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xfe0a7be7 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xfe1e7397 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xfe296c82 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe5fd213 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xfe6c734c sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xfe8b9a49 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0eeae4 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xff374076 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xff403774 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xff6408fc class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xff65ed1e __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xff684bf6 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0xff79ddf9 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order +EXPORT_SYMBOL_GPL vmlinux 0xff8cbf4b rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xff939a18 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffac6cc9 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0xffc45d0a vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xffe3ef36 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xffeb7c25 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfff61559 umd_load_blob +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 0x0f0d08f5 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x37a68fbc nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3d7afba9 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x50cb22fe nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xadd63166 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf84e05e5 nvme_passthru_end drivers/nvme/host/nvme-core +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x46ed53c1 firmware_request_builtin vmlinux --- linux-gcp-6.2.0.orig/debian.master/abi/s390x/generic.compiler +++ linux-gcp-6.2.0/debian.master/abi/s390x/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 12.2.0-17ubuntu1) 12.2.0 --- linux-gcp-6.2.0.orig/debian.master/abi/s390x/generic.modules +++ linux-gcp-6.2.0/debian.master/abi/s390x/generic.modules @@ -0,0 +1,972 @@ +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 +bcm-phy-ptp +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-idio-16 +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 +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_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-common +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 +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 +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 +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 --- linux-gcp-6.2.0.orig/debian.master/abi/s390x/generic.retpoline +++ linux-gcp-6.2.0/debian.master/abi/s390x/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED --- linux-gcp-6.2.0.orig/debian.master/abi/version +++ linux-gcp-6.2.0/debian.master/abi/version @@ -0,0 +1 @@ +6.2.0-21.21 --- linux-gcp-6.2.0.orig/debian.master/changelog +++ linux-gcp-6.2.0/debian.master/changelog @@ -0,0 +1,20446 @@ +linux (6.2.0-23.23) lunar; urgency=medium + + * lunar/linux: 6.2.0-23.23 -proposed tracker (LP: #2019845) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - debian/dkms-versions -- update from kernel-versions (main/2023.05.15) + + * Fix flicker display problem on some panels which support PSR2 (LP: #2002968) + - drm/i915/psr: Add continuous full frame bit together with single + + * Kernel 6.1 bumped the disk consumption on default images by 15% + (LP: #2015867) + - [Packaging] introduce a separate linux-lib-rust package + + * Update I915 PSR calculation on Linux 6.2 (LP: #2018655) + - drm/i915: Fix fast wake AUX sync len + - drm/i915: Explain the magic numbers for AUX SYNC/precharge length + + * Computer with Intel Atom CPU will not boot with Kernel 6.2.0-20 + (LP: #2017444) + - [Config]: Disable CONFIG_INTEL_ATOMISP + + * udev fails to make prctl() syscall with apparmor=0 (as used by maas by + default) (LP: #2016908) + - SAUCE: (no-up) Stacking v38: Fix prctl() syscall with apparmor=0 + + * 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() + + * 5.19 not reporting cgroups v1 blkio.throttle.io_serviced (LP: #2016186) + - SAUCE: blk-throttle: Fix io statistics for cgroup v1 + + * LSM stacking and AppArmor for 6.2: additional fixes (LP: #2017903) + - SAUCE: (no-up) apparmor: fix policy_compat perms remap for file dfa + - SAUCE: (no-up) apparmor: fix profile verification and enable it + - SAUCE: (no-up) apparmor: fix: add missing failure check in + compute_xmatch_perms + - SAUCE: (no-up) apparmor: fix: kzalloc perms tables for shared dfas + + * Lunar update: v6.2.12 upstream stable release (LP: #2017219) + - Revert "pinctrl: amd: Disable and mask interrupts on resume" + - drm/amd/display: Pass the right info to drm_dp_remove_payload + - drm/i915: Workaround ICL CSC_MODE sticky arming + - ALSA: emu10k1: fix capture interrupt handler unlinking + - ALSA: hda/sigmatel: add pin overrides for Intel DP45SG motherboard + - ALSA: i2c/cs8427: fix iec958 mixer control deactivation + - ALSA: hda: patch_realtek: add quirk for Asus N7601ZM + - ALSA: hda/realtek: Add quirks for Lenovo Z13/Z16 Gen2 + - ALSA: firewire-tascam: add missing unwind goto in + snd_tscm_stream_start_duplex() + - ALSA: emu10k1: don't create old pass-through playback device on Audigy + - ALSA: hda/sigmatel: fix S/PDIF out on Intel D*45* motherboards + - ALSA: hda/hdmi: disable KAE for Intel DG2 + - Bluetooth: L2CAP: Fix use-after-free in l2cap_disconnect_{req,rsp} + - Bluetooth: Fix race condition in hidp_session_thread + - bluetooth: btbcm: Fix logic error in forming the board name. + - Bluetooth: Free potentially unfreed SCO connection + - Bluetooth: hci_conn: Fix possible UAF + - btrfs: restore the thread_pool= behavior in remount for the end I/O + workqueues + - btrfs: fix fast csum implementation detection + - fbmem: Reject FB_ACTIVATE_KD_TEXT from userspace + - mtdblock: tolerate corrected bit-flips + - mtd: rawnand: meson: fix bitmask for length in command word + - mtd: rawnand: stm32_fmc2: remove unsupported EDO mode + - mtd: rawnand: stm32_fmc2: use timings.mode instead of checking tRC_min + - KVM: arm64: PMU: Restore the guest's EL0 event counting after migration + - fbcon: Fix error paths in set_con2fb_map + - fbcon: set_con2fb_map needs to set con2fb_map! + - drm/i915/dsi: fix DSS CTL register offsets for TGL+ + - io_uring: complete request via task work in case of DEFER_TASKRUN + - clk: sprd: set max_register according to mapping range + - RDMA/irdma: Do not generate SW completions for NOPs + - RDMA/irdma: Fix memory leak of PBLE objects + - RDMA/irdma: Increase iWARP CM default rexmit count + - RDMA/irdma: Add ipv4 check to irdma_find_listener() + - IB/mlx5: Add support for 400G_8X lane speed + - RDMA/erdma: Fix some typos + - RDMA/erdma: Update default EQ depth to 4096 and max_send_wr to 8192 + - RDMA/erdma: Inline mtt entries into WQE if supported + - RDMA/erdma: Defer probing if netdevice can not be found + - clk: rs9: Fix suspend/resume + - RDMA/cma: Allow UD qp_type to join multicast only + - bpf: tcp: Use sock_gen_put instead of sock_put in bpf_iter_tcp + - LoongArch, bpf: Fix jit to skip speculation barrier opcode + - dmaengine: apple-admac: Handle 'global' interrupt flags + - dmaengine: apple-admac: Set src_addr_widths capability + - dmaengine: apple-admac: Fix 'current_tx' not getting freed + - 9p/xen : Fix use after free bug in xen_9pfs_front_remove due to race + condition + - bpf, arm64: Fixed a BTI error on returning to patched function + - KVM: arm64: Advertise ID_AA64PFR0_EL1.CSV2/3 to protected VMs + - niu: Fix missing unwind goto in niu_alloc_channels() + - tcp: restrict net.ipv4.tcp_app_win + - bonding: fix ns validation on backup slaves + - iavf: refactor VLAN filter states + - iavf: remove active_cvlans and active_svlans bitmaps + - net: openvswitch: fix race on port output + - Bluetooth: hci_conn: Fix not cleaning up on LE Connection failure + - Bluetooth: Fix printing errors if LE Connection times out + - Bluetooth: SCO: Fix possible circular locking dependency sco_sock_getsockopt + - Bluetooth: Set ISO Data Path on broadcast sink + - drm/nouveau/fb: add missing sysmen flush callbacks + - drm/armada: Fix a potential double free in an error handling path + - qlcnic: check pci_reset_function result + - smc: Fix use-after-free in tcp_write_timer_handler(). + - net: wwan: iosm: Fix error handling path in ipc_pcie_probe() + - cgroup,freezer: hold cpu_hotplug_lock before freezer_mutex + - rtnetlink: Restore RTM_NEW/DELLINK notification behavior + - net: qrtr: Fix an uninit variable access bug in qrtr_tx_resume() + - sctp: fix a potential overflow in sctp_ifwdtsn_skip + - RDMA/core: Fix GID entry ref leak when create_ah fails + - selftests: openvswitch: adjust datapath NL message declaration + - udp6: fix potential access to stale information + - selftests: add the missing CONFIG_IP_SCTP in net config + - net: macb: fix a memory corruption in extended buffer descriptor mode + - skbuff: Fix a race between coalescing and releasing SKBs + - ARM: 9290/1: uaccess: Fix KASAN false-positives + - ARM: dts: qcom: apq8026-lg-lenok: add missing reserved memory + - arm64: dts: qcom: sa8540p-ride: correct name of remoteproc_nsp0 firmware + - power: supply: rk817: Fix unsigned comparison with less than zero + - power: supply: cros_usbpd: reclassify "default case!" as debug + - power: supply: axp288_fuel_gauge: Added check for negative values + - selftests/bpf: Fix progs/find_vma_fail1.c build error. + - wifi: mwifiex: mark OF related data as maybe unused + - i2c: imx-lpi2c: clean rx/tx buffers upon new message + - i2c: hisi: Avoid redundant interrupts + - efi: sysfb_efi: Add quirk for Lenovo Yoga Book X91F/L + - block: ublk_drv: mark device as LIVE before adding disk + - ACPI: video: Add backlight=native DMI quirk for Acer Aspire 3830TG + - drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Book X90F + - hwmon: (peci/cputemp) Fix miscalculated DTS for SKX + - hwmon: (xgene) Fix ioremap and memremap leak + - verify_pefile: relax wrapper length check + - asymmetric_keys: log on fatal failures in PE/pkcs7 + - nvme: send Identify with CNS 06h only to I/O controllers + - wifi: iwlwifi: mvm: fix mvmtxq->stopped handling + - wifi: iwlwifi: mvm: protect TXQ list manipulation + - drm/amdgpu: add mes resume when do gfx post soft reset + - drm/amdgpu: Force signal hw_fences that are embedded in non-sched jobs + - drm/amdgpu/gfx: set cg flags to enter/exit safe mode + - ACPI: resource: Add Medion S17413 to IRQ override quirk + - tracing: Add trace_array_puts() to write into instance + - tracing: Have tracing_snapshot_instance_cond() write errors to the + appropriate instance + - maple_tree: fix write memory barrier of nodes once dead for RCU mode + - ksmbd: avoid out of bounds access in decode_preauth_ctxt() + - riscv: add icache flush for nommu sigreturn trampoline + - HID: intel-ish-hid: Fix kernel panic during warm reset + - net: sfp: initialize sfp->i2c_block_size at sfp allocation + - net: phy: nxp-c45-tja11xx: add remove callback + - net: phy: nxp-c45-tja11xx: fix unsigned long multiplication overflow + - scsi: ses: Handle enclosure with just a primary component gracefully + - thermal: intel: Avoid updating unsupported THERM_STATUS_CLEAR mask bits + - drm/amd/pm: correct the pcie link state check for SMU13 + - PCI: Fix use-after-free in pci_bus_release_domain_nr() + - PCI/MSI: Provide missing stub for pci_msix_can_alloc_dyn() + - x86/PCI: Add quirk for AMD XHCI controller that loses MSI-X state in D3hot + - cgroup: fix display of forceidle time at root + - cgroup/cpuset: Fix partition root's cpuset.cpus update bug + - cgroup/cpuset: Wake up cpuset_attach_wq tasks in cpuset_cancel_attach() + - cgroup/cpuset: Make cpuset_fork() handle CLONE_INTO_CGROUP properly + - cgroup/cpuset: Add cpuset_can_fork() and cpuset_cancel_fork() methods + - drm/amd/pm: correct SMU13.0.7 pstate profiling clock settings + - drm/amd/pm: correct SMU13.0.7 max shader clock reporting + - mptcp: use mptcp_schedule_work instead of open-coding it + - mptcp: stricter state check in mptcp_worker + - mptcp: fix NULL pointer dereference on fastopen early fallback + - selftests: mptcp: userspace pm: uniform verify events + - ubi: Fix failure attaching when vid_hdr offset equals to (sub)page size + - ubi: Fix deadlock caused by recursively holding work_sem + - i2c: mchp-pci1xxxx: Update Timing registers + - powerpc/papr_scm: Update the NUMA distance table for the target node + - sched/fair: Fix imbalance overflow + - x86/rtc: Remove __init for runtime functions + - i2c: ocores: generate stop condition after timeout in polling mode + - cifs: fix negotiate context parsing + - nvme-pci: mark Lexar NM760 as IGNORE_DEV_SUBNQN + - nvme-pci: add NVME_QUIRK_BOGUS_NID for T-FORCE Z330 SSD + - Linux 6.2.12 + + * RFC: virtio and virtio-scsi should be built in (LP: #1685291) + - [Config] Mark CONFIG_SCSI_VIRTIO built-in + + * Dell: Enable speaker mute hotkey LED indicator (LP: #2015972) + - platform/x86: dell-laptop: Register ctl-led for speaker-mute + + * Debian autoreconstruct Fix restoration of execute permissions (LP: #2015498) + - [Debian] autoreconstruct - fix restoration of execute permissions + + * Lost display on built-in monitor after suspend (LP: #2001599) + - drm/i915: Generalize the PPS vlv_pipe_check() stuff + - drm/i915: Try to use the correct power sequencer intiially on bxt/glk + - drm/i915: Extend dual PPS handlind for ICP+ + - drm/i915: Reject unusable power sequencers + - drm/i915: Print the PPS registers using consistent format + - drm/i915: Fix whitespace + - drm/i915: Improve PPS debugs + + * [SRU][Jammy] CONFIG_PCI_MESON is not enabled (LP: #2007745) + - [Config] arm64: Enable PCI_MESON module + + * sched: cpumask: improve on cpumask_local_spread() locality (LP: #2008824) + - lib/find: introduce find_nth_and_andnot_bit + - cpumask: introduce cpumask_nth_and_andnot + - sched: add sched_numa_find_nth_cpu() + - cpumask: improve on cpumask_local_spread() locality + - lib/cpumask: reorganize cpumask_local_spread() logic + - sched/topology: Introduce sched_numa_hop_mask() + - sched/topology: Introduce for_each_numa_hop_mask() + - net/mlx5e: Improve remote NUMA preferences used for the IRQ affinity hints + - lib/cpumask: update comment for cpumask_local_spread() + - sched/topology: fix KASAN warning in hop_cmp() + + * Fix E-star testing failure with RTK 8852BE (LP: #2012019) + - wifi: rtw89: 8852be: enable CLKREQ of PCI capability + - wifi: rtw89: release RX standby timer of beamformee CSI to save power + + * vmd may fail to create sysfs entry while `pci_rescan_bus()` called in some + other drivers like wwan (LP: #2011389) + - SAUCE: PCI: vmd: guard device addition and removal + + * Lunar update: v6.2.11 upstream stable release (LP: #2016879) + - dm cache: Add some documentation to dm-cache-background-tracker.h + - dm integrity: Remove bi_sector that's only used by commented debug code + - dm: change "unsigned" to "unsigned int" + - dm: fix improper splitting for abnormal bios + - drm/i915: Move the DSB setup/cleaup into the color code + - drm/i915: Add a .color_post_update() hook + - gpio: GPIO_REGMAP: select REGMAP instead of depending on it + - Drivers: vmbus: Check for channel allocation before looking up relids + - ASoC: SOF: ipc4: Ensure DSP is in D0I0 during sof_ipc4_set_get_data() + - pwm: hibvt: Explicitly set .polarity in .get_state() + - pwm: cros-ec: Explicitly set .polarity in .get_state() + - pwm: iqs620a: Explicitly set .polarity in .get_state() + - pwm: sprd: Explicitly set .polarity in .get_state() + - pwm: meson: Explicitly set .polarity in .get_state() + - ASoC: codecs: lpass: fix the order or clks turn off during suspend + - KVM: s390: pv: fix external interruption loop not always detected + - wifi: mac80211: fix the size calculation of ieee80211_ie_len_eht_cap() + - wifi: mac80211: fix invalid drv_sta_pre_rcu_remove calls for non-uploaded + sta + - net: qrtr: Fix a refcount bug in qrtr_recvmsg() + - net: phylink: add phylink_expects_phy() method + - net: stmmac: check if MAC needs to attach to a PHY + - net: stmmac: remove redundant fixup to support fixed-link mode + - wifi: brcmfmac: Fix SDIO suspend/resume regression + - NFSD: Avoid calling OPDESC() with ops->opnum == OP_ILLEGAL + - nfsd: call op_release, even when op_func returns an error + - icmp: guard against too small mtu + - ALSA: hda/hdmi: Preserve the previous PCM device upon re-enablement + - net: don't let netpoll invoke NAPI if in xmit context + - net: dsa: mv88e6xxx: Reset mv88e6393x force WD event bit + - net: ethernet: mtk_eth_soc: fix remaining throughput regression + - sctp: check send stream number after wait_for_sndbuf + - drm/i915/huc: Cancel HuC delayed load timer on reset. + - net: qrtr: Do not do DEL_SERVER broadcast after DEL_CLIENT + - ipv6: Fix an uninit variable access bug in __ip6_make_skb() + - platform/x86: think-lmi: Fix memory leak when showing current settings + - platform/x86: think-lmi: Fix memory leaks when parsing ThinkStation WMI + strings + - platform/x86: think-lmi: Clean up display of current_value on Thinkstation + - gpio: davinci: Do not clear the bank intr enable bit in save_context + - gpio: davinci: Add irq chip flag to skip set wake + - net: ethernet: ti: am65-cpsw: Fix mdio cleanup in probe + - net: stmmac: fix up RX flow hash indirection table when setting channels + - sunrpc: only free unix grouplist after RCU settles + - NFSD: callback request does not use correct credential for AUTH_SYS + - ice: fix wrong fallback logic for FDIR + - ice: Reset FDIR counter in FDIR init stage + - raw: use net_hash_mix() in hash function + - raw: Fix NULL deref in raw_get_next(). + - ping: Fix potentail NULL deref for /proc/net/icmp. + - ethtool: reset #lanes when lanes is omitted + - netlink: annotate lockless accesses to nlk->max_recvmsg_len + - gve: Secure enough bytes in the first TX desc for all TCP pkts + - arm64: compat: Work around uninitialized variable warning + - net: stmmac: check fwnode for phy device before scanning for phy + - cxl/pci: Fix CDAT retrieval on big endian + - cxl/pci: Handle truncated CDAT header + - cxl/pci: Handle truncated CDAT entries + - cxl/pci: Handle excessive CDAT length + - PCI/DOE: Silence WARN splat with CONFIG_DEBUG_OBJECTS=y + - PCI/DOE: Fix memory leak with CONFIG_DEBUG_OBJECTS=y + - Revert "usb: xhci-pci: Set PROBE_PREFER_ASYNCHRONOUS" + - usb: xhci: tegra: fix sleep in atomic call + - xhci: Free the command allocated for setting LPM if we return early + - xhci: also avoid the XHCI_ZERO_64B_REGS quirk with a passthrough iommu + - usb: cdnsp: Fixes error: uninitialized symbol 'len' + - usb: dwc3: pci: add support for the Intel Meteor Lake-S + - USB: serial: cp210x: add Silicon Labs IFS-USB-DATACABLE IDs + - usb: typec: altmodes/displayport: Fix configure initial pin assignment + - USB: serial: option: add Telit FE990 compositions + - USB: serial: option: add Quectel RM500U-CN modem + - drivers: iio: adc: ltc2497: fix LSB shift + - iio: adis16480: select CONFIG_CRC32 + - iio: adc: qcom-spmi-adc5: Fix the channel name + - iio: adc: ti-ads7950: Set `can_sleep` flag for GPIO chip + - iio: dac: cio-dac: Fix max DAC write value check for 12-bit + - iio: adc: max11410: fix read_poll_timeout() usage + - iio: accel: kionix-kx022a: Get the timestamp from the driver's private data + in the trigger_handler + - iio: buffer: correctly return bytes written in output buffers + - iio: buffer: make sure O_NONBLOCK is respected + - iio: light: cm32181: Unregister second I2C client if present + - iio: light: vcnl4000: Fix WARN_ON on uninitialized lock + - tty: serial: sh-sci: Fix transmit end interrupt handler + - tty: serial: sh-sci: Fix Rx on RZ/G2L SCI + - tty: serial: fsl_lpuart: avoid checking for transfer complete when + UARTCTRL_SBK is asserted in lpuart32_tx_empty + - tty: serial: fsl_lpuart: fix crash in lpuart_uport_is_active + - nilfs2: fix potential UAF of struct nilfs_sc_info in nilfs_segctor_thread() + - nilfs2: fix sysfs interface lifetime + - fsdax: dedupe should compare the min of two iters' length + - fsdax: unshare: zero destination if srcmap is HOLE or UNWRITTEN + - fsdax: force clear dirty mark if CoW + - dt-bindings: serial: renesas,scif: Fix 4th IRQ for 4-IRQ SCIFs + - serial: 8250: Prevent starting up DMA Rx on THRI interrupt + - ksmbd: do not call kvmalloc() with __GFP_NORETRY | __GFP_NO_WARN + - ksmbd: fix slab-out-of-bounds in init_smb2_rsp_hdr + - ALSA: hda/realtek: Add quirk for Clevo X370SNW + - ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook + - x86/acpi/boot: Correct acpi_is_processor_usable() check + - x86/ACPI/boot: Use FADT version to check support for online capable + - KVM: x86: Clear "has_error_code", not "error_code", for RM exception + injection + - KVM: nVMX: Do not report error code when synthesizing VM-Exit from Real Mode + - KVM: SVM: Flush Hyper-V TLB when required + - mm: kfence: fix PG_slab and memcg_data clearing + - mm: kfence: fix handling discontiguous page + - coresight: etm4x: Do not access TRCIDR1 for identification + - coresight-etm4: Fix for() loop drvdata->nr_addr_cmp range bug + - counter: 104-quad-8: Fix race condition between FLAG and CNTR reads + - counter: 104-quad-8: Fix Synapse action reported for Index signals + - blk-mq: directly poll requests + - ftrace: Mark get_lock_parent_ip() __always_inline + - ftrace: Fix issue that 'direct->addr' not restored in modify_ftrace_direct() + - fs: drop peer group ids under namespace lock + - can: j1939: j1939_tp_tx_dat_new(): fix out-of-bounds memory access + - can: isotp: fix race between isotp_sendsmg() and isotp_release() + - can: isotp: isotp_ops: fix poll() to not report false EPOLLOUT events + - can: isotp: isotp_recvmsg(): use sock_recv_cmsgs() to get SOCK_RXQ_OVFL + infos + - ACPI: video: Add auto_detect arg to __acpi_video_get_backlight_type() + - ACPI: video: Make acpi_backlight=video work independent from GPU driver + - ACPI: video: Add acpi_backlight=video quirk for Apple iMac14,1 and iMac14,2 + - ACPI: video: Add acpi_backlight=video quirk for Lenovo ThinkPad W530 + - net: stmmac: Add queue reset into stmmac_xdp_open() function + - tracing/synthetic: Fix races on freeing last_cmd + - tracing/timerlat: Notify new max thread latency + - tracing/osnoise: Fix notify new tracing_max_latency + - tracing: Free error logs of tracing instances + - iommufd: Check for uptr overflow + - iommufd: Fix unpinning of pages when an access is present + - iommufd: Do not corrupt the pfn list when doing batch carry + - ASoC: hdac_hdmi: use set_stream() instead of set_tdm_slots() + - ASoC: SOF: avoid a NULL dereference with unsupported widgets + - iio: adc: ad7791: fix IRQ flags + - io_uring: fix return value when removing provided buffers + - io_uring: fix memory leak when removing provided buffers + - scsi: qla2xxx: Fix memory leak in qla2x00_probe_one() + - scsi: iscsi_tcp: Check that sock is valid before iscsi_set_param() + - nvme: fix discard support without oncs + - cifs: sanitize paths in cifs_update_super_prepath. + - block: ublk: make sure that block size is set correctly + - block: don't set GD_NEED_PART_SCAN if scan partition failed + - perf: Optimize perf_pmu_migrate_context() + - perf/core: Fix the same task check in perf_event_set_output + - tracing/synthetic: Make lastcmd_mutex static + - zsmalloc: document freeable stats + - mm: vmalloc: avoid warn_alloc noise caused by fatal signal + - wifi: mt76: mt7921: fix fw used for offload check for mt7922 + - wifi: mt76: ignore key disable commands + - ublk: read any SQE values upfront + - drm/panfrost: Fix the panfrost_mmu_map_fault_addr() error path + - drm/nouveau/disp: Support more modes by checking with lower bpc + - drm/i915: Fix context runtime accounting + - drm/i915: fix race condition UAF in i915_perf_add_config_ioctl + - ring-buffer: Fix race while reader and writer are on the same page + - mm/swap: fix swap_info_struct race between swapoff and get_swap_pages() + - mm/hugetlb: fix uffd wr-protection for CoW optimization path + - maple_tree: fix get wrong data_end in mtree_lookup_walk() + - maple_tree: fix a potential concurrency bug in RCU mode + - drm/amd/display: Clear MST topology if it fails to resume + - drm/amdgpu: for S0ix, skip SDMA 5.x+ suspend/resume + - drm/amdgpu: skip psp suspend for IMU enabled ASICs mode2 reset + - drm/bridge: lt9611: Fix PLL being unable to lock + - mm: take a page reference when removing device exclusive entries + - maple_tree: remove GFP_ZERO from kmem_cache_alloc() and + kmem_cache_alloc_bulk() + - maple_tree: fix potential rcu issue + - maple_tree: reduce user error potential + - maple_tree: fix handle of invalidated state in mas_wr_store_setup() + - maple_tree: fix mas_prev() and mas_find() state handling + - maple_tree: be more cautious about dead nodes + - maple_tree: refine ma_state init from mas_start() + - maple_tree: detect dead nodes in mas_start() + - maple_tree: fix freeing of nodes in rcu mode + - maple_tree: remove extra smp_wmb() from mas_dead_leaves() + - maple_tree: add smp_rmb() to dead node detection + - maple_tree: add RCU lock checking to rcu callback functions + - mm: enable maple tree RCU mode by default. + - Linux 6.2.11 + + * Lunar update: v6.2.10 upstream stable release (LP: #2016878) + - thunderbolt: Limit USB3 bandwidth of certain Intel USB4 host routers + - cifs: update ip_addr for ses only for primary chan setup + - cifs: prevent data race in cifs_reconnect_tcon() + - cifs: avoid race conditions with parallel reconnects + - zonefs: Reorganize code + - zonefs: Simplify IO error handling + - zonefs: Reduce struct zonefs_inode_info size + - zonefs: Separate zone information from inode information + - zonefs: Fix error message in zonefs_file_dio_append() + - btrfs: rename BTRFS_FS_NO_OVERCOMMIT to BTRFS_FS_ACTIVE_ZONE_TRACKING + - btrfs: zoned: count fresh BG region as zone unusable + - btrfs: zoned: drop space_info->active_total_bytes + - fsverity: don't drop pagecache at end of FS_IOC_ENABLE_VERITY + - cifs: fix missing unload_nls() in smb2_reconnect() + - xfrm: Zero padding when dumping algos and encap + - ASoC: codecs: tx-macro: Fix for KASAN: slab-out-of-bounds + - ASoC: Intel: avs: max98357a: Explicitly define codec format + - ASoC: Intel: avs: da7219: Explicitly define codec format + - ASoC: Intel: avs: rt5682: Explicitly define codec format + - ASoC: Intel: avs: ssm4567: Remove nau8825 bits + - ASoC: Intel: avs: nau8825: Adjust clock control + - lib: zstd: Backport fix for in-place decompression + - zstd: Fix definition of assert() + - ACPI: video: Add backlight=native DMI quirk for Dell Vostro 15 3535 + - ACPI: x86: Introduce an acpi_quirk_skip_gpio_event_handlers() helper + - ACPI: x86: Add skip i2c clients quirk for Acer Iconia One 7 B1-750 + - ACPI: x86: Add skip i2c clients quirk for Lenovo Yoga Book X90 + - ASoC: SOF: ipc3: Check for upper size limit for the received message + - ASoC: SOF: ipc4-topology: Fix incorrect sample rate print unit + - ASoC: SOF: Intel: pci-tng: revert invalid bar size setting + - ASoC: SOF: Intel: hda-dsp: harden D0i3 programming sequence + - ASoC: SOF: Intel: hda-ctrl: re-add sleep after entering and exiting reset + - ASoC: SOF: IPC4: update gain ipc msg definition to align with fw + - ASoC: hdmi-codec: only startup/shutdown on supported streams + - wifi: mac80211: check basic rates validity + - md: avoid signed overflow in slot_store() + - x86/PVH: obtain VGA console info in Dom0 + - drm/amdkfd: Fix BO offset for multi-VMA page migration + - drm/amdkfd: fix a potential double free in pqm_create_queue + - drm/amdgpu/vcn: custom video info caps for sriov + - drm/amdkfd: fix potential kgd_mem UAFs + - drm/amd/display: Fix HDCP failing to enable after suspend + - net: hsr: Don't log netdev_err message on unknown prp dst node + - ALSA: asihpi: check pao in control_message() + - ALSA: hda/ca0132: fixup buffer overrun at tuning_ctl_set() + - fbdev: tgafb: Fix potential divide by zero + - ACPI: tools: pfrut: Check if the input of level and type is in the right + numeric range + - sched_getaffinity: don't assume 'cpumask_size()' is fully initialized + - nvme-pci: fixing memory leak in probe teardown path + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM620 + - drm/amdkfd: Fixed kfd_process cleanup on module exit. + - net/mlx5e: Lower maximum allowed MTU in XSK to match XDP prerequisites + - fbdev: nvidia: Fix potential divide by zero + - fbdev: intelfb: Fix potential divide by zero + - fbdev: lxfb: Fix potential divide by zero + - fbdev: au1200fb: Fix potential divide by zero + - tools/power turbostat: Fix /dev/cpu_dma_latency warnings + - tools/power turbostat: fix decoding of HWP_STATUS + - tracing: Fix wrong return in kprobe_event_gen_test.c + - btrfs: fix uninitialized variable warning in btrfs_update_block_group + - btrfs: use temporary variable for space_info in btrfs_update_block_group + - mtd: rawnand: meson: initialize struct with zeroes + - mtd: nand: mxic-ecc: Fix mxic_ecc_data_xfer_wait_for_completion() when irq + is used + - ca8210: Fix unsigned mac_len comparison with zero in ca8210_skb_tx() + - riscv/kvm: Fix VM hang in case of timer delta being zero. + - mips: bmips: BCM6358: disable RAC flush for TP1 + - ALSA: usb-audio: Fix recursive locking at XRUN during syncing + - PCI: dwc: Fix PORT_LINK_CONTROL update when CDM check enabled + - platform/x86: think-lmi: add missing type attribute + - platform/x86: think-lmi: use correct possible_values delimiters + - platform/x86: think-lmi: only display possible_values if available + - platform/x86: think-lmi: Add possible_values for ThinkStation + - platform/surface: aggregator: Add missing fwnode_handle_put() + - mtd: rawnand: meson: invalidate cache on polling ECC bit + - SUNRPC: fix shutdown of NFS TCP client socket + - sfc: ef10: don't overwrite offload features at NIC reset + - scsi: megaraid_sas: Fix crash after a double completion + - scsi: mpt3sas: Don't print sense pool info twice + - net: dsa: realtek: fix out-of-bounds access + - ptp_qoriq: fix memory leak in probe() + - net: dsa: microchip: ksz8: fix ksz8_fdb_dump() + - net: dsa: microchip: ksz8: fix ksz8_fdb_dump() to extract all 1024 entries + - net: dsa: microchip: ksz8: fix offset for the timestamp filed + - net: dsa: microchip: ksz8: ksz8_fdb_dump: avoid extracting ghost entry from + empty dynamic MAC table. + - net: dsa: microchip: ksz8863_smi: fix bulk access + - net: dsa: microchip: ksz8: fix MDB configuration with non-zero VID + - r8169: fix RTL8168H and RTL8107E rx crc error + - regulator: Handle deferred clk + - net/net_failover: fix txq exceeding warning + - net: stmmac: don't reject VLANs when IFF_PROMISC is set + - drm/i915/pmu: Use functions common with sysfs to read actual freq + - drm/i915/tc: Fix the ICL PHY ownership check in TC-cold state + - drm/i915/perf: Drop wakeref on GuC RC error + - platform/x86/intel/pmc: Alder Lake PCH slp_s0_residency fix + - can: bcm: bcm_tx_setup(): fix KMSAN uninit-value in vfs_write + - s390/vfio-ap: fix memory leak in vfio_ap device driver + - ACPI: bus: Rework system-level device notification handling + - loop: LOOP_CONFIGURE: send uevents for partitions + - net: mvpp2: classifier flow fix fragmentation flags + - net: mvpp2: parser fix QinQ + - net: mvpp2: parser fix PPPoE + - smsc911x: avoid PHY being resumed when interface is not up + - ice: Fix ice_cfg_rdma_fltr() to only update relevant fields + - ice: add profile conflict check for AVF FDIR + - ice: fix invalid check for empty list in ice_sched_assoc_vsi_to_agg() + - net: ethernet: mtk_eth_soc: fix tx throughput regression with direct 1G + links + - ALSA: ymfpci: Create card with device-managed snd_devm_card_new() + - ALSA: ymfpci: Fix BUG_ON in probe function + - net: wwan: iosm: fixes 7560 modem crash + - drm/nouveau/kms: Fix backlight registration + - net: ipa: compute DMA pool size properly + - bnx2x: use the right build_skb() helper + - i40e: fix registers dump after run ethtool adapter self test + - bnxt_en: Fix reporting of test result in ethtool selftest + - bnxt_en: Fix typo in PCI id to device description string mapping + - bnxt_en: Add missing 200G link speed reporting + - net: dsa: mv88e6xxx: Enable IGMP snooping on user ports only + - net: dsa: sync unicast and multicast addresses for VLAN filters too + - net: ethernet: mtk_eth_soc: fix flow block refcounting logic + - net: ethernet: mtk_eth_soc: fix L2 offloading with DSA untag offload + - net: ethernet: mtk_eth_soc: add missing ppe cache flush when deleting a flow + - pinctrl: ocelot: Fix alt mode for ocelot + - Input: xpad - fix incorrectly applied patch for MAP_PROFILE_BUTTON + - iommu/vt-d: Allow zero SAGAW if second-stage not supported + - Revert "venus: firmware: Correct non-pix start and end addresses" + - Input: i8042 - add TUXEDO devices to i8042 quirk tables for partial fix + - Input: alps - fix compatibility with -funsigned-char + - Input: focaltech - use explicitly signed char type + - cifs: prevent infinite recursion in CIFSGetDFSRefer() + - cifs: fix DFS traversal oops without CONFIG_CIFS_DFS_UPCALL + - Input: i8042 - add quirk for Fujitsu Lifebook A574/H + - Input: goodix - add Lenovo Yoga Book X90F to nine_bytes_report DMI table + - btrfs: fix deadlock when aborting transaction during relocation with scrub + - btrfs: fix race between quota disable and quota assign ioctls + - btrfs: scan device in non-exclusive mode + - btrfs: ignore fiemap path cache when there are multiple paths for a node + - zonefs: Do not propagate iomap_dio_rw() ENOTBLK error to user space + - io_uring/poll: clear single/double poll flags on poll arming + - io_uring/rsrc: fix rogue rsrc node grabbing + - io_uring: fix poll/netmsg alloc caches + - vmxnet3: use gro callback when UPT is enabled + - zonefs: Always invalidate last cached page on append write + - dm: fix __send_duplicate_bios() to always allow for splitting IO + - can: j1939: prevent deadlock by moving j1939_sk_errqueue() + - xen/netback: don't do grant copy across page boundary + - net: phy: dp83869: fix default value for tx-/rx-internal-delay + - modpost: Fix processing of CRCs on 32-bit build machines + - pinctrl: amd: Disable and mask interrupts on resume + - pinctrl: at91-pio4: fix domain name assignment + - platform/x86: ideapad-laptop: Stop sending KEY_TOUCHPAD_TOGGLE + - thermal: intel: int340x: processor_thermal: Fix additional deadlock + - powerpc: Don't try to copy PPR for task with NULL pt_regs + - powerpc/pseries/vas: Ignore VAS update for DLPAR if copy/paste is not + enabled + - powerpc/64s: Fix __pte_needs_flush() false positive warning + - NFSv4: Fix hangs when recovering open state after a server reboot + - ALSA: hda/conexant: Partial revert of a quirk for Lenovo + - ALSA: usb-audio: Fix regression on detection of Roland VS-100 + - ALSA: hda/realtek: Add quirks for some Clevo laptops + - ALSA: hda/realtek: Add quirk for Lenovo ZhaoYang CF4620Z + - xtensa: fix KASAN report for show_stack + - rcu: Fix rcu_torture_read ftrace event + - dt-bindings: mtd: jedec,spi-nor: Document CPOL/CPHA support + - s390/uaccess: add missing earlyclobber annotations to __clear_user() + - s390: reintroduce expoline dependence to scripts + - drm/etnaviv: fix reference leak when mmaping imported buffer + - drm/amdgpu: allow more APUs to do mode2 reset when go to S4 + - drm/amd/display: Add DSC Support for Synaptics Cascaded MST Hub + - drm/amd/display: Take FEC Overhead into Timeslot Calculation + - drm/i915/gem: Flush lmem contents after construction + - drm/i915/dpt: Treat the DPT BO as a framebuffer + - drm/i915: Disable DC states for all commits + - drm/i915: Split icl_color_commit_noarm() from skl_color_commit_noarm() + - drm/i915: Move CSC load back into .color_commit_arm() when PSR is enabled on + skl/glk + - KVM: arm64: PMU: Fix GET_ONE_REG for vPMC regs to return the current value + - KVM: arm64: PMU: Don't save PMCR_EL0.{C,P} for the vCPU + - KVM: arm64: Retry fault if vma_lookup() results become invalid + - KVM: arm64: Disable interrupts while walking userspace PTs + - KVM: arm64: Check for kvm_vma_mte_allowed in the critical section + - usb: ucsi: Fix ucsi->connector race + - libbpf: Fix BTF-to-C converter's padding logic + - selftests/bpf: Add few corner cases to test padding handling of btf_dump + - libbpf: Fix btf_dump's packed struct determination + - drm/amdkfd: Get prange->offset after svm_range_vram_node_new + - hsr: ratelimit only when errors are printed + - x86/PVH: avoid 32-bit build warning when obtaining VGA console info + - Revert "cpuidle, intel_idle: Fix CPUIDLE_FLAG_IRQ_ENABLE *again*" + - Linux 6.2.10 + + * Lunar update: v6.2.9 upstream stable release (LP: #2016877) + - interconnect: qcom: osm-l3: fix icc_onecell_data allocation + - interconnect: qcom: sm8450: switch to qcom_icc_rpmh_* function + - interconnect: qcom: qcm2290: Fix MASTER_SNOC_BIMC_NRT + - perf/core: Fix perf_output_begin parameter is incorrectly invoked in + perf_event_bpf_output + - perf: fix perf_event_context->time + - tracing/hwlat: Replace sched_setaffinity with set_cpus_allowed_ptr + - drm/amd/display: fix k1 k2 divider programming for phantom streams + - drm/amd/display: Remove OTG DIV register write for Virtual signals. + - drm/amd/display: Fix DP MST sinks removal issue + - arm64: dts: freescale: imx8-ss-lsio: Fix flexspi clock order + - arm64: dts: qcom: sc8280xp: Add label property to vadc channel nodes + - arm64: dts: qcom: sm6375: Add missing power-domain-named to CDSP + - arm64: dts: qcom: sm8450: correct WSA2 assigned clocks + - arm64: dts: qcom: sm8450: Mark UFS controller as cache coherent + - power: supply: bq24190: Fix use after free bug in bq24190_remove due to race + condition + - power: supply: da9150: Fix use after free bug in da9150_charger_remove due + to race condition + - wifi: mt76: do not run mt76_unregister_device() on unregistered hw + - wifi: mt76: connac: do not check WED status for non-mmio devices + - efi: earlycon: Reprobe after parsing config tables + - arm64: dts: imx8dxl-evk: Disable hibernation mode of AR8031 for EQOS + - arm64: dts: imx8dxl-evk: Fix eqos phy reset gpio + - ARM: dts: imx6sll: e70k02: fix usbotg1 pinctrl + - ARM: dts: imx6sll: e60k02: fix usbotg1 pinctrl + - ARM: dts: imx6sl: tolino-shine2hd: fix usbotg1 pinctrl + - arm64: dts: imx8mn: specify #sound-dai-cells for SAI nodes + - arm64: dts: imx93: add missing #address-cells and #size-cells to i2c nodes + - NFS: Fix /proc/PID/io read_bytes for buffered reads + - xsk: Add missing overflow check in xdp_umem_reg + - iavf: fix inverted Rx hash condition leading to disabled hash + - iavf: fix non-tunneled IPv6 UDP packet type and hashing + - iavf: do not track VLAN 0 filters + - intel/igbvf: free irq on the error path in igbvf_request_msix() + - igbvf: Regard vf reset nack as success + - igc: fix the validation logic for taprio's gate list + - i2c: imx-lpi2c: check only for enabled interrupt flags + - i2c: mxs: ensure that DMA buffers are safe for DMA + - i2c: hisi: Only use the completion interrupt to finish the transfer + - scsi: scsi_dh_alua: Fix memleak for 'qdata' in alua_activate() + - nfsd: don't replace page in rq_pages if it's a continuation of last page + - net: dsa: b53: mmap: fix device tree support + - net: usb: smsc95xx: Limit packet length to skb->len + - qed/qed_sriov: guard against NULL derefs from qed_iov_get_vf_info + - xirc2ps_cs: Fix use after free bug in xirc2ps_detach + - net: phy: Ensure state transitions are processed from phy_stop() + - net: mdio: fix owner field for mdio buses registered using device-tree + - net: mdio: fix owner field for mdio buses registered using ACPI + - net: stmmac: Fix for mismatched host/device DMA address width + - thermal/drivers/mellanox: Use generic thermal_zone_get_trip() function + - mlxsw: core_thermal: Fix fan speed in maximum cooling state + - drm/i915/fbdev: lock the fbdev obj before vma pin + - drm/i915/mtl: Disable MC6 for MTL A step + - drm/i915/guc: Rename GuC register state capture node to be more obvious + - drm/i915/guc: Fix missing ecodes + - drm/i915/gt: perform uc late init after probe error injection + - drm/i915: Fix format for perf_limit_reasons + - drm/i915: Update vblank timestamping stuff on seamless M/N change + - net: dsa: report rx_bytes unadjusted for ETH_HLEN + - net: qcom/emac: Fix use after free bug in emac_remove due to race condition + - net: usb: lan78xx: Limit packet length to skb->len + - net/ps3_gelic_net: Fix RX sk_buff length + - net/ps3_gelic_net: Use dma_mapping_error + - octeontx2-vf: Add missing free for alloc_percpu + - bootconfig: Fix testcase to increase max node + - keys: Do not cache key in task struct if key is requested from kernel thread + - ice: check if VF exists before mode check + - iavf: fix hang on reboot with ice + - i40e: fix flow director packet filter programming + - bpf: Adjust insufficient default bpf_jit_limit + - net/mlx5e: Set uplink rep as NETNS_LOCAL + - net/mlx5e: Block entering switchdev mode with ns inconsistency + - net/mlx5: Fix steering rules cleanup + - net/mlx5e: Overcome slow response for first macsec ASO WQE + - net/mlx5: Read the TC mapping of all priorities on ETS query + - net/mlx5: E-Switch, Fix an Oops in error handling code + - net: dsa: tag_brcm: legacy: fix daisy-chained switches + - atm: idt77252: fix kmemleak when rmmod idt77252 + - erspan: do not use skb_mac_header() in ndo_start_xmit() + - net: mscc: ocelot: fix stats region batching + - net/sonic: use dma_mapping_error() for error check + - nvme-tcp: fix nvme_tcp_term_pdu to match spec + - mlxsw: spectrum_fid: Fix incorrect local port type + - hvc/xen: prevent concurrent accesses to the shared ring + - ksmbd: add low bound validation to FSCTL_SET_ZERO_DATA + - ksmbd: add low bound validation to FSCTL_QUERY_ALLOCATED_RANGES + - ksmbd: fix possible refcount leak in smb2_open() + - Bluetooth: hci_sync: Resume adv with no RPA when active scan + - Bluetooth: hci_core: Detect if an ACL packet is in fact an ISO packet + - Bluetooth: btusb: Remove detection of ISO packets over bulk + - Bluetooth: ISO: fix timestamped HCI ISO data packet parsing + - Bluetooth: Remove "Power-on" check from Mesh feature + - gve: Cache link_speed value from device + - net: asix: fix modprobe "sysfs: cannot create duplicate filename" + - net: dsa: mt7530: move enabling disabling core clock to mt7530_pll_setup() + - net: dsa: mt7530: move lowering TRGMII driving to mt7530_setup() + - net: dsa: mt7530: move setting ssc_delta to PHY_INTERFACE_MODE_TRGMII case + - net: mdio: thunder: Add missing fwnode_handle_put() + - efi/libstub: Use relocated version of kernel's struct screen_info + - drm/amd/display: Set dcn32 caps.seamless_odm + - Bluetooth: btqcomsmd: Fix command timeout after setting BD address + - Bluetooth: L2CAP: Fix responding with wrong PDU type + - Bluetooth: btsdio: fix use after free bug in btsdio_remove due to unfinished + work + - Bluetooth: mgmt: Fix MGMT add advmon with RSSI command + - Bluetooth: HCI: Fix global-out-of-bounds + - platform/chrome: cros_ec_chardev: fix kernel data leak from ioctl + - entry: Fix noinstr warning in __enter_from_user_mode() + - perf/x86/amd/core: Always clear status for idx + - entry/rcu: Check TIF_RESCHED _after_ delayed RCU wake-up + - hwmon: fix potential sensor registration fail if of_node is missing + - hwmon (it87): Fix voltage scaling for chips with 10.9mV ADCs + - scsi: qla2xxx: Synchronize the IOCB count to be in order + - scsi: qla2xxx: Perform lockless command completion in abort path + - smb3: lower default deferred close timeout to address perf regression + - smb3: fix unusable share after force unmount failure + - uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS583Gen 2 + - thunderbolt: Use scale field when allocating USB3 bandwidth + - thunderbolt: Call tb_check_quirks() after initializing adapters + - thunderbolt: Add quirk to disable CLx + - thunderbolt: Fix memory leak in margining + - thunderbolt: Disable interrupt auto clear for rings + - thunderbolt: Add missing UNSET_INBOUND_SBTX for retimer access + - thunderbolt: Use const qualifier for `ring_interrupt_index` + - thunderbolt: Rename shadowed variables bit to interrupt_bit and + auto_clear_bit + - ASoC: amd: yp: Add OMEN by HP Gaming Laptop 16z-n000 to quirks + - ASoC: Intel: sof_rt5682: Add quirk for Rex board with mx98360a amplifier + - ASoC: amd: yc: Add DMI entries to support HP OMEN 16-n0xxx (8A43) + - ACPI: x86: Drop quirk for HP Elitebook + - ACPI: x86: utils: Add Cezanne to the list for forcing StorageD3Enable + - riscv: Bump COMMAND_LINE_SIZE value to 1024 + - drm/cirrus: NULL-check pipe->plane.state->fb in cirrus_pipe_update() + - HID: cp2112: Fix driver not registering GPIO IRQ chip as threaded + - ca8210: fix mac_len negative array access + - HID: logitech-hidpp: Add support for Logitech MX Master 3S mouse + - HID: intel-ish-hid: ipc: Fix potential use-after-free in work function + - m68k: mm: Fix systems with memory at end of 32-bit address space + - m68k: Only force 030 bus error if PC not in exception table + - selftests/bpf: check that modifier resolves after pointer + - cpumask: fix incorrect cpumask scanning result checks + - scsi: target: iscsi: Fix an error message in iscsi_check_key() + - scsi: qla2xxx: Add option to disable FC2 Target support + - scsi: hisi_sas: Check devm_add_action() return value + - scsi: ufs: core: Add soft dependency on governor_simpleondemand + - scsi: lpfc: Check kzalloc() in lpfc_sli4_cgn_params_read() + - scsi: lpfc: Avoid usage of list iterator variable after loop + - scsi: mpi3mr: Driver unload crashes host when enhanced logging is enabled + - scsi: mpi3mr: Wait for diagnostic save during controller init + - scsi: mpi3mr: NVMe command size greater than 8K fails + - scsi: mpi3mr: Bad drive in topology results kernel crash + - scsi: storvsc: Handle BlockSize change in Hyper-V VHD/VHDX file + - platform/x86: int3472: Add GPIOs to Surface Go 3 Board data + - net: usb: cdc_mbim: avoid altsetting toggling for Telit FE990 + - net: usb: qmi_wwan: add Telit 0x1080 composition + - drm/amd/display: Update clock table to include highest clock setting + - sh: sanitize the flags on sigreturn + - drm/amdgpu: Fix call trace warning and hang when removing amdgpu device + - drm/amd: Fix initialization mistake for NBIO 7.3.0 + - net/sched: act_mirred: better wording on protection against excessive stack + growth + - act_mirred: use the backlog for nested calls to mirred ingress + - cifs: lock chan_lock outside match_session + - cifs: append path to open_enter trace event + - cifs: do not poll server interfaces too regularly + - cifs: empty interface list when server doesn't support query interfaces + - cifs: dump pending mids for all channels in DebugData + - cifs: print session id while listing open files + - cifs: fix dentry lookups in directory handle cache + - x86/mm: Do not shuffle CPU entry areas without KASLR + - x86/fpu/xstate: Prevent false-positive warning in __copy_xstate_uabi_buf() + - selftests/x86/amx: Add a ptrace test + - scsi: core: Add BLIST_SKIP_VPD_PAGES for SKhynix H28U74301AMR + - usb: misc: onboard-hub: add support for Microchip USB2517 USB 2.0 hub + - usb: dwc2: fix a race, don't power off/on phy for dual-role mode + - usb: dwc2: drd: fix inconsistent mode if role-switch-default-mode="host" + - usb: dwc2: fix a devres leak in hw_enable upon suspend resume + - block/io_uring: pass in issue_flags for uring_cmd task_work handling + - usb: gadget: u_audio: don't let userspace block driver unbind + - btrfs: zoned: fix btrfs_can_activate_zone() to support DUP profile + - Bluetooth: Fix race condition in hci_cmd_sync_clear + - efi: sysfb_efi: Fix DMI quirks not working for simpledrm + - mm/slab: Fix undefined init_cache_node_node() for NUMA and !SMP + - efi/libstub: zboot: Mark zboot EFI application as NX compatible + - arm64: efi: Set NX compat flag in PE/COFF header + - fscrypt: destroy keyring after security_sb_delete() + - fsverity: Remove WQ_UNBOUND from fsverity read workqueue + - lockd: set file_lock start and end when decoding nlm4 testargs + - arm64: dts: imx8mm-nitrogen-r2: fix WM8960 clock name + - igb: revert rtnl_lock() that causes deadlock + - dm thin: fix deadlock when swapping to thin device + - usb: typec: tcpm: fix create duplicate source-capabilities file + - usb: typec: tcpm: fix warning when handle discover_identity message + - usb: cdns3: Fix issue with using incorrect PCI device function + - usb: cdnsp: Fixes issue with redundant Status Stage + - usb: cdnsp: changes PCI Device ID to fix conflict with CNDS3 driver + - usb: chipdea: core: fix return -EINVAL if request role is the same with + current role + - usb: chipidea: core: fix possible concurrent when switch role + - usb: dwc3: gadget: Add 1ms delay after end transfer command without IOC + - usb: ucsi: Fix NULL pointer deref in ucsi_connector_change() + - usb: ucsi_acpi: Increase the command completion timeout + - mm: kfence: fix using kfence_metadata without initialization in + show_object() + - kfence: avoid passing -g for test + - io_uring/net: avoid sending -ECONNABORTED on repeated connection requests + - io_uring/rsrc: fix null-ptr-deref in io_file_bitmap_get() + - Revert "kasan: drop skip_kasan_poison variable in free_pages_prepare" + - kcsan: avoid passing -g for test + - test_maple_tree: add more testing for mas_empty_area() + - maple_tree: fix mas_skip_node() end slot detection + - ksmbd: fix wrong signingkey creation when encryption is AES256 + - ksmbd: set FILE_NAMED_STREAMS attribute in FS_ATTRIBUTE_INFORMATION + - ksmbd: don't terminate inactive sessions after a few seconds + - ksmbd: return STATUS_NOT_SUPPORTED on unsupported smb2.0 dialect + - ksmbd: return unsupported error on smb1 mount + - wifi: mac80211: fix qos on mesh interfaces + - wifi: mac80211: Serialize ieee80211_handle_wake_tx_queue() + - nilfs2: fix kernel-infoleak in nilfs_ioctl_wrap_copy() + - drm/bridge: lt8912b: return EPROBE_DEFER if bridge is not found + - drm/amd/display: fix wrong index used in dccg32_set_dpstreamclk + - drm/meson: fix missing component unbind on bind errors + - drm/amdgpu/nv: Apply ASPM quirk on Intel ADL + AMD Navi + - drm/i915/active: Fix missing debug object activation + - drm/i915: Preserve crtc_state->inherited during state clearing + - drm/amdgpu: skip ASIC reset for APUs when go to S4 + - drm/amdgpu: reposition the gpu reset checking for reuse + - riscv: mm: Fix incorrect ASID argument when flushing TLB + - riscv: Handle zicsr/zifencei issues between clang and binutils + - tee: amdtee: fix race condition in amdtee_open_session + - firmware: arm_scmi: Fix device node validation for mailbox transport + - arm64: dts: qcom: sc8280xp-x13s: mark s11b regulator as always-on + - arm64: dts: qcom: sc7280: Mark PCIe controller as cache coherent + - arm64: dts: qcom: sm8150: Fix the iommu mask used for PCIe controllers + - soc: qcom: llcc: Fix slice configuration values for SC8280XP + - mm/ksm: fix race with VMA iteration and mm_struct teardown + - bus: imx-weim: fix branch condition evaluates to a garbage value + - i2c: xgene-slimpro: Fix out-of-bounds bug in xgene_slimpro_i2c_xfer() + - dm stats: check for and propagate alloc_percpu failure + - dm crypt: add cond_resched() to dmcrypt_write() + - dm crypt: avoid accessing uninitialized tasklet + - sched/fair: sanitize vruntime of entity being placed + - sched/fair: Sanitize vruntime of entity being migrated + - Linux 6.2.9 + - [Config] ppc64: updateconfigs following v6.2.9 stable updates + + * Lunar update: v6.2.8 upstream stable release (LP: #2016876) + - xfrm: Allow transport-mode states with AF_UNSPEC selector + - drm/virtio: Pass correct device to dma_sync_sgtable_for_device() + - drm/msm/gem: Prevent blocking within shrinker loop + - drm/panfrost: Don't sync rpm suspension after mmu flushing + - fbdev: chipsfb: Fix error codes in chipsfb_pci_init() + - cifs: Move the in_send statistic to __smb_send_rqst() + - drm/meson: fix 1px pink line on GXM when scaling video overlay + - clk: HI655X: select REGMAP instead of depending on it + - selftests: amd-pstate: fix TEST_FILES + - ASoC: SOF: Intel: MTL: Fix the device description + - ASoC: SOF: Intel: HDA: Fix device description + - ASoC: SOF: Intel: SKL: Fix device description + - ASOC: SOF: Intel: pci-tgl: Fix device description + - ASoC: SOF: ipc4-topology: set dmic dai index from copier + - docs: Correct missing "d_" prefix for dentry_operations member + d_weak_revalidate + - scsi: mpt3sas: Fix NULL pointer access in mpt3sas_transport_port_add() + - scsi: mpi3mr: Fix throttle_groups memory leak + - scsi: mpi3mr: Fix config page DMA memory leak + - scsi: mpi3mr: Fix mpi3mr_hba_port memory leak in mpi3mr_remove() + - scsi: mpi3mr: Fix sas_hba.phy memory leak in mpi3mr_remove() + - scsi: mpi3mr: Return proper values for failures in firmware init path + - scsi: mpi3mr: Fix memory leaks in mpi3mr_init_ioc() + - scsi: mpi3mr: ioctl timeout when disabling/enabling interrupt + - scsi: mpi3mr: Fix expander node leak in mpi3mr_remove() + - ALSA: hda: Match only Intel devices with CONTROLLER_IN_GPU() + - netfilter: nft_nat: correct length for loading protocol registers + - netfilter: nft_masq: correct length for loading protocol registers + - netfilter: nft_redir: correct length for loading protocol registers + - netfilter: nft_redir: correct value of inet type `.maxattrs` + - scsi: core: Add BLIST_NO_VPD_SIZE for some VDASD + - scsi: core: Fix a procfs host directory removal regression + - ftrace,kcfi: Define ftrace_stub_graph conditionally + - tcp: tcp_make_synack() can be called from process context + - vdpa/mlx5: should not activate virtq object when suspended + - wifi: nl80211: fix NULL-ptr deref in offchan check + - wifi: cfg80211: fix MLO connection ownership + - selftests: fix LLVM build for i386 and x86_64 + - nfc: pn533: initialize struct pn533_out_arg properly + - ipvlan: Make skb->skb_iif track skb->dev for l3s mode + - i40e: Fix kernel crash during reboot when adapter is in recovery mode + - vhost-vdpa: free iommu domain after last use during cleanup + - vdpa_sim: not reset state in vdpasim_queue_ready + - vdpa_sim: set last_used_idx as last_avail_idx in vdpasim_queue_ready + - PCI: s390: Fix use-after-free of PCI resources with per-function hotplug + - bnxt_en: reset PHC frequency in free-running mode + - net/smc: fix NULL sndbuf_desc in smc_cdc_tx_handler() + - qed/qed_dev: guard against a possible division by zero + - net: dsa: mt7530: remove now incorrect comment regarding port 5 + - net: dsa: mt7530: set PLL frequency and trgmii only when trgmii is used + - block: do not reverse request order when flushing plug list + - loop: Fix use-after-free issues + - blk-mq: fix "bad unlock balance detected" on q->srcu in + __blk_mq_run_dispatch_ops + - net: tunnels: annotate lockless accesses to dev->needed_headroom + - net: phy: smsc: bail out in lan87xx_read_status if genphy_read_status fails + - tcp: Fix bind() conflict check for dual-stack wildcard address. + - nfc: st-nci: Fix use after free bug in ndlc_remove due to race condition + - mlxsw: spectrum: Fix incorrect parsing depth after reload + - net/smc: fix deadlock triggered by cancel_delayed_work_syn() + - net: usb: smsc75xx: Limit packet length to skb->len + - net: ethernet: mtk_eth_soc: reset PCS state + - net: ethernet: mtk_eth_soc: only write values if needed + - drm/bridge: Fix returned array size name for atomic_get_input_bus_fmts kdoc + - powerpc/mm: Fix false detection of read faults + - block: null_blk: Fix handling of fake timeout request + - nvme: fix handling single range discard request + - nvmet: avoid potential UAF in nvmet_req_complete() + - block: sunvdc: add check for mdesc_grab() returning NULL + - block: count 'ios' and 'sectors' when io is done for bio-based device + - net/mlx5e: Fix macsec ASO context alignment + - net/mlx5e: Don't cache tunnel offloads capability + - net/mlx5: Fix setting ec_function bit in MANAGE_PAGES + - net/mlx5: Disable eswitch before waiting for VF pages + - net/mlx5: E-switch, Fix wrong usage of source port rewrite in split rules + - net/mlx5: E-switch, Fix missing set of split_count when forward to ovs + internal port + - net/mlx5e: Fix cleanup null-ptr deref on encap lock + - net/mlx5: Set BREAK_FW_WAIT flag first when removing driver + - veth: Fix use after free in XDP_REDIRECT + - ice: xsk: disable txq irq before flushing hw + - net: dsa: don't error out when drivers return ETH_DATA_LEN in + .port_max_mtu() + - net: dsa: mv88e6xxx: fix max_mtu of 1492 on 6165, 6191, 6220, 6250, 6290 + - ravb: avoid PHY being resumed when interface is not up + - sh_eth: avoid PHY being resumed when interface is not up + - ipv4: Fix incorrect table ID in IOCTL path + - net: usb: smsc75xx: Move packet length check to prevent kernel panic in + skb_pull + - net: atlantic: Fix crash when XDP is enabled but no program is loaded + - net/iucv: Fix size of interrupt data + - i825xx: sni_82596: use eth_hw_addr_set() + - qed/qed_mng_tlv: correctly zero out ->min instead of ->hour + - net: dsa: microchip: fix RGMII delay configuration on + KSZ8765/KSZ8794/KSZ8795 + - ethernet: sun: add check for the mdesc_grab() + - net: renesas: rswitch: Rename rings in struct rswitch_gwca_queue + - net: renesas: rswitch: Fix the output value of quote from rswitch_rx() + - bonding: restore IFF_MASTER/SLAVE flags on bond enslave ether type change + - bonding: restore bond's IFF_SLAVE flag if a non-eth dev enslave fails + - hwmon: (adt7475) Display smoothing attributes in correct order + - hwmon: (adt7475) Fix masking of hysteresis registers + - hwmon: (xgene) Fix use after free bug in xgene_hwmon_remove due to race + condition + - hwmon: (ina3221) return prober error code + - hwmon: (ucd90320) Add minimum delay between bus accesses + - hwmon: tmp512: drop of_match_ptr for ID table + - kconfig: Update config changed flag before calling callback + - hwmon: (adm1266) Set `can_sleep` flag for GPIO chip + - hwmon: (ltc2992) Set `can_sleep` flag for GPIO chip + - media: m5mols: fix off-by-one loop termination error + - ext4: update s_journal_inum if it changes after journal replay + - ext4: fix task hung in ext4_xattr_delete_inode + - drm/amdkfd: Fix an illegal memory access + - net/9p: fix bug in client create for .L + - LoongArch: Only call get_timer_irq() once in constant_clockevent_init() + - sh: intc: Avoid spurious sizeof-pointer-div warning + - drm/amdgpu: fix ttm_bo calltrace warning in psp_hw_fini + - drm/amd/display: fix shift-out-of-bounds in CalculateVMAndRowBytes + - ext4: fix possible double unlock when moving a directory + - Revert "tty: serial: fsl_lpuart: adjust SERIAL_FSL_LPUART_CONSOLE config + dependency" + - tty: serial: fsl_lpuart: fix race on RX DMA shutdown + - tty: serial: fsl_lpuart: skip waiting for transmission complete when + UARTCTRL_SBK is asserted + - serial: 8250_em: Fix UART port type + - serial: 8250_fsl: fix handle_irq locking + - serial: 8250: ASPEED_VUART: select REGMAP instead of depending on it + - firmware: xilinx: don't make a sleepable memory allocation from an atomic + context + - memory: tegra: fix interconnect registration race + - memory: tegra20-emc: fix interconnect registration race + - memory: tegra124-emc: fix interconnect registration race + - memory: tegra30-emc: fix interconnect registration race + - drm/ttm: Fix a NULL pointer dereference + - s390/ipl: add missing intersection check to ipl_report handling + - interconnect: fix icc_provider_del() error handling + - interconnect: fix provider registration API + - interconnect: imx: fix registration race + - interconnect: fix mem leak when freeing nodes + - interconnect: qcom: osm-l3: fix registration race + - interconnect: qcom: rpm: fix probe child-node error handling + - interconnect: qcom: rpm: fix registration race + - interconnect: qcom: rpmh: fix probe child-node error handling + - interconnect: qcom: rpmh: fix registration race + - interconnect: qcom: msm8974: fix registration race + - interconnect: exynos: fix node leak in probe PM QoS error path + - interconnect: exynos: fix registration race + - md: select BLOCK_LEGACY_AUTOLOAD + - cifs: generate signkey for the channel that's reconnecting + - tracing: Make splice_read available again + - tracing: Do not let histogram values have some modifiers + - tracing: Check field value in hist_field_name() + - tracing: Make tracepoint lockdep check actually test something + - cifs: Fix smb2_set_path_size() + - cifs: set DFS root session in cifs_get_smb_ses() + - cifs: fix use-after-free bug in refresh_cache_worker() + - cifs: return DFS root session id in DebugData + - cifs: use DFS root session instead of tcon ses + - KVM: SVM: Fix a benign off-by-one bug in AVIC physical table mask + - KVM: SVM: Modify AVIC GATag to support max number of 512 vCPUs + - ALSA: hda: intel-dsp-config: add MTL PCI id + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro + - Revert "riscv: mm: notify remote harts about mmu cache updates" + - riscv: asid: Fixup stale TLB entry cause application crash + - drm/edid: fix info leak when failing to get panel id + - drm/shmem-helper: Remove another errant put in error path + - drm/sun4i: fix missing component unbind on bind errors + - drm/i915/active: Fix misuse of non-idle barriers as fence trackers + - drm/i915/dg2: Add HDMI pixel clock frequencies 267.30 and 319.89 MHz + - drm/amdgpu: Don't resume IOMMU after incomplete init + - drm/amd/pm: Fix sienna cichlid incorrect OD volage after resume + - drm/amdgpu/vcn: Disable indirect SRAM on Vangogh broken BIOSes + - drm/amd/pm: bump SMU 13.0.4 driver_if header version + - drm/amd/display: Do not set DRR on pipe Commit + - drm/amd/display: disconnect MPCC only on OTG change + - drm/amd/display: Write to correct dirty_rect + - mptcp: fix possible deadlock in subflow_error_report + - mptcp: refactor passive socket initialization + - mptcp: use the workqueue to destroy unaccepted sockets + - mptcp: fix UaF in listener shutdown + - mptcp: add ro_after_init for tcp{,v6}_prot_override + - mptcp: avoid setting TCP_CLOSE state twice + - mptcp: fix lockdep false positive in mptcp_pm_nl_create_listen_socket() + - ftrace: Fix invalid address access in lookup_rec() when index is 0 + - ocfs2: fix data corruption after failed write + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Netac NV3000 + - ice: avoid bonding causing auxiliary plug/unplug under RTNL lock + - vp_vdpa: fix the crash in hot unplug with vp_vdpa + - mm/userfaultfd: propagate uffd-wp bit when PTE-mapping the huge zeropage + - mm: teach mincore_hugetlb about pte markers + - powerpc/64: Set default CPU in Kconfig + - powerpc/boot: Don't always pass -mcpu=powerpc when building 32-bit uImage + - mmc: sdhci_am654: lower power-on failed message severity + - fbdev: stifb: Provide valid pixelclock and add fb_check_var() checks + - trace/hwlat: Do not wipe the contents of per-cpu thread data + - trace/hwlat: Do not start per-cpu thread if it is already running + - ACPI: PPTT: Fix to avoid sleep in the atomic context when PPTT is absent + - net: phy: nxp-c45-tja11xx: fix MII_BASIC_CONFIG_REV bit + - fbdev: Fix incorrect page mapping clearance at fb_deferred_io_release() + - RISC-V: mm: Support huge page in vmalloc_fault() + - io_uring/msg_ring: let target know allocated index + - cpuidle: psci: Iterate backwards over list in psci_pd_remove() + - ASoC: Intel: soc-acpi: fix copy-paste issue in topology names + - ASoC: qcom: q6prm: fix incorrect clk_root passed to ADSP + - x86/mce: Make sure logged MCEs are processed after sysfs update + - x86/mm: Fix use of uninitialized buffer in sme_enable() + - x86/resctrl: Clear staged_config[] before and after it is used + - powerpc: Pass correct CPU reference to assembler + - virt/coco/sev-guest: Check SEV_SNP attribute at probe time + - virt/coco/sev-guest: Simplify extended guest request handling + - virt/coco/sev-guest: Remove the disable_vmpck label in + handle_guest_request() + - virt/coco/sev-guest: Carve out the request issuing logic into a helper + - virt/coco/sev-guest: Do some code style cleanups + - virt/coco/sev-guest: Convert the sw_exit_info_2 checking to a switch-case + - virt/coco/sev-guest: Add throttling awareness + - perf: Fix check before add_event_to_groups() in perf_group_detach() + - powerpc: Disable CPU unknown by CLANG when CC_IS_CLANG + - powerpc/64: Replace -mcpu=e500mc64 by -mcpu=e5500 + - Linux 6.2.8 + - [Config] ppc64: updateconfigs following v6.2.8 stable updates + + * Lunar update: v6.2.8 upstream stable release (LP: #2016876) // + CVE-2023-30456 + - KVM: nVMX: add missing consistency checks for CR0 and CR4 + + * Lunar update: v6.2.7 upstream stable release (LP: #2016875) + - fs: prevent out-of-bounds array speculation when closing a file descriptor + - btrfs: fix unnecessary increment of read error stat on write error + - btrfs: fix percent calculation for bg reclaim message + - btrfs: fix block group item corruption after inserting new block group + - io_uring/uring_cmd: ensure that device supports IOPOLL + - erofs: fix wrong kunmap when using LZMA on HIGHMEM platforms + - perf inject: Fix --buildid-all not to eat up MMAP2 + - fork: allow CLONE_NEWTIME in clone3 flags + - RISC-V: Stop emitting attributes + - thermal: intel: int340x: processor_thermal: Fix deadlock + - x86/CPU/AMD: Disable XSAVES on AMD family 0x17 + - drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc15 + - drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc21 + - drm/amdgpu: fix error checking in amdgpu_read_mm_registers for nv + - drm/display: Don't block HDR_OUTPUT_METADATA on unknown EOTF + - drm/connector: print max_requested_bpc in state debugfs + - drm/msm/adreno: fix runtime PM imbalance at unbind + - staging: rtl8723bs: Fix key-store index handling + - staging: rtl8723bs: Pass correct parameters to cfg80211_get_bss() + - ext4: fix cgroup writeback accounting with fs-layer encryption + - ext4: fix RENAME_WHITEOUT handling for inline directories + - ext4: fix another off-by-one fsmap error on 1k block filesystems + - ext4: move where set the MAY_INLINE_DATA flag is set + - ext4: fix WARNING in ext4_update_inline_data + - ext4: zero i_disksize when initializing the bootloader inode + - HID: core: Provide new max_buffer_size attribute to over-ride the default + - HID: uhid: Over-ride the default maximum data buffer value with our own + - nfc: change order inside nfc_se_io error path + - KVM: VMX: Reset eVMCS controls in VP assist page during hardware disabling + - KVM: VMX: Don't bother disabling eVMCS static key on module exit + - KVM: x86: Move guts of kvm_arch_init() to standalone helper + - KVM: VMX: Do _all_ initialization before exposing /dev/kvm to userspace + - udf: Fix off-by-one error when discarding preallocation + - bus: mhi: ep: Power up/down MHI stack during MHI RESET + - bus: mhi: ep: Change state_lock to mutex + - drm/i915: Introduce intel_panel_init_alloc() + - drm/i915: Do panel VBT init early if the VBT declares an explicit panel type + - drm/i915: Populate encoder->devdata for DSI on icl+ + - block: Revert "block: Do not reread partition table on exclusively open + device" + - block: fix scan partition for exclusively open device again + - riscv: Add header include guards to insn.h + - scsi: core: Remove the /proc/scsi/${proc_name} directory earlier + - ext4: Fix possible corruption when moving a directory + - drm/nouveau/kms/nv50: fix nv50_wndw_new_ prototype + - drm/nouveau/fb/gp102-: cache scrubber binary on first load + - drm/msm: Fix potential invalid ptr free + - drm/msm/a5xx: fix setting of the CP_PREEMPT_ENABLE_LOCAL register + - drm/msm/a5xx: fix highest bank bit for a530 + - drm/msm/a5xx: fix the emptyness check in the preempt code + - drm/msm/a5xx: fix context faults during ring switch + - bgmac: fix *initial* chip reset to support BCM5358 + - nfc: fdp: add null check of devm_kmalloc_array in + fdp_nci_i2c_read_device_properties + - powerpc: dts: t1040rdb: fix compatible string for Rev A boards + - tls: rx: fix return value for async crypto + - drm/msm/dpu: disable features unsupported by QCM2290 + - ila: do not generate empty messages in ila_xlat_nl_cmd_get_mapping() + - net: lan966x: Fix port police support using tc-matchall + - selftests: nft_nat: ensuring the listening side is up before starting the + client + - netfilter: nft_last: copy content when cloning expression + - netfilter: nft_quota: copy content when cloning expression + - net: tls: fix possible race condition between do_tls_getsockopt_conf() and + do_tls_setsockopt_conf() + - net: use indirect calls helpers for sk_exit_memory_pressure() + - perf stat: Fix counting when initial delay configured + - net: lan78xx: fix accessing the LAN7800's internal phy specific registers + from the MAC driver + - net: caif: Fix use-after-free in cfusbl_device_notify() + - ice: copy last block omitted in ice_get_module_eeprom() + - nfp: fix incorrectly set csum flag for nfd3 path + - nfp: fix esp-tx-csum-offload doesn't take effect + - bpf, sockmap: Fix an infinite loop error when len is 0 in + tcp_bpf_recvmsg_parser() + - drm/msm/dpu: fix len of sc7180 ctl blocks + - drm/msm/dpu: fix sm6115 and qcm2290 mixer width limits + - drm/msm/dpu: correct sm8250 and sm8350 scaler + - drm/msm/dpu: correct sm6115 scaler + - drm/msm/dpu: drop DPU_DIM_LAYER from MIXER_MSM8998_MASK + - drm/msm/dpu: fix clocks settings for msm8998 SSPP blocks + - drm/msm/disp/dpu: fix sc7280_pp base offset + - drm/msm/dpu: clear DSPP reservations in rm release + - net: stmmac: add to set device wake up flag when stmmac init phy + - net: phylib: get rid of unnecessary locking + - bnxt_en: Avoid order-5 memory allocation for TPA data + - netfilter: ctnetlink: revert to dumping mark regardless of event type + - netfilter: tproxy: fix deadlock due to missing BH disable + - m68k: mm: Move initrd phys_to_virt handling after paging_init() + - btrfs: fix extent map logging bit not cleared for split maps after dropping + range + - bpf, test_run: fix &xdp_frame misplacement for LIVE_FRAMES + - btf: fix resolving BTF_KIND_VAR after ARRAY, STRUCT, UNION, PTR + - net: phy: smsc: fix link up detection in forced irq mode + - net: ethernet: mtk_eth_soc: fix RX data corruption issue + - net: tls: fix device-offloaded sendpage straddling records + - scsi: megaraid_sas: Update max supported LD IDs to 240 + - scsi: sd: Fix wrong zone_write_granularity value during revalidate + - netfilter: conntrack: adopt safer max chain length + - platform/x86: dell-ddv: Return error if buffer is empty + - platform/x86: dell-ddv: Fix temperature scaling + - platform: mellanox: select REGMAP instead of depending on it + - platform: x86: MLX_PLATFORM: select REGMAP instead of depending on it + - block: fix wrong mode for blkdev_put() from disk_scan_partitions() + - NFSD: Protect against filesystem freezing + - ice: Fix DSCP PFC TLV creation + - ethernet: ice: avoid gcc-9 integer overflow warning + - net/smc: fix fallback failed while sendmsg with fastopen + - octeontx2-af: Unlock contexts in the queue context cache in case of fault + detection + - SUNRPC: Fix a server shutdown leak + - net: dsa: mt7530: permit port 5 to work without port 6 on MT7621 SoC + - af_unix: fix struct pid leaks in OOB support + - erofs: Revert "erofs: fix kvcalloc() misuse with __GFP_NOFAIL" + - riscv: Use READ_ONCE_NOCHECK in imprecise unwinding stack mode + - RISC-V: Don't check text_mutex during stop_machine + - drm/amdgpu: fix return value check in kfd + - ext4: Fix deadlock during directory rename + - RISC-V: take text_mutex during alternative patching + - drm/amdgpu/soc21: don't expose AV1 if VCN0 is harvested + - drm/amdgpu/soc21: Add video cap query support for VCN_4_0_4 + - watch_queue: fix IOC_WATCH_QUEUE_SET_SIZE alloc error paths + - tpm/eventlog: Don't abort tpm_read_log on faulty ACPI address + - MIPS: Fix a compilation issue + - powerpc/64: Don't recurse irq replay + - powerpc/iommu: fix memory leak with using debugfs_lookup() + - clk: renesas: rcar-gen3: Disable R-Car H3 ES1.* + - powerpc: Remove __kernel_text_address() in show_instructions() + - powerpc/bpf/32: Only set a stack frame when necessary + - powerpc/64: Fix task_cpu in early boot when booting non-zero cpuid + - powerpc/64: Move paca allocation to early_setup() + - powerpc/kcsan: Exclude udelay to prevent recursive instrumentation + - alpha: fix R_ALPHA_LITERAL reloc for large modules + - macintosh: windfarm: Use unsigned type for 1-bit bitfields + - PCI: Add SolidRun vendor ID + - scripts: handle BrokenPipeError for python scripts + - media: ov5640: Fix analogue gain control + - media: rc: gpio-ir-recv: add remove function + - drm/amd/display: Allow subvp on vactive pipes that are 2560x1440@60 + - drm/amd/display: adjust MALL size available for DCN32 and DCN321 + - filelocks: use mount idmapping for setlease permission check + - Revert "bpf, test_run: fix &xdp_frame misplacement for LIVE_FRAMES" + - RISC-V: fix taking the text_mutex twice during sifive errata patching + - UML: define RUNTIME_DISCARD_EXIT + - Linux 6.2.7 + + * Miscellaneous Ubuntu changes + - [Packaging] Move final-checks script to debian/scripts/checks + - [Packaging] checks/final-checks: Honor 'do_skip_checks' + - [Packaging] Drop wireguard DKMS + - [Packaging] Remove update-version-dkms + - [Packaging] debian/rules: Add DKMS info to 'printenv' output + + * Miscellaneous upstream changes + - Revert "Revert "mm: kfence: apply kmemleak_ignore_phys on early allocated + pool"" + + -- Roxana Nicolescu Wed, 17 May 2023 16:44:59 +0200 + +linux (6.2.0-21.21) lunar; urgency=medium + + * lunar/linux: 6.2.0-21.21 -proposed tracker (LP: #2016249) + + * efivarfs:efivarfs.sh in ubuntu_kernel_selftests crash L-6.2 ARM64 node + dazzle (rcu_preempt detected stalls) (LP: #2015741) + - efi/libstub: smbios: Use length member instead of record struct size + - arm64: efi: Use SMBIOS processor version to key off Ampere quirk + - efi/libstub: smbios: Drop unused 'recsize' parameter + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/bpf: ignore pointer types check with clang + - SAUCE: selftests/bpf: avoid conflicting data types in profiler.inc.h + - [Packaging] get rid of unnecessary artifacts in linux-headers + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: Revert "efi: random: refresh non-volatile random seed + when RNG is initialized"" + - Revert "UBUNTU: SAUCE: Revert "efi: random: fix NULL-deref when refreshing + seed"" + + -- Andrea Righi Fri, 14 Apr 2023 12:11:49 +0200 + +linux (6.2.0-20.20) lunar; urgency=medium + + * lunar/linux: 6.2.0-20.20 -proposed tracker (LP: #2015429) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * FTBFS with different dkms or when makeflags are set (LP: #2015361) + - [Packaging] FTBFS with different dkms or when makeflags are set + + * expoline.o is packaged unconditionally for s390x (LP: #2013209) + - [Packaging] Copy expoline.o only when produced by the build + + * net:l2tp.sh failure with lunar:linux 6.2 (LP: #2013014) + - SAUCE: l2tp: generate correct module alias strings + + * Miscellaneous Ubuntu changes + - [Packaging] annotations: prevent duplicate include lines + + -- Andrea Righi Thu, 06 Apr 2023 08:33:14 +0200 + +linux (6.2.0-19.19) lunar; urgency=medium + + * lunar/linux: 6.2.0-19.19 -proposed tracker (LP: #2012488) + + * Neuter signing tarballs (LP: #2012776) + - [Packaging] neuter the signing tarball + + * LSM stacking and AppArmor refresh for 6.2 kernel (LP: #2012136) + - Revert "UBUNTU: [Config] define CONFIG_SECURITY_APPARMOR_RESTRICT_USERNS" + - Revert "UBUNTU: SAUCE: apparmor: add user namespace creation mediation" + - Revert "UBUNTU: SAUCE: apparmor: Add fine grained mediation of posix + mqueues" + - Revert "UBUNTU: SAUCE: Revert "apparmor: make __aa_path_perm() static"" + - 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: AppArmor: Remove the exclusive flag" + - Revert "UBUNTU: SAUCE: LSM: Add /proc attr entry for full LSM context" + - Revert "UBUNTU: SAUCE: Audit: Fix incorrect static inline function + declration." + - Revert "UBUNTU: SAUCE: Audit: Fix for missing NULL check" + - Revert "UBUNTU: SAUCE: Audit: Add a new record for multiple object LSM + attributes" + - 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 "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: apparmor: rename SK_CTX() to aa_sock and make it an inline fn + - SAUCE: apparmor: Add sysctls for additional controls of unpriv userns + restrictions + - SAUCE: Stacking v38: LSM: Identify modules by more than name + - SAUCE: Stacking v38: LSM: Add an LSM identifier for external use + - SAUCE: Stacking v38: LSM: Identify the process attributes for each module + - SAUCE: Stacking v38: LSM: Maintain a table of LSM attribute data + - SAUCE: Stacking v38: proc: Use lsmids instead of lsm names for attrs + - SAUCE: Stacking v38: integrity: disassociate ima_filter_rule from + security_audit_rule + - SAUCE: Stacking v38: LSM: Infrastructure management of the sock security + - SAUCE: Stacking v38: LSM: Add the lsmblob data structure. + - SAUCE: Stacking v38: LSM: provide lsm name and id slot mappings + - SAUCE: Stacking v38: IMA: avoid label collisions with stacked LSMs + - SAUCE: Stacking v38: LSM: Use lsmblob in security_audit_rule_match + - SAUCE: Stacking v38: LSM: Use lsmblob in security_kernel_act_as + - SAUCE: Stacking v38: LSM: Use lsmblob in security_secctx_to_secid + - SAUCE: Stacking v38: LSM: Use lsmblob in security_secid_to_secctx + - SAUCE: Stacking v38: LSM: Use lsmblob in security_ipc_getsecid + - SAUCE: Stacking v38: LSM: Use lsmblob in security_current_getsecid + - SAUCE: Stacking v38: LSM: Use lsmblob in security_inode_getsecid + - SAUCE: Stacking v38: LSM: Use lsmblob in security_cred_getsecid + - SAUCE: Stacking v38: LSM: Specify which LSM to display + - SAUCE: Stacking v38: LSM: Ensure the correct LSM context releaser + - SAUCE: Stacking v38: LSM: Use lsmcontext in security_secid_to_secctx + - SAUCE: Stacking v38: LSM: Use lsmcontext in security_inode_getsecctx + - SAUCE: Stacking v38: Use lsmcontext in security_dentry_init_security + - SAUCE: Stacking v38: LSM: security_secid_to_secctx in netlink netfilter + - SAUCE: Stacking v38: NET: Store LSM netlabel data in a lsmblob + - SAUCE: Stacking v38: binder: Pass LSM identifier for confirmation + - SAUCE: Stacking v38: LSM: security_secid_to_secctx module selection + - SAUCE: Stacking v38: Audit: Keep multiple LSM data in audit_names + - SAUCE: Stacking v38: Audit: Create audit_stamp structure + - SAUCE: Stacking v38: LSM: Add a function to report multiple LSMs + - SAUCE: Stacking v38: Audit: Allow multiple records in an audit_buffer + - SAUCE: Stacking v38: Audit: Add record for multiple task security contexts + - SAUCE: Stacking v38: audit: multiple subject lsm values for netlabel + - SAUCE: Stacking v38: Audit: Add record for multiple object contexts + - SAUCE: Stacking v38: netlabel: Use a struct lsmblob in audit data + - SAUCE: Stacking v38: LSM: Removed scaffolding function lsmcontext_init + - SAUCE: Stacking v38: AppArmor: Remove the exclusive flag + - SAUCE: apparmor: combine common_audit_data and apparmor_audit_data + - SAUCE: apparmor: setup slab cache for audit data + - SAUCE: apparmor: rename audit_data->label to audit_data->subj_label + - SAUCE: apparmor: pass cred through to audit info. + - SAUCE: apparmor: Improve debug print infrastructure + - SAUCE: apparmor: add the ability for profiles to have a learning cache + - SAUCE: apparmor: enable userspace upcall for mediation + - SAUCE: apparmor: cache buffers on percpu list if there is lock contention + - SAUCE: apparmor: fix policy_compat permission remap with extended + permissions + - SAUCE: apparmor: advertise availability of exended perms + - [Config] define CONFIG_SECURITY_APPARMOR_RESTRICT_USERNS + + * kinetic: apply new apparmor and LSM stacking patch set (LP: #1989983) // LSM + stacking and AppArmor refresh for 6.2 kernel (LP: #2012136) + - SAUCE: apparmor: add/use fns to print hash string hex value + - SAUCE: apparmor: patch to provide compatibility with v2.x net rules + - SAUCE: apparmor: add user namespace creation mediation + - SAUCE: apparmor: af_unix mediation + - SAUCE: apparmor: Add fine grained mediation of posix mqueues + + * 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 + + * 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 + + -- Andrea Righi Sat, 25 Mar 2023 07:37:30 +0100 + +linux (6.2.0-18.18) lunar; urgency=medium + + * lunar/linux: 6.2.0-18.18 -proposed tracker (LP: #2011750) + + * lunar/linux 6.2 fails to boot on arm64 (LP: #2011748) + - SAUCE: Revert "efi: random: fix NULL-deref when refreshing seed" + - SAUCE: Revert "efi: random: refresh non-volatile random seed when RNG is + initialized" + + -- Andrea Righi Wed, 15 Mar 2023 23:54:18 +0100 + +linux (6.2.0-17.17) lunar; urgency=medium + + * lunar/linux: 6.2.0-17.17 -proposed tracker (LP: #2011593) + + * lunar/linux 6.2 fails to boot on ppc64el (LP: #2011413) + - SAUCE: Revert "powerpc: remove STACK_FRAME_OVERHEAD" + - SAUCE: Revert "powerpc/pseries: hvcall stack frame overhead" + + * Speaker / Audio/Mic mute LED don't work on a HP platform (LP: #2011379) + - SAUCE: ALSA: hda/realtek: fix speaker, mute/micmute LEDs not work on a HP + platform + + * Some QHD panels fail to refresh when PSR2 enabled (LP: #2009014) + - SAUCE: drm/i915/psr: Use calculated io and fast wake lines + + * Lunar update: v6.2.6 upstream stable release (LP: #2011431) + - tpm: disable hwrng for fTPM on some AMD designs + - wifi: cfg80211: Partial revert "wifi: cfg80211: Fix use after free for wext" + - staging: rtl8192e: Remove function ..dm_check_ac_dc_power calling a script + - staging: rtl8192e: Remove call_usermodehelper starting RadioPower.sh + - Linux 6.2.6 + + * Lunar update: v6.2.5 upstream stable release (LP: #2011430) + - net/sched: Retire tcindex classifier + - auxdisplay: hd44780: Fix potential memory leak in hd44780_remove() + - fs/jfs: fix shift exponent db_agl2size negative + - driver: soc: xilinx: fix memory leak in xlnx_add_cb_for_notify_event() + - f2fs: don't rely on F2FS_MAP_* in f2fs_iomap_begin + - f2fs: fix to avoid potential deadlock + - objtool: Fix memory leak in create_static_call_sections() + - soc: mediatek: mtk-pm-domains: Allow mt8186 ADSP default power on + - soc: qcom: socinfo: Fix soc_id order + - memory: renesas-rpc-if: Split-off private data from struct rpcif + - memory: renesas-rpc-if: Move resource acquisition to .probe() + - soc: mediatek: mtk-svs: Enable the IRQ later + - pwm: sifive: Always let the first pwm_apply_state succeed + - pwm: stm32-lp: fix the check on arr and cmp registers update + - f2fs: introduce trace_f2fs_replace_atomic_write_block + - f2fs: clear atomic_write_task in f2fs_abort_atomic_write() + - soc: mediatek: mtk-svs: restore default voltages when svs_init02() fail + - soc: mediatek: mtk-svs: reset svs when svs_resume() fail + - soc: mediatek: mtk-svs: Use pm_runtime_resume_and_get() in svs_init01() + - f2fs: fix to do sanity check on extent cache correctly + - fs: f2fs: initialize fsdata in pagecache_write() + - f2fs: allow set compression option of files without blocks + - f2fs: fix to abort atomic write only during do_exist() + - um: vector: Fix memory leak in vector_config + - ubi: ensure that VID header offset + VID header size <= alloc, size + - ubifs: Fix build errors as symbol undefined + - ubifs: Fix memory leak in ubifs_sysfs_init() + - ubifs: Rectify space budget for ubifs_symlink() if symlink is encrypted + - ubifs: Rectify space budget for ubifs_xrename() + - ubifs: Fix wrong dirty space budget for dirty inode + - ubifs: do_rename: Fix wrong space budget when target inode's nlink > 1 + - ubifs: Reserve one leb for each journal head while doing budget + - ubi: Fix use-after-free when volume resizing failed + - ubi: Fix unreferenced object reported by kmemleak in ubi_resize_volume() + - ubifs: Fix memory leak in alloc_wbufs() + - ubi: Fix possible null-ptr-deref in ubi_free_volume() + - ubifs: Re-statistic cleaned znode count if commit failed + - ubifs: dirty_cow_znode: Fix memleak in error handling path + - ubifs: ubifs_writepage: Mark page dirty after writing inode failed + - ubifs: ubifs_releasepage: Remove ubifs_assert(0) to valid this process + - ubi: fastmap: Fix missed fm_anchor PEB in wear-leveling after disabling + fastmap + - ubi: Fix UAF wear-leveling entry in eraseblk_count_seq_show() + - ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed + - f2fs: fix to handle F2FS_IOC_START_ATOMIC_REPLACE in f2fs_compat_ioctl() + - f2fs: fix to avoid potential memory corruption in __update_iostat_latency() + - f2fs: fix to update age extent correctly during truncation + - f2fs: fix to update age extent in f2fs_do_zero_range() + - soc: qcom: stats: Populate all subsystem debugfs files + - f2fs: introduce IS_F2FS_IPU_* macro + - f2fs: fix to set ipu policy + - ext4: use ext4_fc_tl_mem in fast-commit replay path + - ext4: don't show commit interval if it is zero + - netfilter: nf_tables: allow to fetch set elements when table has an owner + - x86: um: vdso: Add '%rcx' and '%r11' to the syscall clobber list + - um: virtio_uml: free command if adding to virtqueue failed + - um: virtio_uml: mark device as unregistered when breaking it + - um: virtio_uml: move device breaking into workqueue + - um: virt-pci: properly remove PCI device from bus + - f2fs: synchronize atomic write aborts + - watchdog: rzg2l_wdt: Issue a reset before we put the PM clocks + - watchdog: rzg2l_wdt: Handle TYPE-B reset for RZ/V2M + - watchdog: at91sam9_wdt: use devm_request_irq to avoid missing free_irq() in + error path + - watchdog: Fix kmemleak in watchdog_cdev_register + - watchdog: pcwd_usb: Fix attempting to access uninitialized memory + - watchdog: sbsa_wdog: Make sure the timeout programming is within the limits + - netfilter: ctnetlink: fix possible refcount leak in + ctnetlink_create_conntrack() + - netfilter: conntrack: fix rmmod double-free race + - netfilter: ip6t_rpfilter: Fix regression with VRF interfaces + - netfilter: ebtables: fix table blob use-after-free + - netfilter: xt_length: use skb len to match in length_mt6 + - netfilter: ctnetlink: make event listener tracking global + - netfilter: x_tables: fix percpu counter block leak on error path when + creating new netns + - swiotlb: mark swiotlb_memblock_alloc() as __init + - ptp: vclock: use mutex to fix "sleep on atomic" bug + - drm/i915: move a Kconfig symbol to unbreak the menu presentation + - ipv6: Add lwtunnel encap size of all siblings in nexthop calculation + - drm/i915/xelpmp: Consider GSI offset when doing MCR lookups + - octeontx2-pf: Recalculate UDP checksum for ptp 1-step sync packet + - net: sunhme: Fix region request + - sctp: add a refcnt in sctp_stream_priorities to avoid a nested loop + - octeontx2-pf: Use correct struct reference in test condition + - net: fix __dev_kfree_skb_any() vs drop monitor + - 9p/xen: fix version parsing + - 9p/xen: fix connection sequence + - 9p/rdma: unmap receive dma buffer in rdma_request()/post_recv() + - spi: tegra210-quad: Fix validate combined sequence + - mlx5: fix skb leak while fifo resync and push + - mlx5: fix possible ptp queue fifo use-after-free + - net/mlx5: ECPF, wait for VF pages only after disabling host PFs + - net/mlx5e: Verify flow_source cap before using it + - net/mlx5: Geneve, Fix handling of Geneve object id as error code + - ext4: fix incorrect options show of original mount_opt and extend mount_opt2 + - nfc: fix memory leak of se_io context in nfc_genl_se_io + - net/sched: transition act_pedit to rcu and percpu stats + - net/sched: act_pedit: fix action bind logic + - net/sched: act_mpls: fix action bind logic + - net/sched: act_sample: fix action bind logic + - net: dsa: seville: ignore mscc-miim read errors from Lynx PCS + - net: dsa: felix: fix internal MDIO controller resource length + - ARM: dts: aspeed: p10bmc: Update battery node name + - ARM: dts: spear320-hmi: correct STMPE GPIO compatible + - tcp: tcp_check_req() can be called from process context + - vc_screen: modify vcs_size() handling in vcs_read() + - spi: tegra210-quad: Fix iterator outside loop + - rtc: sun6i: Always export the internal oscillator + - genirq/ipi: Fix NULL pointer deref in irq_data_get_affinity_mask() + - scsi: ipr: Work around fortify-string warning + - scsi: mpi3mr: Fix an issue found by KASAN + - scsi: mpi3mr: Use number of bits to manage bitmap sizes + - rtc: allow rtc_read_alarm without read_alarm callback + - io_uring: fix size calculation when registering buf ring + - loop: loop_set_status_from_info() check before assignment + - ASoC: adau7118: don't disable regulators on device unbind + - ASoC: apple: mca: Fix final status read on SERDES reset + - ASoC: apple: mca: Fix SERDES reset sequence + - ASoC: apple: mca: Improve handling of unavailable DMA channels + - nvme: bring back auto-removal of deleted namespaces during sequential scan + - nvme-tcp: don't access released socket during error recovery + - nvme-fabrics: show well known discovery name + - ASoC: zl38060 add gpiolib dependency + - ASoC: mediatek: mt8195: add missing initialization + - thermal: intel: quark_dts: fix error pointer dereference + - thermal: intel: BXT_PMIC: select REGMAP instead of depending on it + - cpufreq: apple-soc: Fix an IS_ERR() vs NULL check + - tracing: Add NULL checks for buffer in ring_buffer_free_read_page() + - kernel/printk/index.c: fix memory leak with using debugfs_lookup() + - firmware/efi sysfb_efi: Add quirk for Lenovo IdeaPad Duet 3 + - bootconfig: Increase max nodes of bootconfig from 1024 to 8192 for DCC + support + - mfd: arizona: Use pm_runtime_resume_and_get() to prevent refcnt leak + - IB/hfi1: Update RMT size calculation + - iommu: Remove deferred attach check from __iommu_detach_device() + - PCI/ACPI: Account for _S0W of the target bridge in acpi_pci_bridge_d3() + - media: uvcvideo: Remove format descriptions + - media: uvcvideo: Handle cameras with invalid descriptors + - media: uvcvideo: Handle errors from calls to usb_string + - media: uvcvideo: Quirk for autosuspend in Logitech B910 and C910 + - media: uvcvideo: Silence memcpy() run-time false positive warnings + - USB: fix memory leak with using debugfs_lookup() + - cacheinfo: Fix shared_cpu_map to handle shared caches at different levels + - usb: fotg210: List different variants + - dt-bindings: usb: Add device id for Genesys Logic hub controller + - staging: emxx_udc: Add checks for dma_alloc_coherent() + - tty: fix out-of-bounds access in tty_driver_lookup_tty() + - tty: serial: fsl_lpuart: disable the CTS when send break signal + - serial: sc16is7xx: setup GPIO controller later in probe + - mei: bus-fixup:upon error print return values of send and receive + - tools/iio/iio_utils:fix memory leak + - bus: mhi: ep: Fix the debug message for MHI_PKT_TYPE_RESET_CHAN_CMD cmd + - iio: accel: mma9551_core: Prevent uninitialized variable in + mma9551_read_status_word() + - iio: accel: mma9551_core: Prevent uninitialized variable in + mma9551_read_config_word() + - media: uvcvideo: Add GUID for BGRA/X 8:8:8:8 + - soundwire: bus_type: Avoid lockdep assert in sdw_drv_probe() + - PCI/portdrv: Prevent LS7A Bus Master clearing on shutdown + - PCI: loongson: Prevent LS7A MRRS increases + - staging: pi433: fix memory leak with using debugfs_lookup() + - USB: dwc3: fix memory leak with using debugfs_lookup() + - USB: chipidea: fix memory leak with using debugfs_lookup() + - USB: ULPI: fix memory leak with using debugfs_lookup() + - USB: uhci: fix memory leak with using debugfs_lookup() + - USB: sl811: fix memory leak with using debugfs_lookup() + - USB: fotg210: fix memory leak with using debugfs_lookup() + - USB: isp116x: fix memory leak with using debugfs_lookup() + - USB: isp1362: fix memory leak with using debugfs_lookup() + - USB: gadget: gr_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: bcm63xx_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: lpc32xx_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: pxa25x_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: pxa27x_udc: fix memory leak with using debugfs_lookup() + - usb: host: xhci: mvebu: Iterate over array indexes instead of using pointer + math + - USB: ene_usb6250: Allocate enough memory for full object + - usb: uvc: Enumerate valid values for color matching + - usb: gadget: uvc: Make bSourceID read/write + - PCI: Align extra resources for hotplug bridges properly + - PCI: Take other bus devices into account when distributing resources + - PCI: Distribute available resources for root buses, too + - tty: pcn_uart: fix memory leak with using debugfs_lookup() + - misc: vmw_balloon: fix memory leak with using debugfs_lookup() + - drivers: base: component: fix memory leak with using debugfs_lookup() + - drivers: base: dd: fix memory leak with using debugfs_lookup() + - kernel/fail_function: fix memory leak with using debugfs_lookup() + - PCI: loongson: Add more devices that need MRRS quirk + - PCI: Add ACS quirk for Wangxun NICs + - PCI: pciehp: Add Qualcomm quirk for Command Completed erratum + - phy: rockchip-typec: Fix unsigned comparison with less than zero + - RDMA/cma: Distinguish between sockaddr_in and sockaddr_in6 by size + - soundwire: cadence: Remove wasted space in response_buf + - soundwire: cadence: Drain the RX FIFO after an IO timeout + - eth: fealnx: bring back this old driver + - net: tls: avoid hanging tasks on the tx_lock + - x86/resctl: fix scheduler confusion with 'current' + - vDPA/ifcvf: decouple hw features manipulators from the adapter + - vDPA/ifcvf: decouple config space ops from the adapter + - vDPA/ifcvf: alloc the mgmt_dev before the adapter + - vDPA/ifcvf: decouple vq IRQ releasers from the adapter + - vDPA/ifcvf: decouple config IRQ releaser from the adapter + - vDPA/ifcvf: decouple vq irq requester from the adapter + - vDPA/ifcvf: decouple config/dev IRQ requester and vectors allocator from the + adapter + - vDPA/ifcvf: ifcvf_request_irq works on ifcvf_hw + - vDPA/ifcvf: manage ifcvf_hw in the mgmt_dev + - vDPA/ifcvf: allocate the adapter in dev_add() + - drm/display/dp_mst: Add drm_atomic_get_old_mst_topology_state() + - drm/display/dp_mst: Fix down/up message handling after sink disconnect + - drm/display/dp_mst: Fix down message handling after a packet reception error + - drm/display/dp_mst: Fix payload addition on a disconnected sink + - drm/i915/dp_mst: Add the MST topology state for modesetted CRTCs + - drm/display/dp_mst: Handle old/new payload states in drm_dp_remove_payload() + - drm/i915/dp_mst: Fix payload removal during output disabling + - drm/i915: Fix system suspend without fbdev being initialized + - media: uvcvideo: Fix race condition with usb_kill_urb + - arm64: efi: Make efi_rt_lock a raw_spinlock + - usb: gadget: uvc: fix missing mutex_unlock() if kstrtou8() fails + - Linux 6.2.5 + + * Lunar update: v6.2.4 upstream stable release (LP: #2011428) + - Revert "blk-cgroup: synchronize pd_free_fn() from blkg_free_workfn() and + blkcg_deactivate_policy()" + - Revert "blk-cgroup: dropping parent refcount after pd_free_fn() is done" + - Linux 6.2.4 + + * Lunar update: v6.2.3 upstream stable release (LP: #2011425) + - HID: asus: use spinlock to protect concurrent accesses + - HID: asus: use spinlock to safely schedule workers + - iommu/amd: Fix error handling for pdev_pri_ats_enable() + - iommu/amd: Skip attach device domain is same as new domain + - iommu/amd: Improve page fault error reporting + - iommu: Attach device group to old domain in error path + - powerpc/mm: Rearrange if-else block to avoid clang warning + - ata: ahci: Revert "ata: ahci: Add Tiger Lake UP{3,4} AHCI controller" + - 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: sm6115: Fix UFS node + - arm64: dts: qcom: sm6115: Provide xo clk to rpmcc + - arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k + - arm64: dts: qcom: pmi8950: Correct rev_1250v channel label to mv + - arm64: dts: qcom: sm6350: Fix up the ramoops node + - arm64: dts: qcom: sdm670-google-sargo: keep pm660 ldo8 on + - arm64: dts: qcom: Re-enable resin on MSM8998 and SDM845 boards + - arm64: dts: qcom: sm8350-sagami: Configure SLG51000 PMIC on PDX215 + - arm64: dts: qcom: sm8350-sagami: Add GPIO line names for PMIC GPIOs + - arm64: dts: qcom: sm8350-sagami: Rectify GPIO keys + - arm64: dts: qcom: sm6350-lena: Flatten gpio-keys pinctrl state + - arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings + - arm64: dts: qcom: sm6125-seine: Clean up gpio-keys (volume down) + - arm64: dts: imx8m: Align SoC unique ID node unit address + - ARM: zynq: Fix refcount leak in zynq_early_slcr_init + - fs: dlm: fix return value check in dlm_memory_init() + - arm64: dts: mediatek: mt8195: Add power domain to U3PHY1 T-PHY + - arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description + - arm64: dts: mediatek: mt8192: Fix systimer 13 MHz clock description + - arm64: dts: mediatek: mt8195: Fix systimer 13 MHz clock description + - arm64: dts: mediatek: mt8186: Fix systimer 13 MHz clock description + - arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name + - arm64: dts: qcom: sdm845-xiaomi-beryllium: fix audio codec interrupt pin + name + - x86/acpi/boot: Do not register processors that cannot be onlined for x2APIC + - arm64: dts: qcom: sc7180: correct SPMI bus address cells + - arm64: dts: qcom: sc7280: correct SPMI bus address cells + - arm64: dts: qcom: sc8280xp: correct SPMI bus address cells + - arm64: dts: qcom: sm8450: correct Soundwire wakeup interrupt name + - arm64: dts: qcom: sdm845: make DP node follow the schema + - arm64: dts: qcom: msm8996-oneplus-common: drop vdda-supply from DSI PHY + - arm64: dts: qcom: sc8280xp: Vote for CX in USB controllers + - arm64: dts: meson-gxl: jethub-j80: Fix WiFi MAC address node + - arm64: dts: meson-gxl: jethub-j80: Fix Bluetooth MAC node name + - arm64: dts: meson-axg: jethub-j1xx: Fix MAC address node names + - 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 + - cpuidle, intel_idle: Fix CPUIDLE_FLAG_IRQ_ENABLE *again* + - arm64: dts: ti: k3-am62-main: Fix clocks for McSPI + - arm64: tegra: Fix duplicate regulator on Jetson TX1 + - arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size + - arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem + - arm64: dts: qcom: msm8956: use SoC-specific compat for tsens + - arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names + - arm64: dts: qcom: ipq8074: fix Gen2 PCIe QMP PHY + - 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() + - arm64: dts: mediatek: mt8192: Mark scp_adsp clock as broken + - 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-axg-jethome-jethub-j1xx: fix supply name of USB + controller node + - 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-s905w-jethome-jethub-j80: fix invalid rtc + node name + - arm64: dts: amlogic: meson-axg-jethome-jethub-j1xx: fix invalid rtc 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-g12b-odroid-go-ultra: fix rk818 pmic properties + - 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: tegra: Mark host1x as dma-coherent on Tegra194/234 + - arm64: dts: renesas: beacon-renesom: Fix gpio expander reference + - arm64: dts: meson: radxa-zero: allow usb otg mode + - arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN + - ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference + - ublk_drv: remove nr_aborted_queues from ublk_device + - ublk_drv: don't probe partitions if the ubq daemon isn't trusted + - ARM: dts: imx7s: correct iomuxc gpr mux controller cells + - sbitmap: remove redundant check in __sbitmap_queue_get_batch + - sbitmap: correct wake_batch recalculation to avoid potential IO hung + - arm64: dts: mt8195: Fix CPU map for single-cluster SoC + - arm64: dts: mt8192: Fix CPU map for single-cluster SoC + - arm64: dts: mt8186: Fix CPU map for single-cluster SoC + - arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node + - arm64: dts: mediatek: mt8186: Fix watchdog compatible + - arm64: dts: mediatek: mt8195: Fix watchdog compatible + - arm64: dts: mediatek: mt7986: Fix watchdog compatible + - ARM: dts: stm32: Update part number NVMEM description on stm32mp131 + - arm64: dts: qcom: sm8450-nagara: Correct firmware paths + - blk-mq: avoid sleep in blk_mq_alloc_request_hctx + - blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx + - blk-mq: wait on correct sbitmap_queue in blk_mq_mark_tag_wait + - blk-mq: Fix potential io hung for shared sbitmap per tagset + - blk-mq: correct stale comment of .get_budget + - arm64: dts: qcom: msm8996: support using GPLL0 as kryocc input + - arm64: dts: qcom: msm8996 switch from RPM_SMD_BB_CLK1 to RPM_SMD_XO_CLK_SRC + - arm64: dts: qcom: sm8350: drop incorrect cells from serial + - arm64: dts: qcom: sm8450: drop incorrect cells from serial + - arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM + and MPSS memory regions + - arm64: dts: qcom: msm8953: correct TLMM gpio-ranges + - arm64: dts: qcom: sm6115: correct TLMM gpio-ranges + - arm64: dts: qcom: msm8992-lg-bullhead: Enable regulators + - s390/dasd: Fix potential memleak in dasd_eckd_init() + - io_uring,audit: don't log IORING_OP_MADVISE + - sched/rt: pick_next_rt_entity(): check list_entry + - perf/x86/intel/ds: Fix the conversion from TSC to perf time + - x86/perf/zhaoxin: Add stepping check for ZXC + - KEYS: asymmetric: Fix ECDSA use via keyctl uapi + - block: ublk: check IO buffer based on flag need_get_data + - arm64: dts: qcom: pmk8350: Use the correct PON compatible + - erofs: relinquish volume with mutex held + - block: sync mixed merged request's failfast with 1st bio's + - block: Fix io statistics for cgroup in throttle path + - block: bio-integrity: Copy flags when bio_integrity_payload is cloned + - block: use proper return value from bio_failfast() + - wifi: mt76: mt7915: add missing of_node_put() + - wifi: mt76: mt7921s: fix slab-out-of-bounds access in sdio host + - wifi: mt76: mt7915: fix mt7915_rate_txpower_get() resource leaks + - wifi: mt76: mt7996: fix insecure data handling of mt7996_mcu_ie_countdown() + - wifi: mt76: mt7996: fix insecure data handling of + mt7996_mcu_rx_radar_detected() + - wifi: mt76: mt7996: fix integer handling issue of mt7996_rf_regval_set() + - wifi: mt76: mt7915: check return value before accessing free_block_num + - wifi: mt76: mt7996: check return value before accessing free_block_num + - wifi: mt76: mt7915: drop always true condition of __mt7915_reg_addr() + - wifi: mt76: mt7996: drop always true condition of __mt7996_reg_addr() + - wifi: mt76: mt7996: fix endianness warning in mt7996_mcu_sta_he_tlv + - wifi: mt76: mt76x0: fix oob access in mt76x0_phy_get_target_power + - wifi: mt76: mt7996: fix unintended sign extension of mt7996_hw_queue_read() + - wifi: mt76: mt7915: fix unintended sign extension of mt7915_hw_queue_read() + - wifi: mt76: fix coverity uninit_use_in_call in + mt76_connac2_reverse_frag0_hdr_trans() + - wifi: mt76: mt7921: resource leaks at mt7921_check_offload_capability() + - 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: Fix assignment to bit field priv->pi_enabled + - wifi: rtl8xxxu: Fix assignment to bit field priv->cck_agc_report_type + - wifi: rtl8xxxu: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: rtw89: 8852c: rfk: correct DACK setting + - wifi: rtw89: 8852c: rfk: correct DPK settings + - wifi: rtlwifi: Fix global-out-of-bounds bug in + _rtl8812ae_phy_set_txpower_limit() + - libbpf: Fix single-line struct definition output in btf_dump + - 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: wilc1000: add missing unregister_netdev() in wilc_netdev_ifc_init() + - 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() + - libbpf: Fix invalid return address register in s390 + - crypto: x86/ghash - fix unaligned access in ghash_setkey() + - crypto: ux500 - update debug config after ux500 cryp driver removal + - 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 + - platform/chrome: cros_ec_typec: Update port DP VDO + - ACPICA: nsrepair: handle cases without a return value correctly + - libbpf: Fix map creation flags sanitization + - bpf_doc: Fix build error with older python versions + - selftests/xsk: print correct payload for packet dump + - selftests/xsk: print correct error codes when exiting + - arm64/cpufeature: Fix field sign for DIT hwcap detection + - arm64/sysreg: Fix errors in 32 bit enumeration values + - 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() + - 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: rtw89: fix potential leak in rtw89_append_probe_req_ie() + - wifi: rtw89: Add missing check for alloc_workqueue + - wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU + - wifi: orinoco: check return value of hermes_write_wordrec() + - wifi: rtw88: Use rtw_iterate_vifs() for rtw_vif_watch_dog_iter() + - wifi: rtw88: Use non-atomic sta iterator in rtw_ra_mask_info_update() + - thermal/drivers/imx_sc_thermal: Fix the loop condition + - wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback + function + - 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 + - selftests/bpf: Fix build errors if CONFIG_NF_CONNTRACK=m + - 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() + - bpf: Fix state pruning for STACK_DYNPTR stack slots + - bpf: Fix missing var_off check for ARG_PTR_TO_DYNPTR + - bpf: Fix partial dynptr stack slot reads/writes + - 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 + - net: ethernet: ti: am65-cpsw/cpts: Fix CPTS release action + - selftests/bpf: Fix vmtest static compilation error + - crypto: xts - Handle EBUSY correctly + - leds: led-class: Add missing put_device() to led_put() + - drm/nouveau/disp: Fix nvif_outp_acquire_dp() argument size + - 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 CAN mode selection + - can: rcar_canfd: Fix R-Car V3U GAFLCFG field accesses + - selftests/bpf: Initialize tc in xdp_synproxy + - crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware + - bpftool: profile online CPUs instead of possible + - wifi: mt76: mt7921: fix deadlock in mt7921_abort_roc + - wifi: mt76: mt7915: call mt7915_mcu_set_thermal_throttling() only after + init_work + - wifi: mt76: mt7915: rework mt7915_mcu_set_thermal_throttling + - wifi: mt76: mt7915: rework mt7915_thermal_temp_store() + - wifi: mt76: mt7921: fix channel switch fail in monitor mode + - wifi: mt76: mt7996: fix chainmask calculation in mt7996_set_antenna() + - wifi: mt76: mt7996: update register for CFEND_RATE + - wifi: mt76: connac: fix POWER_CTRL command name typo + - wifi: mt76: mt7921: fix invalid remain_on_channel duration + - wifi: mt76: mt7915: fix memory leak in mt7915_mcu_exit + - wifi: mt76: mt7996: fix memory leak in mt7996_mcu_exit + - wifi: mt76: dma: fix memory leak running mt76_dma_tx_cleanup + - wifi: mt76: fix switch default case in mt7996_reverse_frag0_hdr_trans + - wifi: mt76: mt7915: fix WED TxS reporting + - wifi: mt76: add memory barrier to SDIO queue kick + - wifi: mt76: mt7996: rely on mt76_connac2_mac_tx_rate_val + - 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 + - s390/boot: cleanup decompressor header files + - s390/mem_detect: rely on diag260() if sclp_early_get_memsize() fails + - s390/boot: fix mem_detect extended area allocation + - net: add sock_init_data_uid() + - tun: tun_chr_open(): correctly initialize socket uid + - tap: tap_open(): correctly initialize socket uid + - rxrpc: Fix overwaking on call poking + - OPP: fix error checking in opp_migrate_dentry() + - cpufreq: davinci: Fix clk use after free + - Bluetooth: hci_conn: Refactor hci_bind_bis() since it always succeeds + - Bluetooth: L2CAP: Fix potential user-after-free + - Bluetooth: hci_qca: get wakeup status from serdev device handle + - net: ipa: generic command param fix + - s390: vfio-ap: tighten the NIB validity check + - 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() + - xen/grant-dma-iommu: Implement a dummy probe_device() callback + - 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 + - clocksource/drivers/riscv: Patch riscv_clock_next_event() jump before first + use + - wifi: iwl3945: Add missing check for create_singlethread_workqueue + - wifi: iwl4965: Add missing check for create_singlethread_workqueue() + - wifi: brcmfmac: Rename Cypress 89459 to BCM4355 + - wifi: brcmfmac: pcie: Add IDs/properties for BCM4355 + - wifi: brcmfmac: pcie: Add IDs/properties for BCM4377 + - wifi: brcmfmac: pcie: Perform correct BCM4364 firmware selection + - wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize() + - wifi: rtw89: fix parsing offset for MCC C2H + - 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: octeontx2 - Fix objects shared between several modules + - crypto: crypto4xx - Call dma_unmap_page when done + - vfio/ccw: remove WARN_ON during shutdown + - wifi: mac80211: move color collision detection report in a delayed work + - wifi: mac80211: make rate u32 in sta_set_rate_info_rx() + - wifi: mac80211: fix non-MLO station association + - wifi: mac80211: Don't translate MLD addresses for multicast + - wifi: mac80211: avoid u32_encode_bits() warning + - wifi: mac80211: fix off-by-one link setting + - tools/lib/thermal: Fix thermal_sampling_exit() + - thermal/drivers/hisi: Drop second sensor hi3660 + - selftests/bpf: Fix map_kptr test. + - wifi: mac80211: pass 'sta' to ieee80211_rx_data_set_sta() + - bpf: Zeroing allocated object from slab in bpf memory allocator + - selftests/bpf: Fix xdp_do_redirect on s390x + - can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a + bus error + - can: esd_usb: Make use of can_change_state() and relocate checking skb for + NULL + - xsk: check IFF_UP earlier in Tx path + - LoongArch, bpf: Use 4 instructions for function address in JIT + - 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 + - net/smc: fix potential panic dues to unprotected smc_llc_srv_add_link() + - net/smc: fix application data exception + - 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 + - net: lan966x: Fix possible deadlock inside PTP + - net/mlx4_en: Introduce flexible array to silence overflow warning + - net/mlx5e: Align IPsec ASO result memory to be as required by hardware + - selftest: fib_tests: Always cleanup before exit + - sefltests: netdevsim: wait for devlink instance after netns removal + - drm: Fix potential null-ptr-deref due to drmm_mode_config_init() + - drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats + - drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec + - drm: mxsfb: DRM_IMX_LCDIF should depend on ARCH_MXC + - 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/modes: Use strscpy() to copy command-line mode name + - drm/vc4: dpi: Fix format mapping for RGB565 + - drm/bridge: it6505: Guard bridge power in IRQ handler + - drm: tidss: Fix pixel format definition + - gpu: ipu-v3: common: Add of_node_put() for reference returned by + of_graph_get_port_by_id() + - drm/ast: Init iosys_map pointer as I/O memory for damage handling + - drm/vc4: drop all currently held locks if deadlock happens + - hwmon: (ftsteutates) Fix scaling of measurements + - drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init() + - 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: Configure the HVS COB allocations + - drm/vc4: hvs: Set AXI panic modes + - drm/vc4: hvs: SCALER_DISPBKGND_AUTOHS is only valid on HVS4 + - drm/vc4: hvs: Correct interrupt masking bit assignment for HVS5 + - 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 + - drm/panel-edp: fix name for IVO product id 854b + - scsi: qla2xxx: Fix exchange oversubscription + - scsi: qla2xxx: Fix exchange oversubscription for management commands + - scsi: qla2xxx: edif: Fix clang warning + - ASoC: fsl_sai: initialize is_dsp_mode flag + - drm/bridge: tc358767: Set default CLRSIPO count + - drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup() + - ALSA: hda/ca0132: minor fix for allocation size + - drm/amdgpu: Use the sched from entity for amdgpu_cs trace + - 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 + - regulator: tps65219: use IS_ERR() to detect an error pointer + - 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 + - scsi: ufs: exynos: Fix DMA alignment for PAGE_SIZE != 4096 + - drm/msm/dpu: sc7180: add missing WB2 clock control + - 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 + - habanalabs: bugs fixes in timestamps buff alloc + - 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: Fix mask for syncpoint increment register + - gpu: host1x: Don't skip assigning syncpoints to channels + - drm/tegra: firewall: Check for is_addr_reg existence in IMM check + - drm/i915/mtl: Add initial gt workarounds + - drm/i915/xehp: GAM registers don't need to be re-applied on engine resets + - pinctrl: renesas: rzg2l: Fix configuring the GPIO pins as interrupts + - drm/i915/xehp: Annotate a couple more workaround registers as MCR + - 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() + - dt-bindings: display: mediatek: Fix the fallback for mediatek,mt8186-disp- + ccorr + - gpio: pca9570: rename platform_data to chip_data + - gpio: vf610: connect GPIO label to dev name + - ASoC: topology: Properly access value coming from topology file + - 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() + - dm: improve shrinker debug names + - regmap: apply reg_base and reg_downshift for single register ops + - accel: fix CONFIG_DRM dependencies + - 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 + - regulator: tps65219: use generic set_bypass() + - hwmon: (asus-ec-sensors) add missing mutex path + - hwmon: (ltc2945) Handle error case in ltc2945_value_store + - ALSA: hda: Fix the control element identification for multiple codecs + - 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: 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 + - ASoC: codecs: lpass: register mclk after runtime pm + - ASoC: codecs: lpass: fix incorrect mclk rate + - drm/amd/display: don't call dc_interrupt_set() for disabled crtcs + - HID: logitech-hidpp: Hard-code HID++ 1.0 fast scroll support + - 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 + - drm/i915/pvc: Implement recommended caching policy + - drm/i915/pvc: Annotate two more workaround/tuning registers as MCR + - drm/i915: Fix GEN8_MISCCPCTL + - 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 + - ALSA: hda/hdmi: Register with vga_switcheroo on Dual GPU Macbooks + - drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt() + - NFSD: enhance inter-server copy cleanup + - NFSD: fix leaked reference count of nfsd4_ssc_umount_item + - nfsd: fix race to check ls_layouts + - nfsd: clean up potential nfsd_file refcount leaks in COPY codepath + - NFSD: fix problems with cleanup on errors in nfsd4_copy + - nfsd: fix courtesy client with deny mode handling in nfs4_upgrade_open + - nfsd: don't fsync nfsd_files on last close + - NFSD: copy the whole verifier in nfsd_copy_write_verifier + - cifs: Fix lost destroy smbd connection when MR allocate failed + - cifs: Fix warning and UAF when destroy the MR list + - cifs: use tcon allocation functions even for dummy tcon + - gfs2: jdata writepage fix + - perf llvm: Fix inadvertent file creation + - leds: led-core: Fix refcount leak in of_led_get() + - leds: is31fl319x: Wrap mutex_destroy() for devm_add_action_or_rest() + - leds: simatic-ipc-leds-gpio: Make sure we have the GPIO providing driver + - tools/tracing/rtla: osnoise_hist: use total duration for average calculation + - perf inject: Use perf_data__read() for auxtrace + - perf intel-pt: Do not try to queue auxtrace data on pipe + - perf stat: Hide invalid uncore event output for aggr mode + - perf jevents: Correct bad character encoding + - perf test bpf: Skip test if kernel-debuginfo is not present + - perf tools: Fix auto-complete on aarch64 + - perf stat: Avoid merging/aggregating metric counts twice + - sparc: allow PM configs for sparc32 COMPILE_TEST + - selftests: find echo binary to use -ne options + - selftests/ftrace: Fix bash specific "==" operator + - selftests: use printf instead of echo -ne + - perf record: Fix segfault with --overwrite and --max-size + - printf: fix errname.c list + - perf tests stat_all_metrics: Change true workload to sleep workload for + system wide check + - objtool: add UACCESS exceptions for __tsan_volatile_read/write + - selftests/ftrace: Fix probepoint testcase to ignore __pfx_* symbols + - sysctl: fix proc_dobool() usability + - mfd: rk808: Re-add rk808-clkout to RK818 + - 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 + - RDMA/erdma: Fix refcount leak in erdma_mmap + - dmaengine: HISI_DMA should depend on ARCH_HISI + - RDMA/hns: Fix refcount leak in hns_roce_mmap + - 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 + - i2c: qcom-geni: change i2c_master_hub to static + - soundwire: cadence: Don't overflow the command FIFOs + - driver core: fix potential null-ptr-deref in device_add() + - 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() + - media: uvcvideo: Implement mask for V4L2_CTRL_TYPE_MENU + - media: uvcvideo: Refactor uvc_ctrl_mappings_uvcXX + - media: uvcvideo: Refactor power_line_frequency_controls_limited + - 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 + - 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 + - PCI: endpoint: pci-epf-vntb: Add epf_ntb_mw_bar_clear() num_mws kernel-doc + - hwtracing: hisi_ptt: Only add the supported devices to the filters list + - 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() + - firmware: stratix10-svc: fix error handle while alloc/add device failed + - VMCI: check context->notify_page after call to get_user_pages_fast() to + avoid GPF + - mei: pxp: Use correct macros to initialize uuid_le + - misc/mei/hdcp: Use correct macros to initialize uuid_le + - misc: fastrpc: Fix an error handling path in fastrpc_rpmsg_probe() + - iommu/exynos: Fix error handling in exynos_iommu_init() + - driver core: fix resource leak in device_add() + - driver core: location: Free struct acpi_pld_info *pld before return false + - 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 + - selftests: iommu: Fix test_cmd_destroy_access() call in user_copy + - iommufd: Add three missing structures in ucmd_buffer + - fotg210-udc: Add missing completion handler + - dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers + - fpga: microchip-spi: move SPI I/O buffers out of stack + - fpga: microchip-spi: rewrite status polling in a time measurable way + - 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 + - phy: mediatek: remove temporary variable @mask_ + - PCI: mt7621: Delay phy ports initialization + - iommu/vt-d: Set No Execute Enable bit in PASID table entry + - power: supply: remove faulty cooling logic + - RDMA/siw: Fix user page pinning accounting + - 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: disable Ageing Timer interrupt request irq + - driver core: fw_devlink: Add DL_FLAG_CYCLE support to device links + - driver core: fw_devlink: Don't purge child fwnode's consumer links + - driver core: fw_devlink: Allow marking a fwnode link as being part of a + cycle + - driver core: fw_devlink: Consolidate device link flag computation + - driver core: fw_devlink: Improve check for fwnode with no device/driver + - driver core: fw_devlink: Make cycle detection more robust + - mtd: mtdpart: Don't create platform device that'll never probe + - usb: host: fsl-mph-dr-of: reuse device_set_of_node_from_dev + - dmaengine: dw-edma: Fix readq_ch() return value truncation + - PCI: Fix dropping valid root bus resources with .end = zero + - phy: rockchip-typec: fix tcphy_get_mode error case + - PCI: qcom: Fix host-init error handling + - iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry() + - iommu: Fix error unwind in iommu_group_alloc() + - iommu/amd: Do not identity map v2 capable device when snp is enabled + - dmaengine: sf-pdma: pdma_desc memory leak fix + - dmaengine: dw-axi-dmac: Do not dereference NULL structure + - dmaengine: ptdma: check for null desc before calling pt_cmd_callback + - iommu/vt-d: Fix error handling in sva enable/disable paths + - iommu/vt-d: Allow to use flush-queue when first level is default + - RDMA/rxe: Cleanup mr_check_range + - RDMA/rxe: Move rxe_map_mr_sg to rxe_mr.c + - RDMA-rxe: Isolate mr code from atomic_reply() + - RDMA-rxe: Isolate mr code from atomic_write_reply() + - RDMA/rxe: Cleanup page variables in rxe_mr.c + - RDMA/rxe: Replace rxe_map and rxe_phys_buf by xarray + - Subject: RDMA/rxe: Handle zero length rdma + - RDMA/mana_ib: Fix a bug when the PF indicates more entries for registering + memory on first packet + - RDMA/rxe: Fix missing memory barriers in rxe_queue.h + - IB/hfi1: Fix math bugs in hfi1_can_pin_pages() + - IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors + - Revert "remoteproc: qcom_q6v5_mss: map/unmap metadata region before/after + use" + - 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 + - media: imx: imx7-media-csi: fix missing clk_disable_unprepare() in + imx7_csi_init() + - 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: tc358746: fix missing return assignment + - media: i2c: tc358746: fix ignoring read error in g_register callback + - media: i2c: tc358746: fix possible endianness issue + - media: ov5640: Fix soft reset sequence and timings + - media: ov5640: Handle delays when no reset_gpio set + - media: mc: Get media_device directly from pad + - 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: platform: mtk-mdp3: Fix return value check in mdp_probe() + - media: camss: csiphy-3ph: avoid undefined behavior + - media: platform: mtk-mdp3: fix Kconfig dependencies + - media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data + - media: v4l2-jpeg: ignore the unknown APP14 marker + - media: hantro: Fix JPEG encoder ENUM_FRMSIZE on RK3399 + - media: imx-jpeg: Apply clk_bulk api instead of operating specific clk + - media: amphion: correct the unspecified color space + - media: drivers/media/v4l2-core/v4l2-h264 : add detection of null pointers + - media: rc: Fix use-after-free bugs caused by ene_tx_irqsim() + - media: atomisp: fix videobuf2 Kconfig depenendency + - media: atomisp: Only set default_run_mode on first open of a stream/asd + - 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 + - rpmsg: glink: Release driver_override + - ARM: OMAP2+: omap4-common: Fix refcount leak bug + - arm64: dts: qcom: msm8996: Add additional A2NoC clocks + - udf: Define EFSCORRUPTED error code + - context_tracking: Fix noinstr vs KASAN + - exit: Detect and fix irq disabled state in oops + - ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy + - fs: Use CHECK_DATA_CORRUPTION() when kernel bugs are detected + - blk-iocost: fix divide by 0 error in calc_lcoefs() + - blk-cgroup: dropping parent refcount after pd_free_fn() is done + - blk-cgroup: synchronize pd_free_fn() from blkg_free_workfn() and + blkcg_deactivate_policy() + - trace/blktrace: fix memory leak with using debugfs_lookup() + - btrfs: scrub: improve tree block error reporting + - arm64: zynqmp: Enable hs termination flag for USB dwc3 controller + - cpuidle, intel_idle: Fix CPUIDLE_FLAG_INIT_XSTATE + - x86/fpu: Don't set TIF_NEED_FPU_LOAD for PF_IO_WORKER threads + - cpuidle: drivers: firmware: psci: Dont instrument suspend code + - cpuidle: lib/bug: Disable rcu_is_watching() during WARN/BUG + - perf/x86/intel/uncore: Add Meteor Lake support + - wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect() + - wifi: ath11k: fix monitor mode bringup crash + - 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() + - srcu: Delegate work to the boot cpu if using SRCU_SIZE_SMALL + - rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug + - rcu-tasks: Handle queue-shrink/callback-enqueue race condition + - 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 + - bpftool: Always disable stack protection for BPF objects + - wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out- + of-bounds + - wifi: rtw89: fix assignation of TX BD RAM table + - 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 + - Compiler attributes: GCC cold function alignment workarounds + - ACPI: Don't build ACPICA with '-Os' + - bpf, docs: Fix modulo zero, division by zero, overflow, and underflow + - 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 + - s390/mm,ptdump: avoid Kasan vs Memcpy Real markers swapping + - netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj() + - can: isotp: check CAN address family in isotp_bind() + - gcc-plugins: drop -std=gnu++11 to fix GCC 13 build + - tools/power/x86/intel-speed-select: Add Emerald Rapid quirk + - platform/x86: dell-ddv: Add support for interface version 3 + - 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: Fix issue with Actions Semi ATS2851 based devices + - Bluetooth: btusb: Add new PID/VID 0489:e0f2 for MT7921 + - Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE + - wifi: rtw89: debug: avoid invalid access on RTW89_DBG_SEL_MAC_30 + - hv_netvsc: Check status in SEND_RNDIS_PKT completion message + - s390/kfence: fix page fault reporting + - devlink: Fix TP_STRUCT_entry in trace of devlink health report + - scm: add user copy checks to put_cmsg() + - drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Tab 3 X90F + - drm: panel-orientation-quirks: Add quirk for DynaBook K50 + - drm/amd/display: Reduce expected sdp bandwidth for dcn321 + - 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/amd/display: Defer DIG FIFO disable after VID stream enable + - drm/radeon: free iio for atombios when driver shutdown + - drm/amd: Avoid BUG() for case of SRIOV missing IP version + - drm/amdkfd: Page aligned memory reserve size + - 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: Avoid ASSERT for some message failures + - drm: amd: display: Fix memory leakage + - drm/amd/display: fix mapping to non-allocated address + - HID: uclogic: Add frame type quirk + - HID: uclogic: Add battery quirk + - HID: uclogic: Add support for XP-PEN Deco Pro SW + - HID: uclogic: Add support for XP-PEN Deco Pro MW + - drm/msm/dsi: Add missing check for alloc_ordered_workqueue + - drm: rcar-du: Add quirk for H3 ES1.x pclk workaround + - drm: rcar-du: Fix setting a reserved bit in DPLLCR + - drm/drm_print: correct format problem + - drm/amd/display: Set hvm_enabled flag for S/G mode + - drm/client: Test for connectors before sending hotplug event + - habanalabs: extend fatal messages to contain PCI info + - habanalabs: fix bug in timestamps registration code + - docs/scripts/gdb: add necessary make scripts_gdb step + - drm/msm/dpu: Add DSC hardware blocks to register snapshot + - 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 + - Revert "drm/amdgpu: TA unload messages are not actually sent to psp when + amdgpu is uninstalled" + - drm/amd/display: fix FCLK pstate change underflow + - gfs2: Improve gfs2_make_fs_rw error handling + - hwmon: (coretemp) Simplify platform device handling + - hwmon: (nct6775) Directly call ASUS ACPI WMI method + - hwmon: (nct6775) B650/B660/X670 ASUS boards support + - pinctrl: at91: use devm_kasprintf() to avoid potential leaks + - drm/amd/display: Do not commit pipe when updating DRR + - scsi: snic: Fix memory leak with using debugfs_lookup() + - scsi: ufs: core: Fix device management cmd timeout flow + - HID: logitech-hidpp: Don't restart communication if not necessary + - drm/amd/display: Enable P-state validation checks for DCN314 + - drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5 + - drm/amd/display: Disable HUBP/DPP PG on DCN314 for now + - drm/amd/display: disable SubVP + DRR to prevent underflow + - 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 + - nfsd: don't hand out delegation on setuid files being opened for write + - cifs: prevent data race in smb2_reconnect() + - drm/i915/mtl: Correct implementation of Wa_18018781329 + - drm/shmem-helper: Revert accidental non-GPL export + - driver core: fw_devlink: Avoid spurious error message + - 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 + - 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 + - rtc: pm8xxx: fix set-alarm race + - ipmi: ipmb: Fix the MODULE_PARM_DESC associated to 'retry_time_ms' + - ipmi:ssif: resend_msg() cannot fail + - ipmi_ssif: Rename idle state and check + - ipmi:ssif: Add a timer between request retries + - io_uring: Replace 0-length array with flexible array + - io_uring: use user visible tail in io_uring_poll() + - io_uring: handle TIF_NOTIFY_RESUME when checking for task_work + - io_uring: add a conditional reschedule to the IOPOLL cancelation loop + - io_uring: add reschedule point to handle_tw_list() + - 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 + - io_uring: fix fget leak when fs don't support nowait buffered read + - 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 + - KVM: s390: disable migration mode when dirty tracking is disabled + - cifs: improve checking of DFS links over STATUS_OBJECT_NAME_INVALID + - cifs: Fix uninitialized memory read in smb3_qfs_tcon() + - cifs: Fix uninitialized memory reads for oparms.mode + - cifs: fix mount on old smb servers + - cifs: introduce cifs_io_parms in smb2_async_writev() + - cifs: split out smb3_use_rdma_offload() helper + - cifs: don't try to use rdma offload on encrypted connections + - cifs: Check the lease context if we actually got a lease + - cifs: return a single-use cfid if we did not get a lease + - 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 + - btrfs: hold block group refcount during async discard + - btrfs: sysfs: update fs features directory asynchronously + - 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 + - ksmbd: fix possible memory leak in smb2_lock() + - torture: Fix hang during kthread shutdown phase + - ARM: dts: exynos: correct HDMI phy compatible in Exynos4 + - io_uring: mark task TASK_RUNNING before handling resume/task work + - 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: start midcomms before scand + - fs: dlm: fix use after free in midcomms commit + - fs: dlm: be sure to call dlm_send_queue_flush() + - fs: dlm: fix race setting stop tx flag + - 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: retry to update the inode page given data corruption + - f2fs: fix cgroup writeback accounting with fs-layer encryption + - f2fs: fix kernel crash due to null io->bio + - f2fs: Revert "f2fs: truncate blocks in batch in __complete_revoke_list()" + - ocfs2: fix defrag path triggering jbd2 ASSERT + - ocfs2: fix non-auto defrag path not working issue + - fs/cramfs/inode.c: initialize file_ra_state + - 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 + - md: don't update recovery_cp when curr_resync is ACTIVE + - KVM: Destroy target device if coalesced MMIO unregistration fails + - KVM: VMX: Fix crash due to uninitialized current_vmcs + - KVM: Register /dev/kvm as the _very_ last thing during initialization + - KVM: x86: Purge "highest ISR" cache when updating APICv state + - KVM: x86: Blindly get current x2APIC reg value on "nodecode write" traps + - 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: Flush the "current" TLB when activating AVIC + - KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target + - KVM: SVM: Don't put/load AVIC when setting virtual APIC mode + - KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI + - KVM: x86: Inject #GP on x2APIC WRMSR that sets reserved bits 63:32 + - KVM: SVM: Fix potential overflow in SEV's send|receive_update_data() + - KVM: SVM: hyper-v: placate modpost section mismatch error + - selftests: x86: Fix incorrect kernel headers search path + - 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 + - virt/sev-guest: Return -EIO if certificate buffer is not large enough + - brd: mark as nowait compatible + - brd: return 0/-error from brd_insert_page() + - brd: check for REQ_NOWAIT and set correct page allocation mask + - ima: fix error handling logic when file measurement failed + - ima: Align ima_file_mmap() parameters with mmap_file LSM hook + - selftests/powerpc: Fix incorrect kernel headers search path + - selftests/ftrace: Fix eprobe syntax test case to check filter support + - selftests: sched: Fix incorrect kernel headers search path + - selftests: core: Fix incorrect kernel headers search path + - selftests: pid_namespace: Fix incorrect kernel headers search path + - selftests: arm64: Fix incorrect kernel headers search path + - selftests: clone3: Fix incorrect kernel headers search path + - selftests: pidfd: Fix incorrect kernel headers search path + - selftests: membarrier: Fix incorrect kernel headers search path + - selftests: kcmp: Fix incorrect kernel headers search path + - selftests: media_tests: Fix incorrect kernel headers search path + - selftests: gpio: Fix incorrect kernel headers search path + - selftests: filesystems: Fix incorrect kernel headers search path + - selftests: user_events: Fix incorrect kernel headers search path + - selftests: ptp: Fix incorrect kernel headers search path + - selftests: sync: Fix incorrect kernel headers search path + - selftests: rseq: Fix incorrect kernel headers search path + - selftests: move_mount_set_group: Fix incorrect kernel headers search path + - selftests: mount_setattr: Fix incorrect kernel headers search path + - selftests: perf_events: Fix incorrect kernel headers search path + - selftests: ipc: Fix incorrect kernel headers search path + - selftests: futex: Fix incorrect kernel headers search path + - selftests: drivers: Fix incorrect kernel headers search path + - selftests: dmabuf-heaps: Fix incorrect kernel headers search path + - selftests: vm: Fix incorrect kernel headers search path + - selftests: seccomp: Fix incorrect kernel headers search path + - irqdomain: Fix association race + - irqdomain: Fix disassociation race + - irqdomain: Look for existing mapping only once + - irqdomain: Drop bogus fwspec-mapping error handling + - irqdomain: Refactor __irq_domain_alloc_irqs() + - irqdomain: Fix mapping-creation race + - irqdomain: Fix domain registration race + - crypto: qat - fix out-of-bounds read + - mm/damon/paddr: fix missing folio_put() + - 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 + - cxl/pmem: Fix nvdimm registration races + - Input: exc3000 - properly stop timer on shutdown + - mtd: spi-nor: sfdp: Fix index value for SCCR dwords + - mtd: spi-nor: spansion: Consider reserved bits in CFR5 register + - dm: send just one event on resize, not two + - dm: add cond_resched() to dm_wq_work() + - dm: add cond_resched() to dm_wq_requeue_work() + - wifi: rtw88: use RTW_FLAG_POWERON flag to prevent to power on/off twice + - 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 + - wifi: cfg80211: Set SSID if it is not already set + - cpuidle: add ARCH_SUSPEND_POSSIBLE dependencies + - qede: fix interrupt coalescing configuration + - thermal: intel: powerclamp: Fix cur_state for multi package system + - dm flakey: fix logic when corrupting a bio + - dm cache: free background tracker's queued work in btracker_destroy + - dm flakey: don't corrupt the zero page + - dm flakey: fix a bug with 32-bit highmem systems + - hwmon: (peci/cputemp) Fix off-by-one in coretemp_label allocation + - hwmon: (nct6775) Fix incorrect parenthesization in nct6775_write_fan_div() + - spi: intel: Check number of chip selects after reading the descriptor + - ARM: dts: qcom: sdx65: Add Qcom SMMU-500 as the fallback for IOMMU node + - 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 + - arm64: acpi: Fix possible memory leak of ffh_ctxt + - arm64: mm: hugetlb: Disable HUGETLB_PAGE_OPTIMIZE_VMEMMAP + - arm64: Reset KASAN tag in copy_highpage with HW tags only + - 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 + - regulator: core: Use ktime_get_boottime() to determine how long a regulator + was off + - panic: fix the panic_print NMI backtrace setting + - mm/hwpoison: convert TTU_IGNORE_HWPOISON to TTU_HWPOISON + - genirq/msi, platform-msi: Ensure that MSI descriptors are unreferenced + - genirq/msi: Take the per-device MSI lock before validating the control + structure + - spi: spi-sn-f-ospi: fix duplicate flag while assigning to mode_bits + - 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 + - vfio: Fix NULL pointer dereference caused by uninitialized group->iommufd + - 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 + - kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list + - ktest.pl: Fix missing "end_monitor" when machine check fails + - ktest.pl: Add RUN_TIMEOUT option with default unlimited + - memory tier: release the new_memtier in find_create_memory_tier() + - ring-buffer: Handle race between rb_move_tail and rb_check_pages + - tools/bootconfig: fix single & used for logical condition + - tracing/eprobe: Fix to add filter on eprobe description in README file + - iommu/amd: Add a length limitation for the ivrs_acpihid command-line + parameter + - scsi: aacraid: Allocate cmd_priv with scsicmd + - 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: Avoid enabling interrupts in die() + - riscv: mm: fix regression due to update_mmu_cache change + - riscv: jump_label: Fixup unaligned arch_static_branch function + - riscv: ftrace: Fixup panic by disabling preemption + - 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: Unify delay handling for reset and resume + - PCI: hotplug: Allow marking devices as disconnected during bind/unbind + - PCI: Avoid FLR for AMD FCH AHCI adapters + - PCI/DPC: Await readiness of secondary bus after reset + - 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 + - iommufd: Make sure to zero vfio_iommu_type1_info before copying to user + - iommufd: Do not add the same hwpt to the ioas->hwpt_list twice + - iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode + - iommu/vt-d: Fix PASID directory pointer coherency + - vfio/type1: exclude mdevs from VFIO_UPDATE_VADDR + - vfio/type1: prevent underflow of locked_vm via exec() + - vfio/type1: track locked_vm per dma + - vfio/type1: restore locked_vm + - drm/amd: Fix initialization for nbio 7.5.1 + - drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv + - drm/radeon: Fix eDP for single-display iMac11,2 + - drm/i915: Don't use stolen memory for ring buffers with LLC + - drm/i915: Don't use BAR mappings for ring buffers with LLC + - drm/gud: Fix UBSAN warning + - drm/edid: fix AVI infoframe aspect ratio handling + - drm/edid: fix parsing of 3D modes from HDMI VSDB + - qede: avoid uninitialized entries in coal_entry array + - brd: use radix_tree_maybe_preload instead of radix_tree_preload + - net: avoid double iput when sock_alloc_file fails + - Linux 6.2.3 + + * Miscellaneous Ubuntu changes + - [Config] update annotations after applying 6.2.3 stable patches + - [Config] update annotations after applying 6.2.6 stable patches + + -- Andrea Righi Tue, 14 Mar 2023 16:43:44 +0100 + +linux (6.2.0-16.16) lunar; urgency=medium + + * lunar/linux: 6.2.0-16.16 -proposed tracker (LP: #2009914) + + * linux-libc-dev is no longer multi-arch safe (LP: #2009355) + - Revert "UBUNTU: [Packaging] install headers to debian/linux-libc-dev + directly" + + * linux: CONFIG_SERIAL_8250_MID=y (LP: #2009283) + - [Config] enable CONFIG_SERIAL_8250_MID=y + + * cpufreq: intel_pstate: Update Balance performance EPP for Sapphire Rapids + (LP: #2008519) + - cpufreq: intel_pstate: Adjust balance_performance EPP for Sapphire Rapids + + -- Andrea Righi Fri, 10 Mar 2023 18:34:28 +0100 + +linux (6.2.0-15.15) lunar; urgency=medium + + * Miscellaneous Ubuntu changes + - [Packaging] annotations: document annotations headers + + -- Andrea Righi Fri, 10 Mar 2023 07:36:59 +0100 + +linux (6.2.0-14.14) lunar; urgency=medium + + * lunar/linux: 6.2.0-14.14 -proposed tracker (LP: #2009856) + + * Miscellaneous Ubuntu changes + - [Packaging] rust: add rust build dependencies to all arches + - [Packaging] Support skipped dkms modules + - [Packaging] actually enforce set -e in dkms-build--nvidia-N + - [Packaging] Preserve the correct log file variable value + - [Packaging] update getabis + + -- Andrea Righi Thu, 09 Mar 2023 16:40:36 +0100 + +linux (6.2.0-13.13) lunar; urgency=medium + + * lunar/linux: 6.2.0-13.13 -proposed tracker (LP: #2009704) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * mt7921: add support of MTFG table (LP: #2009642) + - wifi: mt76: mt7921: add support to update fw capability with MTFG table + + -- Andrea Righi Wed, 08 Mar 2023 14:40:25 +0100 + +linux (6.2.0-12.12) lunar; urgency=medium + + * lunar/linux: 6.2.0-12.12 -proposed tracker (LP: #2009698) + + * Miscellaneous Ubuntu changes + - SAUCE: enforce rust availability only on x86_64 + - [Config] update CONFIG_RUST_IS_AVAILABLE + + -- Andrea Righi Wed, 08 Mar 2023 12:50:15 +0100 + +linux (6.2.0-11.11) lunar; urgency=medium + + * lunar/linux: 6.2.0-11.11 -proposed tracker (LP: #2009697) + + * Miscellaneous Ubuntu changes + - [Packaging] do not stop the build if rust is not available + + -- Andrea Righi Wed, 08 Mar 2023 12:24:55 +0100 + +linux (6.2.0-10.10) lunar; urgency=medium + + * lunar/linux: 6.2.0-10.10 -proposed tracker (LP: #2009673) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * enable Rust support in the kernel (LP: #2007654) + - [Packaging] propagate makefile variables to kernelconfig + - SAUCE: rust: fix regexp in scripts/is_rust_module.sh + - SAUCE: scripts: rust: drop is_rust_module.sh + - SAUCE: rust: allow to use INIT_STACK_ALL_ZERO + - SAUCE: scripts: Exclude Rust CUs with pahole + - SAUCE: modpost: support arbitrary symbol length in modversion + - SAUCE: allows to enable Rust with modversions + - SAUCE: rust: properly detect the version of libclang used by bindgen + - [Packaging] rust: add the proper make flags to enable rust support + - [Packaging] add rust dependencies + - [Packaging] bpftool: always use vmlinux to generate headers + - [Packaging] run rustavailable target as debugging before build + - [Config] enable Rust support + + * Fail to output sound to external monitor which connects via docking station + (LP: #2009024) + - [Config] Enable CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM + + * Miscellaneous Ubuntu changes + - SAUCE: Makefile: replace rsync with tar + + -- Andrea Righi Wed, 08 Mar 2023 12:01:56 +0100 + +linux (6.2.0-1.1) lunar; urgency=medium + + * lunar/linux: 6.2.0-1.1 -proposed tracker (LP: #2009621) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/master) + + * kinetic: apply new apparmor and LSM stacking patch set (LP: #1989983) + - SAUCE: apparmor: Add fine grained mediation of posix mqueues + - SAUCE: apparmor: add user namespace creation mediation + + * Lunar update: v6.2.2 upstream stable release (LP: #2009358) + - ALSA: hda: cs35l41: Correct error condition handling + - crypto: arm64/sm4-gcm - Fix possible crash in GCM cryption + - bpf: bpf_fib_lookup should not return neigh in NUD_FAILED state + - vc_screen: don't clobber return value in vcs_read + - drm/amd/display: Move DCN314 DOMAIN power control to DMCUB + - drm/amd/display: Properly reuse completion structure + - scripts/tags.sh: fix incompatibility with PCRE2 + - wifi: rtw88: usb: Set qsel correctly + - wifi: rtw88: usb: send Zero length packets if necessary + - wifi: rtw88: usb: drop now unnecessary URB size check + - 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 + - arm64: dts: uniphier: Fix property name in PXs3 USB node + - usb: typec: pd: Remove usb_suspend_supported sysfs from sink PDO + - USB: core: Don't hold device lock while reading the "descriptors" sysfs file + - Linux 6.2.2 + + * Lunar update: v6.2.1 upstream stable release (LP: #2009127) + - uaccess: Add speculation barrier to copy_from_user() + - x86/alternatives: Introduce int3_emulate_jcc() + - x86/alternatives: Teach text_poke_bp() to patch Jcc.d32 instructions + - x86/static_call: Add support for Jcc tail-calls + - HID: mcp-2221: prevent UAF in delayed work + - wifi: mwifiex: Add missing compatible string for SD8787 + - audit: update the mailing list in MAINTAINERS + - platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY + - platform/x86: nvidia-wmi-ec-backlight: Add force module parameter + - ext4: Fix function prototype mismatch for ext4_feat_ktype + - randstruct: disable Clang 15 support + - bpf: add missing header file include + - Linux 6.2.1 + + * Fix mediatek wifi driver crash when loading wrong SAR table (LP: #2009118) + - wifi: mt76: mt7921: fix error code of return in mt7921_acpi_read + + * overlayfs mounts as R/O over idmapped mount (LP: #2009065) + - SAUCE: overlayfs: handle idmapped mounts in ovl_do_(set|remove)xattr + + * 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 + + * screen flicker after PSR2 enabled (LP: #2007516) + - SAUCE: drm/i915/display/psr: Disable PSR2 sel fetch on panel SHP 5457 + + * [23.04 FEAT] Support for new IBM Z Hardware (IBM z16) - Reset DAT-Protection + facility support (LP: #1982378) + - s390/mm: add support for RDP (Reset DAT-Protection) + + * [23.04 FEAT] zcrypt DD: AP command filtering (LP: #2003637) + - s390/zcrypt: introduce ctfm field in struct CPRBX + + * rtcpie in timers from ubuntu_kernel_selftests randomly failing + (LP: #1814234) + - SAUCE: selftest: rtcpie: Force passing unreliable subtest + + * [23.04 FEAT] Support for List-Directed IPL and re-IPL from ECKD DASD + (LP: #2003394) + - s390/ipl: add DEFINE_GENERIC_LOADPARM() + - s390/ipl: add loadparm parameter to eckd ipl/reipl data + + * Miscellaneous Ubuntu changes + - SAUCE: drm/i915/sseu: fix max_subslices array-index-out-of-bounds access + - SAUCE: mtd: spi-nor: Fix shift-out-of-bounds in spi_nor_set_erase_type + - SAUCE: Revert "fbdev: Make registered_fb[] private to fbmem.c" + - [Packaging] disable signing for ppc64el + - [Config] define CONFIG_SECURITY_APPARMOR_RESTRICT_USERNS + - SAUCE: Revert "arm64/fpsimd: Make kernel_neon_ API _GPL" + + -- Andrea Righi Tue, 07 Mar 2023 18:45:31 +0100 + +linux (6.2.0-0.0) lunar; urgency=medium + + * Empty entry + + -- Andrea Righi Fri, 03 Mar 2023 08:42:43 +0100 + +linux-unstable (6.2.0-10.10) lunar; urgency=medium + + * lunar/linux-unstable: 6.2.0-10.10 -proposed tracker (LP: #2007818) + + * Built-in camera device dies after runtime suspended (LP: #2007530) + - SAUCE: usb: xhci: Workaround for runpm issue on AMD xHC + + * Miscellaneous Ubuntu changes + - [Config] update annotations after rebase to v6.2 + + [ Upstream Kernel Changes ] + + * Rebase to v6.2 + + -- Andrea Righi Mon, 20 Feb 2023 10:36:20 +0100 + +linux-unstable (6.2.0-9.9) lunar; urgency=medium + + * lunar/linux-unstable: 6.2.0-9.9 -proposed tracker (LP: #2007069) + + * Move kernel ADT tests to python3 (LP: #2004429) + - [Debian] Use a python3 compatable kernel-testing repo + + * Mediatek FM350-GL wwan module failed to init: Invalid device status 0x1 + (LP: #2002089) + - SAUCE: Revert "net: wwan: t7xx: Add AP CLDMA" + - SAUCE: net: wwan: t7xx: Add AP CLDMA + - SAUCE: net: wwan: t7xx: Infrastructure for early port configuration + - SAUCE: net: wwan: t7xx: PCIe reset rescan + - SAUCE: net: wwan: t7xx: Enable devlink based fw flashing and coredump + collection + - SAUCE: net: wwan: t7xx: Devlink documentation + + * LXD containers using shiftfs on ZFS or TMPFS broken on 5.15.0-48.54 + (LP: #1990849) + - SAUCE: shiftfs: fix -EOVERFLOW inside the container + + * Miscellaneous Ubuntu changes + - [Packaging] annotations: do not drop undefined configs in derivatives + - [Packaging]: annotations: fix _remove_entry() logic + - [Packaging] rsync no longer available on lunar + - [Packaging] annotations: Handle single-line annoation rules + - [Packaging] annotations: Preserve single-line annotation rules + - [Packaging] annotations: Fix linter errors + - [Packaging] annotations: Clean up policy writes + - [Packaging] annotations: Handle tabs in annotations file + - [Packaging] annotations: Fail on invalid lines + - [Packaging] annotations: Write out annotations with notes first + - [Packaging] annotations: Check validity of FLAVOUR_DEP + - [Config] update annotations to split configs with/without notes + - [Packaging] annotations: various code cleanups + - [Config] update annotations after rebase to v6.2-rc8 + + * Miscellaneous upstream changes + - selftests/net: mv bpf/nat6to4.c to net folder + + [ Upstream Kernel Changes ] + + * Rebase to v6.1-rc8 + + -- Andrea Righi Mon, 13 Feb 2023 09:32:18 +0100 + +linux-unstable (6.2.0-8.8) lunar; urgency=medium + + * lunar/linux-unstable: 6.2.0-8.8 -proposed tracker (LP: #2004229) + + * Miscellaneous Ubuntu changes + - [Packaging] re-enable signing for ppc64el and s390x + - SAUCE: s390/decompressor: specify __decompress() buf len to avoid overflow + + -- Andrea Righi Tue, 31 Jan 2023 08:21:21 +0100 + +linux-unstable (6.2.0-7.7) lunar; urgency=medium + + * lunar/linux-unstable: 6.2.0-7.7 -proposed tracker (LP: #2004142) + + -- Andrea Righi Mon, 30 Jan 2023 10:23:15 +0100 + +linux-unstable (6.2.0-6.6) lunar; urgency=medium + + * lunar/linux-unstable: 6.2.0-6.6 -proposed tracker (LP: #2004138) + + * Miscellaneous Ubuntu changes + - [Packaging] debian/rules: Bring back 'editconfigs' + - [Packaging] debian/rules: 1-maintainer.mk -- Use make's if-else + - [Packaging] annotations: make sure to always drop undefined configs + - [Config] update annotations after rebase to v6.2-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v6.1-rc6 + + -- Andrea Righi Mon, 30 Jan 2023 09:20:26 +0100 + +linux-unstable (6.2.0-5.5) lunar; urgency=medium + + * lunar/linux-unstable: 6.2.0-5.5 -proposed tracker (LP: #2003682) + + * [23.04] Kernel 6.2 does not boot on s390x (LP: #2003348) + - SAUCE Revert "zstd: import usptream v1.5.2" + - SAUCE: Revert "zstd: Move zstd-common module exports to + zstd_common_module.c" + + * Revoke & rotate to new signing key (LP: #2002812) + - [Packaging] Revoke and rotate to new signing key + + * CVE-2023-0179 + - netfilter: nft_payload: incorrect arithmetics when fetching VLAN header bits + + * [23.04] net/smc: Alibaba patches about tunable buffer sizes may cause errors + and need to be removed (kernel 6.2) (LP: #2003547) + - SAUCE: Revert "net/smc: Unbind r/w buffer size from clcsock and make them + tunable" + - SAUCE: Revert "net/smc: Introduce a specific sysctl for TEST_LINK time" + + * 5.15 stuck at boot on c4.large (LP: #1956780) + - SAUCE: Revert "PCI/MSI: Mask MSI-X vectors only on success" + + * Miscellaneous Ubuntu changes + - [Packaging] scripts/misc/kernelconfig: Disable config checks for mainline + builds + - [Packaging] annotations: add CONFIG_GCC_VERSION to the list of ignored + configs + + -- Andrea Righi Mon, 23 Jan 2023 08:20:26 +0100 + +linux-unstable (6.2.0-4.4) lunar; urgency=medium + + * lunar/linux-unstable: 6.2.0-4.4 -proposed tracker (LP: #2003051) + + * Miscellaneous Ubuntu changes + - [Packaging] add python3 as a build dependency + - [Packaging] scripts/misc/kernelconfig: Rewrite + + -- Andrea Righi Tue, 17 Jan 2023 09:18:54 +0100 + +linux-unstable (6.2.0-3.3) lunar; urgency=medium + + * lunar/linux-unstable: 6.2.0-3.3 -proposed tracker (LP: #2002939) + + * Enable kernel config for P2PDMA (LP: #1987394) + - [Config] Enable CONFIG_HSA_AMD_P2P + + * Miscellaneous Ubuntu changes + - SAUCE: (no-up) Remove obj- += foo.o hack + - SAUCE: (no-up) re-add ubuntu/ directory + - [Config] enable EFI handover protocol + - [Packaging] Fix module-check error when modules are compressed + - SAUCE: (no-up) do not remove debian directory by 'make mrproper' + - [Packaging] debian/rules: Drop AUTOBUILD + - [Packaging] debian/rules: Drop NOKERNLOG and PRINTSHAS env variables + - [Packaging] debian/rules: Replace skip variables with skip_checks + - [Packaging] checks/retpoline-check: Make 'skipretpoline' argument optional + - [Packaging] checks/module-signature-check: Add 'skip_checks' argument + - [Packaging] debian/rules: Rename 'skip_dbg' to 'do_dbgsym_package' + - [Packaging] debian/rules: Rename 'skip_checks' to 'do_skip_checks' + - [Packaging] debian/rules: Rename 'full_build' to 'do_full_build' + - [Packaging] debian/rules: Fix PPA debug package builds + - [Packaging] debian/rules: Remove debug package install directory earlier + - [Packaging] debian/rules: Remove unnecessary 'lockme_' variables + - [Packaging] debian/rules: Remove unused target 'diffupstream' + - [Packaging] debian/rules: Mark PHONY targets individually + - [Packaging] debian/rules: Clean up 'help' target output + - [Packaging] debian/rules: Clean up 'printenv' target output + - [Packaging] debian/rules: Add missing 'do_' variables to 'printenv' + - [Config] update annotations after rebase to v6.2-rc4 + + [ Upstream Kernel Changes ] + + * Rebase to v6.1-rc4 + + -- Andrea Righi Mon, 16 Jan 2023 16:01:40 +0100 + +linux-unstable (6.2.0-2.2) lunar; urgency=medium + + * lunar/linux-unstable: 6.2.0-2.2 -proposed tracker (LP: #2001892) + + * Soundwire support for the Intel RPL Gen 0C40/0C11 platforms (LP: #2000030) + - SAUCE: ASoC: Intel: soc-acpi: add configuration for variant of 0C40 product + - SAUCE: ASoC: Intel: soc-acpi: add configuration for variant of 0C11 product + + * Miscellaneous Ubuntu changes + - [Config] update toolchain version in annotations + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] Support skipped dkms modules" + + [ Upstream Kernel Changes ] + + * Rebase to v6.1-rc2 + + -- Andrea Righi Thu, 05 Jan 2023 09:19:55 +0100 + +linux-unstable (6.2.0-1.1) lunar; urgency=medium + + * lunar/linux-unstable: 6.2.0-1.1 -proposed tracker (LP: #2000904) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Miscellaneous Ubuntu changes + - [Packaging] annotations: remove configs that are undefined across all + arches/flavours + - SAUCE: Revert "apparmor: make __aa_path_perm() static" + - [Packaging] abi-check: ignore failures when abi check is skipped + - [Packaging] temporarily disable zfs dkms + - [Config] update annotations after rebase to 6.2-rc1 + + [ Upstream Kernel Changes ] + + * Rebase to v6.1-rc1 + + -- Andrea Righi Wed, 04 Jan 2023 12:08:32 +0100 + +linux-unstable (6.2.0-0.0) lunar; urgency=medium + + * Empty entry + + -- Andrea Righi Sun, 01 Jan 2023 10:16:00 +0100 + +linux (6.1.0-11.11) lunar; urgency=medium + + * lunar/linux: 6.1.0-11.11 -proposed tracker (LP: #2000704) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Lunar update: v6.1.1 upstream stable release (LP: #2000706) + - x86/vdso: Conditionally export __vdso_sgx_enter_enclave() + - libbpf: Fix uninitialized warning in btf_dump_dump_type_data + - PCI: mt7621: Add sentinel to quirks table + - 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 + - irqchip/ls-extirq: Fix endianness detection + - 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 + - staging: r8188eu: fix led register settings + - igb: Initialize mailbox message for VF reset + - usb: typec: ucsi: Resume in separate work + - usb: dwc3: pci: Update PCIe device ID for USB3 controller on CPU sub-system + for Raptor Lake + - cifs: fix oops during encryption + - KEYS: encrypted: fix key instantiation with user-provided data + - Linux 6.1.1 + + * Expose built-in trusted and revoked certificates (LP: #1996892) + - [Packaging] Expose built-in trusted and revoked certificates + + * Fix System cannot detect bluetooth after running suspend stress test + (LP: #1998727) + - wifi: rtw88: 8821c: enable BT device recovery mechanism + + * Gnome doesn't run smooth when performing normal usage with RPL-P CPU + (LP: #1998419) + - drm/i915/rpl-p: Add stepping info + + * Mute/mic LEDs no function on a HP platfrom (LP: #1998882) + - ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook + + * Add additional Mediatek MT7922 BT device ID (LP: #1998885) + - Bluetooth: btusb: Add a new VID/PID 0489/e0f2 for MT7922 + + * Support Icicle Kit reference design v2022.10 (LP: #1993148) + - SAUCE: riscv: dts: microchip: Disable PCIe on the Icicle Kit + + * Add iommu passthrough quirk for Intel IPU6 on RaptorLake (LP: #1989041) + - SAUCE: iommu: intel-ipu: use IOMMU passthrough mode for Intel IPUs on Raptor + Lake + + * Enable Intel FM350 wwan CCCI driver port logging (LP: #1997686) + - net: wwan: t7xx: use union to group port type specific data + - net: wwan: t7xx: Add port for modem logging + + * TEE Support for CCP driver (LP: #1991608) + - crypto: ccp - Add support for TEE for PCI ID 0x14CA + + * Kinetic update: v5.19.17 upstream stable release (LP: #1994179) + - Revert "fs: check FMODE_LSEEK to control internal pipe splicing" + - kbuild: Add skip_encoding_btf_enum64 option to pahole + + * Kinetic update: v5.19.15 upstream stable release (LP: #1994078) + - Revert "clk: ti: Stop using legacy clkctrl names for omap4 and 5" + + * support independent clock and LED GPIOs for Intel IPU6 platforms + (LP: #1989046) + - SAUCE: platform/x86: int3472: support independent clock and LED GPIOs + + * Kernel livepatch support for for s390x (LP: #1639924) + - [Config] Enable EXPOLINE_EXTERN on s390x + + * Kinetic update: v5.19.7 upstream stable release (LP: #1988733) + - Revert "PCI/portdrv: Don't disable AER reporting in + get_port_device_capability()" + + * Kinetic update: v5.19.3 upstream stable release (LP: #1987345) + - Revert "mm: kfence: apply kmemleak_ignore_phys on early allocated pool" + + * Fix non-working e1000e device after resume (LP: #1951861) + - SAUCE: Revert "e1000e: Add polling mechanism to indicate CSME DPG exit" + + * Add additional Mediatek MT7921 WiFi/BT device IDs (LP: #1937004) + - SAUCE: Bluetooth: btusb: Add support for Foxconn Mediatek Chip + + * Fix system sleep on TGL systems with Intel ME (LP: #1919321) + - SAUCE: PCI: Serialize TGL e1000e PM ops + + * Fix broken e1000e device after S3 (LP: #1897755) + - SAUCE: e1000e: Increase polling timeout on MDIC ready bit + + * 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 + + * Set explicit CC in the headers package (LP: #1999750) + - [Packaging] Set explicit CC in the headers package + + * commit cf58599cded35cf4affed1e659c0e2c742d3fda7 seems to be missing in + kinetic master to remove "hio" reference from Makefile (LP: #1999556) + - SAUCE: remove leftover reference to ubuntu/hio driver + + * Miscellaneous Ubuntu changes + - [Packaging] kernelconfig: always complete all config checks + - [Packaging] annotations: unify same rule across all flavour within the same + arch + - [Config] annotations: compact annotations file + - [Config] disable EFI_ZBOOT + - SAUCE: input: i8042: fix section mismatch warning + - debian/dkms-versions -- re-enable zfs + - [Packaging] old-kernelconfig: update config-check path + - [Packaging] update getabis + - [Packaging] update Ubuntu.md + + * Miscellaneous upstream changes + - Revert "drm/i915/opregion: check port number bounds for SWSCI display power + state" + + -- Andrea Righi Fri, 30 Dec 2022 11:23:16 +0100 + +linux (6.1.0-10.10) lunar; urgency=medium + + * lunar/linux: 6.1.0-10.10 -proposed tracker (LP: #1999569) + + * Soundwire support for the Intel RPL Gen platforms (LP: #1997944) + - ASoC: Intel: sof_sdw: Add support for SKU 0C10 product + - ASoC: Intel: soc-acpi: add SKU 0C10 SoundWire configuration + - ASoC: Intel: sof_sdw: Add support for SKU 0C40 product + - ASoC: Intel: soc-acpi: add SKU 0C40 SoundWire configuration + - ASoC: Intel: sof_sdw: Add support for SKU 0C4F product + - ASoC: rt1318: Add RT1318 SDCA vendor-specific driver + - ASoC: intel: sof_sdw: add rt1318 codec support. + - ASoC: Intel: sof_sdw: Add support for SKU 0C11 product + - ASoC: Intel: soc-acpi: add SKU 0C11 SoundWire configuration + - SAUCE: ASoC: Intel: soc-acpi: update codec addr on 0C11/0C4F product + - [Config] enable CONFIG_SND_SOC_RT1318_SDW + + * Virtual GPU driver packaging regression (LP: #1996112) + - [Packaging] Reintroduce VM DRM drivers into modules + + -- Andrea Righi Tue, 13 Dec 2022 22:14:08 +0100 + +linux (6.1.0-9.9) lunar; urgency=medium + + * Empty entry (ABI bump) + + -- Andrea Righi Tue, 13 Dec 2022 21:31:08 +0100 + +linux (6.1.0-3.3) lunar; urgency=medium + + * lunar/linux: 6.1.0-3.3 -proposed tracker (LP: #1999534) + + * [DEP-8] Run ADT regression suite for lowlatency kernels Jammy and later + (LP: #1999528) + - [DEP-8] Fix regression suite to run on lowlatency + + * Miscellaneous Ubuntu changes + - [Packaging] annotations: do not add constraints on toolchain versions + + -- Andrea Righi Tue, 13 Dec 2022 16:45:59 +0100 + +linux (6.1.0-2.2) lunar; urgency=medium + + * lunar/linux: 6.1.0-2.2 -proposed tracker (LP: #1999411) + + * Miscellaneous Ubuntu changes + - [Packaging] annotations: do not enforce toolchain versions + + -- Andrea Righi Mon, 12 Dec 2022 17:05:59 +0100 + +linux (6.1.0-1.1) lunar; urgency=medium + + * lunar/linux: 6.1.0-1.1 -proposed tracker (LP: #1999373) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Miscellaneous Ubuntu changes + - [Packaging] annotations: set and delete configs from command line + - [Packaging] migrateconfigs: ignore README.rst if it doesn't exist + - [Packaging] migrate-annotations: properly determine arches in derivatives + - [Packaging] annotations: allow to set note to config options directly + - [Packaging] annotations: assume --query as default command + - [Packaging] annotations: allow to query using CONFIG_